diff --git a/fastsim-core/Cargo.toml b/fastsim-core/Cargo.toml index f91ac6cf..e57cb23f 100644 --- a/fastsim-core/Cargo.toml +++ b/fastsim-core/Cargo.toml @@ -48,7 +48,7 @@ name = "interp_bench" harness = false [features] -default = ["resources", "web", "serde-default"] +default = ["resources", "web", "serde-default" ] ## Enables logging messages that can be passed to Python if `pyo3` is also ## enabled. logging = ["dep:log"] diff --git a/fastsim-core/fastsim-proc-macros/src/fastsim_api.rs b/fastsim-core/fastsim-proc-macros/src/fastsim_api.rs index 62fde951..02136e9e 100644 --- a/fastsim-core/fastsim-proc-macros/src/fastsim_api.rs +++ b/fastsim-core/fastsim-proc-macros/src/fastsim_api.rs @@ -15,154 +15,39 @@ pub(crate) fn fastsim_api(attr: TokenStream, item: TokenStream) -> TokenStream { py_impl_block.extend::(parse_ts_as_fn_defs(attr, vec![], false, vec![])); if let syn::Fields::Named(syn::FieldsNamed { named, .. }) = &mut ast.fields { - // struct with named fields - for field in named.iter_mut() { - // if attr.tokens.to_string().contains("skip_get"){ - // for (i, idx_del) in idxs_del.into_iter().enumerate() { - // attr_vec.remove(*idx_del - i); - // } - - // this is my quick and dirty attempt at emulating: - // https://github.com/PyO3/pyo3/blob/48690525e19b87818b59f99be83f1e0eb203c7d4/pyo3-macros-backend/src/pyclass.rs#L220 - - let mut opts = FieldOptions::default(); - // find attributes that need to be retained for other macros - // and handle the `api` attributes - let keep: Vec = field - .attrs - .iter() - .map(|attr| { - if let Meta::List(ml) = &attr.meta { - // catch the `api` in `#[api(skip_get)]` - if ml.path.is_ident("api") { - let opt_str = ml.tokens.to_string(); - let opt_split = opt_str.as_str().split(","); - let mut opt_vec = - opt_split.map(|opt| opt.trim()).collect::>(); - - // find the `skip_get` option - let mut idx_skip_get: Option = None; - opt_vec.iter().enumerate().for_each(|(i, opt)| { - if *opt == "skip_get" { - idx_skip_get = Some(i); - opts.skip_get = true; - } - }); - if let Some(idx_skip_get) = idx_skip_get { - let _ = opt_vec.remove(idx_skip_get); - } - - // find the `skip_set` option - let mut idx_skip_set: Option = None; - opt_vec.iter().enumerate().for_each(|(i, opt)| { - if *opt == "skip_set" { - idx_skip_set = Some(i); - opts.skip_set = true; - } - }); - if let Some(idx_skip_set) = idx_skip_set { - let _ = opt_vec.remove(idx_skip_set); - } - - // make sure there were no invalid options passed and raise warning - if !opt_vec.is_empty() { - emit_error!(ml.span(), "Invalid option(s): {:?}", opt_vec); - } - false // this attribute should not be retained because it is handled solely by this proc macro - } else { - true - } - } else { - true - } - }) - .collect(); - // println!("options in {}: {:?}", field.ident.to_token_stream(), opts); - let mut iter = keep.iter(); - // this drops attrs with api, removing the field attribute from the struct def - field.attrs.retain(|_| *iter.next().unwrap()); - - impl_getters_and_setters(&mut py_impl_block, field, &opts); - } + process_named_field_struct(named, &mut py_impl_block); } else if let syn::Fields::Unnamed(syn::FieldsUnnamed { unnamed, .. }) = &mut ast.fields { - // tuple struct - assert!(unnamed.len() == 1); - for field in unnamed.iter() { - let ftype = field.ty.clone(); - if let syn::Type::Path(type_path) = ftype.clone() { - let type_str = type_path.clone().into_token_stream().to_string(); - if type_str.contains("Vec") { - let re = Regex::new(r"Vec < (.+) >").unwrap(); - // println!("{}", type_str); - // println!("{}", &re.captures(&type_str).unwrap()[1]); - let contained_dtype: TokenStream2 = re.captures(&type_str).unwrap()[1] - .to_string() - .parse() - .unwrap(); - py_impl_block.extend::( - quote! { - #[new] - /// Rust-defined `__new__` magic method for Python used exposed via PyO3. - fn __new__(v: Vec<#contained_dtype>) -> Self { - Self(v) - } - /// Rust-defined `__repr__` magic method for Python used exposed via PyO3. - fn __repr__(&self) -> String { - format!("Pyo3Vec({:?})", self.0) - } - /// Rust-defined `__str__` magic method for Python used exposed via PyO3. - fn __str__(&self) -> String { - format!("{:?}", self.0) - } - /// Rust-defined `__getitem__` magic method for Python used exposed via PyO3. - /// Prevents the Python user getting item directly using indexing. - fn __getitem__(&self, _idx: usize) -> PyResult<()> { - Err(PyNotImplementedError::new_err( - "Getting Rust vector value at index is not implemented. - Run `tolist` method to convert to standalone Python list.", - )) - } - /// Rust-defined `__setitem__` magic method for Python used exposed via PyO3. - /// Prevents the Python user setting item using indexing. - fn __setitem__(&mut self, _idx: usize, _new_value: #contained_dtype) -> PyResult<()> { - Err(PyNotImplementedError::new_err( - "Setting list value at index is not implemented. - Run `tolist` method, modify value at index, and - then set entire list.", - )) - } - /// PyO3-exposed method to convert vec-containing struct to Python list. - fn tolist(&self) -> PyResult> { - Ok(self.0.clone()) - } - /// Rust-defined `__len__` magic method for Python used exposed via PyO3. - /// Returns the length of the Rust vector. - fn __len__(&self) -> usize { - self.0.len() - } - /// PyO3-exposed method to check if the vec-containing struct is empty. - fn is_empty(&self) -> bool { - self.0.is_empty() - } - } - ); - impl_block.extend::(quote! { - impl #ident{ - /// Implement the non-Python `new` method. - pub fn new(value: Vec<#contained_dtype>) -> Self { - Self(value) - } - } - }); - } - } - } + process_tuple_struct(unnamed, &mut py_impl_block, &mut impl_block, ident); } else { abort_call_site!( "Invalid use of `fastsim_api` macro. Expected tuple struct or C-style struct." ); }; + add_serde_methods(&mut py_impl_block); + + let py_impl_block = quote! { + #[allow(non_snake_case)] + #[pymethods] + #[cfg(feature="pyo3")] + /// Implement methods exposed and used in Python via PyO3 + impl #ident { + #py_impl_block + } + }; + let mut final_output = TokenStream2::default(); + final_output.extend::(quote! { + #[cfg_attr(feature="pyo3", pyclass(module = "fastsim", subclass))] + }); + let mut output: TokenStream2 = ast.to_token_stream(); + output.extend(impl_block); + output.extend(py_impl_block); + // println!("{}", output.to_string()); + final_output.extend::(output); + final_output.into() +} + +fn add_serde_methods(py_impl_block: &mut TokenStream2) { py_impl_block.extend::(quote! { pub fn copy(&self) -> Self {self.clone()} pub fn __copy__(&self) -> Self {self.clone()} @@ -324,24 +209,156 @@ pub(crate) fn fastsim_api(attr: TokenStream, item: TokenStream) -> TokenStream { Self::from_yaml(yaml_str, skip_init.unwrap_or_default()).map_err(|e| PyIOError::new_err(format!("{:?}", e))) } }); +} - let py_impl_block = quote! { - #[allow(non_snake_case)] - #[pymethods] - #[cfg(feature="pyo3")] - /// Implement methods exposed and used in Python via PyO3 - impl #ident { - #py_impl_block +fn process_tuple_struct( + unnamed: &mut syn::punctuated::Punctuated, + py_impl_block: &mut TokenStream2, + impl_block: &mut TokenStream2, + ident: &Ident, +) { + // tuple struct + assert!(unnamed.len() == 1); + for field in unnamed.iter() { + let ftype = field.ty.clone(); + if let syn::Type::Path(type_path) = ftype.clone() { + let type_str = type_path.clone().into_token_stream().to_string(); + if type_str.contains("Vec") { + let re = Regex::new(r"Vec < (.+) >").unwrap(); + // println!("{}", type_str); + // println!("{}", &re.captures(&type_str).unwrap()[1]); + let contained_dtype: TokenStream2 = re.captures(&type_str).unwrap()[1] + .to_string() + .parse() + .unwrap(); + py_impl_block.extend::( + quote! { + #[new] + /// Rust-defined `__new__` magic method for Python used exposed via PyO3. + fn __new__(v: Vec<#contained_dtype>) -> Self { + Self(v) + } + /// Rust-defined `__repr__` magic method for Python used exposed via PyO3. + fn __repr__(&self) -> String { + format!("Pyo3Vec({:?})", self.0) + } + /// Rust-defined `__str__` magic method for Python used exposed via PyO3. + fn __str__(&self) -> String { + format!("{:?}", self.0) + } + /// Rust-defined `__getitem__` magic method for Python used exposed via PyO3. + /// Prevents the Python user getting item directly using indexing. + fn __getitem__(&self, _idx: usize) -> PyResult<()> { + Err(PyNotImplementedError::new_err( + "Getting Rust vector value at index is not implemented. + Run `tolist` method to convert to standalone Python list.", + )) + } + /// Rust-defined `__setitem__` magic method for Python used exposed via PyO3. + /// Prevents the Python user setting item using indexing. + fn __setitem__(&mut self, _idx: usize, _new_value: #contained_dtype) -> PyResult<()> { + Err(PyNotImplementedError::new_err( + "Setting list value at index is not implemented. + Run `tolist` method, modify value at index, and + then set entire list.", + )) + } + /// PyO3-exposed method to convert vec-containing struct to Python list. + fn tolist(&self) -> PyResult> { + Ok(self.0.clone()) + } + /// Rust-defined `__len__` magic method for Python used exposed via PyO3. + /// Returns the length of the Rust vector. + fn __len__(&self) -> usize { + self.0.len() + } + /// PyO3-exposed method to check if the vec-containing struct is empty. + fn is_empty(&self) -> bool { + self.0.is_empty() + } + } + ); + impl_block.extend::(quote! { + impl #ident{ + /// Implement the non-Python `new` method. + pub fn new(value: Vec<#contained_dtype>) -> Self { + Self(value) + } + } + }); + } } - }; - let mut final_output = TokenStream2::default(); - final_output.extend::(quote! { - #[cfg_attr(feature="pyo3", pyclass(module = "fastsim", subclass))] - }); - let mut output: TokenStream2 = ast.to_token_stream(); - output.extend(impl_block); - output.extend(py_impl_block); - // println!("{}", output.to_string()); - final_output.extend::(output); - final_output.into() + } +} + +fn process_named_field_struct( + named: &mut syn::punctuated::Punctuated, + py_impl_block: &mut TokenStream2, +) { + // struct with named fields + for field in named.iter_mut() { + // if attr.tokens.to_string().contains("skip_get"){ + // for (i, idx_del) in idxs_del.into_iter().enumerate() { + // attr_vec.remove(*idx_del - i); + // } + + // this is my quick and dirty attempt at emulating: + // https://github.com/PyO3/pyo3/blob/48690525e19b87818b59f99be83f1e0eb203c7d4/pyo3-macros-backend/src/pyclass.rs#L220 + + let mut opts = FieldOptions::default(); + let keep: Vec = field + .attrs + .iter() + .map(|attr| { + if let Meta::List(ml) = &attr.meta { + // catch the `api` in `#[api(skip_get)]` + if ml.path.is_ident("api") { + let opt_str = ml.tokens.to_string(); + let opt_split = opt_str.as_str().split(","); + let mut opt_vec = opt_split.map(|opt| opt.trim()).collect::>(); + + // find the `skip_get` option + let mut idx_skip_get: Option = None; + opt_vec.iter().enumerate().for_each(|(i, opt)| { + if *opt == "skip_get" { + idx_skip_get = Some(i); + opts.skip_get = true; + } + }); + if let Some(idx_skip_get) = idx_skip_get { + let _ = opt_vec.remove(idx_skip_get); + } + + // find the `skip_set` option + let mut idx_skip_set: Option = None; + opt_vec.iter().enumerate().for_each(|(i, opt)| { + if *opt == "skip_set" { + idx_skip_set = Some(i); + opts.skip_set = true; + } + }); + if let Some(idx_skip_set) = idx_skip_set { + let _ = opt_vec.remove(idx_skip_set); + } + + // make sure there were no invalid options passed and raise warning + if !opt_vec.is_empty() { + emit_error!(ml.span(), "Invalid option(s): {:?}", opt_vec); + } + false // this attribute should not be retained because it is handled solely by this proc macro + } else { + true + } + } else { + true + } + }) + .collect(); + // println!("options {:?}", opts); + let mut iter = keep.iter(); + // this drops attrs with api, removing the field attribute from the struct def + field.attrs.retain(|_| *iter.next().unwrap()); + + impl_getters_and_setters(py_impl_block, field, &opts); + } } diff --git a/fastsim-core/fastsim-proc-macros/src/fastsim_api/api_utils.rs b/fastsim-core/fastsim-proc-macros/src/fastsim_api/api_utils.rs new file mode 100644 index 00000000..69d9d91e --- /dev/null +++ b/fastsim-core/fastsim-proc-macros/src/fastsim_api/api_utils.rs @@ -0,0 +1,396 @@ +use crate::imports::*; + +/// Converts multiple uom unit values to a vector of token stream and the plural units name +/// +/// - field_units: unit type of value being set (e.g. `uom::si::power::watt`) +macro_rules! extract_units { + ($($field_units: ty),+) => {{ + let mut unit_impls = vec![]; + $( + let field_units: TokenStream2 = stringify!($field_units).parse().unwrap(); + let unit_name = <$field_units as uom::si::Unit>::plural().replace(' ', "_"); + unit_impls.push((field_units, unit_name)); + )+ + unit_impls + }}; +} + +/// Determine the wrapper type for a specified vector nesting layer +fn vec_layer_type(vec_layers: u8) -> TokenStream2 { + match vec_layers { + 0 => quote!(f64), + 1 => quote!(Pyo3VecWrapper), + 2 => quote!(Pyo3Vec2Wrapper), + 3 => quote!(Pyo3Vec3Wrapper), + _ => abort_call_site!("Invalid vector layer {vec_layers}!"), + } +} + +/// Generates pyo3 getter and setter methods for si fields and vector elements +/// +/// - impl_block: output TokenStream2 +/// - field: struct field name as ident +/// - field_type: token stream of field type (e.g. `si::Power` as a token stream) +/// - field_units: token stream of unit type of value being set (generate using extract_units) +/// - unit_name: plural name of units being used (generate using extract_units) +/// - opts: FieldOptions struct instance +/// - vec_layers: number of nested vector layers +fn impl_get_set_si( + impl_block: &mut TokenStream2, + field: &mut syn::Field, + field_type: &TokenStream2, + field_units: &TokenStream2, + unit_name: &str, + opts: &FieldOptions, + vec_layers: u8, +) { + let ident = field.ident.clone().unwrap(); + let field_name: TokenStream2 = match unit_name { + "" => format!("{ident}").parse().unwrap(), + _ => { + if field_has_serde_rename(field) { + // add the rename attribute for any fields that don't already have it + let field_name_lit_str = format!("{ident}_{unit_name}"); + field.attrs.push(syn::parse_quote! { + #[serde(rename = #field_name_lit_str)] + }) + } + format!("{ident}_{unit_name}").parse().unwrap() + } + }; + + if !opts.skip_get { + let get_name: TokenStream2 = format!("get_{field_name}").parse().unwrap(); + let get_type = vec_layer_type(vec_layers); + let unit_func = quote!(get::<#field_units>()); + fn iter_map_collect_vec(inner_func: TokenStream2) -> TokenStream2 { + quote!(iter().map(|x| x.#inner_func).collect::>()) + } + + let mut extract_val = unit_func; + for _ in 0..vec_layers { + extract_val = iter_map_collect_vec(extract_val); + } + + let field_val = match vec_layers { + 0 => quote!(self.#ident.#extract_val), + _ => quote!(#get_type::new(self.#ident.#extract_val)), + }; + + impl_block.extend::(quote! { + #[getter] + fn #get_name(&self) -> PyResult<#get_type> { + Ok(#field_val) + } + }); + } + + if !opts.skip_set && vec_layers == 0 { + let set_name: TokenStream2 = format!("set_{field_name}").parse().unwrap(); + let set_err: TokenStream2 = format!("set_{field_name}_err").parse().unwrap(); + let setter_rename: TokenStream2 = format!("__{field_name}").parse().unwrap(); + + impl_block.extend::(quote! { + #[setter(#setter_rename)] + fn #set_err(&mut self, new_val: f64) -> PyResult<()> { + self.#ident = #field_type::new::<#field_units>(new_val); + Ok(()) + } + }); + + // Directly setting value raises error to prevent nested struct issues + impl_block.extend::(quote! { + #[setter] + fn #set_name(&mut self, new_val: f64) -> PyResult<()> { + Err(PyAttributeError::new_err(DIRECT_SET_ERR)) + } + }); + } +} + +fn field_has_serde_rename(field: &syn::Field) -> bool { + !field.attrs.iter().any(|attr| { + let attr_meta = attr.parse_meta().unwrap(); + if let Meta::List(meta_list) = attr_meta { + // catch the `serde` in `#[serde(rename = "...")]` + meta_list.path.is_ident("serde") + && + // catch the `rename` in `#[serde(rename = "...")]` + meta_list.nested.iter().any(|nm| { + match nm { + NestedMeta::Meta(Meta::NameValue(MetaNameValue { path, ..})) => { + path.is_ident("rename") + } + _ => false + } + }) + } else { + false + } + }) +} + +/// Generates pyo3 getter methods +/// +/// - impl_block: TokenStream2 +/// - field: struct field +/// - field_type: type of variable (e.g. `f64`) +/// - opts: FieldOptions struct instance +/// - vec_layers: number of nested vector layers +fn impl_get_body( + impl_block: &mut TokenStream2, + field: &proc_macro2::Ident, + field_type: &TokenStream2, + opts: &FieldOptions, + vec_layers: u8, +) { + if !opts.skip_get { + let get_name: TokenStream2 = format!("get_{field}").parse().unwrap(); + let field_type = match vec_layers { + 0 => field_type.clone(), + _ => vec_layer_type(vec_layers), + }; + + let field_val = match vec_layers { + 0 => quote!(self.#field.clone()), + _ => quote!(#field_type::new(self.#field.clone())), + }; + + impl_block.extend::(quote! { + #[getter] + fn #get_name(&self) -> PyResult<#field_type> { + Ok(#field_val) + } + }); + } +} + +/// Generates pyo3 getter methods +/// +/// - impl_block: TokenStream2 +/// - field: struct field +/// - field_type: type of variable (e.g. `f64`) +/// - opts: FieldOptions struct instance +fn impl_set_body( + impl_block: &mut TokenStream2, + field: &proc_macro2::Ident, + field_type: &TokenStream2, + opts: &FieldOptions, +) { + if !opts.skip_set { + let set_name: TokenStream2 = format!("set_{field}").parse().unwrap(); + let set_err: TokenStream2 = format!("set_{field}_err").parse().unwrap(); + let setter_rename: TokenStream2 = format!("__{field}").parse().unwrap(); + + impl_block.extend::(quote! { + #[setter(#setter_rename)] + fn #set_err(&mut self, new_val: #field_type) -> PyResult<()> { + self.#field = new_val; + Ok(()) + } + }); + + // Directly setting value raises error to prevent nested struct issues + impl_block.extend::(quote! { + #[setter] + fn #set_name(&mut self, new_val: #field_type) -> PyResult<()> { + Err(PyAttributeError::new_err(DIRECT_SET_ERR)) + } + }); + } +} + +fn extract_type_path(ty: &syn::Type) -> Option<&syn::Path> { + match ty { + syn::Type::Path(type_path) if type_path.qself.is_none() => Some(&type_path.path), + _ => None, + } +} + +/// adapted from https://stackoverflow.com/questions/55271857/how-can-i-get-the-t-from-an-optiont-when-using-syn +fn extract_type_from_option(ty: &syn::Type) -> Option<&syn::Type> { + fn extract_option_argument(path: &Path) -> Option<&GenericArgument> { + let mut ident_path = String::new(); + for segment in &path.segments { + ident_path.push_str(&segment.ident.to_string()); + + // Exit when the inner brackets are found + match &segment.arguments { + syn::PathArguments::AngleBracketed(params) => { + return match ident_path.as_str() { + "Option" | "std::option::Option" | "core::option::Option" => { + params.args.first() + } + _ => None, + }; + } + syn::PathArguments::None => {} + _ => return None, + } + + ident_path.push_str("::"); + } + None + } + + extract_type_path(ty) + .and_then(extract_option_argument) + .and_then(|generic_arg| match *generic_arg { + GenericArgument::Type(ref ty) => Some(ty), + _ => None, + }) +} + +/// Adapted from https://stackoverflow.com/questions/55271857/how-can-i-get-the-t-from-an-optiont-when-using-syn +/// Extracts contained type from Vec -- i.e. Vec -> T +fn extract_type_from_vec(ty: &syn::Type) -> Option<&syn::Type> { + fn extract_vec_argument(path: &syn::Path) -> Option<&syn::GenericArgument> { + let mut ident_path = String::new(); + for segment in &path.segments { + ident_path.push_str(&segment.ident.to_string()); + + // Exit when the inner brackets are found + match &segment.arguments { + syn::PathArguments::AngleBracketed(params) => { + return match ident_path.as_str() { + "Vec" | "std::vec::Vec" => params.args.first(), + _ => None, + }; + } + syn::PathArguments::None => {} + _ => return None, + } + + ident_path.push_str("::"); + } + None + } + + extract_type_path(ty) + .and_then(extract_vec_argument) + .and_then(|generic_arg| match generic_arg { + syn::GenericArgument::Type(ty) => Some(ty), + _ => None, + }) +} + +// Extract the quantity name from an absolue uom path or an si path +fn extract_si_quantity(path: &syn::Path) -> Option { + if path.segments.len() <= 1 { + return None; + } + let mut i = 0; + if path.segments[i].ident == "uom" { + i += 1; + if path.segments.len() <= i + 1 { + return None; + } + } + if path.segments[i].ident != "si" { + return None; + } + if path.segments[i + 1].ident == "f64" { + i += 1; + if path.segments.len() <= i + 1 { + return None; + } + } + + Some(path.segments[i + 1].ident.to_string()) +} + +pub(crate) fn impl_getters_and_setters( + impl_block: &mut TokenStream2, + field: &mut syn::Field, + opts: &FieldOptions, +) -> Option<()> { + let ident = field.ident.as_ref().unwrap(); + let ftype = field.ty.clone(); + let mut vec_layers: u8 = 0; + let mut inner_type = &ftype; + + if let Some(opt_inner_type) = extract_type_from_option(inner_type) { + inner_type = opt_inner_type; + } + + // pull out `inner_type` from `Vec`, recursively if there is any nesting + while let Some(vec_inner_type) = extract_type_from_vec(inner_type) { + inner_type = vec_inner_type; + vec_layers += 1; + if vec_layers >= 4 { + abort!(ftype.span(), "Too many nested vec layers!"); + } + } + + let inner_path = extract_type_path(inner_type)?; + let inner_type = &inner_path.to_token_stream(); + let field_type = extract_type_path(&ftype)?.to_token_stream(); + if let Some(quantity) = extract_si_quantity(inner_path) { + // Make sure to use absolute paths here to avoid issues with si.rs in the main fastsim-core! + let unit_impls = match quantity.as_str() { + "Acceleration" => extract_units!(uom::si::acceleration::meter_per_second_squared), + "Angle" => extract_units!(uom::si::angle::radian), + "Area" => extract_units!(uom::si::area::square_meter), + "SpecificEnergy" => extract_units!( + uom::si::available_energy::joule_per_kilogram, + uom::si::available_energy::kilojoule_per_kilogram, + uom::si::available_energy::megajoule_per_kilogram + ), + "Energy" => extract_units!(uom::si::energy::joule), + "Force" => extract_units!(uom::si::force::newton), + "InverseVelocity" => extract_units!(uom::si::inverse_velocity::second_per_meter), + "Length" => extract_units!(uom::si::length::meter, uom::si::length::mile), + "Mass" => extract_units!(uom::si::mass::kilogram), + "MomentOfInertia" => extract_units!(uom::si::moment_of_inertia::kilogram_square_meter), + "Power" => extract_units!(uom::si::power::watt), + "SpecificPower" => extract_units!(uom::si::specific_power::watt_per_kilogram), + "PowerRate" => extract_units!(uom::si::power_rate::watt_per_second), + "Pressure" => extract_units!(uom::si::pressure::kilopascal, uom::si::pressure::bar), + "Ratio" => extract_units!(uom::si::ratio::ratio), + "Time" => extract_units!(uom::si::time::second, uom::si::time::hour), + "Velocity" => extract_units!( + uom::si::velocity::meter_per_second, + uom::si::velocity::mile_per_hour + ), + "Volume" => extract_units!(uom::si::volume::cubic_meter, uom::si::volume::liter), + "MassDensity" => extract_units!(uom::si::mass_density::kilogram_per_cubic_meter), + _ => abort!( + inner_path.span(), + "Unknown si quantity! Make sure it's implemented in `impl_getters_and_setters`" + ), + }; + for (field_units, unit_name) in &unit_impls { + impl_get_set_si( + impl_block, + field, + inner_type, + field_units, + unit_name, + opts, + vec_layers, + ); + } + } else if inner_type.to_string().as_str() == "f64" { + impl_get_body(impl_block, ident, inner_type, opts, vec_layers); + impl_set_body(impl_block, ident, &field_type, opts); + } else { + impl_get_body(impl_block, ident, &field_type, opts, 0); + if ident != "history" { + impl_set_body(impl_block, ident, &field_type, opts); + } + } + + Some(()) +} + +#[derive(Debug, Default, Clone)] +pub(crate) struct FieldOptions { + /// if true, getters are not generated for a field + pub skip_get: bool, + /// if true, setters are not generated for a field + pub skip_set: bool, + // TODO: uncomment and clean up, and then create equivalent `set__from_pydict` + // and `_to_pydict` methods via `setattr` + // /// if true, writes methods to get and set enum via json + // pub enum_as_json: bool, +} diff --git a/fastsim-core/fastsim-proc-macros/src/fastsim_api/fastsim_api_utils.rs b/fastsim-core/fastsim-proc-macros/src/fastsim_api/fastsim_api_utils.rs index 8afca8f1..feca3981 100644 --- a/fastsim-core/fastsim-proc-macros/src/fastsim_api/fastsim_api_utils.rs +++ b/fastsim-core/fastsim-proc-macros/src/fastsim_api/fastsim_api_utils.rs @@ -381,4 +381,8 @@ pub(crate) struct FieldOptions { pub skip_get: bool, /// if true, setters are not generated for a field pub skip_set: bool, + // TODO: uncomment and clean up, and then create equivalent `set__from_pydict` + // and `_to_pydict` methods via `setattr` + // /// if true, writes methods to get and set enum via json + // pub enum_as_json: bool, } diff --git a/fastsim-core/fastsim-proc-macros/src/history_vec_derive.rs b/fastsim-core/fastsim-proc-macros/src/history_vec_derive.rs index 5fd3abe1..a182404a 100644 --- a/fastsim-core/fastsim-proc-macros/src/history_vec_derive.rs +++ b/fastsim-core/fastsim-proc-macros/src/history_vec_derive.rs @@ -57,7 +57,6 @@ pub(crate) fn history_vec_derive(input: TokenStream) -> TokenStream { .parse() .unwrap(); generated.append_all(quote! { - #[derive(Clone, Debug, Serialize, Deserialize, PartialEq)] #[fastsim_api( #[pyo3(name = "len")] fn len_py(&self) -> usize { @@ -68,6 +67,7 @@ pub(crate) fn history_vec_derive(input: TokenStream) -> TokenStream { self.len() } )] + #[derive(Clone, Debug, Serialize, Deserialize, PartialEq)] #struct_doc pub struct #new_name { #vec_fields diff --git a/fastsim-core/resources/vehicles/2012_Ford_Fusion.yaml b/fastsim-core/resources/vehicles/2012_Ford_Fusion.yaml index 6d152f84..d71ead8a 100644 --- a/fastsim-core/resources/vehicles/2012_Ford_Fusion.yaml +++ b/fastsim-core/resources/vehicles/2012_Ford_Fusion.yaml @@ -13,7 +13,7 @@ pt_type: pwr_out_max_watts: 130500.0 pwr_out_max_init_watts: 21750.0 pwr_ramp_lag_seconds: 6.0 - eff_interp: + eff_interp_from_pwr_out: Interp1D: x: - 0.0 @@ -42,7 +42,6 @@ pt_type: - 0.32 - 0.3 strategy: LeftNearest - extrapolate: Error pwr_idle_fuel_watts: 6999.999999999999 save_interval: 1 mass: ~ diff --git a/fastsim-core/resources/vehicles/2016_TOYOTA_Prius_Two.yaml b/fastsim-core/resources/vehicles/2016_TOYOTA_Prius_Two.yaml index a6891492..65938571 100644 --- a/fastsim-core/resources/vehicles/2016_TOYOTA_Prius_Two.yaml +++ b/fastsim-core/resources/vehicles/2016_TOYOTA_Prius_Two.yaml @@ -8,6 +8,8 @@ pt_type: specific_energy_joules_per_kilogram: ~ pwr_out_max_watts: 100000.0 energy_capacity_joules: 2700000.0 + eff_interp: + Interp0D: 0.9848857801796105 min_soc: 0.25 max_soc: 0.95 save_interval: 1 @@ -21,7 +23,7 @@ pt_type: pwr_out_max_watts: 71000.0 pwr_out_max_init_watts: 11639.344262295082 pwr_ramp_lag_seconds: 6.1 - eff_interp: + eff_interp_from_pwr_out: Interp1D: x: - 0.0 @@ -50,34 +52,36 @@ pt_type: - 0.33 - 0.32 strategy: LeftNearest - extrapolate: Error pwr_idle_fuel_watts: 13125.0 save_interval: 1 em: - pwr_out_frac_interp: - - 0.0 - - 0.02 - - 0.04 - - 0.06 - - 0.08 - - 0.1 - - 0.2 - - 0.4 - - 0.6 - - 0.8 - - 1.0 - eff_interp: - - 0.83 - - 0.85 - - 0.87 - - 0.89 - - 0.9 - - 0.91 - - 0.93 - - 0.94 - - 0.94 - - 0.93 - - 0.92 + eff_interp_fwd: + Interp1D: + x: + - 0.0 + - 0.02 + - 0.04 + - 0.06 + - 0.08 + - 0.1 + - 0.2 + - 0.4 + - 0.6 + - 0.8 + - 1.0 + f_x: + - 0.83 + - 0.85 + - 0.87 + - 0.89 + - 0.9 + - 0.91 + - 0.93 + - 0.94 + - 0.94 + - 0.93 + - 0.92 + strategy: LeftNearest pwr_out_max_watts: 53000.0 specific_pwr_watts_per_kilogram: ~ mass_kilograms: ~ diff --git a/fastsim-core/src/air_properties.rs b/fastsim-core/src/air_properties.rs index 7ba1336c..cf5d5c71 100644 --- a/fastsim-core/src/air_properties.rs +++ b/fastsim-core/src/air_properties.rs @@ -1,6 +1,14 @@ use super::imports::*; use super::*; +lazy_static! { + static ref TE_AIR_DEFAULT: si::ThermodynamicTemperature = (22. + 273.15) * uc::KELVIN; + static ref STD_PRESSURE_DEFAULT: si::Pressure = 99_346.3 * uc::PASCAL; + // 1.2 kg/m^3 matches fastsim-2 + static ref STD_DENSITY: si::MassDensity = 1.2 * uc::KGPM3; + static ref GAS_CONSTANT: si::SpecificHeatCapacity = 287.0 * uc::J_PER_KG_K; +} + /// Returns density of air /// Source: /// Note that if `None` is passed for either argument, function evaluation should be faster @@ -23,21 +31,11 @@ pub fn get_density_air( .get::() .powf(5.256)) }; - let te_air_default = || (22. + 273.15) * uc::KELVIN; - // 99_346.3 = 101.29e3 * (287.02 / 288.08) ** 5.256 - let std_pressure_default = || 99_346.3 * uc::PASCAL; match (h, te_air) { - (None, None) => { - // 99_346.3 / 287 / 293.15 - 1.206 * uc::KGPM3 - } - (None, Some(te_air)) => std_pressure_default() / (287.0 * uc::J_PER_KG_K) / te_air, - (Some(h_val), None) => { - std_pressure_at_elev(h_val) / (287.0 * uc::J_PER_KG_K) / te_air_default() - } - (Some(h_val), Some(te_air)) => { - std_pressure_at_elev(h_val) / (287.0 * uc::J_PER_KG_K) / te_air - } + (None, None) => *STD_DENSITY, + (None, Some(te_air)) => *STD_PRESSURE_DEFAULT / *GAS_CONSTANT / te_air, + (Some(h_val), None) => std_pressure_at_elev(h_val) / *GAS_CONSTANT / *TE_AIR_DEFAULT, + (Some(h_val), Some(te_air)) => std_pressure_at_elev(h_val) / *GAS_CONSTANT / te_air, } } diff --git a/fastsim-core/src/drive_cycle.rs b/fastsim-core/src/drive_cycle.rs index 1b6e452a..aa1af2e7 100644 --- a/fastsim-core/src/drive_cycle.rs +++ b/fastsim-core/src/drive_cycle.rs @@ -45,12 +45,13 @@ pub struct Cycle { /// road charging/discharing capacity #[api(skip_get, skip_set)] pub pwr_max_chrg: Vec, + /// grade interpolator + #[api(skip_get, skip_set)] + pub grade_interp: Option, } -const ELEV_DEF_FT: f64 = 400.; -/// Returns default elevation -pub fn get_elev_def() -> si::Length { - ELEV_DEF_FT * uc::FT +lazy_static! { + static ref ELEV_DEFAULT: si::Length = 400. * uc::FT; } impl Init for Cycle { @@ -78,7 +79,7 @@ impl Init for Cycle { }; // calculate elevation from RHS integral of grade and distance - self.init_elev = self.init_elev.or_else(|| Some(get_elev_def())); + self.init_elev = self.init_elev.or_else(|| Some(*ELEV_DEFAULT)); self.elev = self .grade .iter() @@ -93,6 +94,13 @@ impl Init for Cycle { }, ) .collect(); + // println!("{:?}", self.dist); + self.grade_interp = Some(Interpolator::Interp1D(Interp1D::new( + self.dist.iter().map(|x| x.get::()).collect(), + self.grade.iter().map(|y| y.get::()).collect(), + Strategy::Linear, + Extrapolate::Error, + )?)); Ok(()) } @@ -173,7 +181,7 @@ impl SerdeAPI for Cycle { /// * `format` - The source format, any of those listed in [`ACCEPTED_BYTE_FORMATS`](`SerdeAPI::ACCEPTED_BYTE_FORMATS`) /// fn from_reader( - mut rdr: R, + rdr: &mut R, format: &str, skip_init: bool, ) -> anyhow::Result { @@ -347,7 +355,7 @@ impl Cycle { /// #[cfg(feature = "csv")] fn from_csv>(csv_str: S, skip_init: bool) -> anyhow::Result { - let mut csv_de = Self::from_reader(csv_str.as_ref().as_bytes(), "csv", skip_init)?; + let mut csv_de = Self::from_reader(&mut csv_str.as_ref().as_bytes(), "csv", skip_init)?; if !skip_init { csv_de.init()?; } @@ -409,6 +417,7 @@ mod tests { grade: (0..=2).map(|x| (x as f64 * uc::R) / 100.).collect(), elev: vec![], pwr_max_chrg: vec![], + grade_interp: Default::default(), }; cyc.init().unwrap(); cyc diff --git a/fastsim-core/src/imports.rs b/fastsim-core/src/imports.rs index 27fa19ff..c8a67d41 100644 --- a/fastsim-core/src/imports.rs +++ b/fastsim-core/src/imports.rs @@ -9,16 +9,15 @@ pub(crate) use crate::si; pub(crate) use crate::traits::*; pub(crate) use crate::uc; pub(crate) use crate::utils; +pub(crate) use crate::utils::interp::*; pub(crate) use crate::utils::{ - almost_eq, check_interp_frac_data, check_monotonicity, interp1d, interp3d, is_sorted, - Extrapolate, InterpRange, DIRECT_SET_ERR, + almost_eq, check_interp_frac_data, check_monotonicity, is_sorted, InterpRange, DIRECT_SET_ERR, }; pub(crate) use crate::utils::{Pyo3Vec2Wrapper, Pyo3Vec3Wrapper, Pyo3VecWrapper}; pub(crate) use derive_more::IsVariant; pub(crate) use eng_fmt::FormatEng; -pub(crate) use fastsim_proc_macros::{ - fastsim_api, timer, HistoryMethods, HistoryVec, SetCumulative, -}; +pub(crate) use fastsim_proc_macros::{fastsim_api, HistoryMethods, HistoryVec, SetCumulative}; +pub(crate) use lazy_static::lazy_static; pub(crate) use anyhow::{anyhow, bail, ensure, Context}; pub(crate) use duplicate::duplicate_item; @@ -32,6 +31,7 @@ pub(crate) use std::error::Error; pub(crate) use std::ffi::OsStr; pub(crate) use std::fmt; pub(crate) use std::fs::File; +pub(crate) use std::marker::PhantomData; pub(crate) use std::num::{NonZeroU16, NonZeroUsize}; pub(crate) use std::ops::{Deref, DerefMut, IndexMut, Sub}; pub(crate) use std::path::{Path, PathBuf}; diff --git a/fastsim-core/src/lib.rs b/fastsim-core/src/lib.rs index dc502c38..a06d3025 100644 --- a/fastsim-core/src/lib.rs +++ b/fastsim-core/src/lib.rs @@ -47,5 +47,7 @@ pub fn enabled_features() -> Vec { "toml".into(), #[cfg(feature = "yaml")] "yaml".into(), + #[cfg(feature = "logging")] + "logging".into(), ] } diff --git a/fastsim-core/src/macros.rs b/fastsim-core/src/macros.rs index 84232340..2587326c 100644 --- a/fastsim-core/src/macros.rs +++ b/fastsim-core/src/macros.rs @@ -1,93 +1,3 @@ -/// Implements `get_eff_max`, `set_eff_max`, `get_eff_min`, and `set_eff_min` methods -#[macro_export] -macro_rules! impl_get_set_eff_max_min { - () => { - /// Returns max value of `eff_interp` - pub fn get_eff_max(&self) -> f64 { - // since efficiency is all f64 between 0 and 1, NEG_INFINITY is safe - self.eff_interp - .iter() - .fold(f64::NEG_INFINITY, |acc, curr| acc.max(*curr)) - } - - /// Scales eff_interp by ratio of new `eff_max` per current calculated max - pub fn set_eff_max(&mut self, eff_max: f64) -> Result<(), String> { - if (0.0..=1.0).contains(&eff_max) { - let old_max = self.get_eff_max(); - self.eff_interp = self - .eff_interp - .iter() - .map(|x| x * eff_max / old_max) - .collect(); - Ok(()) - } else { - Err(format!( - "`eff_max` ({:.3}) must be between 0.0 and 1.0", - eff_max, - )) - } - } - - /// Returns min value of `eff_interp` - pub fn get_eff_min(&self) -> f64 { - // since efficiency is all f64 between 0 and 1, NEG_INFINITY is safe - self.eff_interp - .iter() - .fold(f64::INFINITY, |acc, curr| acc.min(*curr)) - } - }; -} - -#[macro_export] -macro_rules! impl_get_set_eff_range { - () => { - /// Max value of `eff_interp` minus min value of `eff_interp`. - pub fn get_eff_range(&self) -> f64 { - self.get_eff_max() - self.get_eff_min() - } - - /// Scales values of `eff_interp` without changing max such that max - min - /// is equal to new range. Will change max if needed to ensure no values are - /// less than zero. - pub fn set_eff_range(&mut self, eff_range: f64) -> Result<(), String> { - let eff_max = self.get_eff_max(); - if eff_range == 0.0 { - self.eff_interp = vec![eff_max; self.eff_interp.len()]; - Ok(()) - } else if (0.0..=1.0).contains(&eff_range) { - let old_min = self.get_eff_min(); - let old_range = self.get_eff_max() - old_min; - if old_range == 0.0 { - return Err(format!( - "`eff_range` is already zero so it cannot be modified." - )); - } - self.eff_interp = self - .eff_interp - .iter() - .map(|x| eff_max + (x - eff_max) * eff_range / old_range) - .collect(); - if self.get_eff_min() < 0.0 { - let x_neg = self.get_eff_min(); - self.eff_interp = self.eff_interp.iter().map(|x| x - x_neg).collect(); - } - if self.get_eff_max() > 1.0 { - return Err(format!( - "`eff_max` ({:.3}) must be no greater than 1.0", - self.get_eff_max() - )); - } - Ok(()) - } else { - Err(format!( - "`eff_range` ({:.3}) must be between 0.0 and 1.0", - eff_range, - )) - } - } - }; -} - #[macro_export] macro_rules! eff_test_body { ($component:ident, $eff_max:expr, $eff_min:expr, $eff_range:expr) => { diff --git a/fastsim-core/src/si.rs b/fastsim-core/src/si.rs index 4dce35d3..ff5bb267 100644 --- a/fastsim-core/src/si.rs +++ b/fastsim-core/src/si.rs @@ -23,6 +23,7 @@ pub use si::power_rate::watt_per_second; pub use si::pressure::kilopascal; pub use si::ratio::ratio; pub use si::specific_power::{kilowatt_per_kilogram, watt_per_kilogram}; +pub use si::thermodynamic_temperature::{degree_celsius, kelvin}; pub use si::time::{hour, second}; pub use si::velocity::{meter_per_second, mile_per_hour}; pub use si::volume::cubic_meter; diff --git a/fastsim-core/src/simdrive.rs b/fastsim-core/src/simdrive.rs index 2ad33dd7..5aa5dc4b 100644 --- a/fastsim-core/src/simdrive.rs +++ b/fastsim-core/src/simdrive.rs @@ -102,9 +102,9 @@ impl SimDrive { let i = self.veh.state.i; let dt = self.cyc.dt_at_i(i)?; self.veh - .set_cur_pwr_out_max(dt) + .set_curr_pwr_out_max(dt) .with_context(|| anyhow!(format_dbg!()))?; - self.set_pwr_tract_for_speed(self.cyc.speed[i], dt) + self.set_pwr_prop_for_speed(self.cyc.speed[i], dt) .with_context(|| anyhow!(format_dbg!()))?; self.set_ach_speed(self.cyc.speed[i], dt) .with_context(|| anyhow!(format_dbg!()))?; @@ -119,13 +119,13 @@ impl SimDrive { /// # Arguments /// - `speed`: prescribed or achieved speed /// - `dt`: time step size - pub fn set_pwr_tract_for_speed( + pub fn set_pwr_prop_for_speed( &mut self, speed: si::Velocity, dt: si::Time, ) -> anyhow::Result<()> { #[cfg(feature = "logging")] - log::debug!("{}: {}", format_dbg!(), "set_pwr_tract_for_speed"); + log::debug!("{}: {}", format_dbg!(), "set_pwr_prop_for_speed"); let i = self.veh.state.i; let vs = &mut self.veh.state; let speed_prev = vs.speed_ach; @@ -135,26 +135,13 @@ impl SimDrive { log::debug!("{}", format_dbg!(vs.all_curr_pwr_met)); *self.cyc.grade.get(i).with_context(|| format_dbg!())? } else { - #[cfg(feature = "logging")] - log::debug!("{}", format_dbg!(vs.all_curr_pwr_met)); uc::R - * interp1d( - &vs.dist.get::(), - &self - .cyc - .dist - .iter() - .map(|d| d.get::()) - .collect::>(), - &self - .cyc - .grade - .iter() - .map(|g| g.get::()) - .collect::>(), - utils::Extrapolate::Error, - ) - .with_context(|| anyhow!("{}\n failed to calculate grade", format_dbg!()))? + * self + .cyc + .grade_interp + .as_ref() + .with_context(|| format_dbg!("You might have somehow bypassed `init()`"))? + .interpolate(&[vs.dist.get::()])? }; let mass = self.veh.mass.with_context(|| { @@ -187,7 +174,7 @@ impl SimDrive { vs.pwr_tractive = vs.pwr_rr + vs.pwr_whl_inertia + vs.pwr_accel + vs.pwr_ascent + vs.pwr_drag; - vs.curr_pwr_met = vs.pwr_tractive <= vs.pwr_prop_pos_max; + vs.curr_pwr_met = vs.pwr_tractive <= vs.pwr_prop_fwd_max; if !vs.curr_pwr_met { // if current power demand is not met, then this becomes false for // the rest of the cycle and should not be manipulated anywhere else @@ -271,8 +258,7 @@ impl SimDrive { let t3 = drag3; let t2 = accel2 + drag2 + wheel2; let t1 = drag1 + roll1 + ascent1; - // TODO: verify final term being subtracted. Needs to be same as `self.cur_max_trans_kw_out[i]` - let t0 = (accel0 + drag0 + roll0 + ascent0 + wheel0) - vs.pwr_prop_pos_max; + let t0 = (accel0 + drag0 + roll0 + ascent0 + wheel0) - vs.pwr_prop_fwd_max; // initial guess let speed_guess = (1e-3 * uc::MPS).max(cyc_speed); @@ -281,7 +267,6 @@ impl SimDrive { let xtol = self.sim_params.ach_speed_tol; // solver gain let g = self.sim_params.ach_speed_solver_gain; - // TODO: figure out if `pwr_err_fn` should be applied as the early return criterion let pwr_err_fn = |speed_guess: si::Velocity| -> si::Power { t3 * speed_guess.powi(typenum::P3::new()) + t2 * speed_guess.powi(typenum::P2::new()) @@ -304,7 +289,7 @@ impl SimDrive { let mut new_speed_guesses = vec![new_speed_guess]; // speed achieved iteration counter let mut spd_ach_iter_counter = 1; - let mut converged = pwr_err <= uc::W * 0.; + let mut converged = pwr_err <= si::Power::ZERO; #[cfg(feature = "logging")] log::debug!( "{}\n{}", @@ -346,7 +331,7 @@ impl SimDrive { .with_context(|| format_dbg!("should have had at least one element"))? .max(0.0 * uc::MPS); } - self.set_pwr_tract_for_speed(self.veh.state.speed_ach, dt) + self.set_pwr_prop_for_speed(self.veh.state.speed_ach, dt) .with_context(|| format_dbg!())?; Ok(()) @@ -406,7 +391,7 @@ mod tests { }; sd.walk().unwrap(); assert!(sd.veh.state.i == sd.cyc.len()); - assert!(sd.veh.fc().unwrap().state.energy_fuel > uc::J * 0.); + assert!(sd.veh.fc().unwrap().state.energy_fuel > si::Energy::ZERO); } #[test] @@ -421,7 +406,7 @@ mod tests { }; sd.walk().unwrap(); assert!(sd.veh.state.i == sd.cyc.len()); - assert!(sd.veh.fc().unwrap().state.energy_fuel > uc::J * 0.); - assert!(sd.veh.res().unwrap().state.energy_out_chemical != uc::J * 0.); + assert!(sd.veh.fc().unwrap().state.energy_fuel > si::Energy::ZERO); + assert!(sd.veh.res().unwrap().state.energy_out_chemical != si::Energy::ZERO); } } diff --git a/fastsim-core/src/traits.rs b/fastsim-core/src/traits.rs index 224169b4..1b701f9a 100644 --- a/fastsim-core/src/traits.rs +++ b/fastsim-core/src/traits.rs @@ -67,7 +67,7 @@ impl Max for Vec<&f64> { pub trait Init { /// Specialized code to execute upon initialization. For any struct with fields - /// implement `Init`, this should propagate down the hierarchy. + /// that implement `Init`, this should propagate down the hierarchy. fn init(&mut self) -> anyhow::Result<()> { Ok(()) } @@ -110,7 +110,7 @@ pub trait SerdeAPI: Serialize + for<'a> Deserialize<'a> + Init { let file = crate::resources::RESOURCES_DIR .get_file(&filepath) .with_context(|| format!("File not found in resources: {filepath:?}"))?; - Self::from_reader(file.contents(), extension, skip_init) + Self::from_reader(&mut file.contents(), extension, skip_init) } /// Instantiates an object from a url. Accepts yaml and json file types @@ -128,8 +128,8 @@ pub trait SerdeAPI: Serialize + for<'a> Deserialize<'a> + Init { .and_then(|filename| Path::new(filename).extension()) .and_then(OsStr::to_str) .with_context(|| "Could not parse file format from URL: {url:?}")?; - let response = ureq::get(url.as_ref()).call()?.into_reader(); - Self::from_reader(response, format, skip_init) + let mut response = ureq::get(url.as_ref()).call()?.into_reader(); + Self::from_reader(&mut response, format, skip_init) } /// Write (serialize) an object to a file. @@ -162,14 +162,14 @@ pub trait SerdeAPI: Serialize + for<'a> Deserialize<'a> + Init { .extension() .and_then(OsStr::to_str) .with_context(|| format!("File extension could not be parsed: {filepath:?}"))?; - let file = File::open(filepath).with_context(|| { + let mut file = File::open(filepath).with_context(|| { if !filepath.exists() { format!("File not found: {filepath:?}") } else { format!("Could not open file: {filepath:?}") } })?; - Self::from_reader(file, extension, skip_init) + Self::from_reader(&mut file, extension, skip_init) } /// Write (serialize) an object into anything that implements [`std::io::Write`] @@ -208,7 +208,7 @@ pub trait SerdeAPI: Serialize + for<'a> Deserialize<'a> + Init { /// * `format` - The source format, any of those listed in [`ACCEPTED_BYTE_FORMATS`](`SerdeAPI::ACCEPTED_BYTE_FORMATS`) /// fn from_reader( - mut rdr: R, + rdr: &mut R, format: &str, skip_init: bool, ) -> anyhow::Result { diff --git a/fastsim-core/src/utils/interp/mod.rs b/fastsim-core/src/utils/interp/mod.rs index 0b34e411..7ab693e1 100644 --- a/fastsim-core/src/utils/interp/mod.rs +++ b/fastsim-core/src/utils/interp/mod.rs @@ -17,19 +17,14 @@ pub mod n; pub mod one; pub mod three; pub mod two; -pub mod wrapper; pub use n::*; -use ndarray::{IxDynImpl, OwnedRepr}; pub use one::*; pub use three::*; pub use two::*; -pub use wrapper::*; use crate::imports::*; -use std::marker::PhantomData; // used as a private field to disallow direct instantiation - // This method contains code from RouteE Compass, another NREL-developed tool // https://www.nrel.gov/transportation/route-energy-prediction-model.html // https://github.com/NREL/routee-compass/ @@ -169,7 +164,6 @@ fn find_nearest_index(arr: &[f64], target: f64) -> anyhow::Result { /// assert!(interp.interpolate(&[2.5, 2.5, 2.5]).is_err()); // out of bounds point with `Extrapolate::Error` fails /// ``` /// - #[derive(Clone, Debug, Deserialize, PartialEq, Serialize)] pub enum Interpolator { /// 0-dimensional (constant value) interpolation @@ -184,15 +178,6 @@ pub enum Interpolator { InterpND(InterpND), } -impl SerdeAPI for Interpolator {} -impl Init for Interpolator {} -impl SerdeAPI for Interp1D {} -impl Init for Interp1D {} -impl SerdeAPI for Interp2D {} -impl Init for Interp2D {} -impl SerdeAPI for Interp3D {} -impl Init for Interp3D {} - impl Interpolator { /// Interpolate at supplied point, after checking point validity. /// Length of supplied point must match interpolator dimensionality. @@ -328,9 +313,9 @@ impl Interpolator { /// Function to get x variable from enum variants pub fn x(&self) -> anyhow::Result> { match self { - Interpolator::Interp1D(interp) => Ok(interp.x.to_owned()), - Interpolator::Interp2D(interp) => Ok(interp.x.to_owned()), - Interpolator::Interp3D(interp) => Ok(interp.x.to_owned()), + Interpolator::Interp1D(interp) => Ok(interp.x.to_vec()), + Interpolator::Interp2D(interp) => Ok(interp.x.to_vec()), + Interpolator::Interp3D(interp) => Ok(interp.x.to_vec()), _ => bail!("Variant does not have `x` field."), } } @@ -340,10 +325,10 @@ impl Interpolator { /// - `new_x`: updated `x` variable to replace the current `x` variable pub fn set_x(&mut self, new_x: Vec) -> anyhow::Result<()> { match self { - Interpolator::Interp1D(interp) => interp.x = new_x, - Interpolator::Interp2D(interp) => interp.x = new_x, - Interpolator::Interp3D(interp) => interp.x = new_x, - Interpolator::InterpND(interp) => interp.grid[0] = new_x, + Interpolator::Interp1D(interp) => interp.set_x(new_x)?, + Interpolator::Interp2D(interp) => interp.set_x(new_x)?, + Interpolator::Interp3D(interp) => interp.set_x(new_x)?, + Interpolator::InterpND(interp) => interp.set_grid_x(new_x)?, _ => { bail!("Variant does not have `x` field (or a grid row 0 in the case of InterpND).") } @@ -354,7 +339,7 @@ impl Interpolator { /// Function to get f_x variable from enum variants pub fn f_x(&self) -> anyhow::Result> { match self { - Interpolator::Interp1D(interp) => Ok(interp.f_x.to_owned()), + Interpolator::Interp1D(interp) => Ok(interp.f_x.to_vec()), _ => bail!("Variant does not have `f_x` field."), } } @@ -364,7 +349,7 @@ impl Interpolator { /// - `new_f_x`: updated `f_x` variable to replace the current `f_x` variable pub fn set_f_x(&mut self, new_f_x: Vec) -> anyhow::Result<()> { match self { - Interpolator::Interp1D(interp) => interp.f_x = new_f_x, + Interpolator::Interp1D(interp) => interp.set_f_x(new_f_x)?, _ => bail!("Variant does not have `f_x` field."), } Ok(()) @@ -423,8 +408,8 @@ impl Interpolator { /// Function to get y variable from enum variants pub fn y(&self) -> anyhow::Result> { match self { - Interpolator::Interp2D(interp) => Ok(interp.y.to_owned()), - Interpolator::Interp3D(interp) => Ok(interp.y.to_owned()), + Interpolator::Interp2D(interp) => Ok(interp.y.to_vec()), + Interpolator::Interp3D(interp) => Ok(interp.y.to_vec()), _ => bail!("Variant does not have `y` field."), } } @@ -434,9 +419,9 @@ impl Interpolator { /// - `new_y`: updated `y` variable to replace the current `y` variable pub fn set_y(&mut self, new_y: Vec) -> anyhow::Result<()> { match self { - Interpolator::Interp2D(interp) => interp.y = new_y, - Interpolator::Interp3D(interp) => interp.y = new_y, - Interpolator::InterpND(interp) => interp.grid[1] = new_y, + Interpolator::Interp2D(interp) => interp.set_y(new_y)?, + Interpolator::Interp3D(interp) => interp.set_y(new_y)?, + Interpolator::InterpND(interp) => interp.set_grid_y(new_y)?, _ => { bail!("Variant does not have `y` field (or a grid row 1 (indexed from 0) in the case of InterpND).") } @@ -447,7 +432,7 @@ impl Interpolator { /// Function to get f_xy variable from enum variants pub fn f_xy(&self) -> anyhow::Result>> { match self { - Interpolator::Interp2D(interp) => Ok(interp.f_xy.to_owned()), + Interpolator::Interp2D(interp) => Ok(interp.f_xy.to_vec()), _ => bail!("Variant does not have `f_xy` field."), } } @@ -457,7 +442,7 @@ impl Interpolator { /// - `new_f_xy`: updated `f_xy` variable to replace the current `f_xy` variable pub fn set_f_xy(&mut self, new_f_xy: Vec>) -> anyhow::Result<()> { match self { - Interpolator::Interp2D(interp) => interp.f_xy = new_f_xy, + Interpolator::Interp2D(interp) => interp.set_f_xy(new_f_xy)?, _ => bail!("Variant does not have `f_xy` field."), } Ok(()) @@ -466,7 +451,7 @@ impl Interpolator { /// Function to get z variable from enum variants pub fn z(&self) -> anyhow::Result> { match self { - Interpolator::Interp3D(interp) => Ok(interp.z.to_owned()), + Interpolator::Interp3D(interp) => Ok(interp.z.to_vec()), _ => bail!("Variant does not have `z` field."), } } @@ -476,8 +461,8 @@ impl Interpolator { /// - `new_z`: updated `z` variable to replace the current `z` variable pub fn set_z(&mut self, new_z: Vec) -> anyhow::Result<()> { match self { - Interpolator::Interp3D(interp) => interp.z = new_z, - Interpolator::InterpND(interp) => interp.grid[2] = new_z, + Interpolator::Interp3D(interp) => interp.set_z(new_z)?, + Interpolator::InterpND(interp) => interp.set_grid_z(new_z)?, _ => { bail!("Variant does not have `z` field (or a grid row 2 (indexed from 0) in the case of InterpND).") } @@ -488,7 +473,7 @@ impl Interpolator { /// Function to get f_xyz variable from enum variants pub fn f_xyz(&self) -> anyhow::Result>>> { match self { - Interpolator::Interp3D(interp) => Ok(interp.f_xyz.to_owned()), + Interpolator::Interp3D(interp) => Ok(interp.f_xyz.to_vec()), _ => bail!("Variant does not have `f_xyz` field."), } } @@ -498,7 +483,7 @@ impl Interpolator { /// - `new_f_xyz`: updated `f_xyz` variable to replace the current `f_xyz` variable pub fn set_f_xyz(&mut self, new_f_xyz: Vec>>) -> anyhow::Result<()> { match self { - Interpolator::Interp3D(interp) => interp.f_xyz = new_f_xyz, + Interpolator::Interp3D(interp) => interp.set_f_xyz(new_f_xyz)?, _ => bail!("Variant does not have `f_xyz` field."), } Ok(()) @@ -507,7 +492,7 @@ impl Interpolator { /// Function to get grid variable from enum variants pub fn grid(&self) -> anyhow::Result>> { match self { - Interpolator::InterpND(interp) => Ok(interp.grid.to_owned()), + Interpolator::InterpND(interp) => Ok(interp.grid.to_vec()), _ => bail!("Variant does not have `grid` field."), } } @@ -517,14 +502,14 @@ impl Interpolator { /// - `new_grid`: updated `grid` variable to replace the current `grid` variable pub fn set_grid(&mut self, new_grid: Vec>) -> anyhow::Result<()> { match self { - Interpolator::InterpND(interp) => interp.grid = new_grid, + Interpolator::InterpND(interp) => interp.set_grid(new_grid)?, _ => bail!("Variant does not have `grid` field."), } Ok(()) } /// Function to get values variable from enum variants - pub fn values(&self) -> anyhow::Result, Dim>> { + pub fn values(&self) -> anyhow::Result> { match self { Interpolator::InterpND(interp) => Ok(interp.values.to_owned()), _ => bail!("Variant does not have `values` field."), @@ -534,18 +519,18 @@ impl Interpolator { /// Function to set values variable from enum variants /// # Arguments /// - `new_values`: updated `values` variable to replace the current `values` variable - pub fn set_values( - &mut self, - new_values: ArrayBase, Dim>, - ) -> anyhow::Result<()> { + pub fn set_values(&mut self, new_values: ArrayD) -> anyhow::Result<()> { match self { - Interpolator::InterpND(interp) => interp.values = new_values, + Interpolator::InterpND(interp) => interp.set_values(new_values)?, _ => bail!("Variant does not have `values` field."), } Ok(()) } } +impl SerdeAPI for Interpolator {} +impl Init for Interpolator {} + /// Interpolation strategy. #[derive(Clone, Debug, Deserialize, PartialEq, Serialize)] #[cfg_attr(feature = "pyo3", pyclass)] @@ -564,7 +549,7 @@ pub enum Strategy { /// /// Controls what happens if supplied interpolant point /// is outside the bounds of the interpolation grid. -#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)] +#[derive(Clone, Debug, Deserialize, PartialEq, Serialize, Default)] #[cfg_attr(feature = "pyo3", pyclass)] pub enum Extrapolate { /// If interpolant point is beyond the limits of the interpolation grid, @@ -574,10 +559,14 @@ pub enum Extrapolate { /// Restrict interpolant point to the limits of the interpolation grid, using [`f64::clamp`]. Clamp, /// Return an error when interpolant point is beyond the limits of the interpolation grid. + #[default] Error, } pub trait InterpMethods { + // TODO: maybe add `new` to `InterpMethods` + /// Validate data stored in [Self]. By design, [Self] can be instantiatated + /// only via [Self::new], which calls this method. fn validate(&self) -> anyhow::Result<()>; fn interpolate(&self, point: &[f64]) -> anyhow::Result; } diff --git a/fastsim-core/src/utils/interp/n.rs b/fastsim-core/src/utils/interp/n.rs index d4fbb4bc..eb56635d 100644 --- a/fastsim-core/src/utils/interp/n.rs +++ b/fastsim-core/src/utils/interp/n.rs @@ -6,12 +6,14 @@ use itertools::Itertools; #[derive(Clone, Debug, Deserialize, PartialEq, Serialize)] pub struct InterpND { - pub grid: Vec>, - pub values: ArrayD, - pub extrapolate: Extrapolate, + pub(super) grid: Vec>, + pub(super) values: ArrayD, pub strategy: Strategy, + #[serde(default)] + pub extrapolate: Extrapolate, + /// Phantom private field to prevent direct instantiation in other modules #[serde(skip)] - _phantom: PhantomData<()>, // phantom private field to prevent direct instantiation in other modules + _phantom: PhantomData<()>, } impl InterpND { @@ -140,8 +142,51 @@ impl InterpND { .multi_cartesian_product() .collect() } + + /// Function to set grid variable from InterpND + /// # Arguments + /// - `new_grid`: updated `grid` variable to replace the current `grid` variable + pub fn set_grid(&mut self, new_grid: Vec>) -> anyhow::Result<()> { + self.grid = new_grid; + self.validate() + } + + /// Function to set grid x variable from InterpND + /// # Arguments + /// - `new_x`: updated `grid[0]` to replace the current `grid[0]` + pub fn set_grid_x(&mut self, new_grid_x: Vec) -> anyhow::Result<()> { + self.grid[0] = new_grid_x; + self.validate() + } + + /// Function to set grid y variable from InterpND + /// # Arguments + /// - `new_y`: updated `grid[1]` to replace the current `grid[1]` + pub fn set_grid_y(&mut self, new_grid_y: Vec) -> anyhow::Result<()> { + self.grid[1] = new_grid_y; + self.validate() + } + + /// Function to set grid z variable from InterpND + /// # Arguments + /// - `new_z`: updated `grid[2]` to replace the current `grid[2]` + pub fn set_grid_z(&mut self, new_grid_z: Vec) -> anyhow::Result<()> { + self.grid[2] = new_grid_z; + self.validate() + } + + /// Function to set values variable from InterpND + /// # Arguments + /// - `new_values`: updated `values` variable to replace the current `values` variable + pub fn set_values(&mut self, new_values: ArrayD) -> anyhow::Result<()> { + self.values = new_values; + self.validate() + } } +impl SerdeAPI for InterpND {} +impl Init for InterpND {} + impl InterpMethods for InterpND { fn validate(&self) -> anyhow::Result<()> { let n = self.ndim(); @@ -165,7 +210,7 @@ impl InterpMethods for InterpND { // Check that grid points are monotonically increasing for i in 0..n { ensure!( - self.grid[i].windows(2).all(|w| w[0] < w[1]), + self.grid[i].windows(2).all(|w| w[0] <= w[1]), "Supplied `grid` coordinates must be sorted and non-repeating: dimension {i}, {:?}", self.grid[i] ); diff --git a/fastsim-core/src/utils/interp/one.rs b/fastsim-core/src/utils/interp/one.rs index 448f32d8..1b6710aa 100644 --- a/fastsim-core/src/utils/interp/one.rs +++ b/fastsim-core/src/utils/interp/one.rs @@ -4,12 +4,14 @@ use super::*; #[derive(Clone, Debug, Deserialize, PartialEq, Serialize)] pub struct Interp1D { - pub x: Vec, - pub f_x: Vec, + pub(super) x: Vec, + pub(super) f_x: Vec, pub strategy: Strategy, + #[serde(default)] pub extrapolate: Extrapolate, + /// Phantom private field to prevent direct instantiation in other modules #[serde(skip)] - _phantom: PhantomData<()>, // phantom private field to prevent direct instantiation in other modules + _phantom: PhantomData<()>, } impl Interp1D { @@ -87,8 +89,27 @@ impl Interp1D { self.f_x[lower_index + 1] }) } + + /// Function to set x variable from Interp1D + /// # Arguments + /// - `new_x`: updated `x` variable to replace the current `x` variable + pub fn set_x(&mut self, new_x: Vec) -> anyhow::Result<()> { + self.x = new_x; + self.validate() + } + + /// Function to set f_x variable from Interp1D + /// # Arguments + /// - `new_f_x`: updated `f_x` variable to replace the current `f_x` variable + pub fn set_f_x(&mut self, new_f_x: Vec) -> anyhow::Result<()> { + self.f_x = new_f_x; + self.validate() + } } +impl SerdeAPI for Interp1D {} +impl Init for Interp1D {} + impl InterpMethods for Interp1D { fn validate(&self) -> anyhow::Result<()> { let x_grid_len = self.x.len(); @@ -110,7 +131,7 @@ impl InterpMethods for Interp1D { ensure!(x_grid_len != 0, "Supplied x-coordinates cannot be empty"); // Check that grid points are monotonically increasing ensure!( - self.x.windows(2).all(|w| w[0] < w[1]), + self.x.windows(2).all(|w| w[0] <= w[1]), "Supplied x-coordinates must be sorted and non-repeating" ); // Check that grid and values are compatible shapes diff --git a/fastsim-core/src/utils/interp/three.rs b/fastsim-core/src/utils/interp/three.rs index 9d1d604d..8fe2a17c 100644 --- a/fastsim-core/src/utils/interp/three.rs +++ b/fastsim-core/src/utils/interp/three.rs @@ -4,14 +4,16 @@ use super::*; #[derive(Clone, Debug, Deserialize, PartialEq, Serialize)] pub struct Interp3D { - pub x: Vec, - pub y: Vec, - pub z: Vec, - pub f_xyz: Vec>>, + pub(super) x: Vec, + pub(super) y: Vec, + pub(super) z: Vec, + pub(super) f_xyz: Vec>>, pub strategy: Strategy, + #[serde(default)] pub extrapolate: Extrapolate, + /// Phantom private field to prevent direct instantiation in other modules #[serde(skip)] - _phantom: PhantomData<()>, // phantom private field to prevent direct instantiation in other modules + _phantom: PhantomData<()>, } impl Interp3D { @@ -63,8 +65,43 @@ impl Interp3D { // interpolate in the z-direction Ok(c0 * (1.0 - z_diff) + c1 * z_diff) } + + /// Function to set x variable from Interp3D + /// # Arguments + /// - `new_x`: updated `x` variable to replace the current `x` variable + pub fn set_x(&mut self, new_x: Vec) -> anyhow::Result<()> { + self.x = new_x; + self.validate() + } + + /// Function to set y variable from Interp3D + /// # Arguments + /// - `new_y`: updated `y` variable to replace the current `y` variable + pub fn set_y(&mut self, new_y: Vec) -> anyhow::Result<()> { + self.y = new_y; + self.validate() + } + + /// Function to set z variable from Interp3D + /// # Arguments + /// - `new_z`: updated `z` variable to replace the current `z` variable + pub fn set_z(&mut self, new_z: Vec) -> anyhow::Result<()> { + self.z = new_z; + self.validate() + } + + /// Function to set f_xyz variable from Interp3D + /// # Arguments + /// - `new_f_xyz`: updated `f_xyz` variable to replace the current `f_xyz` variable + pub fn set_f_xyz(&mut self, new_f_xyz: Vec>>) -> anyhow::Result<()> { + self.f_xyz = new_f_xyz; + self.validate() + } } +impl SerdeAPI for Interp3D {} +impl Init for Interp3D {} + impl InterpMethods for Interp3D { fn validate(&self) -> anyhow::Result<()> { let x_grid_len = self.x.len(); @@ -80,9 +117,9 @@ impl InterpMethods for Interp3D { ); // Check that grid points are monotonically increasing ensure!( - self.x.windows(2).all(|w| w[0] < w[1]) - && self.y.windows(2).all(|w| w[0] < w[1]) - && self.z.windows(2).all(|w| w[0] < w[1]), + self.x.windows(2).all(|w| w[0] <= w[1]) + && self.y.windows(2).all(|w| w[0] <= w[1]) + && self.z.windows(2).all(|w| w[0] <= w[1]), "Supplied coordinates must be sorted and non-repeating" ); // Check that grid and values are compatible shapes diff --git a/fastsim-core/src/utils/interp/two.rs b/fastsim-core/src/utils/interp/two.rs index efead2be..12bec1b3 100644 --- a/fastsim-core/src/utils/interp/two.rs +++ b/fastsim-core/src/utils/interp/two.rs @@ -4,13 +4,15 @@ use super::*; #[derive(Clone, Debug, Deserialize, PartialEq, Serialize)] pub struct Interp2D { - pub x: Vec, - pub y: Vec, - pub f_xy: Vec>, + pub(super) x: Vec, + pub(super) y: Vec, + pub(super) f_xy: Vec>, pub strategy: Strategy, + #[serde(default)] pub extrapolate: Extrapolate, + /// Phantom private field to prevent direct instantiation in other modules #[serde(skip)] - _phantom: PhantomData<()>, // phantom private field to prevent direct instantiation in other modules + _phantom: PhantomData<()>, } impl Interp2D { @@ -50,8 +52,35 @@ impl Interp2D { // interpolate in the y-direction Ok(c0 * (1.0 - y_diff) + c1 * y_diff) } + + /// Function to set x variable from Interp2D + /// # Arguments + /// - `new_x`: updated `x` variable to replace the current `x` variable + pub fn set_x(&mut self, new_x: Vec) -> anyhow::Result<()> { + self.x = new_x; + self.validate() + } + + /// Function to set y variable from Interp2D + /// # Arguments + /// - `new_y`: updated `y` variable to replace the current `y` variable + pub fn set_y(&mut self, new_y: Vec) -> anyhow::Result<()> { + self.y = new_y; + self.validate() + } + + /// Function to set f_xy variable from Interp2D + /// # Arguments + /// - `new_f_xy`: updated `f_xy` variable to replace the current `f_xy` variable + pub fn set_f_xy(&mut self, new_f_xy: Vec>) -> anyhow::Result<()> { + self.f_xy = new_f_xy; + self.validate() + } } +impl SerdeAPI for Interp2D {} +impl Init for Interp2D {} + impl InterpMethods for Interp2D { fn validate(&self) -> anyhow::Result<()> { let x_grid_len = self.x.len(); @@ -66,7 +95,7 @@ impl InterpMethods for Interp2D { ); // Check that grid points are monotonically increasing ensure!( - self.x.windows(2).all(|w| w[0] < w[1]) && self.y.windows(2).all(|w| w[0] < w[1]), + self.x.windows(2).all(|w| w[0] <= w[1]) && self.y.windows(2).all(|w| w[0] <= w[1]), "Supplied coordinates must be sorted and non-repeating" ); // Check that grid and values are compatible shapes diff --git a/fastsim-core/src/utils/interp/wrapper.rs b/fastsim-core/src/utils/interp/wrapper.rs index 245b7d41..50af7543 100644 --- a/fastsim-core/src/utils/interp/wrapper.rs +++ b/fastsim-core/src/utils/interp/wrapper.rs @@ -169,6 +169,5 @@ impl InterpolatorWrapper { } } -impl Init for InterpolatorWrapper {} - impl SerdeAPI for InterpolatorWrapper {} +impl Init for InterpolatorWrapper {} diff --git a/fastsim-core/src/utils/mod.rs b/fastsim-core/src/utils/mod.rs index 98e1403b..05ef4a54 100644 --- a/fastsim-core/src/utils/mod.rs +++ b/fastsim-core/src/utils/mod.rs @@ -1,5 +1,4 @@ use crate::imports::*; -use lazy_static::lazy_static; use paste::paste; use regex::Regex; @@ -48,7 +47,8 @@ pub(crate) fn download_file, P: AsRef>( Ok(()) } -/// helper function to find where a query falls on an axis of discrete values; +#[allow(unused)] +/// Helper function to find where a query falls on an axis of discrete values; /// NOTE: this assumes the axis array is sorted with values ascending and that there are no repeating values! fn find_interp_indices(query: &f64, axis: &[f64]) -> anyhow::Result<(usize, usize)> { let axis_size = axis.len(); @@ -77,6 +77,7 @@ fn find_interp_indices(query: &f64, axis: &[f64]) -> anyhow::Result<(usize, usiz } } +#[allow(unused)] /// Helper function to compute the difference between a value and a set of bounds fn compute_interp_diff(value: &f64, lower: &f64, upper: &f64) -> f64 { if lower == upper { @@ -86,124 +87,9 @@ fn compute_interp_diff(value: &f64, lower: &f64, upper: &f64) -> f64 { } } -/// Trilinear interpolation over a structured grid; -/// NOTE: this could be generalized to compute a linear interpolation in N dimensions -/// NOTE: this function assumes the each axis on the grid is sorted and that there -/// are no repeating values on each axis -pub fn interp3d( - point: &[f64; 3], - grid: &[Vec; 3], - values: &[Vec>], -) -> anyhow::Result { - let x = point[0]; - let y = point[1]; - let z = point[2]; - - let x_points = &grid[0]; - let y_points = &grid[1]; - let z_points = &grid[2]; - - let (xi0, xi1) = find_interp_indices(&x, x_points).with_context(|| anyhow!(format_dbg!()))?; - let (yi0, yi1) = find_interp_indices(&y, y_points).with_context(|| anyhow!(format_dbg!()))?; - let (zi0, zi1) = find_interp_indices(&z, z_points).with_context(|| anyhow!(format_dbg!()))?; - - let xd = compute_interp_diff(&x, &x_points[xi0], &x_points[xi1]); - let yd = compute_interp_diff(&x, &x_points[xi0], &x_points[xi1]); - let zd = compute_interp_diff(&x, &x_points[xi0], &x_points[xi1]); - - let c000 = values[xi0][yi0][zi0]; - let c100 = values[xi1][yi0][zi0]; - let c001 = values[xi0][yi0][zi1]; - let c101 = values[xi1][yi0][zi1]; - let c010 = values[xi0][yi1][zi0]; - let c110 = values[xi1][yi1][zi0]; - let c011 = values[xi0][yi1][zi1]; - let c111 = values[xi1][yi1][zi1]; - - let c00 = c000 * (1.0 - xd) + c100 * xd; - let c01 = c001 * (1.0 - xd) + c101 * xd; - let c10 = c010 * (1.0 - xd) + c110 * xd; - let c11 = c011 * (1.0 - xd) + c111 * xd; - - let c0 = c00 * (1.0 - yd) + c10 * yd; - let c1 = c01 * (1.0 - yd) + c11 * yd; - - let c = c0 * (1.0 - yd) + c1 * zd; - - Ok(c) -} - -#[derive(Clone, Debug, Default, Deserialize, Serialize, PartialEq)] -pub enum Extrapolate { - /// allow extrapolation - Yes, - /// don't allow extrapolation but return result from nearest x-data point - #[default] - No, - /// return an error on attempted extrapolation - Error, -} - impl SerdeAPI for Extrapolate {} impl Init for Extrapolate {} -/// interpolation algorithm from -/// # Arguments: -/// x : value at which to interpolate -pub fn interp1d( - x: &f64, - x_data: &[f64], - y_data: &[f64], - extrapolate: Extrapolate, -) -> anyhow::Result { - let y_first = y_data - .first() - .with_context(|| anyhow!("Unable to extract first element"))?; - if y_data.iter().all(|y| y == y_first) { - // return first if all data is equal to first - Ok(*y_first) - } else { - let size = x_data.len(); - - let mut i = 0; - if x >= &x_data[size - 2] { - i = size - 2; - } else { - while i < x_data.len() - 2 && x > &x_data[i + 1] { - i += 1; - } - } - let xl = &x_data[i]; - let mut yl = &y_data[i]; - let xr = &x_data[i + 1]; - let mut yr = &y_data[i + 1]; - match extrapolate { - Extrapolate::No => { - if x < xl { - yr = yl; - } - if x > xr { - yl = yr; - } - } - Extrapolate::Error => { - if x < xl || x > xr { - bail!( - "{}\nAttempted extrapolation\n`x_data` first and last: ({}, {})\n`x` input: {}", - format_dbg!(), - xl, - xr, - x - ); - } - } - _ => {} - } - let dydx = (yr - yl) / (xr - xl); - Ok(yl + dydx * (x - xl)) - } -} - /// Returns absolute value of `x_val` pub fn abs_checked_x_val(x_val: f64, x_data: &[f64]) -> anyhow::Result { if *x_data @@ -408,162 +294,6 @@ pub fn check_monotonicity(data: &[f64]) -> anyhow::Result<()> { #[cfg(test)] mod tests { use super::*; - - #[test] - fn test_interp3d() { - let point = [0.5, 0.5, 0.5]; - let grid = [vec![0.0, 1.0], vec![0.0, 1.0], vec![0.0, 1.0]]; - let values = vec![ - vec![vec![0.0, 0.0], vec![1.0, 1.0]], - vec![vec![0.0, 0.0], vec![1.0, 1.0]], - ]; - match interp3d(&point, &grid, &values) { - Ok(i) => assert!(i == 0.5), - Err(e) => panic!("test failed with: {e}"), - }; - } - - #[test] - fn test_interp3d_offset() { - let point = [0.75, 0.25, 0.5]; - let grid = [vec![0.0, 1.0], vec![0.0, 1.0], vec![0.0, 1.0]]; - let values = vec![ - vec![vec![0.0, 0.0], vec![1.0, 1.0]], - vec![vec![0.0, 0.0], vec![1.0, 1.0]], - ]; - match interp3d(&point, &grid, &values) { - Ok(i) => assert!(i == 0.75), - Err(e) => panic!("test failed with: {e}"), - }; - } - - #[test] - fn test_interp3d_exact_value_lower() { - let point = [0.0, 0.0, 0.0]; - let grid = [vec![0.0, 1.0], vec![0.0, 1.0], vec![0.0, 1.0]]; - let values = vec![ - vec![vec![0.0, 0.0], vec![1.0, 1.0]], - vec![vec![0.0, 0.0], vec![1.0, 1.0]], - ]; - match interp3d(&point, &grid, &values) { - Ok(i) => assert!(i == 0.0), - Err(e) => panic!("test failed with: {e}"), - }; - } - - #[test] - fn test_interp3d_below_value_lower() { - let point = [-1.0, -1.0, -1.0]; - let grid = [vec![0.0, 1.0], vec![0.0, 1.0], vec![0.0, 1.0]]; - let values = vec![ - vec![vec![0.0, 0.0], vec![1.0, 1.0]], - vec![vec![0.0, 0.0], vec![1.0, 1.0]], - ]; - match interp3d(&point, &grid, &values) { - Ok(i) => assert!(i == 0.0), - Err(e) => panic!("test failed with: {e}"), - }; - } - - #[test] - fn test_interp3d_above_value_upper() { - let point = [2.0, 2.0, 2.0]; - let grid = [vec![0.0, 1.0], vec![0.0, 1.0], vec![0.0, 1.0]]; - let values = vec![ - vec![vec![0.0, 0.0], vec![1.0, 1.0]], - vec![vec![0.0, 0.0], vec![1.0, 1.0]], - ]; - match interp3d(&point, &grid, &values) { - Ok(i) => assert!(i == 1.0), - Err(e) => panic!("test failed with: {e}"), - }; - } - - #[test] - fn test_interp3d_exact_value_upper() { - let point = [1.0, 1.0, 1.0]; - let grid = [vec![0.0, 1.0], vec![0.0, 1.0], vec![0.0, 1.0]]; - let values = vec![ - vec![vec![0.0, 0.0], vec![1.0, 1.0]], - vec![vec![0.0, 0.0], vec![1.0, 1.0]], - ]; - match interp3d(&point, &grid, &values) { - Ok(i) => assert!(i == 1.0), - Err(e) => panic!("test failed with: {e}"), - }; - } - - // interp1d - #[test] - fn test_interp1d_above_value_upper() { - assert_eq!( - interp1d(&2.0, &[0.0, 1.0], &[0.0, 1.0], Extrapolate::Yes).unwrap(), - 2.0 - ); - assert_eq!( - interp1d(&2.0, &[0.0, 1.0], &[0.0, 1.0], Extrapolate::No).unwrap(), - 1.0 - ); - } - - #[test] - fn test_interp1d_exact_value_upper() { - assert_eq!( - interp1d(&1.0, &[0.0, 1.0], &[0.0, 1.0], Extrapolate::Yes).unwrap(), - 1.0 - ); - assert_eq!( - interp1d(&1.0, &[0.0, 1.0], &[0.0, 1.0], Extrapolate::No).unwrap(), - 1.0 - ); - } - - #[test] - fn test_interp1d_exact_value_lower() { - assert_eq!( - interp1d(&0.0, &[0.0, 1.0], &[0.0, 1.0], Extrapolate::Yes).unwrap(), - 0.0 - ); - assert_eq!( - interp1d(&0.0, &[0.0, 1.0], &[0.0, 1.0], Extrapolate::No).unwrap(), - 0.0 - ); - } - #[test] - fn test_interp1d_below_value_lower() { - assert_eq!( - interp1d(&-1.0, &[0.0, 1.0], &[0.0, 1.0], Extrapolate::Yes).unwrap(), - -1.0 - ); - assert_eq!( - interp1d(&-1.0, &[0.0, 1.0], &[0.0, 1.0], Extrapolate::No).unwrap(), - 0.0 - ); - } - #[test] - fn test_interp1d_inside_range() { - assert_eq!( - interp1d(&0.5, &[0.0, 1.0], &[0.0, 1.0], Extrapolate::Yes).unwrap(), - 0.5 - ); - assert_eq!( - interp1d(&0.5, &[0.0, 1.0], &[0.0, 1.0], Extrapolate::No).unwrap(), - 0.5 - ); - } - - #[test] - fn test_interp1d_with_duplicate_y_data() { - assert_eq!( - interp1d(&0.5, &[0.0, 1.0], &[1.0, 1.0], Extrapolate::Yes).unwrap(), - 1.0 - ); - assert_eq!( - interp1d(&0.5, &[0.0, 1.0], &[1.0, 1.0], Extrapolate::No).unwrap(), - 1.0 - ); - } - #[test] fn test_linspace() { assert_eq!(Vec::linspace(0.0, 1.0, 3), vec![0.0, 0.5, 1.0]); diff --git a/fastsim-core/src/vehicle/bev.rs b/fastsim-core/src/vehicle/bev.rs index 0d6d0ea0..8f969033 100644 --- a/fastsim-core/src/vehicle/bev.rs +++ b/fastsim-core/src/vehicle/bev.rs @@ -114,7 +114,6 @@ impl Powertrain for BatteryElectricVehicle { fn solve( &mut self, pwr_out_req: si::Power, - pwr_aux: si::Power, _veh_state: &VehicleState, _enabled: bool, dt: si::Time, @@ -127,17 +126,18 @@ impl Powertrain for BatteryElectricVehicle { if self.em.state.pwr_elec_prop_in > si::Power::ZERO { // positive traction self.res - .solve(pwr_out_req_from_res, pwr_aux, dt) + .solve(pwr_out_req_from_res, dt) .with_context(|| anyhow!(format_dbg!()))?; } else { // negative traction (should this be different from positive traction here?) self.res .solve( self.em.state.pwr_elec_prop_in, - pwr_aux - // whatever power is available from regen plus normal - .min(self.res.state.pwr_prop_max - self.em.state.pwr_elec_prop_in) - .max(si::Power::ZERO), + // TODO: try to figure out what this was doing and put it in the right place + // pwr_aux + // // whatever power is available from regen plus normal + // .min(self.res.state.pwr_prop_max - self.em.state.pwr_elec_prop_in) + // .max(si::Power::ZERO), dt, ) .with_context(|| anyhow!(format_dbg!()))?; @@ -145,14 +145,14 @@ impl Powertrain for BatteryElectricVehicle { Ok(()) } - fn get_cur_pwr_prop_out_max(&self) -> anyhow::Result<(si::Power, si::Power)> { + fn get_curr_pwr_prop_out_max(&self) -> anyhow::Result<(si::Power, si::Power)> { Ok(( self.em.state.pwr_mech_fwd_out_max, self.em.state.pwr_mech_bwd_out_max, )) } - fn set_cur_pwr_prop_out_max( + fn set_curr_pwr_prop_out_max( &mut self, _pwr_aux: si::Power, _dt: si::Time, diff --git a/fastsim-core/src/vehicle/conv.rs b/fastsim-core/src/vehicle/conv.rs index 3018d4a8..20bce6dc 100644 --- a/fastsim-core/src/vehicle/conv.rs +++ b/fastsim-core/src/vehicle/conv.rs @@ -31,37 +31,43 @@ impl SaveInterval for ConventionalVehicle { } impl Powertrain for Box { - fn set_cur_pwr_prop_out_max(&mut self, pwr_aux: si::Power, dt: si::Time) -> anyhow::Result<()> { + fn set_curr_pwr_prop_out_max( + &mut self, + pwr_aux: si::Power, + dt: si::Time, + ) -> anyhow::Result<()> { // TODO: account for transmission efficiency in here self.fc - .set_cur_pwr_tract_out_max(pwr_aux / self.alt_eff, dt) + .set_curr_pwr_out_max(dt) + .with_context(|| anyhow!(format_dbg!()))?; + self.fc + .set_curr_pwr_prop_max(pwr_aux / self.alt_eff) .with_context(|| anyhow!(format_dbg!()))?; Ok(()) } - fn get_cur_pwr_prop_out_max(&self) -> anyhow::Result<(si::Power, si::Power)> { + fn get_curr_pwr_prop_out_max(&self) -> anyhow::Result<(si::Power, si::Power)> { Ok((self.fc.state.pwr_prop_max, 0. * uc::W)) } fn solve( &mut self, pwr_out_req: si::Power, - pwr_aux: si::Power, _veh_state: &VehicleState, _enabled: bool, dt: si::Time, ) -> anyhow::Result<()> { // only positive power can come from powertrain. Revisit this if engine braking model is needed. - let pwr_out_req = pwr_out_req.max(uc::W * 0.0); + let pwr_out_req = pwr_out_req.max(si::Power::ZERO); let enabled = true; // TODO: replace with a stop/start model self.fc - .solve(pwr_out_req, pwr_aux, enabled, dt) + .solve(pwr_out_req, enabled, dt) .with_context(|| anyhow!(format_dbg!()))?; Ok(()) } fn pwr_regen(&self) -> si::Power { - uc::W * 0. + si::Power::ZERO } } diff --git a/fastsim-core/src/vehicle/hev.rs b/fastsim-core/src/vehicle/hev.rs index cfcb6627..570a0ce8 100644 --- a/fastsim-core/src/vehicle/hev.rs +++ b/fastsim-core/src/vehicle/hev.rs @@ -14,10 +14,13 @@ pub struct HybridElectricVehicle { #[has_state] pub em: ElectricMachine, /// control strategy for distributing power demand between `fc` and `res` + #[serde(default)] + pub pt_cntrl: HEVPowertrainControls, + /// control strategy for distributing aux power demand between `fc` and `res` + #[serde(default)] + pub aux_cntrl: HEVAuxControls, /// hybrid powertrain mass - pub hev_controls: HEVControls, pub(crate) mass: Option, - // TODO: add enum for controling fraction of aux pwr handled by battery vs engine // TODO: add enum for controling fraction of tractive pwr handled by battery vs engine -- there // might be many ways we'd want to do this, especially since there will be thermal models involved } @@ -43,13 +46,39 @@ impl Init for HybridElectricVehicle { } impl Powertrain for Box { - fn set_cur_pwr_prop_out_max(&mut self, pwr_aux: si::Power, dt: si::Time) -> anyhow::Result<()> { + fn set_curr_pwr_prop_out_max( + &mut self, + pwr_aux: si::Power, + dt: si::Time, + ) -> anyhow::Result<()> { // TODO: account for transmission efficiency in here + self.fc + .set_curr_pwr_out_max(dt) + .with_context(|| anyhow!(format_dbg!()))?; self.res - .set_cur_pwr_out_max(pwr_aux, None, None) + .set_curr_pwr_out_max(None, None) + .with_context(|| anyhow!(format_dbg!()))?; + let (pwr_aux_res, pwr_aux_fc) = { + match self.aux_cntrl { + HEVAuxControls::AuxOnResPriority => { + if pwr_aux <= self.res.state.pwr_disch_max { + (pwr_aux, si::Power::ZERO) + } else { + (si::Power::ZERO, pwr_aux) + } + } + HEVAuxControls::AuxOnFcPriority => (si::Power::ZERO, pwr_aux), + } + }; + self.fc + .set_curr_pwr_prop_max(pwr_aux_fc) + .with_context(|| anyhow!(format_dbg!()))?; + self.res + .set_curr_pwr_prop_max(pwr_aux_res) .with_context(|| anyhow!(format_dbg!()))?; self.em - .set_cur_pwr_prop_out_max( + .set_curr_pwr_prop_out_max( + // TODO: add means of controlling whether fc can provide power to em and also how much self.res.state.pwr_prop_max, self.res.state.pwr_regen_max, dt, @@ -58,7 +87,7 @@ impl Powertrain for Box { Ok(()) } - fn get_cur_pwr_prop_out_max(&self) -> anyhow::Result<(si::Power, si::Power)> { + fn get_curr_pwr_prop_out_max(&self) -> anyhow::Result<(si::Power, si::Power)> { Ok(( self.em.state.pwr_mech_fwd_out_max + self.fc.state.pwr_prop_max, self.em.state.pwr_mech_bwd_out_max, @@ -68,22 +97,27 @@ impl Powertrain for Box { fn solve( &mut self, pwr_out_req: si::Power, - pwr_aux: si::Power, _veh_state: &VehicleState, _enabled: bool, dt: si::Time, ) -> anyhow::Result<()> { let (fc_pwr_out_req, em_pwr_out_req) = - self.hev_controls + self.pt_cntrl .get_pwr_fc_and_em(pwr_out_req, &self.fc.state, &self.em.state)?; + // TODO: replace with a stop/start model + // TODO: figure out fancier way to handle apportionment of `pwr_aux` between `fc` and `res` + let enabled = true; - let enabled = true; // TODO: replace with a stop/start model - // TODO: figure out fancier way to handle apportionment of `pwr_aux` between `fc` and `res` self.fc - .solve(fc_pwr_out_req, pwr_aux, enabled, dt) - .with_context(|| anyhow!(format_dbg!()))?; - let res_pwr_out_req = self.em.get_pwr_in_req(em_pwr_out_req, dt)?; - self.res.solve(res_pwr_out_req, pwr_aux, dt)?; + .solve(fc_pwr_out_req, enabled, dt) + .with_context(|| format_dbg!())?; + let res_pwr_out_req = self + .em + .get_pwr_in_req(em_pwr_out_req, dt) + .with_context(|| format_dbg!())?; + self.res + .solve(res_pwr_out_req, dt) + .with_context(|| format_dbg!())?; Ok(()) } @@ -178,54 +212,56 @@ impl Mass for HybridElectricVehicle { } } -#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)] -pub enum HEVControls { +#[derive(Clone, Debug, PartialEq, Deserialize, Serialize, Default)] +pub enum HEVAuxControls { + /// If feasible, use [ReversibleEnergyStorage] to handle aux power demand + #[default] + AuxOnResPriority, + /// If feasible, use [FuelConverter] to handle aux power demand + AuxOnFcPriority, +} + +#[derive(Clone, Debug, PartialEq, Deserialize, Serialize, Default)] +pub enum HEVPowertrainControls { /// Controls that attempt to exactly match fastsim-2 Fastsim2, /// Purely greedy controls that favor charging or discharging the /// battery as much as possible. + #[default] RESGreedy, // TODO: add `SpeedAware` to enable buffers similar to fastsim-2 but without // the feature from fastsim-2 that forces the fc to be greedily meet power demand // when it's on } -impl HEVControls { +impl HEVPowertrainControls { fn get_pwr_fc_and_em( &self, pwr_out_req: si::Power, fc_state: &FuelConverterState, em_state: &ElectricMachineState, ) -> anyhow::Result<(si::Power, si::Power)> { - if pwr_out_req >= uc::W * 0. { + if pwr_out_req >= si::Power::ZERO { // positive net power out of the powertrain match self { Self::Fastsim2 => { - todo!() + bail!("{}\nnot yet implemented!", format_dbg!()) } Self::RESGreedy => { - // Use ElectricMachine greedily until its max then draw - // remaining power from FuelConverter - // Ok(if pwr_out_req <= em_state.pwr_prop_max { - // let fc_pwr = 0.; - // let em_pwr = pwr_out_req - // (fc_pwr, em_pwr) - // } else { - // let fc_pwr = pwr_out_req - fc_state.pwr_prop_max.max(pwr_out_req); - // let em_pwr = em_state.pwr_prop_max; - // (fc_pwr, em_pwr) - // }) - let em_pwr = pwr_out_req - // cannot exceed ElectricMachine max output power - .min(em_state.pwr_mech_fwd_out_max); + // cannot exceed ElectricMachine max output power + let em_pwr = pwr_out_req.min(em_state.pwr_mech_fwd_out_max); let fc_pwr = pwr_out_req - em_pwr; - ensure!(fc_pwr >= uc::W * 0., format_dbg!(fc_pwr >= uc::W * 0.)); ensure!( - pwr_out_req <= fc_state.pwr_prop_max + em_state.pwr_mech_fwd_out_max, - format_dbg!( - pwr_out_req <= fc_state.pwr_prop_max + em_state.pwr_mech_fwd_out_max - ) + fc_pwr >= si::Power::ZERO, + format_dbg!(fc_pwr >= si::Power::ZERO) + ); + ensure!( + pwr_out_req <= em_state.pwr_mech_fwd_out_max + fc_state.pwr_prop_max, + "{}\n`pwr_out_req`: {} kW\n`em_state.pwr_mech_fwd_out_max`: {} kW", + format_dbg!(pwr_out_req <= em_state.pwr_mech_fwd_out_max), + pwr_out_req.get::(), + em_state.pwr_mech_fwd_out_max.get::() ); Ok((fc_pwr, em_pwr)) @@ -235,7 +271,7 @@ impl HEVControls { // negative net power out of the powertrain -- i.e. positive net power _into_ powertrain match self { Self::Fastsim2 => { - todo!() + bail!("{}\nnot yet implemented!", format_dbg!()) } Self::RESGreedy => { // if `em_pwr` is less than magnitude of `pwr_out_req`, friction brakes can handle excess diff --git a/fastsim-core/src/vehicle/mod.rs b/fastsim-core/src/vehicle/mod.rs index b9c3ffdb..6fcdcff1 100644 --- a/fastsim-core/src/vehicle/mod.rs +++ b/fastsim-core/src/vehicle/mod.rs @@ -19,10 +19,6 @@ pub mod powertrain_type; pub mod traits; pub mod vehicle_model; -#[cfg(test)] -/// Module containing tests for consists. -pub mod tests; - pub use bev::BatteryElectricVehicle; pub use chassis::Chassis; pub use conv::ConventionalVehicle; diff --git a/fastsim-core/src/vehicle/powertrain/electric_machine.rs b/fastsim-core/src/vehicle/powertrain/electric_machine.rs index 4b4d6b6c..041369d8 100644 --- a/fastsim-core/src/vehicle/powertrain/electric_machine.rs +++ b/fastsim-core/src/vehicle/powertrain/electric_machine.rs @@ -58,22 +58,25 @@ use crate::utils::abs_checked_x_val; /// Struct for modeling electric machines. This lumps performance and efficiency of motor and power /// electronics. pub struct ElectricMachine { - #[serde(default)] - #[serde(skip_serializing_if = "EqDefault::eq_default")] - /// struct for tracking current state - pub state: ElectricMachineState, /// Shaft output power fraction array at which efficiencies are evaluated. /// This can range from 0 to 1 or -1 to 1, dependending on whether the efficiency is /// directionally symmetrical. - pub pwr_out_frac_interp: Vec, - #[api(skip_set)] + // /// this is x-data that will how be in eff_interp_fwd + // pub pwr_out_frac_interp: Vec, + #[api(skip_set, skip_get)] /// Efficiency array corresponding to [Self::pwr_out_frac_interp] and [Self::pwr_in_frac_interp] - pub eff_interp: Vec, + /// eff_interp_fwd and eff_interp_bwd have the same f_x but different x + /// note that the Extrapolate field of this variable is changed in get_pwr_in_req() + pub eff_interp_fwd: utils::interp::Interpolator, + #[serde(skip)] + #[api(skip_set, skip_get)] + /// if it is not provided, will be set during init + /// note that the Extrapolate field of this variable is changed in set_cur_pwr_prop_out_max() + pub eff_interp_at_max_input: Option, /// Electrical input power fraction array at which efficiencies are evaluated. /// Calculated during runtime if not provided. - #[serde(skip)] - #[api(skip_set)] - pub pwr_in_frac_interp: Vec, + // /// this will disappear and instead be in eff_interp_bwd + // pub pwr_in_frac_interp: Vec, /// ElectricMachine maximum output power \[W\] pub pwr_out_max: si::Power, /// ElectricMachine specific power @@ -87,6 +90,10 @@ pub struct ElectricMachine { /// Time step interval between saves. 1 is a good option. If None, no saving occurs. #[serde(skip_serializing_if = "Option::is_none")] pub save_interval: Option, + /// struct for tracking current state + #[serde(default)] + #[serde(skip_serializing_if = "EqDefault::eq_default")] + pub state: ElectricMachineState, /// Custom vector of [Self::state] #[serde(default)] #[serde(skip_serializing_if = "ElectricMachineStateHistoryVec::is_empty")] @@ -98,82 +105,96 @@ impl ElectricMachine { /// this component/system can produce, accounting for any aux-related power /// required. /// # Arguments - /// - `pwr_in_fwd_max`: positive-propulsion-related power available to this - /// component. Positive values indicate that the upstream component can supply - /// positive tractive power. - /// - `pwr_in_bwd_max`: negative-propulsion-related power available to this - /// component. Zero means no power can be sent to upstream compnents and positive - /// values indicate upstream components can absorb energy. - /// - `_dt`: time step size - pub fn set_cur_pwr_prop_out_max( + /// - `pwr_in_fwd_lim`: positive-propulsion-related power available to this + /// component. Positive values indicate that the upstream component can supply + /// positive tractive power. + /// - `pwr_in_bwd_lim`: negative-propulsion-related power available to this + /// component. Zero means no power can be sent to upstream compnents and positive + /// values indicate upstream components can absorb energy. + /// - `pwr_aux`: aux-related power required from this component + /// - `dt`: time step size + pub fn set_curr_pwr_prop_out_max( &mut self, - pwr_in_fwd_max: si::Power, - pwr_in_bwd_max: si::Power, + pwr_in_fwd_lim: si::Power, + pwr_in_bwd_lim: si::Power, _dt: si::Time, ) -> anyhow::Result<()> { ensure!( - pwr_in_fwd_max >= uc::W * 0., + pwr_in_fwd_lim >= si::Power::ZERO, "`{}` ({} W) must be greater than or equal to zero for `{}`", - stringify!(pwr_in_fwd_max), - pwr_in_fwd_max.get::().format_eng(None), - stringify!(ElectricMachine::get_cur_pwr_tract_out_max) + stringify!(pwr_in_fwd_lim), + pwr_in_fwd_lim.get::().format_eng(None), + stringify!(ElectricMachine::get_curr_pwr_prop_out_max) ); ensure!( - pwr_in_bwd_max >= uc::W * 0., + pwr_in_bwd_lim >= si::Power::ZERO, "`{}` ({} W) must be greater than or equal to zero for `{}`", - stringify!(pwr_in_bwd_max), - pwr_in_bwd_max.get::().format_eng(None), - stringify!(ElectricMachine::get_cur_pwr_tract_out_max) + stringify!(pwr_in_bwd_lim), + pwr_in_bwd_lim.get::().format_eng(None), + stringify!(ElectricMachine::get_curr_pwr_prop_out_max) ); - if self.pwr_in_frac_interp.is_empty() { - self.set_pwr_in_frac_interp() - .with_context(|| format_dbg!())?; - } - let eff_pos = uc::R - * interp1d( - &abs_checked_x_val( - (pwr_in_fwd_max / self.pwr_out_max).get::(), - &self.pwr_in_frac_interp, - )?, - &self.pwr_in_frac_interp, - &self.eff_interp, - // Extrapolation does not trigger error because `self.pwr_out_max` is limiting regardless - Extrapolate::No, - ) - .with_context(|| { - anyhow!( - "{}\n failed to calculate {}", - format_dbg!(), - stringify!(eff_pos) - ) - })?; - // TODO: scrutinize this variable assignment - let eff_neg = uc::R - * interp1d( - &abs_checked_x_val( - (pwr_in_bwd_max / self.pwr_out_max).get::(), - &self.pwr_in_frac_interp, - )?, - &self.pwr_in_frac_interp, - &self.eff_interp, - // Extrapolation does not trigger error because `self.pwr_out_max` is limiting regardless - Extrapolate::No, - ) + // ensuring Extrapolate is Clamp in preparation for calculating eff_pos + + self.eff_interp_at_max_input + .as_mut() .with_context(|| { - anyhow!( - "{}\n failed to calculate {}", - format_dbg!(), - stringify!(eff_neg) - ) - })?; + "eff_interp_bwd is None, which should never be the case at this point." + })? + .set_extrapolate(Extrapolate::Clamp)?; + + // TODO: make sure `fwd` and `bwd` are clearly documented somewhere + self.state.eff_fwd_at_max_input = uc::R + * self + .eff_interp_at_max_input + .as_ref() + .map(|interpolator| { + interpolator.interpolate(&[abs_checked_x_val( + (pwr_in_fwd_lim / self.pwr_out_max).get::(), + &interpolator.x()?, + )?]) + }) + .ok_or(anyhow!( + "eff_interp_bwd is None, which should never be the case at this point." + ))? + .with_context(|| { + anyhow!( + "{}\n failed to calculate {}", + format_dbg!(), + stringify!(eff_pos) + ) + })?; + self.state.eff_bwd_at_max_input = uc::R + * self + .eff_interp_at_max_input + .as_ref() + .map(|interpolator| { + interpolator.interpolate(&[abs_checked_x_val( + (pwr_in_bwd_lim / self.pwr_out_max).get::(), + &interpolator.x()?, + )?]) + }) + .ok_or(anyhow!( + "eff_interp_bwd is None, which should never be the case at this point." + ))? + .with_context(|| { + anyhow!( + "{}\n failed to calculate {}", + format_dbg!(), + stringify!(eff_neg) + ) + })?; // maximum power in forward direction is minimum of component `pwr_out_max` parameter or time-varying max // power based on what the ReversibleEnergyStorage can provide - self.state.pwr_mech_fwd_out_max = self.pwr_out_max.min(pwr_in_fwd_max * eff_pos); + self.state.pwr_mech_fwd_out_max = self + .pwr_out_max + .min(pwr_in_fwd_lim * self.state.eff_fwd_at_max_input); // maximum power in backward direction is minimum of component `pwr_out_max` parameter or time-varying max // power in bacward direction (i.e. regen) based on what the ReversibleEnergyStorage can provide - self.state.pwr_mech_bwd_out_max = self.pwr_out_max.min(pwr_in_bwd_max / eff_neg); + self.state.pwr_mech_bwd_out_max = self + .pwr_out_max + .min(pwr_in_bwd_lim / self.state.eff_bwd_at_max_input); Ok(()) } @@ -188,47 +209,70 @@ impl ElectricMachine { ) -> anyhow::Result { //TODO: update this function to use `pwr_mech_regen_out_max` ensure!( - pwr_out_req <= self.pwr_out_max, + pwr_out_req.abs() <= self.pwr_out_max, format!( - "{}\nedrv required power ({:.6} MW) exceeds static max power ({:.6} MW)", + "{}\nedrv required power ({:.6} kW) exceeds static max power ({:.6} kW)", format_dbg!(pwr_out_req.abs() <= self.pwr_out_max), - pwr_out_req.get::(), - self.pwr_out_max.get::() + pwr_out_req.get::(), + self.pwr_out_max.get::() + ), + ); + ensure!( + pwr_out_req <= self.state.pwr_mech_fwd_out_max, + format!( + "{}\nedrv required discharge power ({:.6} kW) exceeds current max discharge power ({:.6} kW)", + format_dbg!(pwr_out_req <= self.state.pwr_mech_fwd_out_max), + pwr_out_req.get::(), + self.state.pwr_mech_fwd_out_max.get::() + ), + ); + ensure!( + -pwr_out_req <= self.state.pwr_mech_bwd_out_max, + format!( + "{}\nedrv required charge power ({:.6} kW) exceeds current max charge power ({:.6} kW)", + format_dbg!(pwr_out_req <= self.state.pwr_mech_bwd_out_max), + pwr_out_req.get::(), + self.state.pwr_mech_bwd_out_max.get::() ), ); self.state.pwr_out_req = pwr_out_req; + // ensuring eff_interp_fwd has Extrapolate set to Error before calculating self.state.eff + self.eff_interp_fwd.set_extrapolate(Extrapolate::Error)?; + self.state.eff = uc::R - * interp1d( - { - let pwr = |pwr_uncorrected: f64| -> anyhow::Result { - Ok({ - if self - .pwr_out_frac_interp - .first() - .with_context(|| anyhow!(format_dbg!()))? - >= &0. - { - pwr_uncorrected.max(0.) - } else { - pwr_uncorrected - } - }) - }; - &pwr((pwr_out_req / self.pwr_out_max).get::())? - }, - &self.pwr_out_frac_interp, - &self.eff_interp, - Extrapolate::Error, - ) - .with_context(|| { - anyhow!( - "{}\n failed to calculate {}", - format_dbg!(), - stringify!(self.state.eff) + * self + .eff_interp_fwd + .interpolate( + &[{ + let pwr = |pwr_uncorrected: f64| -> anyhow::Result { + Ok({ + if self + .eff_interp_fwd + .x()? + .first() + .with_context(|| anyhow!(format_dbg!()))? + >= &0. + { + pwr_uncorrected.max(0.) + } else { + pwr_uncorrected + } + }) + }; + pwr((pwr_out_req / self.pwr_out_max).get::())? + }], // &self.eff_interp_fwd.x()?, + // &self.eff_interp_fwd, + // Extrapolate::Error, ) - })?; + .with_context(|| { + anyhow!( + "{}\n failed to calculate {}", + format_dbg!(), + stringify!(self.state.eff) + ) + })?; // `pwr_mech_prop_out` is `pwr_out_req` unless `pwr_out_req` is more negative than `pwr_mech_regen_max`, // in which case, excess is handled by `pwr_mech_dyn_brake` @@ -255,26 +299,26 @@ impl ElectricMachine { Ok(self.state.pwr_elec_prop_in) } - pub fn set_pwr_in_frac_interp(&mut self) -> anyhow::Result<()> { - // make sure vector has been created - self.pwr_in_frac_interp = self - .pwr_out_frac_interp - .iter() - .zip(self.eff_interp.iter()) - .map(|(x, y)| x / y) - .collect(); - Ok(()) - } - - impl_get_set_eff_max_min!(); - impl_get_set_eff_range!(); + // pub fn set_pwr_in_frac_interp(&mut self) -> anyhow::Result<()> { + // // make sure vector has been created + // self.eff_interp_bwd.set_x( + // self.eff_interp_fwd + // + // .x()? + // .iter() + // .zip(self.eff_interp_fwd.0.f_x()?.iter()) + // .map(|(x, y)| x / y) + // .collect(), + // ); + // Ok(()) + // } } impl SerdeAPI for ElectricMachine {} impl Init for ElectricMachine { fn init(&mut self) -> anyhow::Result<()> { let _ = self.mass().with_context(|| anyhow!(format_dbg!()))?; - let _ = check_interp_frac_data(&self.pwr_out_frac_interp, InterpRange::Either) + let _ = check_interp_frac_data(&self.eff_interp_fwd.x()?, InterpRange::Either) .with_context(|| "Invalid values for `ElectricMachine::pwr_out_frac_interp`; must range from [-1..1] or [0..1].")?; self.state.init().with_context(|| anyhow!(format_dbg!()))?; @@ -284,6 +328,26 @@ impl Init for ElectricMachine { // self.pwr_out_frac_interp = // } // TODO: verify that `pwr_in_frac_interp` is set somewhere and if it is, maybe move it to here??? + if self.eff_interp_at_max_input.is_none() { + // sets eff_interp_bwd to eff_interp_fwd, but changes the x-value. + // TODO: what should the default strategy be for eff_interp_bwd? + let eff_interp_bwd_new = Interp1D::new( + self.eff_interp_fwd + .x()? + .iter() + .zip(self.eff_interp_fwd.f_x()?.iter()) + .map(|(x, y)| x / y) + .collect(), + self.eff_interp_fwd.f_x()?, + // TODO: should these be set to be the same as eff_interp_fwd, + // as currently is done, or should they be set to be specific + // Extrapolate and Strategy types? + self.eff_interp_fwd.strategy()?, + self.eff_interp_fwd.extrapolate()?, + )?; + self.eff_interp_at_max_input = + Some(utils::interp::Interpolator::Interp1D(eff_interp_bwd_new)); + } Ok(()) } } @@ -364,10 +428,229 @@ impl Mass for ElectricMachine { } } +impl ElectricMachine { + /// Returns max value of `eff_interp_fwd` + pub fn get_eff_max_fwd(&self) -> anyhow::Result { + // since efficiency is all f64 between 0 and 1, NEG_INFINITY is safe + Ok(self + .eff_interp_fwd + .f_x()? + .iter() + .fold(f64::NEG_INFINITY, |acc, curr| acc.max(*curr))) + } + + /// Returns max value of `eff_interp_bwd` + pub fn get_eff_max_bwd(&self) -> anyhow::Result { + // since efficiency is all f64 between 0 and 1, NEG_INFINITY is safe + Ok(match self.eff_interp_at_max_input.as_ref() { + Some(interp) => interp + .f_x()? + .iter() + .fold(f64::NEG_INFINITY, |acc, curr| acc.max(*curr)), + None => bail!("eff_interp_bwd should be Some by this point."), + }) + } + + /// Scales eff_interp_fwd and eff_interp_bwd by ratio of new `eff_max` per current calculated max + pub fn set_eff_max(&mut self, eff_max: f64) -> anyhow::Result<()> { + if (0.0..=1.0).contains(&eff_max) { + let old_max_fwd = self.get_eff_max_fwd()?; + let old_max_bwd = self.get_eff_max_bwd()?; + let f_x_fwd = self.eff_interp_fwd.f_x()?; + match &mut self.eff_interp_fwd { + Interpolator::Interp1D(interp1d) => { + interp1d + .set_f_x(f_x_fwd.iter().map(|x| x * eff_max / old_max_fwd).collect())?; + } + _ => bail!("{}\n", "Only `Interpolator::Interp1D` is allowed."), + } + let f_x_bwd = self + .eff_interp_at_max_input + .as_ref() + .ok_or(anyhow!( + "eff_interp_bwd is None, which should never be the case at this point." + ))? + .f_x()?; + match &mut self.eff_interp_at_max_input { + Some(Interpolator::Interp1D(interp1d)) => { + // let old_interp = interp1d; + interp1d.set_f_x( + f_x_bwd + .iter() + .map(|x| x * eff_max / old_max_bwd) + .collect(), + )?; + } + _ => bail!("{}\n", "Only `Interpolator::Interp1D` is allowed. eff_interp_bwd should be Some by this point."), + } + Ok(()) + } else { + Err(anyhow!( + "`eff_max` ({:.3}) must be between 0.0 and 1.0", + eff_max, + )) + } + } + + /// Returns min value of `eff_interp_fwd` + pub fn get_eff_min_fwd(&self) -> anyhow::Result { + // since efficiency is all f64 between 0 and 1, NEG_INFINITY is safe + Ok(self + .eff_interp_fwd + .f_x() + .with_context(|| "eff_interp_fwd does not have f_x field")? + .iter() + .fold(f64::INFINITY, |acc, curr| acc.min(*curr))) + } + + /// Returns min value of `eff_interp_bwd` + pub fn get_eff_min_bwd(&self) -> anyhow::Result { + // since efficiency is all f64 between 0 and 1, NEG_INFINITY is safe + Ok(self + .eff_interp_at_max_input + .as_ref() + .ok_or(anyhow!("eff_interp_bwd should be Some by this point."))? + .f_x() + .with_context(|| "eff_interp_bwd does not have f_x field")? + .iter() + .fold(f64::INFINITY, |acc, curr| acc.min(*curr))) + } + + /// Max value of `eff_interp_fwd` minus min value of `eff_interp_fwd`. + pub fn get_eff_range_fwd(&self) -> anyhow::Result { + Ok(self.get_eff_max_fwd()? - self.get_eff_min_fwd()?) + } + + /// Max value of `eff_interp_bwd` minus min value of `eff_interp_bwd`. + pub fn get_eff_range_bwd(&self) -> anyhow::Result { + Ok(self.get_eff_max_bwd()? - self.get_eff_min_bwd()?) + } + + /// Scales values of `eff_interp_fwd.f_x` and `eff_interp_bwd.f_x` without changing max such that max - min + /// is equal to new range. Will change max if needed to ensure no values are + /// less than zero. + pub fn set_eff_range(&mut self, eff_range: f64) -> anyhow::Result<()> { + let eff_max_fwd = self.get_eff_max_fwd()?; + let eff_max_bwd = self.get_eff_max_bwd()?; + if eff_range == 0.0 { + let f_x_fwd = vec![ + eff_max_fwd; + self.eff_interp_fwd + .f_x() + .with_context(|| "eff_interp_fwd does not have f_x field")? + .len() + ]; + self.eff_interp_fwd.set_f_x(f_x_fwd)?; + let f_x_bwd = vec![ + eff_max_bwd; + match &self.eff_interp_at_max_input { + Some(interp) => { + interp + .f_x() + .with_context(|| "eff_interp_bwd does not have f_x field")? + .len() + } + None => bail!("eff_interp_bwd should be Some by this point."), + } + ]; + self.eff_interp_at_max_input + .as_mut() + .map(|interpolator| interpolator.set_f_x(f_x_bwd)) + .transpose()?; + Ok(()) + } else if (0.0..=1.0).contains(&eff_range) { + let old_min = self.get_eff_min_fwd()?; + let old_range = self.get_eff_max_fwd()? - old_min; + if old_range == 0.0 { + return Err(anyhow!( + "`eff_range` is already zero so it cannot be modified." + )); + } + let f_x_fwd = self.eff_interp_fwd.f_x()?; + match &mut self.eff_interp_fwd { + Interpolator::Interp1D(interp1d) => { + interp1d.set_f_x( + f_x_fwd + .iter() + .map(|x| eff_max_fwd + (x - eff_max_fwd) * eff_range / old_range) + .collect(), + )?; + } + _ => bail!("{}\n", "Only `Interpolator::Interp1D` is allowed."), + } + if self.get_eff_min_fwd()? < 0.0 { + let x_neg = self.get_eff_min_fwd()?; + let f_x_fwd = self.eff_interp_fwd.f_x()?; + match &mut self.eff_interp_fwd { + Interpolator::Interp1D(interp1d) => { + interp1d.set_f_x(f_x_fwd.iter().map(|x| x - x_neg).collect())?; + } + _ => bail!("{}\n", "Only `Interpolator::Interp1D` is allowed."), + } + } + if self.get_eff_max_fwd()? > 1.0 { + return Err(anyhow!(format!( + "`eff_max` ({:.3}) must be no greater than 1.0", + self.get_eff_max_fwd()? + ))); + } + let old_min = self.get_eff_min_bwd()?; + let old_range = self.get_eff_max_bwd()? - old_min; + if old_range == 0.0 { + return Err(anyhow!( + "`eff_range` is already zero so it cannot be modified." + )); + } + + let new_f_x: Vec = self + .eff_interp_at_max_input + .as_ref() + .ok_or(anyhow!("eff_interp_bwd should be Some by this point."))? + .f_x()? + .iter() + .map(|x| eff_max_bwd + (x - eff_max_bwd) * eff_range / old_range) + .collect(); + + self.eff_interp_at_max_input + .as_mut() + .map(|interpolator| interpolator.set_f_x(new_f_x)) + .transpose()?; + + if self.get_eff_min_bwd()? < 0.0 { + let x_neg = self.get_eff_min_bwd()?; + let new_f_x: Vec = self + .eff_interp_at_max_input + .as_ref() + .ok_or(anyhow!("eff_interp_bwd should be Some by this point."))? + .f_x()? + .iter() + .map(|x| x - x_neg) + .collect(); + self.eff_interp_at_max_input + .as_mut() + .map(|interpolator| interpolator.set_f_x(new_f_x)) + .transpose()?; + } + if self.get_eff_max_bwd()? > 1.0 { + return Err(anyhow!(format!( + "`eff_max` ({:.3}) must be no greater than 1.0", + self.get_eff_max_bwd()? + ))); + } + Ok(()) + } else { + Err(anyhow!(format!( + "`eff_range` ({:.3}) must be between 0.0 and 1.0", + eff_range, + ))) + } + } +} + +#[fastsim_api] #[derive( Clone, Copy, Debug, Default, Deserialize, Serialize, PartialEq, HistoryVec, SetCumulative, )] -#[fastsim_api] pub struct ElectricMachineState { /// time step index pub i: usize, @@ -376,8 +659,12 @@ pub struct ElectricMachineState { // Component limits /// Maximum possible positive traction power. pub pwr_mech_fwd_out_max: si::Power, + /// efficiency in forward direction at max possible input power from `FuelConverter` and `ReversibleEnergyStorage` + pub eff_fwd_at_max_input: si::Ratio, /// Maximum possible regeneration power going to ReversibleEnergyStorage. pub pwr_mech_bwd_out_max: si::Power, + /// efficiency in backward direction at max possible input power from `FuelConverter` and `ReversibleEnergyStorage` + pub eff_bwd_at_max_input: si::Ratio, /// max ramp-up rate pub pwr_rate_out_max: si::PowerRate, diff --git a/fastsim-core/src/vehicle/powertrain/fuel_converter.rs b/fastsim-core/src/vehicle/powertrain/fuel_converter.rs index 6bd4cfb7..adc4264e 100644 --- a/fastsim-core/src/vehicle/powertrain/fuel_converter.rs +++ b/fastsim-core/src/vehicle/powertrain/fuel_converter.rs @@ -49,10 +49,6 @@ use super::*; #[derive(Deserialize, Serialize, Debug, Clone, PartialEq, HistoryMethods)] /// Struct for modeling Fuel Converter (e.g. engine, fuel cell.) pub struct FuelConverter { - #[serde(default)] - /// struct for tracking current state - #[serde(skip_serializing_if = "EqDefault::eq_default")] - pub state: FuelConverterState, /// FuelConverter mass #[serde(default)] #[api(skip_get, skip_set)] @@ -68,16 +64,26 @@ pub struct FuelConverter { // TODO: consider a ramp down rate, which may be needed for fuel cells /// lag time for ramp up pub pwr_ramp_lag: si::Time, - pub eff_interp: utils::interp::InterpolatorWrapper, + /// interpolator for calculating [Self] efficiency as a function of output power + #[api(skip_get, skip_set)] + pub eff_interp_from_pwr_out: utils::interp::Interpolator, /// idle fuel power to overcome internal friction (not including aux load) \[W\] pub pwr_idle_fuel: si::Power, /// time step interval between saves. 1 is a good option. If None, no saving occurs. #[serde(skip_serializing_if = "Option::is_none")] pub save_interval: Option, + /// struct for tracking current state + #[serde(default)] + #[serde(skip_serializing_if = "EqDefault::eq_default")] + pub state: FuelConverterState, /// Custom vector of [Self::state] #[serde(default)] #[serde(skip_serializing_if = "FuelConverterStateHistoryVec::is_empty")] pub history: FuelConverterStateHistoryVec, // TODO: spec out fuel tank size and track kg of fuel + #[serde(skip)] + // phantom private field to prevent direct instantiation in other modules + #[api(skip_get, skip_set)] + pub(in super::super) _phantom: PhantomData<()>, } impl SetCumulative for FuelConverter { @@ -91,8 +97,6 @@ impl Init for FuelConverter { fn init(&mut self) -> anyhow::Result<()> { let _ = self.mass().with_context(|| anyhow!(format_dbg!()))?; self.state.init().with_context(|| anyhow!(format_dbg!()))?; - // TODO: set the engine map here based on efficiency type, which should allow for - // `None` and `Other` variants Ok(()) } } @@ -180,39 +184,47 @@ impl SaveInterval for FuelConverter { // non-py methods impl FuelConverter { - /// Sets maximum possible traction-related power [FuelConverter] - /// can produce, accounting for any aux-related power required. + /// Sets maximum possible total power [FuelConverter] + /// can produce. /// # Arguments - /// - `pwr_aux`: aux-related power required from this component /// - `dt`: time step size - pub fn set_cur_pwr_tract_out_max( - &mut self, - pwr_aux: si::Power, - dt: si::Time, - ) -> anyhow::Result<()> { + pub fn set_curr_pwr_out_max(&mut self, dt: si::Time) -> anyhow::Result<()> { if self.pwr_out_max_init == si::Power::ZERO { // TODO: think about how to initialize power self.pwr_out_max_init = self.pwr_out_max / 10. }; - self.state.pwr_aux = pwr_aux; - self.state.pwr_prop_max = (self.state.pwr_propulsion + self.state.pwr_out_max = ((self.state.pwr_propulsion + self.state.pwr_aux) + (self.pwr_out_max / self.pwr_ramp_lag) * dt) .min(self.pwr_out_max) - .max(self.pwr_out_max_init) - - pwr_aux; + .max(self.pwr_out_max_init); + Ok(()) + } + + /// Sets maximum possible propulsion-related power [FuelConverter] + /// can produce, accounting for any aux-related power required. + /// # Arguments + /// - `pwr_aux`: aux-related power required from this component + pub fn set_curr_pwr_prop_max(&mut self, pwr_aux: si::Power) -> anyhow::Result<()> { + ensure!( + pwr_aux >= si::Power::ZERO, + format!( + "{}\n`pwr_aux` must be >= 0", + format_dbg!(pwr_aux >= si::Power::ZERO), + ) + ); + self.state.pwr_aux = pwr_aux; + self.state.pwr_prop_max = self.state.pwr_out_max - pwr_aux; Ok(()) } /// Solves for this powertrain system/component efficiency and sets/returns power output values. /// # Arguments /// - `pwr_out_req`: tractive power output required to achieve presribed speed - /// - `pwr_aux`: component-specific aux power demand (e.g. mechanical power if from engine/FC) /// - `enabled`: whether component is actively running /// - `dt`: time step size pub fn solve( &mut self, pwr_out_req: si::Power, - pwr_aux: si::Power, enabled: bool, _dt: si::Time, ) -> anyhow::Result<()> { @@ -223,19 +235,13 @@ impl FuelConverter { format_dbg!(pwr_out_req >= si::Power::ZERO), ) ); - ensure!( - pwr_aux >= si::Power::ZERO, - format!( - "{}\n`pwr_aux` must be >= 0", - format_dbg!(pwr_aux >= si::Power::ZERO), - ) - ); self.state.pwr_propulsion = pwr_out_req; - self.state.pwr_aux = pwr_aux; self.state.eff = uc::R * self - .eff_interp - .interpolate(&[((pwr_out_req + pwr_aux) / self.pwr_out_max).get::()]) + .eff_interp_from_pwr_out + .interpolate(&[ + ((pwr_out_req + self.state.pwr_aux) / self.pwr_out_max).get::() + ]) .with_context(|| { anyhow!( "{}\n failed to calculate {}", @@ -255,18 +261,21 @@ impl FuelConverter { self.state.fc_on = enabled; // if the engine is not on, `pwr_out_req` should be 0.0 ensure!( - self.state.fc_on || (pwr_out_req == si::Power::ZERO && pwr_aux == si::Power::ZERO), + self.state.fc_on + || (pwr_out_req == si::Power::ZERO && self.state.pwr_aux == si::Power::ZERO), format!( "{}\nEngine is off but pwr_out_req + pwr_aux is non-zero", format_dbg!( self.state.fc_on - || (pwr_out_req == si::Power::ZERO && pwr_aux == si::Power::ZERO) + || (pwr_out_req == si::Power::ZERO + && self.state.pwr_aux == si::Power::ZERO) ) ) ); - // TODO: consider how idle is handled. The goal is to make it so that even if `pwr_aux` is + // TODO: consider how idle is handled. The goal is to make it so that even if `self.state.pwr_aux` is // zero, there will be fuel consumption to overcome internal dissipation. - self.state.pwr_fuel = ((pwr_out_req + pwr_aux) / self.state.eff).max(self.pwr_idle_fuel); + self.state.pwr_fuel = + ((pwr_out_req + self.state.pwr_aux) / self.state.eff).max(self.pwr_idle_fuel); self.state.pwr_loss = self.state.pwr_fuel - self.state.pwr_propulsion; // TODO: put this in `SetCumulative::set_custom_cumulative` @@ -286,13 +295,15 @@ impl FuelConverter { // impl_get_set_eff_range!(); // } +#[fastsim_api] #[derive( Clone, Copy, Debug, Default, Deserialize, Serialize, PartialEq, HistoryVec, SetCumulative, )] -#[fastsim_api] pub struct FuelConverterState { /// time step index pub i: usize, + /// max total output power fc can produce at current time + pub pwr_out_max: si::Power, /// max propulsion power fc can produce at current time pub pwr_prop_max: si::Power, /// efficiency evaluated at current demand diff --git a/fastsim-core/src/vehicle/powertrain/reversible_energy_storage.rs b/fastsim-core/src/vehicle/powertrain/reversible_energy_storage.rs index 5cd0314c..7cabb412 100644 --- a/fastsim-core/src/vehicle/powertrain/reversible_energy_storage.rs +++ b/fastsim-core/src/vehicle/powertrain/reversible_energy_storage.rs @@ -7,40 +7,13 @@ use crate::pyo3::*; const TOL: f64 = 1e-3; #[fastsim_api( - #[allow(clippy::too_many_arguments)] - #[new] - fn __new__( - pwr_out_max_watts: f64, - energy_capacity_joules: f64, - min_soc: f64, - max_soc: f64, - initial_soc: f64, - initial_temperature_celcius: f64, - soc_hi_ramp_start: Option, - soc_lo_ramp_start: Option, - save_interval: Option, - ) -> anyhow::Result { - Self::new( - pwr_out_max_watts, - energy_capacity_joules, - min_soc, - max_soc, - initial_soc, - initial_temperature_celcius, - soc_hi_ramp_start, - soc_lo_ramp_start, - save_interval, - ) - } - /// pyo3 getter for soc_lo_ramp_start #[getter] pub fn get_soc_lo_ramp_start(&self) -> PyResult { Ok(self.soc_lo_ramp_start.unwrap().get::()) } /// pyo3 setter for soc_lo_ramp_start - // TODO: add `__` - #[setter] + #[setter("__soc_lo_ramp_start")] pub fn set_soc_lo_ramp_start(&mut self, new_value: f64) -> PyResult<()> { self.soc_lo_ramp_start = Some(new_value * uc::R); Ok(()) @@ -51,8 +24,7 @@ const TOL: f64 = 1e-3; Ok(self.soc_hi_ramp_start.unwrap().get::()) } /// pyo3 setter for soc_hi_ramp_start - #[setter] - // TODO: add `__` + #[setter("__soc_hi_ramp_start")] pub fn set_soc_hi_ramp_start(&mut self, new_value: f64) -> PyResult<()> { self.soc_hi_ramp_start = Some(new_value * uc::R); Ok(()) @@ -107,10 +79,6 @@ const TOL: f64 = 1e-3; #[derive(Deserialize, Serialize, Debug, Clone, PartialEq, HistoryMethods)] /// Struct for modeling technology-naive Reversible Energy Storage (e.g. battery, flywheel). pub struct ReversibleEnergyStorage { - /// struct for tracking current state - #[serde(default)] - #[serde(skip_serializing_if = "EqDefault::eq_default")] - pub state: ReversibleEnergyStorageState, /// ReversibleEnergyStorage mass #[serde(default)] #[api(skip_get, skip_set)] @@ -124,6 +92,14 @@ pub struct ReversibleEnergyStorage { /// Total energy capacity of battery of full discharge SOC of 0.0 and 1.0 pub energy_capacity: si::Energy, + /// interpolator for calculating [Self] efficiency as a function of the following variants: + /// - 0d -- constant -- handled on a round trip basis + /// - 1d -- linear w.r.t. power + /// - 2d -- linear w.r.t. power and SOC + /// - 3d -- linear w.r.t. power, SOC, and temperature + #[api(skip_get, skip_set)] + pub eff_interp: Interpolator, + /// Hard limit on minimum SOC, e.g. 0.05 pub min_soc: si::Ratio, /// Hard limit on maximum SOC, e.g. 0.95 @@ -141,94 +117,120 @@ pub struct ReversibleEnergyStorage { /// Time step interval at which history is saved #[serde(skip_serializing_if = "Option::is_none")] pub save_interval: Option, + /// struct for tracking current state #[serde(default)] - #[serde(skip_serializing_if = "ReversibleEnergyStorageStateHistoryVec::is_empty")] + #[serde(skip_serializing_if = "EqDefault::eq_default")] + pub state: ReversibleEnergyStorageState, /// Custom vector of [Self::state] + #[serde(default)] + #[serde(skip_serializing_if = "ReversibleEnergyStorageStateHistoryVec::is_empty")] pub history: ReversibleEnergyStorageStateHistoryVec, } impl ReversibleEnergyStorage { - pub fn solve( - &mut self, - pwr_out_req: si::Power, - pwr_aux: si::Power, - dt: si::Time, - ) -> anyhow::Result<()> { + pub fn solve(&mut self, pwr_out_req: si::Power, dt: si::Time) -> anyhow::Result<()> { let state = &mut self.state; ensure!( - state.soc <= state.max_soc || pwr_out_req >= si::Power::ZERO, - "{}\npwr_out_req must be greater than or equal to 0 if SOC is over max SOC\nstate.soc = {}", - format_dbg!(state.soc <= state.max_soc || pwr_out_req >= si::Power::ZERO), + state.soc <= state.max_soc || (pwr_out_req + state.pwr_aux) >= si::Power::ZERO, + "{}\n{}", + format_dbg!(pwr_out_req + state.pwr_aux), state.soc.get::() ); ensure!( - state.soc >= state.min_soc || pwr_out_req <= si::Power::ZERO, - "{}\npwr_out_req must be less than 0 or equal to zero if SOC is below min SOC\nstate.soc = {}", - format_dbg!(state.soc >= state.min_soc || pwr_out_req <= si::Power::ZERO), + state.soc >= state.min_soc || (pwr_out_req + state.pwr_aux) <= si::Power::ZERO, + "{}\n{}", + format_dbg!(pwr_out_req + state.pwr_aux), state.soc.get::() ); - if pwr_out_req + pwr_aux >= si::Power::ZERO { + state.pwr_out_propulsion = pwr_out_req; + state.pwr_out_electrical = state.pwr_out_propulsion + state.pwr_aux; + + if pwr_out_req + state.pwr_aux >= si::Power::ZERO { + // discharging ensure!( - utils::almost_le_uom(&(pwr_out_req + pwr_aux), &self.pwr_out_max, Some(TOL)), - "{}\nres required power ({:.6} MW) exceeds static max discharge power ({:.6} MW)\nstate.soc = {}", + utils::almost_le_uom(&(pwr_out_req + state.pwr_aux), &self.pwr_out_max, Some(TOL)), + "{}\nres required power ({:.6} kW) exceeds static max discharge power ({:.6} kW)\nstate.soc = {}", format_dbg!(utils::almost_le_uom( - &(pwr_out_req + pwr_aux), + &(pwr_out_req + state.pwr_aux), &self.pwr_out_max, Some(TOL) )), - (pwr_out_req + pwr_aux).get::(), - state.pwr_disch_max.get::(), + (pwr_out_req + state.pwr_aux).get::(), + state.pwr_disch_max.get::(), state.soc.get::() ); ensure!( - utils::almost_le_uom(&(pwr_out_req + pwr_aux), &state.pwr_disch_max, Some(TOL)), - "{}\nres required power ({:.6} MW) exceeds transient max discharge power ({:.6} MW)\nstate.soc = {}", - format_dbg!(utils::almost_le_uom(&(pwr_out_req + pwr_aux), &state.pwr_disch_max, Some(TOL))), - (pwr_out_req + pwr_aux).get::(), - state.pwr_disch_max.get::(), + utils::almost_le_uom(&(pwr_out_req + state.pwr_aux), &state.pwr_disch_max, Some(TOL)), + "{}\nres required power ({:.6} kW) exceeds current max discharge power ({:.6} kW)\nstate.soc = {}", + format_dbg!(utils::almost_le_uom(&(pwr_out_req + state.pwr_aux), &state.pwr_disch_max, Some(TOL))), + (pwr_out_req + state.pwr_aux).get::(), + state.pwr_disch_max.get::(), state.soc.get::() ); } else { + // charging ensure!( - utils::almost_ge_uom(&(pwr_out_req + pwr_aux), &-self.pwr_out_max, Some(TOL)), + utils::almost_ge_uom( + &(pwr_out_req + state.pwr_aux), + &-self.pwr_out_max, + Some(TOL) + ), format!( - "{}\nres required power ({:.6} MW) exceeds static max power ({:.6} MW)", + "{}\nres required power ({:.6} kW) exceeds static max power ({:.6} kW)", format_dbg!(utils::almost_ge_uom( - &(pwr_out_req + pwr_aux), + &(pwr_out_req + state.pwr_aux), &-self.pwr_out_max, Some(TOL) )), - (pwr_out_req + pwr_aux).get::(), - state.pwr_charge_max.get::() + (pwr_out_req + state.pwr_aux).get::(), + state.pwr_charge_max.get::() ) ); ensure!( - utils::almost_ge_uom(&(pwr_out_req + pwr_aux), &-state.pwr_charge_max, Some(TOL)), + utils::almost_ge_uom( + &(pwr_out_req + state.pwr_aux), + &-state.pwr_charge_max, + Some(TOL) + ), format!( - "{}\nres required power ({:.6} MW) exceeds transient max power ({:.6} MW)", + "{}\nres required power ({:.6} kW) exceeds current max power ({:.6} kW)", format_dbg!(utils::almost_ge_uom( - &(pwr_out_req + pwr_aux), + &(pwr_out_req + state.pwr_aux), &-state.pwr_charge_max, Some(TOL) )), - (pwr_out_req + pwr_aux).get::(), - state.pwr_charge_max.get::() + (pwr_out_req + state.pwr_aux).get::(), + state.pwr_charge_max.get::() ) ); } - state.pwr_out_propulsion = pwr_out_req; - state.pwr_aux = pwr_aux; - - state.pwr_out_electrical = state.pwr_out_propulsion + state.pwr_aux; - // TODO: replace this with something correct. // This should trip the `ensure` below - state.eff = uc::R * 666.; + state.eff = match self.eff_interp.to_owned() { + Interpolator::Interp0D(round_trip_eff) => round_trip_eff * uc::R, + Interpolator::Interp1D(interp1d) => { + interp1d.interpolate(&[state.pwr_out_electrical.get::()])? * uc::R + } + Interpolator::Interp2D(interp2d) => { + interp2d.interpolate(&[ + state.pwr_out_electrical.get::(), + state.soc.get::(), + ])? * uc::R + } + Interpolator::Interp3D(interp3d) => { + interp3d.interpolate(&[ + state.pwr_out_electrical.get::(), + state.soc.get::(), + state.temperature_celsius, + ])? * uc::R + } + _ => bail!("Invalid interpolator. See docs for `ReversibleEnergyStorage::eff_interp`"), + }; ensure!( - state.eff >= 0.0 * uc::R || state.eff <= 1.0 * uc::R, + state.eff >= 0.0 * uc::R && state.eff <= 1.0 * uc::R, format!( "{}\nres efficiency ({}) must be between 0 and 1", format_dbg!(state.eff >= 0.0 * uc::R || state.eff <= 1.0 * uc::R), @@ -236,6 +238,7 @@ impl ReversibleEnergyStorage { ) ); + // TODO: figure out how to handle round trip efficiency calculation in fastsim-3 style if state.pwr_out_electrical > si::Power::ZERO { // if positive, chemical power must be greater than electrical power // i.e. not all chemical power can be converted to electrical power @@ -248,24 +251,22 @@ impl ReversibleEnergyStorage { state.pwr_loss = (state.pwr_out_chemical - state.pwr_out_electrical).abs(); - let new_soc = state.soc - state.pwr_out_chemical * dt / self.energy_capacity; - state.soc = new_soc; + state.soc -= state.pwr_out_chemical * dt / self.energy_capacity; + Ok(()) } /// Sets and returns max output and max regen power based on current state /// # Arguments: - /// - `pwr_aux`: aux power demand on `ReversibleEnergyStorage` /// - `charge_buffer`: buffer below max SOC to allow for anticipated future - /// charging (i.e. decelerating while exiting a highway) + /// charging (i.e. decelerating while exiting a highway) /// - `discharge_buffer`: buffer above min SOC to allow for anticipated - /// future discharging (i.e. accelerating to enter a highway) - pub fn set_cur_pwr_out_max( + /// future discharging (i.e. accelerating to enter a highway) + pub fn set_curr_pwr_out_max( &mut self, - pwr_aux: si::Power, charge_buffer: Option, discharge_buffer: Option, - ) -> anyhow::Result<(si::Power, si::Power)> { + ) -> anyhow::Result<()> { if self.soc_hi_ramp_start.is_none() { self.soc_hi_ramp_start = Some(self.soc_hi_ramp_start_default()); } @@ -273,101 +274,105 @@ impl ReversibleEnergyStorage { self.soc_lo_ramp_start = Some(self.soc_lo_ramp_start_default()); } - let state = &mut self.state; // TODO: consider having the buffer affect the max and min but not the ramp??? // operating lo_ramp_start and min_soc, allowing for buffer // Set the dynamic minimum SOC to be the static min SOC plus the charge buffer - state.min_soc = (self.min_soc + charge_buffer.unwrap_or_default() / self.energy_capacity) + self.state.min_soc = (self.min_soc + + charge_buffer.unwrap_or_default() / self.energy_capacity) .min(self.max_soc); // Set the dynamic maximum SOC to be the static max SOC minus the discharge buffer - state.max_soc = (self.max_soc + self.state.max_soc = (self.max_soc - discharge_buffer.unwrap_or_default() / self.energy_capacity) .max(self.min_soc); - state.pwr_disch_max = - // current SOC is greater than or equal to current min and ramp down threshold - if state.soc >= state.min_soc - && state.soc >= self.soc_lo_ramp_start.with_context(|| format_dbg!())? + self.set_pwr_disch_max()?; + self.set_pwr_charge_max()?; + + let state = &mut self.state; + ensure!( + state.pwr_disch_max >= si::Power::ZERO, + "`{}` ({} W) must be greater than or equal to zero", + stringify!(state.pwr_disch_max), + state.pwr_disch_max.get::().format_eng(None) + ); + ensure!( + state.pwr_charge_max >= si::Power::ZERO, + "`{}` ({} W) must be greater than or equal to zero", + stringify!(state.pwr_charge_max), + state.pwr_charge_max.get::().format_eng(None) + ); + Ok(()) + } + + pub fn set_pwr_charge_max(&mut self) -> anyhow::Result<()> { + self.state.pwr_charge_max = + // current SOC is less than or equal to current max and ramp down threshold + if self.state.soc <= self.state.max_soc + && self.state.soc <= self.soc_hi_ramp_start.with_context(|| format_dbg!())? { self.pwr_out_max - } // current SOC is less than ramp down threshold and ramp down threshold is greater than min soc - else if state.soc < self.soc_lo_ramp_start.unwrap() - && self.soc_lo_ramp_start.unwrap() > state.min_soc + } // current SOC is greater than ramp down threshold and ramp down threshold is less than max soc + else if self.state.soc > self.soc_lo_ramp_start.unwrap() + && self.soc_hi_ramp_start.unwrap() < self.state.max_soc { uc::W - * interp1d( - &state.soc.get::(), - &[ - state.min_soc.get::(), - self.soc_lo_ramp_start - .with_context(|| format_dbg!())? - .get::(), - ], - &[0.0, self.pwr_out_max.get::()], - Extrapolate::No, // don't extrapolate - ) - .with_context(|| { - anyhow!( - "{}\n failed to calculate {}", - format_dbg!(), - stringify!(state.pwr_disch_max) - ) - })? + * Interpolator::Interp1D(Interp1D::new( + vec![ + self.state.max_soc.get::(), + self.soc_hi_ramp_start + .with_context(|| format_dbg!())? + .get::(), + ], + vec![0.0, self.pwr_out_max.get::()], + Strategy::Linear, + // TODO: figure out if it is ok to have Extrapolate::Clamp here + Extrapolate::Clamp, + )?).interpolate(&[self.state.soc.get::()])? } - // current SOC is greater than ramp down threshold but less than current min or current SOC is less than both + // current SOC is less than ramp down threshold but greater than current + // max or current SOC is greater than both else { - uc::W * 0. + si::Power::ZERO }; + Ok(()) + } - state.pwr_charge_max = - // current SOC is less than or equal to current max and ramp down threshold - if state.soc <= state.max_soc - && state.soc <= self.soc_hi_ramp_start.with_context(|| format_dbg!())? + pub fn set_pwr_disch_max(&mut self) -> anyhow::Result<()> { + self.state.pwr_disch_max = + // current SOC is greater than or equal to current min and ramp down threshold + if self.state.soc >= self.state.min_soc + && self.state.soc >= self.soc_lo_ramp_start.with_context(|| format_dbg!())? { self.pwr_out_max - } // current SOC is greater than ramp down threshold and ramp down threshold is less than max soc - else if state.soc > self.soc_lo_ramp_start.unwrap() - && self.soc_hi_ramp_start.unwrap() < state.max_soc + } // current SOC is less than ramp down threshold and ramp down threshold is greater than min soc + else if self.state.soc < self.soc_lo_ramp_start.unwrap() + && self.soc_lo_ramp_start.unwrap() > self.state.min_soc { uc::W - * interp1d( - &state.soc.get::(), - &[ - state.max_soc.get::(), - self.soc_hi_ramp_start - .with_context(|| format_dbg!())? - .get::(), - ], - &[0.0, self.pwr_out_max.get::()], - Extrapolate::No, // don't extrapolate - ) - .with_context(|| { - anyhow!( - "{}\n failed to calculate {}", - format_dbg!(), - stringify!(state.pwr_disch_max) - ) - })? + * Interpolator::Interp1D(Interp1D::new( + vec![ + self.state.min_soc.get::(), + self.soc_lo_ramp_start + .with_context(|| format_dbg!())? + .get::(), + ], + vec![0.0, self.pwr_out_max.get::()], + Strategy::Linear, + Extrapolate::Clamp, + )?).interpolate(&[self.state.soc.get::()])? } - // current SOC is less than ramp down threshold but greater than current - // max or current SOC is greater than both + // current SOC is greater than ramp down threshold but less than current min or current SOC is less than both else { - uc::W * 0. + si::Power::ZERO }; + Ok(()) + } - ensure!( - state.pwr_disch_max >= uc::W * 0., - "`{}` ({} W) must be greater than or equal to zero", - stringify!(state.pwr_disch_max), - state.pwr_disch_max.get::().format_eng(None) - ); - ensure!( - state.pwr_charge_max >= uc::W * 0., - "`{}` ({} W) must be greater than or equal to zero", - stringify!(state.pwr_charge_max), - state.pwr_charge_max.get::().format_eng(None) - ); - + /// Set current maximum power available for propulsion + /// # Arguments + /// - `pwr_aux`: aux power demand on `ReversibleEnergyStorage` + pub fn set_curr_pwr_prop_max(&mut self, pwr_aux: si::Power) -> anyhow::Result<()> { + let state = &mut self.state; state.pwr_prop_max = state.pwr_disch_max - pwr_aux; state.pwr_regen_max = state.pwr_charge_max + pwr_aux; @@ -381,19 +386,19 @@ impl ReversibleEnergyStorage { state.soc.get::() ); ensure!( - state.pwr_prop_max >= uc::W * 0., + state.pwr_prop_max >= si::Power::ZERO, "`{}` ({} W) must be greater than or equal to zero", stringify!(state.pwr_prop_max), state.pwr_prop_max.get::().format_eng(None) ); ensure!( - state.pwr_regen_max >= uc::W * 0., + state.pwr_regen_max >= si::Power::ZERO, "`{}` ({} W) must be greater than or equal to zero", stringify!(state.pwr_regen_max), state.pwr_regen_max.get::().format_eng(None) ); - Ok((state.pwr_prop_max, state.pwr_regen_max)) + Ok(()) } fn soc_hi_ramp_start_default(&self) -> si::Ratio { @@ -404,46 +409,6 @@ impl ReversibleEnergyStorage { self.min_soc + 0.05 * uc::R } - #[allow(clippy::too_many_arguments)] - pub fn new( - pwr_out_max_watts: f64, - energy_capacity_joules: f64, - min_soc: f64, - max_soc: f64, - initial_soc: f64, - initial_temperature_celcius: f64, - soc_hi_ramp_start: Option, - soc_lo_ramp_start: Option, - save_interval: Option, - ) -> anyhow::Result { - ensure!( - min_soc <= initial_soc || initial_soc <= max_soc, - format!( - "{}\ninitial soc must be between min and max soc, inclusive", - format_dbg!(min_soc <= initial_soc || initial_soc <= max_soc) - ) - ); - - let initial_state = ReversibleEnergyStorageState { - soc: uc::R * initial_soc, - temperature_celsius: initial_temperature_celcius, - ..Default::default() - }; - Ok(ReversibleEnergyStorage { - pwr_out_max: uc::W * pwr_out_max_watts, - energy_capacity: uc::J * energy_capacity_joules, - min_soc: uc::R * min_soc, - max_soc: uc::R * max_soc, - soc_hi_ramp_start: soc_hi_ramp_start.map(|val| val * uc::R), - soc_lo_ramp_start: soc_lo_ramp_start.map(|val| val * uc::R), - state: initial_state, - save_interval, - history: ReversibleEnergyStorageStateHistoryVec::new(), - mass: None, - specific_energy: None, - }) - } - /// Sets specific energy and either mass or energy capacity of battery /// # Arguments /// - `specific_energy`: specific energy of battery @@ -494,6 +459,7 @@ impl ReversibleEnergyStorage { todo!("adapt from ALTRIOS"); } } + impl SetCumulative for ReversibleEnergyStorage { fn set_cumulative(&mut self, dt: si::Time) { self.state.set_cumulative(dt); @@ -608,8 +574,8 @@ pub enum SpecificEnergySideEffect { Energy, } -#[derive(Clone, Copy, Debug, Deserialize, Serialize, PartialEq, HistoryVec, SetCumulative)] #[fastsim_api] +#[derive(Clone, Copy, Debug, Deserialize, Serialize, PartialEq, HistoryVec, SetCumulative)] // component limits /// ReversibleEnergyStorage state variables pub struct ReversibleEnergyStorageState { @@ -637,7 +603,7 @@ pub struct ReversibleEnergyStorageState { pub soh: f64, // TODO: add `pwr_out_neg_electrical` and `pwr_out_pos_electrical` and corresponding energies - // powers + // powers to separately pin negative- and positive-power operation /// total electrical power; positive is discharging pub pwr_out_electrical: si::Power, /// electrical power going to propulsion @@ -702,7 +668,3 @@ impl Default for ReversibleEnergyStorageState { impl Init for ReversibleEnergyStorageState {} impl SerdeAPI for ReversibleEnergyStorageState {} - -mod tests { - // TODO: put tests here -} diff --git a/fastsim-core/src/vehicle/powertrain/traits.rs b/fastsim-core/src/vehicle/powertrain/traits.rs index b2b8f777..ef25447b 100644 --- a/fastsim-core/src/vehicle/powertrain/traits.rs +++ b/fastsim-core/src/vehicle/powertrain/traits.rs @@ -10,23 +10,22 @@ pub trait Powertrain { /// # Arguments /// - `pwr_aux`: aux-related power required from this component /// - `dt`: time step size - fn set_cur_pwr_prop_out_max(&mut self, pwr_aux: si::Power, dt: si::Time) -> anyhow::Result<()>; + fn set_curr_pwr_prop_out_max(&mut self, pwr_aux: si::Power, dt: si::Time) + -> anyhow::Result<()>; /// Returns maximum achievable positive and negative propulsion powers after /// [Powertrain::set_curr_pwr_prop_out_max] has been called. - fn get_cur_pwr_prop_out_max(&self) -> anyhow::Result<(si::Power, si::Power)>; + fn get_curr_pwr_prop_out_max(&self) -> anyhow::Result<(si::Power, si::Power)>; /// Solves for this powertrain system/component efficiency and sets/returns power output values. /// # Arguments /// - `pwr_out_req`: propulsion-related power output required - /// - `pwr_aux`: component-specific aux power demand (e.g. mechanical power if from engine/FC) /// - `veh_state`: state of vehicle /// - `enabled`: whether the component is active in current time step (e.g. engine idling v. shut off) /// - `dt`: time step size fn solve( &mut self, pwr_out_req: si::Power, - pwr_aux: si::Power, veh_state: &VehicleState, enabled: bool, dt: si::Time, diff --git a/fastsim-core/src/vehicle/powertrain_type.rs b/fastsim-core/src/vehicle/powertrain_type.rs index db3037f1..fccaf351 100644 --- a/fastsim-core/src/vehicle/powertrain_type.rs +++ b/fastsim-core/src/vehicle/powertrain_type.rs @@ -20,36 +20,37 @@ impl Init for PowertrainType { } impl Powertrain for PowertrainType { - fn set_cur_pwr_prop_out_max(&mut self, pwr_aux: si::Power, dt: si::Time) -> anyhow::Result<()> { + fn set_curr_pwr_prop_out_max( + &mut self, + pwr_aux: si::Power, + dt: si::Time, + ) -> anyhow::Result<()> { match self { - Self::ConventionalVehicle(v) => v.set_cur_pwr_prop_out_max(pwr_aux, dt), - Self::HybridElectricVehicle(v) => v.set_cur_pwr_prop_out_max(pwr_aux, dt), - Self::BatteryElectricVehicle(v) => v.set_cur_pwr_prop_out_max(pwr_aux, dt), + Self::ConventionalVehicle(v) => v.set_curr_pwr_prop_out_max(pwr_aux, dt), + Self::HybridElectricVehicle(v) => v.set_curr_pwr_prop_out_max(pwr_aux, dt), + Self::BatteryElectricVehicle(v) => v.set_curr_pwr_prop_out_max(pwr_aux, dt), } } fn solve( &mut self, pwr_out_req: si::Power, - pwr_aux: si::Power, veh_state: &VehicleState, enabled: bool, dt: si::Time, ) -> anyhow::Result<()> { match self { - Self::ConventionalVehicle(v) => v.solve(pwr_out_req, pwr_aux, veh_state, enabled, dt), - Self::HybridElectricVehicle(v) => v.solve(pwr_out_req, pwr_aux, veh_state, enabled, dt), - Self::BatteryElectricVehicle(v) => { - v.solve(pwr_out_req, pwr_aux, veh_state, enabled, dt) - } + Self::ConventionalVehicle(v) => v.solve(pwr_out_req, veh_state, enabled, dt), + Self::HybridElectricVehicle(v) => v.solve(pwr_out_req, veh_state, enabled, dt), + Self::BatteryElectricVehicle(v) => v.solve(pwr_out_req, veh_state, enabled, dt), } } - fn get_cur_pwr_prop_out_max(&self) -> anyhow::Result<(si::Power, si::Power)> { + fn get_curr_pwr_prop_out_max(&self) -> anyhow::Result<(si::Power, si::Power)> { match self { - Self::ConventionalVehicle(v) => v.get_cur_pwr_prop_out_max(), - Self::HybridElectricVehicle(v) => v.get_cur_pwr_prop_out_max(), - Self::BatteryElectricVehicle(v) => v.get_cur_pwr_prop_out_max(), + Self::ConventionalVehicle(v) => v.get_curr_pwr_prop_out_max(), + Self::HybridElectricVehicle(v) => v.get_curr_pwr_prop_out_max(), + Self::BatteryElectricVehicle(v) => v.get_curr_pwr_prop_out_max(), } } diff --git a/fastsim-core/src/vehicle/tests.rs b/fastsim-core/src/vehicle/tests.rs deleted file mode 100644 index a9dd165d..00000000 --- a/fastsim-core/src/vehicle/tests.rs +++ /dev/null @@ -1,4 +0,0 @@ -// use super::*; -// use crate::si; - -// TODO: put tests here diff --git a/fastsim-core/src/vehicle/vehicle_model.rs b/fastsim-core/src/vehicle/vehicle_model.rs index 3eed35a9..8d67cd8a 100644 --- a/fastsim-core/src/vehicle/vehicle_model.rs +++ b/fastsim-core/src/vehicle/vehicle_model.rs @@ -1,6 +1,4 @@ -use utils::interp::{Extrapolate, *}; - -use super::{hev::HEVControls, *}; +use super::{hev::HEVPowertrainControls, *}; /// Possible aux load power sources #[derive(Clone, Debug, Serialize, Deserialize, PartialEq)] @@ -296,13 +294,12 @@ impl TryFrom<&fastsim_2::vehicle::RustVehicle> for PowertrainType { // assumes 1 s time step pwr_out_max_init: f2veh.fc_max_kw * uc::KW / f2veh.fc_sec_to_peak_pwr, pwr_ramp_lag: f2veh.fc_sec_to_peak_pwr * uc::S, - eff_interp: InterpolatorWrapper(Interpolator::Interp1D(Interp1D::new( + eff_interp_from_pwr_out: Interpolator::Interp1D(Interp1D::new( f2veh.fc_pwr_out_perc.to_vec(), f2veh.fc_eff_map.to_vec(), Strategy::LeftNearest, Extrapolate::Error, - )?)), - // TODO: verify this + )?), pwr_idle_fuel: f2veh.aux_kw / f2veh .fc_eff_map @@ -312,7 +309,9 @@ impl TryFrom<&fastsim_2::vehicle::RustVehicle> for PowertrainType { * uc::KW, save_interval: Some(1), history: Default::default(), + _phantom: PhantomData, }; + fc.init()?; fc.set_mass(None, MassSideEffect::None) .with_context(|| anyhow!(format_dbg!()))?; fc @@ -344,13 +343,12 @@ impl TryFrom<&fastsim_2::vehicle::RustVehicle> for PowertrainType { // assumes 1 s time step pwr_out_max_init: f2veh.fc_max_kw * uc::KW / f2veh.fc_sec_to_peak_pwr, pwr_ramp_lag: f2veh.fc_sec_to_peak_pwr * uc::S, - eff_interp: InterpolatorWrapper(Interpolator::Interp1D(Interp1D::new( + eff_interp_from_pwr_out: Interpolator::Interp1D(Interp1D::new( f2veh.fc_pwr_out_perc.to_vec(), f2veh.fc_eff_map.to_vec(), Strategy::LeftNearest, Extrapolate::Error, - )?)), - // TODO: verify this + )?), pwr_idle_fuel: f2veh.aux_kw / f2veh .fc_eff_map @@ -360,7 +358,9 @@ impl TryFrom<&fastsim_2::vehicle::RustVehicle> for PowertrainType { * uc::KW, save_interval: Some(1), history: Default::default(), + _phantom: PhantomData, }; + fc.init()?; fc.set_mass(None, MassSideEffect::None) .with_context(|| anyhow!(format_dbg!()))?; fc @@ -371,6 +371,7 @@ impl TryFrom<&fastsim_2::vehicle::RustVehicle> for PowertrainType { specific_energy: None, pwr_out_max: f2veh.ess_max_kw * uc::KW, energy_capacity: f2veh.ess_max_kwh * uc::KWH, + eff_interp: Interpolator::Interp0D(f2veh.ess_round_trip_eff.sqrt()), min_soc: f2veh.min_soc * uc::R, max_soc: f2veh.max_soc * uc::R, soc_hi_ramp_start: None, @@ -380,17 +381,42 @@ impl TryFrom<&fastsim_2::vehicle::RustVehicle> for PowertrainType { }, em: ElectricMachine { state: Default::default(), - pwr_out_frac_interp: f2veh.mc_pwr_out_perc.to_vec(), - eff_interp: f2veh.mc_eff_array.to_vec(), - pwr_in_frac_interp: Default::default(), + eff_interp_fwd: (Interpolator::Interp1D( + Interp1D::new( + f2veh.mc_pwr_out_perc.to_vec(), + f2veh.mc_eff_array.to_vec(), + Strategy::LeftNearest, + Extrapolate::Error, + ) + .unwrap(), + )), + eff_interp_at_max_input: Some(Interpolator::Interp1D( + Interp1D::new( + // before adding the interpolator, pwr_in_frac_interp was set as Default::default(), can this + // be transferred over as done here, or does a new defualt need to be defined? + f2veh + .mc_pwr_out_perc + .to_vec() + .iter() + .zip(f2veh.mc_eff_array.to_vec().iter()) + .map(|(x, y)| x / y) + .collect(), + f2veh.mc_eff_array.to_vec(), + Strategy::LeftNearest, + Extrapolate::Error, + ) + .unwrap(), + )), + // pwr_in_frac_interp: Default::default(), pwr_out_max: f2veh.mc_max_kw * uc::KW, specific_pwr: None, mass: None, save_interval: Some(1), history: Default::default(), }, - hev_controls: HEVControls::RESGreedy, + pt_cntrl: HEVPowertrainControls::RESGreedy, mass: None, + aux_cntrl: Default::default(), }; Ok(PowertrainType::HybridElectricVehicle(Box::new(hev))) } else { @@ -531,29 +557,28 @@ impl Vehicle { self.pt_type .solve( self.state.pwr_tractive, - self.pwr_aux, &self.state, true, // `enabled` should always be true at the powertrain level dt, ) .with_context(|| anyhow!(format_dbg!()))?; - // TODO: this is wrong for anything with regen capability - self.state.pwr_brake = -self.state.pwr_tractive.max(uc::W * 0.) - self.pt_type.pwr_regen(); + self.state.pwr_brake = + -self.state.pwr_tractive.max(si::Power::ZERO) - self.pt_type.pwr_regen(); Ok(()) } - pub fn set_cur_pwr_out_max(&mut self, dt: si::Time) -> anyhow::Result<()> { + pub fn set_curr_pwr_out_max(&mut self, dt: si::Time) -> anyhow::Result<()> { // TODO: when a fancier model for `pwr_aux` is implemented, put it here // TODO: make transmission field in vehicle and make it be able to produce an efficiency // TODO: account for traction limits here self.pt_type - .set_cur_pwr_prop_out_max(self.pwr_aux, dt) + .set_curr_pwr_prop_out_max(self.pwr_aux, dt) .with_context(|| anyhow!(format_dbg!()))?; - (self.state.pwr_prop_pos_max, self.state.pwr_prop_neg_max) = self + (self.state.pwr_prop_fwd_max, self.state.pwr_prop_bwd_max) = self .pt_type - .get_cur_pwr_prop_out_max() + .get_curr_pwr_prop_out_max() .with_context(|| anyhow!(format_dbg!()))?; Ok(()) @@ -622,9 +647,14 @@ impl Vehicle { fc_eff_array: Default::default(), fc_eff_map: self .fc() - .map(|fc| match &fc.eff_interp.0 { - utils::interp::Interpolator::Interp1D(interp) => Ok(interp.f_x.clone().into()), - _ => bail!("Only 1-D interpolators can be converted to FASTSim 2"), + .map(|fc| match &fc.eff_interp_from_pwr_out { + utils::interp::Interpolator::Interp1D(_interp1d) => { + Ok(fc.eff_interp_from_pwr_out.f_x()?.clone().into()) + } + _ => bail!( + "{}\nOnly 1-D interpolators can be converted to FASTSim 2", + format_dbg!() + ), }) .transpose()? .unwrap_or_default(), @@ -647,9 +677,14 @@ impl Vehicle { fc_perc_out_array: Default::default(), fc_pwr_out_perc: self .fc() - .map(|fc| match &fc.eff_interp.0 { - utils::interp::Interpolator::Interp1D(interp) => Ok(interp.x.clone().into()), - _ => bail!("Only 1-D interpolators can be converted to FASTSim 2"), + .map(|fc| match &fc.eff_interp_from_pwr_out { + utils::interp::Interpolator::Interp1D(_interp) => { + Ok(fc.eff_interp_from_pwr_out.x()?.clone().into()) + } + _ => bail!( + "{}\nOnly 1-D interpolators can be converted to FASTSim 2", + format_dbg!() + ), }) .transpose()? .unwrap_or_default(), @@ -825,18 +860,18 @@ impl Vehicle { } /// Vehicle state for current time step -#[derive(Clone, Copy, Debug, Deserialize, Serialize, PartialEq, HistoryVec, SetCumulative)] #[fastsim_api] +#[derive(Clone, Copy, Debug, Deserialize, Serialize, PartialEq, HistoryVec, SetCumulative)] pub struct VehicleState { /// time step index pub i: usize, - // power and fields - /// maximum positive propulsive power vehicle can produce - pub pwr_prop_pos_max: si::Power, + // power and energy fields + /// maximum forward propulsive power vehicle can produce + pub pwr_prop_fwd_max: si::Power, /// pwr exerted on wheels by powertrain - /// maximum negative propulsive power vehicle can produce - pub pwr_prop_neg_max: si::Power, + /// maximum backward propulsive power (e.g. regenerative braking) vehicle can produce + pub pwr_prop_bwd_max: si::Power, /// Tractive power required for achieved speed pub pwr_tractive: si::Power, /// integral of [Self::pwr_out] @@ -892,8 +927,8 @@ impl Default for VehicleState { fn default() -> Self { Self { i: Default::default(), - pwr_prop_pos_max: si::Power::ZERO, - pwr_prop_neg_max: si::Power::ZERO, + pwr_prop_fwd_max: si::Power::ZERO, + pwr_prop_bwd_max: si::Power::ZERO, pwr_tractive: si::Power::ZERO, energy_tractive: si::Energy::ZERO, pwr_aux: si::Power::ZERO, @@ -924,6 +959,7 @@ impl Default for VehicleState { pub(crate) mod tests { use super::*; + #[allow(dead_code)] fn vehicles_dir() -> PathBuf { PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("resources/vehicles") } @@ -938,8 +974,8 @@ pub(crate) mod tests { veh.unwrap() }; - veh.to_file(vehicles_dir().join("2012_Ford_Fusion.yaml")) - .unwrap(); + // veh.to_file(vehicles_dir().join("2012_Ford_Fusion.yaml")) + // .unwrap(); assert!(veh.pt_type.is_conventional_vehicle()); veh } @@ -954,8 +990,8 @@ pub(crate) mod tests { veh.unwrap() }; - veh.to_file(vehicles_dir().join("2016_TOYOTA_Prius_Two.yaml")) - .unwrap(); + // veh.to_file(vehicles_dir().join("2016_TOYOTA_Prius_Two.yaml")) + // .unwrap(); assert!(veh.pt_type.is_hybrid_electric_vehicle()); veh } diff --git a/fastsim-py/Cargo.toml b/fastsim-py/Cargo.toml index 31b2e356..87bb3b5c 100644 --- a/fastsim-py/Cargo.toml +++ b/fastsim-py/Cargo.toml @@ -17,4 +17,5 @@ name = "fastsim" crate-type = ["cdylib"] [features] +default = ["logging"] logging = ["fastsim-core/logging", "dep:pyo3-log"] diff --git a/fastsim-py/src/lib.rs b/fastsim-py/src/lib.rs index 86516255..61945762 100644 --- a/fastsim-py/src/lib.rs +++ b/fastsim-py/src/lib.rs @@ -3,7 +3,6 @@ use fastsim_core::air_properties::get_density_air_py; use fastsim_core::prelude::*; -use fastsim_core::utils::interp::{Extrapolate, InterpolatorWrapper, Strategy}; pub use pyo3::exceptions::{ PyAttributeError, PyFileNotFoundError, PyIndexError, PyNotImplementedError, PyRuntimeError, }; @@ -12,8 +11,6 @@ pub use pyo3::types::PyType; #[pymodule] fn fastsim(_py: Python, m: &PyModule) -> PyResult<()> { - #[cfg(feature = "logging")] - pyo3_log::init(); m.add_class::()?; m.add_class::()?; m.add_class::()?; @@ -32,16 +29,20 @@ fn fastsim(_py: Python, m: &PyModule) -> PyResult<()> { m.add_class::()?; m.add_class::()?; m.add_class::()?; - m.add_class::()?; - m.add_class::()?; - m.add_class::()?; m.add_function(wrap_pyfunction!(get_density_air_py, m)?)?; // List enabled features m.add_function(wrap_pyfunction!(fastsim_core::enabled_features, m)?)?; - // List enabled features - m.add_function(wrap_pyfunction!(fastsim_core::enabled_features, m)?)?; + // initialize logging + #[cfg(feature = "logging")] + m.add_function(wrap_pyfunction!(pyo3_log_init, m)?)?; Ok(()) } + +#[cfg_attr(feature = "logging", pyfunction)] +fn pyo3_log_init() { + #[cfg(feature = "logging")] + pyo3_log::init(); +} diff --git a/python/fastsim/__init__.py b/python/fastsim/__init__.py index 2861a08a..b6ec213d 100644 --- a/python/fastsim/__init__.py +++ b/python/fastsim/__init__.py @@ -159,6 +159,7 @@ def variable_path_list_from_py_objs( else: key_path = f"[{key}]" if pre_path is None else pre_path + f"[{key}]" key_paths.append(key_path) + if element_as_list: re_for_elems = re.compile("\\[('(\\w+)'|(\\w+))\\]") for i, kp in enumerate(key_paths): @@ -169,6 +170,16 @@ def variable_path_list_from_py_objs( return key_paths +def cyc_keys() -> List[str]: + import json + cyc = Cycle.from_resource("udds.csv") + cyc_dict = json.loads(cyc.to_json()) + cyc_keys = [key for key, val in cyc_dict.items() if isinstance(val, list)] + + return cyc_keys + +CYC_KEYS = cyc_keys() + def history_path_list(self, element_as_list:bool=False) -> List[str]: """ Returns a list of relative paths to all history variables (all variables @@ -178,12 +189,15 @@ def history_path_list(self, element_as_list:bool=False) -> List[str]: # Arguments - `element_as_list`: if True, each element is itself a list of the path elements """ - item_str = lambda item: item if not element_as_list else ".".join(item) - history_path_list = [ - item for item in self.variable_path_list( - element_as_list=element_as_list) if "history" in item_str(item) - ] - return history_path_list + key_as_str = lambda key: key if isinstance(key, str) else ".".join(key) + is_cyc_key = lambda key: any(cyc_key for cyc_key in CYC_KEYS if cyc_key == key[-1]) and "cyc" in key + var_paths = self.variable_path_list(element_as_list=element_as_list) + history_paths = [] + for key in var_paths: + if (("history" in key_as_str(key)) or is_cyc_key(key)): + history_paths.append(key) + + return history_paths setattr(Pyo3VecWrapper, "__array__", __array__) # noqa: F405 @@ -202,12 +216,13 @@ def from_pydict(cls, pydict: Dict) -> Self: import json return cls.from_json(json.dumps(pydict)) -def to_dataframe(self, pandas:bool=False) -> Union[pd.DataFrame, pl.DataFrame]: +def to_dataframe(self, pandas:bool=False, allow_partial:bool=False) -> Union[pd.DataFrame, pl.DataFrame]: """ Returns time series results from fastsim object as a Polars or Pandas dataframe. # Arguments - `pandas`: returns pandas dataframe if True; otherwise, returns polars dataframe by default + - `allow_partial`: returns dataframe of length equal to solved time steps if simulation fails early """ obj_dict = self.to_pydict() history_paths = self.history_path_list(element_as_list=True) @@ -218,10 +233,17 @@ def to_dataframe(self, pandas:bool=False) -> Union[pd.DataFrame, pl.DataFrame]: for elem in hp: obj = obj[elem] vals.append(obj) - if not pandas: - df = pl.DataFrame({col: val for col, val in zip(cols, vals)}) + if allow_partial: + cutoff = min([len(val) for val in vals]) + if not pandas: + df = pl.DataFrame({col: val[:cutoff] for col, val in zip(cols, vals)}) + else: + df = pd.DataFrame({col: val[:cutoff] for col, val in zip(cols, vals)}) else: - df = pd.DataFrame({col: val for col, val in zip(cols, vals)}) + if not pandas: + df = pl.DataFrame({col: val for col, val in zip(cols, vals)}) + else: + df = pd.DataFrame({col: val for col, val in zip(cols, vals)}) return df # adds variable_path_list() and history_path_list() as methods to all classes in diff --git a/python/fastsim/demos/demo_hev.py b/python/fastsim/demos/demo_hev.py index 29a3d8ba..ce432470 100644 --- a/python/fastsim/demos/demo_hev.py +++ b/python/fastsim/demos/demo_hev.py @@ -23,75 +23,14 @@ # if environment var `SAVE_FIGS=true` is set, save plots SAVE_FIGS = os.environ.get("SAVE_FIGS", "false").lower() == "true" -# `fastsim3` -- load vehicle and cycle, build simulation, and run -# %% - -# load 2016 Toyota Prius Two from file -veh = fsim.Vehicle.from_resource("2016_TOYOTA_Prius_Two.yaml") - -veh_no_save = veh.copy() -fsim.set_param_from_path(veh_no_save, "save_interval", None) - -# Set `save_interval` at vehicle level -- cascades to all sub-components with time-varying states -fsim.set_param_from_path(veh, "save_interval", 1) - -# load cycle from file -cyc = fsim.Cycle.from_resource("udds.csv") - -# instantiate `SimDrive` simulation object -sd0 = fsim.SimDrive(veh, cyc) -sd = sd0.copy() - -# simulation start time -t0 = time.perf_counter() -# run simulation -if DEBUG_LOG: - with fsim.utils.with_logging(): - sd.walk() -else: - sd.walk() -# simulation end time -t1 = time.perf_counter() -t_fsim3_si1 = t1 - t0 -print(f"fastsim-3 `sd.walk()` elapsed time with `save_interval` of 1:\n{t_fsim3_si1:.2e} s") - -# instantiate `SimDrive` simulation object -sd_no_save = fsim.SimDrive(veh_no_save, cyc) - -# simulation start time -t0 = time.perf_counter() -# run simulation -sd_no_save.walk() -# simulation end time -t1 = time.perf_counter() -t_fsim3_si_none = t1 - t0 -print(f"fastsim-3 `sd.walk()` elapsed time with `save_interval` of None:\n{t_fsim3_si_none:.2e} s") - -# `fastsim-2` benchmarking -# %% - -sd2 = sd0.to_fastsim2() -t0 = time.perf_counter() -with fsim.utils.without_logging(): # suppresses known warning - sd2.sim_drive() -t1 = time.perf_counter() -t_fsim2 = t1 - t0 -print(f"fastsim-2 `sd.walk()` elapsed time: {t_fsim2:.2e} s") -print("`fastsim-3` speedup relative to `fastsim-2` (should be greater than 1) for `save_interval` of 1:") -print(f"{t_fsim2/t_fsim3_si1:.3g}x") -print("`fastsim-3` speedup relative to `fastsim-2` (should be greater than 1) for `save_interval` of `None`:") -print(f"{t_fsim2/t_fsim3_si_none:.3g}x") -# Visualize results - -# %% def plot_road_loads() -> Tuple[Figure, Axes]: fig, ax = plt.subplots(3, 1, sharex=True, figsize=figsize_3_stacked) plt.suptitle("Road Loads") ax[0].set_prop_cycle(get_paired_cycler()) ax[0].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.history.pwr_drag_watts) / 1e3, + df["cyc.time_seconds"], + df["veh.history.pwr_drag_watts"] / 1e3, label="f3 drag", ) ax[0].plot( @@ -100,8 +39,8 @@ def plot_road_loads() -> Tuple[Figure, Axes]: label="f2 drag", ) ax[0].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.history.pwr_rr_watts) / 1e3, + df["cyc.time_seconds"], + df["veh.history.pwr_rr_watts"] / 1e3, label="f3 rr", ) ax[0].plot( @@ -114,16 +53,15 @@ def plot_road_loads() -> Tuple[Figure, Axes]: ax[1].set_prop_cycle(get_uni_cycler()) ax[1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.history.pwr_drag_watts) / - 1e3 - np.array(sd2.drag_kw.tolist()), + df["cyc.time_seconds"], + df["veh.history.pwr_drag_watts"] / 1e3 - np.array(sd2.drag_kw.tolist())[:len(df)], label="drag", linestyle=baselinestyles[0], ) ax[1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.history.pwr_rr_watts) / - 1e3 - np.array(sd2.rr_kw.tolist()), + df["cyc.time_seconds"], + df["veh.history.pwr_rr_watts"] / + 1e3 - np.array(sd2.rr_kw.tolist())[:len(df)], label="rr", linestyle=baselinestyles[1], ) @@ -134,8 +72,8 @@ def plot_road_loads() -> Tuple[Figure, Axes]: ax[-1].set_prop_cycle(get_paired_cycler()) ax[-1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.history.speed_ach_meters_per_second), + df["cyc.time_seconds"], + df["veh.history.speed_ach_meters_per_second"], label="f3", ) ax[-1].plot( @@ -160,9 +98,9 @@ def plot_fc_pwr() -> Tuple[Figure, Axes]: ax[0].set_prop_cycle(get_paired_cycler()) ax[0].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - (np.array(sd.veh.fc.history.pwr_propulsion_watts) + - np.array(sd.veh.fc.history.pwr_aux_watts)) / 1e3, + df["cyc.time_seconds"], + (df["veh.pt_type.HybridElectricVehicle.fc.history.pwr_propulsion_watts"] + + df["veh.pt_type.HybridElectricVehicle.fc.history.pwr_aux_watts"]) / 1e3, label="f3 shaft", ) ax[0].plot( @@ -171,8 +109,8 @@ def plot_fc_pwr() -> Tuple[Figure, Axes]: label="f2 shaft", ) ax[0].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.fc.history.pwr_fuel_watts) / 1e3, + df["cyc.time_seconds"], + df["veh.pt_type.HybridElectricVehicle.fc.history.pwr_fuel_watts"] / 1e3, label="f3 fuel", ) ax[0].plot( @@ -185,16 +123,16 @@ def plot_fc_pwr() -> Tuple[Figure, Axes]: ax[1].set_prop_cycle(get_uni_cycler()) ax[1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - (np.array(sd.veh.fc.history.pwr_propulsion_watts) + - np.array(sd.veh.fc.history.pwr_aux_watts)) / 1e3 - np.array(sd2.fc_kw_out_ach.tolist()), + df["cyc.time_seconds"], + (df["veh.pt_type.HybridElectricVehicle.fc.history.pwr_propulsion_watts"] + + df["veh.pt_type.HybridElectricVehicle.fc.history.pwr_aux_watts"]) / 1e3 - np.array(sd2.fc_kw_out_ach.tolist())[:len(df)], label="shaft", linestyle=baselinestyles[0] ) ax[1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - (np.array(sd.veh.fc.history.pwr_propulsion_watts) + - np.array(sd.veh.fc.history.pwr_aux_watts)) / 1e3 - np.array(sd2.fc_kw_out_ach.tolist()), + df["cyc.time_seconds"], + (df["veh.pt_type.HybridElectricVehicle.fc.history.pwr_propulsion_watts"] + + df["veh.pt_type.HybridElectricVehicle.fc.history.pwr_aux_watts"]) / 1e3 - np.array(sd2.fc_kw_out_ach.tolist())[:len(df)], label="fuel", linestyle=baselinestyles[1] ) @@ -203,8 +141,8 @@ def plot_fc_pwr() -> Tuple[Figure, Axes]: ax[-1].set_prop_cycle(get_paired_cycler()) ax[-1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.history.speed_ach_meters_per_second), + df["cyc.time_seconds"], + df["veh.history.speed_ach_meters_per_second"], label="f3", ) ax[-1].plot( @@ -229,9 +167,9 @@ def plot_fc_energy() -> Tuple[Figure, Axes]: ax[0].set_prop_cycle(get_paired_cycler()) ax[0].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - (np.array(sd.veh.fc.history.energy_propulsion_joules) + - np.array(sd.veh.fc.history.energy_aux_joules)) / 1e6, + df["cyc.time_seconds"], + (df["veh.pt_type.HybridElectricVehicle.fc.history.energy_propulsion_joules"] + + df["veh.pt_type.HybridElectricVehicle.fc.history.energy_aux_joules"]) / 1e6, label="f3 shaft", ) ax[0].plot( @@ -240,8 +178,8 @@ def plot_fc_energy() -> Tuple[Figure, Axes]: label="f2 shaft", ) ax[0].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.fc.history.energy_fuel_joules) / 1e6, + df["cyc.time_seconds"], + df["veh.pt_type.HybridElectricVehicle.fc.history.energy_fuel_joules"] / 1e6, label="f3 fuel", ) ax[0].plot( @@ -254,16 +192,16 @@ def plot_fc_energy() -> Tuple[Figure, Axes]: ax[1].set_prop_cycle(get_uni_cycler()) ax[1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - (np.array(sd.veh.fc.history.energy_propulsion_joules) + - np.array(sd.veh.fc.history.energy_aux_joules)) / 1e6 - np.array(sd2.fc_cumu_mj_out_ach.tolist()), + df["cyc.time_seconds"], + (df["veh.pt_type.HybridElectricVehicle.fc.history.energy_propulsion_joules"] + + df["veh.pt_type.HybridElectricVehicle.fc.history.energy_aux_joules"]) / 1e6 - np.array(sd2.fc_cumu_mj_out_ach.tolist())[:len(df)], label="shaft", linestyle=baselinestyles[0] ) ax[1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - (np.array(sd.veh.fc.history.energy_propulsion_joules) + - np.array(sd.veh.fc.history.energy_aux_joules)) / 1e6 - np.array(sd2.fc_cumu_mj_out_ach.tolist()), + df["cyc.time_seconds"], + (df["veh.pt_type.HybridElectricVehicle.fc.history.energy_propulsion_joules"] + + df["veh.pt_type.HybridElectricVehicle.fc.history.energy_aux_joules"]) / 1e6 - np.array(sd2.fc_cumu_mj_out_ach.tolist())[:len(df)], label="fuel", linestyle=baselinestyles[1] ) @@ -272,8 +210,8 @@ def plot_fc_energy() -> Tuple[Figure, Axes]: ax[-1].set_prop_cycle(get_paired_cycler()) ax[-1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.history.speed_ach_meters_per_second), + df["cyc.time_seconds"], + df["veh.history.speed_ach_meters_per_second"], label="f3", ) ax[-1].plot( @@ -298,8 +236,8 @@ def plot_res_pwr() -> Tuple[Figure, Axes]: ax[0].set_prop_cycle(get_paired_cycler()) ax[0].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.res.history.pwr_out_electrical_watts) / 1e3, + df["cyc.time_seconds"], + df["veh.pt_type.HybridElectricVehicle.res.history.pwr_out_electrical_watts"] / 1e3, label="f3 batt elec", ) ax[0].plot( @@ -308,8 +246,8 @@ def plot_res_pwr() -> Tuple[Figure, Axes]: label="f2 batt elec", ) ax[0].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.res.history.pwr_out_chemical_watts) / 1e3, + df["cyc.time_seconds"], + df["veh.pt_type.HybridElectricVehicle.res.history.pwr_out_chemical_watts"] / 1e3, label="f3 batt chem", ) ax[0].set_ylabel("RES (battery) Power [kW]") @@ -317,8 +255,9 @@ def plot_res_pwr() -> Tuple[Figure, Axes]: ax[1].set_prop_cycle(get_uni_cycler()) ax[1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.res.history.pwr_out_electrical_watts) / 1e3 - np.array(sd2.ess_kw_out_ach.tolist()), + df["cyc.time_seconds"], + df["veh.pt_type.HybridElectricVehicle.res.history.pwr_out_electrical_watts"] / 1e3 + - np.array(sd2.ess_kw_out_ach.tolist())[:len(df)], label="batt elec", linestyle=baselinestyles[0] ) @@ -327,8 +266,8 @@ def plot_res_pwr() -> Tuple[Figure, Axes]: ax[-1].set_prop_cycle(get_paired_cycler()) ax[-1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.history.speed_ach_meters_per_second), + df["cyc.time_seconds"], + df["veh.history.speed_ach_meters_per_second"], label="f3", ) ax[-1].plot( @@ -352,8 +291,8 @@ def plot_res_energy() -> Tuple[Figure, Axes]: plt.suptitle("Battery Energy") ax[0].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.res.history.energy_out_electrical_joules) / 1e6, + df["cyc.time_seconds"], + df["veh.pt_type.HybridElectricVehicle.res.history.energy_out_electrical_joules"] / 1e6, label="f3 batt elec", ) ax[0].plot( @@ -362,16 +301,16 @@ def plot_res_energy() -> Tuple[Figure, Axes]: label="f2 batt elec", ) ax[0].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.res.history.energy_out_chemical_joules) / 1e6, + df["cyc.time_seconds"], + df["veh.pt_type.HybridElectricVehicle.res.history.energy_out_chemical_joules"] / 1e6, label="f3 batt chem", ) ax[0].set_ylabel("RES (battery) Energy [MJ]") ax[0].legend() ax[1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.res.history.energy_out_electrical_joules) / 1e6 - np.array(sd2.ess_kw_out_ach.tolist()), + df["cyc.time_seconds"], + df["veh.pt_type.HybridElectricVehicle.res.history.energy_out_electrical_joules"] / 1e6 - np.array(sd2.ess_kw_out_ach.tolist()), label="batt elec", linestyle=baselinestyles[0] ) @@ -379,8 +318,8 @@ def plot_res_energy() -> Tuple[Figure, Axes]: ax[1].legend() ax[-1].plot( - np.array(sd.cyc.time_seconds)[::veh.save_interval], - np.array(sd.veh.history.speed_ach_meters_per_second), + df["cyc.time_seconds"], + df["veh.history.speed_ach_meters_per_second"], label="f3", ) ax[-1].plot( @@ -428,15 +367,74 @@ def get_uni_cycler(): ) return uni_cycler +# `fastsim3` -- load vehicle and cycle, build simulation, and run +# %% + +# load 2016 Toyota Prius Two from file +veh = fsim.Vehicle.from_resource("2016_TOYOTA_Prius_Two.yaml") + +veh_no_save = veh.copy() +fsim.set_param_from_path(veh_no_save, "save_interval", None) + +# Set `save_interval` at vehicle level -- cascades to all sub-components with time-varying states +fsim.set_param_from_path(veh, "save_interval", 1) + +# load cycle from file +# TODO make it so that the cycles in resources have `name` populated +cyc = fsim.Cycle.from_resource("udds.csv") + +# instantiate `SimDrive` simulation object +sd0 = fsim.SimDrive(veh, cyc) +sd = sd0.copy() + +# simulation start time +t0 = time.perf_counter() +# run simulation +if DEBUG_LOG: + with fsim.utils.with_logging(): + sd.walk() +else: + sd.walk() +# simulation end time +t1 = time.perf_counter() +t_fsim3_si1 = t1 - t0 +print(f"fastsim-3 `sd.walk()` elapsed time with `save_interval` of 1:\n{t_fsim3_si1:.2e} s") + +# TODO: change arg to default +df = sd.to_dataframe(allow_partial=True) + +# instantiate `SimDrive` simulation object +sd_no_save = fsim.SimDrive(veh_no_save, cyc) + +# simulation start time +t0 = time.perf_counter() +# run simulation +sd_no_save.walk() +# simulation end time +t1 = time.perf_counter() +t_fsim3_si_none = t1 - t0 +print(f"fastsim-3 `sd.walk()` elapsed time with `save_interval` of None:\n{t_fsim3_si_none:.2e} s") + +# `fastsim-2` benchmarking +# %% + +sd2 = sd0.to_fastsim2() +t0 = time.perf_counter() +with fsim.utils.without_logging(): # suppresses known warning + sd2.sim_drive() +t1 = time.perf_counter() +t_fsim2 = t1 - t0 +print(f"fastsim-2 `sd.walk()` elapsed time: {t_fsim2:.2e} s") +print("`fastsim-3` speedup relative to `fastsim-2` (should be greater than 1) for `save_interval` of 1:") +print(f"{t_fsim2/t_fsim3_si1:.3g}x") +print("`fastsim-3` speedup relative to `fastsim-2` (should be greater than 1) for `save_interval` of `None`:") +print(f"{t_fsim2/t_fsim3_si_none:.3g}x") +# Visualize results + +# %% if SHOW_PLOTS: fig, ax = plot_road_loads() fig, ax = plot_fc_pwr() fig, ax = plot_fc_energy() fig, ax = plot_res_pwr() fig, ax = plot_res_energy() - - - - - -# %% diff --git a/python/fastsim/demos/demo_variable_paths.py b/python/fastsim/demos/demo_variable_paths.py index bba00e18..583f1488 100644 --- a/python/fastsim/demos/demo_variable_paths.py +++ b/python/fastsim/demos/demo_variable_paths.py @@ -7,7 +7,7 @@ import polars as pl # load 2012 Ford Fusion from file -veh = fsim.Vehicle.from_resource("2016_TOYOTA_Prius_Two.yaml") +veh = fsim.Vehicle.from_resource("2012_Ford_Fusion.yaml") # Set `save_interval` at vehicle level -- cascades to all sub-components with time-varying states fsim.set_param_from_path(veh, "save_interval", 1) diff --git a/python/fastsim/demos/test_demos.py b/python/fastsim/demos/test_demos.py index 4da5b4ac..794a1252 100644 --- a/python/fastsim/demos/test_demos.py +++ b/python/fastsim/demos/test_demos.py @@ -12,4 +12,11 @@ def demo_paths(): "demo_path", demo_paths(), ids=[dp.name for dp in demo_paths()]) def test_demo(demo_path: Path): os.environ['SHOW_PLOTS'] = "false" - exec(open(demo_path).read()) + rslt = subprocess.run( + ["python", demo_path], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + text=True + ) + + assert rslt.returncode == 0, rslt.stderr diff --git a/python/fastsim/resources/demos/demo_variable_paths/to_dataframe_expected.csv b/python/fastsim/resources/demos/demo_variable_paths/to_dataframe_expected.csv index 6471ffac..dc3dff82 100644 --- a/python/fastsim/resources/demos/demo_variable_paths/to_dataframe_expected.csv +++ b/python/fastsim/resources/demos/demo_variable_paths/to_dataframe_expected.csv @@ -1,1371 +1,1371 @@ -veh.pt_type.HybridElectricVehicle.res.history.pwr_cat_max,veh.pt_type.HybridElectricVehicle.res.history.pwr_prop_max,veh.pt_type.HybridElectricVehicle.res.history.pwr_regen_max,veh.pt_type.HybridElectricVehicle.res.history.pwr_disch_max,veh.pt_type.HybridElectricVehicle.res.history.pwr_charge_max,veh.pt_type.HybridElectricVehicle.res.history.i,veh.pt_type.HybridElectricVehicle.res.history.soc,veh.pt_type.HybridElectricVehicle.res.history.eff,veh.pt_type.HybridElectricVehicle.res.history.soh,veh.pt_type.HybridElectricVehicle.res.history.pwr_out_electrical,veh.pt_type.HybridElectricVehicle.res.history.pwr_out_propulsion,veh.pt_type.HybridElectricVehicle.res.history.pwr_aux,veh.pt_type.HybridElectricVehicle.res.history.pwr_loss,veh.pt_type.HybridElectricVehicle.res.history.pwr_out_chemical,veh.pt_type.HybridElectricVehicle.res.history.energy_out_electrical,veh.pt_type.HybridElectricVehicle.res.history.energy_out_propulsion,veh.pt_type.HybridElectricVehicle.res.history.energy_aux,veh.pt_type.HybridElectricVehicle.res.history.energy_loss,veh.pt_type.HybridElectricVehicle.res.history.energy_out_chemical,veh.pt_type.HybridElectricVehicle.res.history.max_soc,veh.pt_type.HybridElectricVehicle.res.history.min_soc,veh.pt_type.HybridElectricVehicle.res.history.temperature_celsius,veh.pt_type.HybridElectricVehicle.fc.history.i,veh.pt_type.HybridElectricVehicle.fc.history.pwr_prop_max,veh.pt_type.HybridElectricVehicle.fc.history.eff,veh.pt_type.HybridElectricVehicle.fc.history.pwr_propulsion,veh.pt_type.HybridElectricVehicle.fc.history.energy_propulsion,veh.pt_type.HybridElectricVehicle.fc.history.pwr_aux,veh.pt_type.HybridElectricVehicle.fc.history.energy_aux,veh.pt_type.HybridElectricVehicle.fc.history.pwr_fuel,veh.pt_type.HybridElectricVehicle.fc.history.energy_fuel,veh.pt_type.HybridElectricVehicle.fc.history.pwr_loss,veh.pt_type.HybridElectricVehicle.fc.history.energy_loss,veh.pt_type.HybridElectricVehicle.fc.history.fc_on,veh.pt_type.HybridElectricVehicle.em.history.i,veh.pt_type.HybridElectricVehicle.em.history.eff,veh.pt_type.HybridElectricVehicle.em.history.pwr_mech_fwd_out_max,veh.pt_type.HybridElectricVehicle.em.history.pwr_mech_bwd_out_max,veh.pt_type.HybridElectricVehicle.em.history.pwr_rate_out_max,veh.pt_type.HybridElectricVehicle.em.history.pwr_out_req,veh.pt_type.HybridElectricVehicle.em.history.energy_out_req,veh.pt_type.HybridElectricVehicle.em.history.pwr_elec_prop_in,veh.pt_type.HybridElectricVehicle.em.history.energy_elec_prop_in,veh.pt_type.HybridElectricVehicle.em.history.pwr_mech_prop_out,veh.pt_type.HybridElectricVehicle.em.history.energy_mech_prop_out,veh.pt_type.HybridElectricVehicle.em.history.pwr_mech_dyn_brake,veh.pt_type.HybridElectricVehicle.em.history.energy_mech_dyn_brake,veh.pt_type.HybridElectricVehicle.em.history.pwr_elec_dyn_brake,veh.pt_type.HybridElectricVehicle.em.history.energy_elec_dyn_brake,veh.pt_type.HybridElectricVehicle.em.history.pwr_loss,veh.pt_type.HybridElectricVehicle.em.history.energy_loss,veh.history.i,veh.history.pwr_prop_pos_max,veh.history.pwr_prop_neg_max,veh.history.pwr_tractive,veh.history.energy_tractive,veh.history.pwr_aux,veh.history.energy_aux,veh.history.pwr_drag,veh.history.energy_drag,veh.history.pwr_accel,veh.history.energy_accel,veh.history.pwr_ascent,veh.history.energy_ascent,veh.history.pwr_rr,veh.history.energy_rr,veh.history.pwr_whl_inertia,veh.history.energy_whl_inertia,veh.history.pwr_brake,veh.history.energy_brake,veh.history.curr_pwr_met,veh.history.all_curr_pwr_met,veh.history.speed_ach,veh.history.dist,veh.history.grade_curr,veh.history.air_density -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.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,false,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,1,0.4999994160827494,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,0.95,0.25,22.0,1,0.0,0.1,0.0,0.0,1050.0,1050.0,13125.0,13125.0,13125.0,13125.0,true,1,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,1,53000.0,53000.0,0.0,0.0,1050.0,1050.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,2,0.4999988321654988,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2100.0,0.0,2100.0,2096.846846846847,3.1531531531531534,0.95,0.25,22.0,2,0.0,0.1,0.0,0.0,1050.0,2100.0,13125.0,26250.0,13125.0,26250.0,true,2,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,2,53000.0,53000.0,0.0,0.0,1050.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,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,3,0.4999982482482482,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3150.0,0.0,3150.0,3145.27027027027,4.72972972972973,0.95,0.25,22.0,3,0.0,0.1,0.0,0.0,1050.0,3150.0,13125.0,39375.0,13125.0,39375.0,true,3,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,3,53000.0,53000.0,0.0,0.0,1050.0,3150.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,4,0.49999766433099757,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,4200.0,0.0,4200.0,4193.693693693694,6.306306306306307,0.95,0.25,22.0,4,0.0,0.1,0.0,0.0,1050.0,4200.0,13125.0,52500.0,13125.0,52500.0,true,4,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,4,53000.0,53000.0,0.0,0.0,1050.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,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,5,0.49999708041374696,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5250.0,0.0,5250.0,5242.117117117117,7.882882882882884,0.95,0.25,22.0,5,0.0,0.1,0.0,0.0,1050.0,5250.0,13125.0,65625.0,13125.0,65625.0,true,5,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,5,53000.0,53000.0,0.0,0.0,1050.0,5250.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,6,0.49999649649649636,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6300.0,0.0,6300.0,6290.540540540541,9.45945945945946,0.95,0.25,22.0,6,0.0,0.1,0.0,0.0,1050.0,6300.0,13125.0,78750.0,13125.0,78750.0,true,6,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,6,53000.0,53000.0,0.0,0.0,1050.0,6300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,7,0.49999591257924575,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,7350.0,0.0,7350.0,7338.9639639639645,11.036036036036036,0.95,0.25,22.0,7,0.0,0.1,0.0,0.0,1050.0,7350.0,13125.0,91875.0,13125.0,91875.0,true,7,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,7,53000.0,53000.0,0.0,0.0,1050.0,7350.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,8,0.49999532866199514,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,8400.0,0.0,8400.0,8387.387387387387,12.612612612612612,0.95,0.25,22.0,8,0.0,0.1,0.0,0.0,1050.0,8400.0,13125.0,105000.0,13125.0,105000.0,true,8,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,8,53000.0,53000.0,0.0,0.0,1050.0,8400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,9,0.49999474474474453,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,9450.0,0.0,9450.0,9435.81081081081,14.189189189189188,0.95,0.25,22.0,9,0.0,0.1,0.0,0.0,1050.0,9450.0,13125.0,118125.0,13125.0,118125.0,true,9,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,9,53000.0,53000.0,0.0,0.0,1050.0,9450.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,10,0.4999941608274939,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,10500.0,0.0,10500.0,10484.234234234233,15.765765765765764,0.95,0.25,22.0,10,0.0,0.1,0.0,0.0,1050.0,10500.0,13125.0,131250.0,13125.0,131250.0,true,10,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,10,53000.0,53000.0,0.0,0.0,1050.0,10500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,11,0.4999935769102433,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,11550.0,0.0,11550.0,11532.657657657655,17.34234234234234,0.95,0.25,22.0,11,0.0,0.1,0.0,0.0,1050.0,11550.0,13125.0,144375.0,13125.0,144375.0,true,11,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,11,53000.0,53000.0,0.0,0.0,1050.0,11550.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,12,0.4999929929929927,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,12600.0,0.0,12600.0,12581.081081081078,18.91891891891892,0.95,0.25,22.0,12,0.0,0.1,0.0,0.0,1050.0,12600.0,13125.0,157500.0,13125.0,157500.0,true,12,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,12,53000.0,53000.0,0.0,0.0,1050.0,12600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,13,0.4999924090757421,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,13650.0,0.0,13650.0,13629.5045045045,20.495495495495497,0.95,0.25,22.0,13,0.0,0.1,0.0,0.0,1050.0,13650.0,13125.0,170625.0,13125.0,170625.0,true,13,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,13,53000.0,53000.0,0.0,0.0,1050.0,13650.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,14,0.4999918251584915,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,14700.0,0.0,14700.0,14677.927927927924,22.072072072072075,0.95,0.25,22.0,14,0.0,0.1,0.0,0.0,1050.0,14700.0,13125.0,183750.0,13125.0,183750.0,true,14,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,14,53000.0,53000.0,0.0,0.0,1050.0,14700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,15,0.4999912412412409,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,15750.0,0.0,15750.0,15726.351351351346,23.648648648648653,0.95,0.25,22.0,15,0.0,0.1,0.0,0.0,1050.0,15750.0,13125.0,196875.0,13125.0,196875.0,true,15,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,15,53000.0,53000.0,0.0,0.0,1050.0,15750.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,16,0.4999906573239903,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,16800.0,0.0,16800.0,16774.77477477477,25.22522522522523,0.95,0.25,22.0,16,0.0,0.1,0.0,0.0,1050.0,16800.0,13125.0,210000.0,13125.0,210000.0,true,16,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,16,53000.0,53000.0,0.0,0.0,1050.0,16800.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,17,0.4999900734067397,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,17850.0,0.0,17850.0,17823.198198198195,26.80180180180181,0.95,0.25,22.0,17,0.0,0.1,0.0,0.0,1050.0,17850.0,13125.0,223125.0,13125.0,223125.0,true,17,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,17,53000.0,53000.0,0.0,0.0,1050.0,17850.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,18,0.49998948948948907,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,18900.0,0.0,18900.0,18871.62162162162,28.378378378378386,0.95,0.25,22.0,18,0.0,0.1,0.0,0.0,1050.0,18900.0,13125.0,236250.0,13125.0,236250.0,true,18,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,18,53000.0,53000.0,0.0,0.0,1050.0,18900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,19,0.49998890557223846,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,19950.0,0.0,19950.0,19920.045045045044,29.954954954954964,0.95,0.25,22.0,19,0.0,0.1,0.0,0.0,1050.0,19950.0,13125.0,249375.0,13125.0,249375.0,true,19,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,19,53000.0,53000.0,0.0,0.0,1050.0,19950.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,20,0.49998832165498786,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,21000.0,0.0,21000.0,20968.46846846847,31.53153153153154,0.95,0.25,22.0,20,0.0,0.1,0.0,0.0,1050.0,21000.0,13125.0,262500.0,13125.0,262500.0,true,20,0.83,53000.0,53000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,-0.0,0.0,0.0,0.0,20,53000.0,53000.0,0.0,0.0,1050.0,21000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,21,0.4999867230714106,666.0,0.0,2874.5729885335404,1824.5729885335406,1050.0,2870.256812875082,4.31617565845877,23874.57298853354,1824.5729885335406,22050.0,23838.72528134355,35.84770718999031,0.95,0.25,22.0,21,0.0,0.1,0.0,0.0,1050.0,22050.0,13125.0,275625.0,13125.0,275625.0,true,21,0.8595922412165417,53000.0,53000.0,0.0,1568.3887844767096,1568.3887844767096,1824.5729885335406,1824.5729885335406,1568.3887844767096,1568.3887844767096,-0.0,0.0,-0.0,0.0,256.18420405683105,256.18420405683105,21,53000.0,53000.0,1568.3887844767096,1568.3887844767096,1050.0,22050.0,0.12351672898555459,0.12351672898555459,1470.4055454972297,1470.4055454972297,0.0,0.0,68.77603165684775,68.77603165684775,29.083690593646644,29.083690593646644,-1568.3887844767096,-1568.3887844767096,true,true,1.341141759,1.341141759,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,22,0.49998336177138375,666.0,0.0,6044.289708271705,4994.289708271705,1050.0,6035.214198199225,9.075510072480037,29918.862696805245,6818.862696805246,23100.0,29873.939479542776,44.923217262470345,0.95,0.25,22.0,22,0.0,0.1,0.0,0.0,1050.0,23100.0,13125.0,288750.0,13125.0,288750.0,true,22,0.9025232309807876,53000.0,53000.0,0.0,4507.462483963474,6075.851268440184,4994.289708271705,6818.862696805246,4507.462483963474,6075.851268440184,-0.0,0.0,-0.0,0.0,486.82722430823105,743.0114283650621,22,53000.0,53000.0,4507.462483963474,6075.851268440184,1050.0,23100.0,3.225017217416974,3.3485339464025285,4216.7963446794565,5687.201890176686,0.0,0.0,204.03556054608447,272.8115922029322,83.40556152051622,112.48925211416287,-4507.462483963474,-6075.851268440184,true,true,2.637578792,3.978720551,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,23,0.49997860717904324,666.0,0.0,8549.707946683931,7499.707946683931,1050.0,8536.870547364586,12.837399319345243,38468.570643489176,14318.570643489176,24150.0,38410.81002690736,57.76061658181559,0.95,0.25,22.0,23,0.0,0.1,0.0,0.0,1050.0,24150.0,13125.0,301875.0,13125.0,301875.0,true,23,0.915921291270484,53000.0,53000.0,0.0,6869.142186678257,12944.993455118441,7499.707946683931,14318.570643489176,6869.142186678257,12944.993455118441,-0.0,0.0,-0.0,0.0,630.5657600056747,1373.5771883707368,23,53000.0,53000.0,6869.142186678257,12944.993455118441,1050.0,24150.0,13.946525468228778,17.295059414631307,6396.264120902913,12083.4660110796,0.0,0.0,332.4174862645082,605.2290784674404,126.51405404260566,239.00330615676853,-6869.142186678257,-12944.993455118441,true,true,3.844606375,7.823326926,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,24,0.49997190852242807,666.0,0.0,12045.52432543246,10995.52432543246,1050.0,12027.43795257145,18.0863728610097,50514.094968921636,25314.094968921636,25200.0,50438.24797947881,75.84698944282529,0.95,0.25,22.0,24,0.0,0.1,0.0,0.0,1050.0,25200.0,13125.0,315000.0,13125.0,315000.0,true,24,0.9285269457305658,53000.0,53000.0,0.0,10209.640618599942,23154.634073718385,10995.52432543246,25314.094968921636,10209.640618599942,23154.634073718385,-0.0,0.0,-0.0,0.0,785.8837068325174,2159.460895203254,24,53000.0,53000.0,10209.640618599942,23154.634073718385,1050.0,25200.0,37.14926193135575,54.44432134598706,9523.326575424058,21606.79258650366,0.0,0.0,460.799411982932,1066.0284904503724,188.36536926159692,427.36867541836546,-10209.640618599942,-23154.634073718385,true,true,5.141043408,12.964370334,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,25,0.4999637430378258,666.0,0.0,14683.174411735868,13633.174411735868,1050.0,14661.127603309838,22.046808426029834,65197.269380657504,38947.269380657504,26250.0,65099.37558278865,97.89379786885513,0.95,0.25,22.0,25,0.0,0.1,0.0,0.0,1050.0,26250.0,13125.0,328125.0,13125.0,328125.0,true,25,0.9319867336693761,53000.0,53000.0,0.0,12705.93768953863,35860.571763257016,13633.174411735868,38947.269380657504,12705.93768953863,35860.571763257016,-0.0,0.0,-0.0,0.0,927.2367221972381,3086.697617400492,25,53000.0,53000.0,12705.93768953863,35860.571763257016,1050.0,26250.0,78.56355650215778,133.00787784814486,11802.455171273683,33409.24775777734,0.0,0.0,591.4738720745329,1657.5023625249053,233.44508968825522,660.8137651066206,-12705.93768953863,-35860.571763257016,true,true,6.392775716,19.35714605,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,26,0.49995459926570557,666.0,0.0,16442.331026597625,15392.331026597627,1050.0,16417.642841873003,24.68818472462106,81639.60040725513,54339.60040725513,27300.0,81517.01842466166,122.5819825934762,0.95,0.25,22.0,26,0.0,0.1,0.0,0.0,1050.0,27300.0,13125.0,341250.0,13125.0,341250.0,true,26,0.9335562326077758,53000.0,53000.0,0.0,14369.606564242258,50230.17832749928,15392.331026597627,54339.60040725513,14369.606564242258,50230.17832749928,-0.0,0.0,-0.0,0.0,1022.7244623553688,4109.422079755861,26,53000.0,53000.0,14369.606564242258,50230.17832749928,1050.0,27300.0,138.93952172602434,271.9473995741692,13253.255315608116,46662.50307338545,0.0,0.0,715.2707290466025,2372.773091571508,262.1409978615148,922.9547629681354,-14369.606564242258,-50230.17832749928,true,true,7.555098574,26.912244624,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,27,0.4999519883606441,666.0,0.0,4694.92948158445,3644.9294815844496,1050.0,4687.880037918407,7.049443666042717,86334.52988883958,57984.52988883958,28350.0,86204.89846258007,129.63142625951892,0.95,0.25,22.0,27,0.0,0.1,0.0,0.0,1050.0,28350.0,13125.0,354375.0,13125.0,354375.0,true,27,0.8906251496705153,53000.0,53000.0,0.0,3246.2658650746243,53476.4441925739,3644.9294815844496,57984.52988883958,3246.2658650746243,53476.4441925739,-0.0,0.0,-0.0,0.0,398.66361650982526,4508.085696265686,27,53000.0,53000.0,3246.2658650746243,53476.4441925739,1050.0,28350.0,182.9954685989084,454.9428681730776,2235.0164261297755,48897.51949951523,0.0,0.0,784.0467607034502,3156.819852274958,44.207209642490554,967.1619726106259,-3246.2658650746243,-53476.4441925739,true,true,7.733917475,34.646162099,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,28,0.49994790728375305,666.0,0.0,7338.59246549062,6288.59246549062,1050.0,7327.573557884779,11.018907605841772,93673.1223543302,64273.1223543302,29400.0,93532.47202046485,140.6503338653607,0.95,0.25,22.0,28,0.0,0.1,0.0,0.0,1050.0,29400.0,13125.0,367500.0,13125.0,367500.0,true,28,0.9116335543439077,53000.0,53000.0,0.0,5732.891901135532,59209.33609370943,6288.59246549062,64273.1223543302,5732.891901135532,59209.33609370943,-0.0,0.0,-0.0,0.0,555.7005643550883,5063.786260620775,28,53000.0,53000.0,5732.891901135532,59209.33609370943,1050.0,29400.0,202.9419380970144,657.884806270092,4626.876110095067,53524.39560961029,0.0,0.0,811.5571733354203,3968.3770256103785,91.51667960802955,1058.6786522186553,-5732.891901135532,-59209.33609370943,true,true,8.091555277,42.737717376,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,29,0.49993666090076444,666.0,0.0,20223.245890133225,19173.245890133225,1050.0,20192.880656063957,30.365234069269107,113896.36824446343,83446.36824446342,30450.0,113725.3526765288,171.01556793462981,0.95,0.25,22.0,29,0.0,0.1,0.0,0.0,1050.0,30450.0,13125.0,380625.0,13125.0,380625.0,true,29,0.9369474757919805,53000.0,53000.0,0.0,17964.32433949929,77173.66043320872,19173.245890133225,83446.36824446342,17964.32433949929,77173.66043320872,-0.0,0.0,-0.0,0.0,1208.921550633935,6272.70781125471,29,53000.0,53000.0,17964.32433949929,77173.66043320872,1050.0,30450.0,267.21276090700894,925.0975671771009,16481.612379739618,70006.0079893499,0.0,0.0,889.503342536258,4857.880368146636,325.99585631640707,1384.6745085350624,-17964.32433949929,-77173.66043320872,true,true,9.253878135,51.991595511,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,30,0.4999310175359083,666.0,0.0,10147.898684339782,9097.898684339782,1050.0,10132.66159922816,15.237085111621294,124044.26692880322,92544.2669288032,31500.0,123858.01427575696,186.2526530462511,0.95,0.25,22.0,30,0.0,0.1,0.0,0.0,1050.0,31500.0,13125.0,393750.0,13125.0,393750.0,true,30,0.9216415136391336,53000.0,53000.0,0.0,8385.001114370398,85558.66154757912,9097.898684339782,92544.2669288032,8385.001114370398,85558.66154757912,-0.0,0.0,-0.0,0.0,712.8975699693838,6985.605381224093,30,53000.0,53000.0,8385.001114370398,85558.66154757912,1050.0,31500.0,348.7061342617345,1273.8037014388356,6927.243901696445,76933.25189104636,0.0,0.0,972.0345805347318,5829.914948681368,137.01649787748613,1521.6910064125486,-8385.001114370398,-85558.66154757912,true,true,9.700925388,61.692520899,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,31,0.4999264534839695,666.0,0.0,8207.078196335955,7157.078196335955,1050.0,8194.755256101216,12.32294023473867,132251.34512513917,99701.34512513917,32550.0,132052.76953185818,198.57559328098978,0.95,0.25,22.0,31,0.0,0.1,0.0,0.0,1050.0,32550.0,13125.0,406875.0,13125.0,406875.0,true,31,0.9147041863712254,53000.0,53000.0,0.0,6546.609388374717,92105.27093595384,7157.078196335955,99701.34512513917,6546.609388374717,92105.27093595384,-0.0,0.0,-0.0,0.0,610.4688079612379,7596.074189185331,31,53000.0,53000.0,6546.609388374717,92105.27093595384,1050.0,32550.0,392.35372995212896,1666.1574313909646,5043.490936480479,81976.74282752683,0.0,0.0,1011.007664878742,6840.922613560109,99.75705706336755,1621.4480634759161,-6546.609388374717,-92105.27093595384,true,true,10.01385846,71.706379359,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,32,0.49992447089571523,666.0,0.0,3565.0901988326373,2515.0901988326373,1050.0,3559.737210546102,5.352988286535491,135816.43532397182,102216.4353239718,33600.0,135612.50674240428,203.92858156752527,0.95,0.25,22.0,32,0.0,0.1,0.0,0.0,1050.0,33600.0,13125.0,420000.0,13125.0,420000.0,true,32,0.8713494819195026,53000.0,53000.0,0.0,2191.5225417336374,94296.79347768748,2515.0901988326373,102216.4353239718,2191.5225417336374,94296.79347768748,-0.0,0.0,-0.0,0.0,323.5676570989999,7919.641846284331,32,53000.0,53000.0,2191.5225417336374,94296.79347768748,1050.0,33600.0,414.0960045854914,2080.253435976456,733.5690655779337,82710.31189310476,0.0,0.0,1029.3479399667222,7870.2705535268315,14.509531603490181,1635.9575950794062,-2191.5225417336374,-94296.79347768748,true,true,10.05856319,81.764942549,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,33,0.5570326494539288,666.0,0.0,-231.51964280356856,-1281.5196428035686,1050.0,153960.5624643731,-154192.08210717665,135584.91568116826,100934.91568116823,34650.0,289573.0692067774,-153988.15352560912,0.95,0.25,22.0,33,0.0,0.1,0.0,0.0,1050.0,34650.0,13125.0,433125.0,13125.0,433125.0,true,33,0.83,53000.0,53000.0,0.0,-1543.9995696428539,92752.79390804462,-1281.5196428035686,100934.91568116823,-1543.9995696428539,92752.79390804462,-0.0,0.0,-0.0,0.0,262.4799268392853,8182.121773123617,33,53000.0,53000.0,-1543.9995696428539,92752.79390804462,1050.0,34650.0,405.85097502722357,2486.1044110036796,-2914.6705440017913,79795.64134910297,0.0,0.0,1022.4703370523176,8892.740890579149,-57.650337720603794,1578.3072573588024,-1543.9995696428539,-95840.79304733033,true,true,9.879744289,91.644686838,0.0,1.206 -0.0,98950.0,101050.0,100000.0,100000.0,34,0.9080993469826418,666.0,0.0,-1423.2433683596473,-2473.2433683596473,1050.0,946456.8399591654,-947880.0833275251,134161.6723128086,98461.67231280859,35700.0,1236029.9091659428,-1101868.2368531341,0.95,0.25,22.0,34,0.0,0.1,0.0,0.0,1050.0,35700.0,13125.0,446250.0,13125.0,446250.0,true,34,0.83,53000.0,53000.0,0.0,-2979.811287180298,89772.98262086432,-2473.2433683596473,98461.67231280859,-2979.811287180298,89772.98262086432,-0.0,0.0,-0.0,0.0,506.5679188206509,8688.689691944268,34,53000.0,53000.0,-2979.811287180298,89772.98262086432,1050.0,35700.0,379.15910140031565,2865.2635124039953,-4273.978787712901,75521.66256139007,0.0,0.0,999.5449931667018,9892.285883745852,-84.53659403441436,1493.7706633243881,-2979.811287180298,-98820.60433451063,true,true,9.611515937,101.25620277499999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,35,0.9080993353712978,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,134182.55183155197,97432.55183155197,36750.0,1236050.7573340575,-1101868.2055025054,0.95,0.25,22.0,35,0.0,0.1,0.0,0.0,1050.0,36750.0,13125.0,459375.0,13125.0,459375.0,true,35,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,88533.07842657925,-1029.1204812566145,97432.55183155197,-1239.904194285078,88533.07842657925,-0.0,0.0,-0.0,0.0,210.78371302846335,8899.47340497273,35,53000.0,1239.904194285078,-2917.8155279911657,86855.16709287316,1050.0,36750.0,348.70613420654416,3213.9696466105393,-4156.346343897707,71365.31621749236,0.0,0.0,972.03458048345,10864.320464229302,-82.20989878345272,1411.5607645409355,-1239.904194285078,-100060.5085287957,true,true,9.343287585,110.59949035999999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,36,0.9080993237599538,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,134203.43135029534,96403.43135029536,37800.0,1236071.6055021721,-1101868.1741518767,0.95,0.25,22.0,36,0.0,0.1,0.0,0.0,1050.0,37800.0,13125.0,472500.0,13125.0,472500.0,true,36,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,87293.17423229417,-1029.1204812566145,96403.43135029536,-1239.904194285078,87293.17423229417,-0.0,0.0,-0.0,0.0,210.78371302846335,9110.257118001195,36,53000.0,1239.904194285078,-2171.4137550891814,84683.75333778399,1050.0,37800.0,322.2642813299814,3536.2339279405205,-3373.763826504266,67991.5523909881,0.0,0.0,946.8167022246571,11811.137166453958,-66.73091213955362,1344.829852401382,-1239.904194285078,-101300.41272308078,true,true,9.119763959,119.71925431899999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,37,0.9080993121486098,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,134224.31086903872,95374.31086903875,38850.0,1236092.4536702868,-1101868.142801248,0.95,0.25,22.0,37,0.0,0.1,0.0,0.0,1050.0,38850.0,13125.0,485625.0,13125.0,485625.0,true,37,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,86053.2700380091,-1029.1204812566145,95374.31086903875,-1239.904194285078,86053.2700380091,-0.0,0.0,-0.0,0.0,210.78371302846335,9321.040831029659,37,53000.0,1239.904194285078,-2799.8382352746326,81883.91510250936,1050.0,38850.0,297.194095450846,3833.4280233913664,-3940.6868638622027,64050.8655271259,0.0,0.0,921.598823965864,12732.735990419822,-77.94429082913958,1266.8855615722423,-1239.904194285078,-102540.31691736585,true,true,8.851535607,128.57078992599997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,38,0.9080993005372658,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,134245.1903877821,94345.19038778213,39900.0,1236113.3018384015,-1101868.1114506193,0.95,0.25,22.0,38,0.0,0.1,0.0,0.0,1050.0,39900.0,13125.0,498750.0,13125.0,498750.0,true,38,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,84813.36584372402,-1029.1204812566145,94345.19038778213,-1239.904194285078,84813.36584372402,-0.0,0.0,-0.0,0.0,210.78371302846335,9531.824544058123,38,53000.0,1239.904194285078,-16095.848409494167,65788.0666930152,1050.0,39900.0,227.98457975260715,4061.4126031439737,-16834.509702121777,47216.355825004124,0.0,0.0,843.6526547650262,13576.388645184848,-332.9759418900224,933.90961968222,-1239.904194285078,-103780.22111165093,true,true,7.599803299,136.17059322499998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,39,0.9080992889259218,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,134266.06990652546,93316.06990652552,40950.0,1236134.1500065161,-1101868.0800999906,0.95,0.25,22.0,39,0.0,0.1,0.0,0.0,1050.0,40950.0,13125.0,511875.0,13125.0,511875.0,true,39,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,83573.46164943895,-1029.1204812566145,93316.06990652552,-1239.904194285078,83573.46164943895,-0.0,0.0,-0.0,0.0,210.78371302846335,9742.608257086587,39,53000.0,1239.904194285078,-10281.377134572718,55506.68955844248,1050.0,40950.0,148.50260317320405,4209.915206317178,-10944.718603980627,36271.6372210235,0.0,0.0,731.3184697614055,14307.707114946254,-216.47960352669944,717.4300161555205,-1239.904194285078,-105020.125305936,true,true,6.661004068,142.831597293,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,40,0.9080981758324119,666.0,0.0,2001.5647495453495,951.5647495453494,1050.0,1998.5593970685547,3.005352476794819,136267.63465607082,94267.63465607086,42000.0,1238132.7094035847,-1101865.0747475137,0.95,0.25,22.0,40,0.0,0.1,0.0,0.0,1050.0,42000.0,13125.0,525000.0,13125.0,525000.0,true,40,0.8451743032873547,53000.0,1239.904194285078,0.0,804.2380742297968,84377.69972366875,951.5647495453494,94267.63465607086,804.2380742297968,84377.69972366875,-0.0,0.0,-0.0,0.0,147.32667531555262,9889.93493240214,40,53000.0,1239.904194285078,804.2380742297968,56310.927632672276,1050.0,42000.0,121.06282661280038,4330.978032929978,0.0,36271.6372210235,0.0,0.0,683.1752476169964,14990.88236256325,0.0,717.4300161555205,-804.2380742297968,-105824.3633801658,true,true,6.661004068,149.492601361,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,41,0.9080961157806019,666.0,0.0,3704.3851647560177,2654.3851647560177,1050.0,3698.8230248689965,5.562139887021048,139972.01982082683,96922.01982082688,43050.0,1241831.5324284537,-1101859.5126076266,0.95,0.25,22.0,41,0.0,0.1,0.0,0.0,1050.0,43050.0,13125.0,538125.0,13125.0,538125.0,true,41,0.8737603094918449,53000.0,1239.904194285078,0.0,2319.29640306778,86696.99612673653,2654.3851647560177,96922.01982082688,2319.29640306778,86696.99612673653,-0.0,0.0,-0.0,0.0,335.0887616882378,10225.023694090378,41,53000.0,1239.904194285078,2319.29640306778,58630.22403574006,1050.0,43050.0,124.75601798261722,4455.734050912595,1475.3068980537923,37746.94411907729,0.0,0.0,690.0528507878095,15680.93521335106,29.180636243560595,746.6106523990811,-2319.29640306778,-108143.65978323358,true,true,6.795118244,156.287719605,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,42,0.9080940247147455,666.0,0.0,3760.154622984563,2710.154622984563,1050.0,3754.508745172274,5.645877812289133,143732.17444381138,99632.17444381145,44100.0,1245586.041173626,-1101853.8667298143,0.95,0.25,22.0,42,0.0,0.1,0.0,0.0,1050.0,44100.0,13125.0,551250.0,13125.0,551250.0,true,42,0.8747292752684674,53000.0,1239.904194285078,0.0,2370.6515892287734,89067.6477159653,2710.154622984563,99632.17444381145,2370.6515892287734,89067.6477159653,-0.0,0.0,-0.0,0.0,339.5030337557896,10564.526727846167,42,53000.0,1239.904194285078,2370.6515892287734,61000.87562496883,1050.0,44100.0,132.36621303545223,4588.1002639480475,1504.715009007585,39251.65912808488,0.0,0.0,703.8080571294353,16384.743270480496,29.76231005630091,776.372962455382,-2370.6515892287734,-110514.31137246235,true,true,6.92923242,163.216952025,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,43,0.9080912676878049,666.0,0.0,4957.685844580404,3907.6858445804037,1050.0,4950.2418718407935,7.443972739610215,148689.8602883918,103539.86028839186,45150.0,1250536.2830454668,-1101846.4227570747,0.95,0.25,22.0,43,0.0,0.1,0.0,0.0,1050.0,45150.0,13125.0,564375.0,13125.0,564375.0,true,43,0.8929173636050912,53000.0,1239.904194285078,0.0,3489.2405421396684,92556.88825810497,3907.6858445804037,103539.86028839186,3489.2405421396684,92556.88825810497,-0.0,0.0,-0.0,0.0,418.4453024407353,10982.972030286903,43,53000.0,1239.904194285078,3489.2405421396684,64490.1161671085,1050.0,45150.0,142.98605328528745,4731.086317233335,2573.209698224584,41824.86882630947,0.0,0.0,722.1483322174154,17106.891602697913,50.8964584123815,827.2694208677635,-3489.2405421396684,-114003.55191460202,true,true,7.152756046,170.36970807100002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,44,0.908086441240642,666.0,0.0,8678.917288395318,7628.917288395319,1050.0,8665.885881055385,13.03140733993291,157368.7775767871,111168.77757678718,46200.0,1259202.1689265221,-1101833.3913497347,0.95,0.25,22.0,44,0.0,0.1,0.0,0.0,1050.0,46200.0,13125.0,577500.0,13125.0,577500.0,true,44,0.9163811159946047,53000.0,1239.904194285078,0.0,6990.9957385702355,99547.8839966752,7628.917288395319,111168.77757678718,6990.9957385702355,99547.8839966752,-0.0,0.0,-0.0,0.0,637.9215498250833,11620.893580111986,44,53000.0,1239.904194285078,6990.9957385702355,71481.11190567873,1050.0,46200.0,165.89985207729285,4896.986169310628,5948.6073181483525,47773.47614445782,0.0,0.0,758.8288823933756,17865.72048509129,117.65968595121468,944.9291068189782,-6990.9957385702355,-120994.54765317225,true,true,7.644508024,178.01421609500002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,45,0.9080780381647252,666.0,0.0,15110.411113583472,14060.411113583472,1050.0,15087.722808608121,22.688304975350558,172479.1886903706,125229.18869037065,47250.0,1274289.8917351302,-1101810.7030447593,0.95,0.25,22.0,45,0.0,0.1,0.0,0.0,1050.0,47250.0,13125.0,590625.0,13125.0,590625.0,true,45,0.9323674238569256,53000.0,1239.904194285078,0.0,13109.469288341108,112657.3532850163,14060.411113583472,125229.18869037065,13109.469288341108,112657.3532850163,-0.0,0.0,-0.0,0.0,950.9418252423638,12571.83540535435,45,53000.0,1239.904194285078,13109.469288341108,84590.58119401983,1050.0,47250.0,217.0139885709527,5114.00015788158,11828.595718193257,59602.07186265108,0.0,0.0,829.8974484234004,18695.617933514688,233.96213315349883,1178.891239972477,-13109.469288341108,-134104.01694151337,true,true,8.53860253,186.55281862500001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,46,0.9080687508239116,666.0,0.0,16700.496250999986,15650.496250999986,1050.0,16675.42043080329,25.075820196696675,189179.68494137056,140879.68494137062,48300.0,1290965.3121659334,-1101785.6272245627,0.95,0.25,22.0,46,0.0,0.1,0.0,0.0,1050.0,48300.0,13125.0,603750.0,13125.0,603750.0,true,46,0.933787009520503,53000.0,1239.904194285078,0.0,14614.23009173312,127271.58337674942,15650.496250999986,140879.68494137062,14614.23009173312,127271.58337674942,-0.0,0.0,-0.0,0.0,1036.2661592668665,13608.101564621216,46,53000.0,1239.904194285078,14614.23009173312,99204.81128575295,1050.0,48300.0,297.194095450846,5411.194253332426,13135.622869746336,72737.69473239742,0.0,0.0,921.598823965864,19617.216757480553,259.81430257007355,1438.7055425425506,-14614.23009173312,-148718.2470332465,true,true,9.432697036,195.98551566100002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,47,0.9080603741837634,666.0,0.0,15062.874314484854,14012.874314484854,1050.0,15040.257386084726,22.61692840012741,204242.55925585542,154892.55925585548,49350.0,1306005.569552018,-1101763.0102961625,0.95,0.25,22.0,47,0.0,0.1,0.0,0.0,1050.0,49350.0,13125.0,616875.0,13125.0,616875.0,true,47,0.9323250507131023,53000.0,1239.904194285078,0.0,13064.55375588842,140336.13713263784,14012.874314484854,154892.55925585548,13064.55375588842,140336.13713263784,-0.0,0.0,-0.0,0.0,948.3205585964333,14556.42212321765,47,53000.0,1239.904194285078,13064.55375588842,112269.36504164137,1050.0,49350.0,384.4008585601551,5795.595111892581,11449.55783164176,84187.25256403917,0.0,0.0,1004.1300619130559,20621.34681939361,226.46500377345023,1665.1705463160008,-13064.55375588842,-161782.80078913493,true,true,10.14797264,206.13348830100003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,48,0.9080579093478017,666.0,0.0,4432.268026216414,3382.2680262164135,1050.0,4425.612969119993,6.655057096421042,208674.82728207184,158274.8272820719,50400.0,1310431.182521138,-1101756.355239066,0.95,0.25,22.0,48,0.0,0.1,0.0,0.0,1050.0,50400.0,13125.0,630000.0,13125.0,630000.0,true,48,0.886578210048837,53000.0,1239.904194285078,0.0,2998.645132588361,143334.7822652262,3382.2680262164135,158274.8272820719,2998.645132588361,143334.7822652262,-0.0,0.0,-0.0,0.0,383.6228936280527,14940.045016845703,48,53000.0,1239.904194285078,2998.645132588361,115268.01017422974,1050.0,50400.0,433.76703655122395,6229.362148443805,1490.0109422744758,85677.26350631364,0.0,0.0,1045.3956808353703,21666.74250022898,29.471472927290602,1694.6420192432913,-2998.645132588361,-164781.4459217233,true,true,10.23738209,216.37087039100004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,49,0.9080573440410222,666.0,0.0,1016.5346508134071,-33.46534918659294,1050.0,1015.0083225088824,1.5263283045246352,209691.36193288525,158241.3619328853,51450.0,1311446.1908436469,-1101754.8289107615,0.95,0.25,22.0,49,0.0,0.1,0.0,0.0,1050.0,51450.0,13125.0,643125.0,13125.0,643125.0,true,49,0.83,53000.0,1239.904194285078,0.0,-40.31969781517222,143294.46256741104,-33.46534918659294,158241.3619328853,-40.31969781517222,143294.46256741104,-0.0,0.0,-0.0,0.0,6.854348628579281,14946.899365474283,49,53000.0,1239.904194285078,-40.31969781517222,115227.69047641457,1050.0,51450.0,433.76703655122395,6663.129184995029,-1490.0109422744758,84187.25256403917,0.0,0.0,1045.3956808353703,22712.138181064347,-29.471472927290602,1665.1705463160008,-40.31969781517222,-164821.76561953846,true,true,10.14797264,226.51884303100005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,50,0.9080562925945208,666.0,0.0,1890.711098937863,840.7110989378629,1050.0,1887.8721933839022,2.838905553960755,211582.07303182312,159082.07303182318,52500.0,1313334.0630370309,-1101751.9900052075,0.95,0.25,22.0,50,0.0,0.1,0.0,0.0,1050.0,52500.0,13125.0,656250.0,13125.0,656250.0,true,50,0.8433780622171062,53000.0,1239.904194285078,0.0,709.0372975066286,144003.49986491769,840.7110989378629,159082.07303182318,709.0372975066286,144003.49986491769,-0.0,0.0,-0.0,0.0,131.6738014312342,15078.573166905517,50,53000.0,1239.904194285078,709.0372975066286,115936.7277739212,1050.0,52500.0,425.2620455208459,7088.391230515876,-740.104036790492,83447.14852724868,0.0,0.0,1038.5180779722475,23750.656259036594,-14.638789195972622,1650.5317571200283,-709.0372975066286,-165530.8029170451,true,true,10.10326792,236.62211095100005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,51,0.9080562809831768,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,211602.9525505665,158052.95255056655,53550.0,1313354.9112051455,-1101751.9586545788,0.95,0.25,22.0,51,0.0,0.1,0.0,0.0,1050.0,53550.0,13125.0,669375.0,13125.0,669375.0,true,51,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,142763.5956706326,-1029.1204812566145,158052.95255056655,-1239.904194285078,142763.5956706326,-0.0,0.0,-0.0,0.0,210.78371302846335,15289.356879933981,51,53000.0,1239.904194285078,-8114.9655693860495,107821.76220453515,1050.0,53550.0,387.0397572131643,7475.43098772904,-9324.005008313754,74123.14351893493,0.0,0.0,1006.4225965939233,24757.078855630516,-184.4229148793834,1466.108842240645,-1239.904194285078,-166770.70711133018,true,true,9.522106487,246.14421743800006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,52,0.9080562693718328,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,211623.83206930986,157023.83206930992,54600.0,1313375.7593732602,-1101751.92730395,0.95,0.25,22.0,52,0.0,0.1,0.0,0.0,1050.0,54600.0,13125.0,682500.0,13125.0,682500.0,true,52,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,141523.69147634754,-1029.1204812566145,157023.83206930992,-1239.904194285078,141523.69147634754,-0.0,0.0,-0.0,0.0,210.78371302846335,15500.140592962445,52,53000.0,1239.904194285078,-14219.764188827885,93601.99801570726,1050.0,54600.0,299.41748352552986,7774.84847125457,-15143.543332876658,58979.60018605827,0.0,0.0,923.8913583903227,25680.97021402084,-299.52969786708053,1166.5791443735643,-1239.904194285078,-168010.61130561525,true,true,8.493897805,254.63811524300004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,53,0.9080562577604888,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,211644.71158805324,155994.7115880533,55650.0,1313396.6075413749,-1101751.8959533214,0.95,0.25,22.0,53,0.0,0.1,0.0,0.0,1050.0,55650.0,13125.0,695625.0,13125.0,695625.0,true,53,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,140283.78728206246,-1029.1204812566145,155994.7115880533,-1239.904194285078,140283.78728206246,-0.0,0.0,-0.0,0.0,210.78371302846335,15710.92430599091,53,53000.0,1239.904194285078,-10384.94867144856,83217.0493442587,1050.0,55650.0,215.22049365625,7990.06896491082,-11206.124041600448,47773.47614445782,0.0,0.0,827.6049140502232,26508.57512807106,-221.65003755458608,944.9291068189782,-1239.904194285078,-169250.51549990033,true,true,7.644508024,262.282623267,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,54,0.9080562461491448,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,211665.5911067966,154965.59110679667,56700.0,1313417.4557094895,-1101751.8646026927,0.95,0.25,22.0,54,0.0,0.1,0.0,0.0,1050.0,56700.0,13125.0,708750.0,13125.0,708750.0,true,54,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,139043.8830877774,-1029.1204812566145,154965.59110679667,-1239.904194285078,139043.8830877774,-0.0,0.0,-0.0,0.0,210.78371302846335,15921.708019019374,54,53000.0,1239.904194285078,-6208.751505150951,77008.29783910775,1050.0,56700.0,162.91073810813515,8152.979703018955,-6987.6938964115525,40785.782248046264,0.0,0.0,754.2438136470213,27262.818941718084,-138.21216049455487,806.7169463244234,-1239.904194285078,-170490.4196941854,true,true,7.063346596,269.345969863,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,55,0.9080550914021236,666.0,0.0,2076.466093633727,1026.4660936337266,1050.0,2073.3482766763186,3.117816957407998,213742.05720043034,155992.0572004304,57750.0,1315490.803986166,-1101748.7467857352,0.95,0.25,22.0,55,0.0,0.1,0.0,0.0,1050.0,57750.0,13125.0,721875.0,13125.0,721875.0,true,55,0.8463923211234946,53000.0,1239.904194285078,0.0,868.7930195452161,139912.6761073226,1026.4660936337266,155992.0572004304,868.7930195452161,139912.6761073226,-0.0,0.0,-0.0,0.0,157.67307408851048,16079.381093107884,55,53000.0,1239.904194285078,868.7930195452161,77877.09085865297,1050.0,57750.0,144.35215290334196,8297.331855922297,0.0,40785.782248046264,0.0,0.0,724.4408666418742,27987.25980835996,0.0,806.7169463244234,-868.7930195452161,-171359.2127137306,true,true,7.063346596,276.40931645899997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,56,0.908047610710829,666.0,0.0,13451.779085976654,12401.779085976654,1050.0,13431.581219481193,20.197866495460442,227193.836286407,168393.83628640705,58800.0,1328922.3852056472,-1101728.5489192398,0.95,0.25,22.0,56,0.0,0.1,0.0,0.0,1050.0,58800.0,13125.0,735000.0,13125.0,735000.0,true,56,0.9308912334245315,53000.0,1239.904194285078,0.0,11544.707430003366,151457.38353732595,12401.779085976654,168393.83628640705,11544.707430003366,151457.38353732595,-0.0,0.0,-0.0,0.0,857.0716559732882,16936.452749081174,56,53000.0,1239.904194285078,11544.707430003366,89421.79828865634,1050.0,58800.0,171.9873237677608,8469.319179690057,10399.034763543916,51184.81701159018,0.0,0.0,767.9990199886472,28755.258828348607,205.68632270304266,1012.403269027466,-11544.707430003366,-182903.92014373397,true,true,7.912736376,284.32205283499997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,57,0.9080385539112252,666.0,0.0,16285.937047323205,15235.937047323205,1050.0,16261.48368839329,24.45335892991472,243479.7733337302,183629.77333373026,59850.0,1345183.8688940406,-1101704.09556031,0.95,0.25,22.0,57,0.0,0.1,0.0,0.0,1050.0,59850.0,13125.0,748125.0,13125.0,748125.0,true,57,0.9334164856742132,53000.0,1239.904194285078,0.0,14221.474814665975,165678.85835199192,15235.937047323205,183629.77333373026,14221.474814665975,165678.85835199192,-0.0,0.0,-0.0,0.0,1014.4622326572298,17950.914981738402,57,53000.0,1239.904194285078,14221.474814665975,103643.27310332231,1050.0,59850.0,241.2436111056416,8710.562790795699,12866.048515535727,64050.865527125905,0.0,0.0,859.7003954798292,29614.95922382844,254.48229254477636,1266.8855615722423,-14221.474814665975,-197125.39495839993,true,true,8.851535607,293.173588442,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,58,0.9080298096698313,666.0,0.0,15723.89487460076,14673.89487460076,1050.0,15700.285422837096,23.609451763664808,259203.66820833096,198303.66820833102,60900.0,1360884.1543168777,-1101680.4861085464,0.95,0.25,22.0,58,0.0,0.1,0.0,0.0,1050.0,60900.0,13125.0,761250.0,13125.0,761250.0,true,58,0.9329146141270558,53000.0,1239.904194285078,0.0,13689.49097467915,179368.34932667107,14673.89487460076,198303.66820833102,13689.49097467915,179368.34932667107,-0.0,0.0,-0.0,0.0,984.40389992161,18935.318881660012,58,53000.0,1239.904194285078,13689.49097467915,117332.76407800146,1050.0,60900.0,324.61085675753077,9035.173647553229,12174.957923032202,76225.8234501581,0.0,0.0,949.1092366491158,30564.068460477556,240.81295824030383,1507.6985198125462,-13689.49097467915,-210814.8859330791,true,true,9.656220663,302.829809105,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,59,0.9080212468374032,666.0,0.0,15397.68527220707,14347.68527220707,1050.0,15374.565624651204,23.11964755586647,274601.353480538,212651.3534805381,61950.0,1376258.719941529,-1101657.3664609906,0.95,0.25,22.0,59,0.0,0.1,0.0,0.0,1050.0,61950.0,13125.0,774375.0,13125.0,774375.0,true,59,0.9326235750301636,53000.0,1239.904194285078,0.0,13380.989531973384,192749.33885864445,14347.68527220707,212651.3534805381,13380.989531973384,192749.33885864445,-0.0,0.0,-0.0,0.0,966.6957402336866,19902.0146218937,59,53000.0,1239.904194285078,13380.989531973384,130713.75360997484,1050.0,61950.0,411.33537418388363,9446.509021737113,11710.963313116934,87936.78676327504,0.0,0.0,1027.0554060037987,31591.123866481354,231.6354386687677,1739.3339584813139,-13380.989531973384,-224195.87546505246,true,true,10.37149627,313.201305375,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,60,0.9080149733948534,666.0,0.0,11280.904393046974,10230.904393046974,1050.0,11263.96609816252,16.938294884454915,285882.257873585,222882.25787358507,63000.0,1387522.6860396916,-1101640.428166106,0.95,0.25,22.0,60,0.0,0.1,0.0,0.0,1050.0,63000.0,13125.0,787500.0,13125.0,787500.0,true,60,0.9257402254308718,53000.0,1239.904194285078,0.0,9471.159739181003,202220.49859782544,10230.904393046974,222882.25787358507,9471.159739181003,202220.49859782544,-0.0,0.0,-0.0,0.0,759.7446538659715,20661.759275759672,60,53000.0,1239.904194285078,9471.159739181003,140184.91334915583,1050.0,63000.0,487.1885161867275,9933.69753792384,7744.135820179504,95680.92258345455,0.0,0.0,1086.6613000653747,32677.785166546728,153.1741027493974,1892.5080612307113,-9471.159739181003,-233667.03520423346,true,true,10.81854352,324.019848895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,61,0.9080113810312935,666.0,0.0,6459.788153319561,5409.788153319561,1050.0,6450.08877170797,9.699381611590933,292342.04602690454,228292.04602690463,64050.0,1393972.7748113996,-1101630.7287844946,0.95,0.25,22.0,61,0.0,0.1,0.0,0.0,1050.0,64050.0,13125.0,800625.0,13125.0,800625.0,true,61,0.9062511980683174,53000.0,1239.904194285078,0.0,4902.626995241643,207123.1255930671,5409.788153319561,228292.04602690463,4902.626995241643,207123.1255930671,-0.0,0.0,-0.0,0.0,507.1611580779181,21168.92043383759,61,53000.0,1239.904194285078,4902.626995241643,145087.54034439748,1050.0,64050.0,531.6446935646047,10465.342231488445,3189.1462274525543,98870.0688109071,0.0,0.0,1118.7567812898537,33796.54194783658,63.079292934630814,1955.587354165342,-4902.626995241643,-238569.6621994751,true,true,10.99736242,335.017211315,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,62,0.9080082222291179,666.0,0.0,5680.158072229792,4630.158072229792,1050.0,5671.629306355573,8.528765874218907,298022.2040991343,232922.20409913443,65100.0,1399644.4041177551,-1101622.2000186204,0.95,0.25,22.0,62,0.0,0.1,0.0,0.0,1050.0,65100.0,13125.0,813750.0,13125.0,813750.0,true,62,0.8992812681404287,53000.0,1239.904194285078,0.0,4163.814422885451,211286.94001595254,4630.158072229792,232922.20409913443,4163.814422885451,211286.94001595254,-0.0,0.0,-0.0,0.0,466.34364934434143,21635.26408318193,62,53000.0,1239.904194285078,4163.814422885451,149251.35476728293,1050.0,65100.0,554.8525859309602,11020.194817419404,2426.1692238570186,101296.23803476413,0.0,0.0,1134.8045221585019,34931.346469995085,47.98809093896955,2003.5754451043117,-4163.814422885451,-242733.47662236055,true,true,11.1314766,346.148687915,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,63,0.9080060271188446,666.0,0.0,3947.2472934022626,2897.2472934022626,1050.0,3941.3204956644213,5.926797737841235,301969.4513925366,235819.4513925367,66150.0,1403585.7246134195,-1101616.2732208825,0.95,0.25,22.0,63,0.0,0.1,0.0,0.0,1050.0,66150.0,13125.0,826875.0,13125.0,826875.0,true,63,0.8779956713677174,53000.0,1239.904194285078,0.0,2543.7705824890218,213830.71059844157,2897.2472934022626,235819.4513925367,2543.7705824890218,213830.71059844157,-0.0,0.0,-0.0,0.0,353.4767109132408,21988.74079409517,63,53000.0,1239.904194285078,2543.7705824890218,151795.12534977196,1050.0,66150.0,568.4125451233863,11588.60736254279,815.25808895598,102111.4961237201,0.0,0.0,1143.97465965121,36075.3211296463,16.125288758445397,2019.700733862757,-2543.7705824890218,-245277.24720484958,true,true,11.17618132,357.324869235,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,64,0.9080060155075006,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,301990.33091127995,234790.33091128006,67200.0,1403606.5727815342,-1101616.2418702538,0.95,0.25,22.0,64,0.0,0.1,0.0,0.0,1050.0,67200.0,13125.0,840000.0,13125.0,840000.0,true,64,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,212590.8064041565,-1029.1204812566145,234790.33091128006,-1239.904194285078,212590.8064041565,-0.0,0.0,-0.0,0.0,210.78371302846335,22199.524507123635,64,53000.0,1239.904194285078,-1610.2215097641129,150184.90384000784,1050.0,67200.0,558.22212647103,12146.82948901382,-3241.4273128129985,98870.0688109071,0.0,0.0,1137.0970562752705,37212.41818592157,-64.11337969741494,1955.587354165342,-1239.904194285078,-246517.15139913466,true,true,10.99736242,368.322231655,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,65,0.9080048734610823,666.0,0.0,2053.627869421815,1003.6278694218149,1050.0,2050.5443440923527,3.0835253294621845,304043.95878070174,235793.95878070188,68250.0,1405657.1171256264,-1101613.1583449244,0.95,0.25,22.0,65,0.0,0.1,0.0,0.0,1050.0,68250.0,13125.0,853125.0,13125.0,853125.0,true,65,0.8460205625409436,53000.0,1239.904194285078,0.0,849.0898146700125,213439.8962188265,1003.6278694218149,235793.95878070188,849.0898146700125,213439.8962188265,-0.0,0.0,-0.0,0.0,154.5380547518024,22354.06256187544,65,53000.0,1239.904194285078,849.0898146700125,151033.99365467785,1050.0,68250.0,541.510016178596,12688.339505192416,-802.1878190777122,98067.8809918294,0.0,0.0,1125.6343846657935,38338.05257058736,-15.866767096664695,1939.7205870686773,-849.0898146700125,-247366.24121380466,true,true,10.9526577,379.27488935499997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,66,0.9080022228334674,666.0,0.0,4766.358576992763,3716.3585769927627,1050.0,4759.201882432714,7.156694560049194,308810.3173576945,239510.31735769464,69300.0,1410416.319008059,-1101606.0016503644,0.95,0.25,22.0,66,0.0,0.1,0.0,0.0,1050.0,69300.0,13125.0,866250.0,13125.0,866250.0,true,66,0.8912471117741695,53000.0,1239.904194285078,0.0,3312.1938480619624,216752.09006688846,3716.3585769927627,239510.31735769464,3312.1938480619624,216752.09006688846,-0.0,0.0,-0.0,0.0,404.16472893080027,22758.227290806237,66,53000.0,1239.904194285078,3312.1938480619624,154346.1875027398,1050.0,69300.0,544.8253747968071,13233.164879989223,1607.643385797307,99675.5243776267,0.0,0.0,1127.926919295379,39465.97948988274,31.798168172469662,1971.518755241147,-3312.1938480619624,-250678.43506186662,true,true,11.04206715,390.31695650499995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,67,0.9080000453346694,666.0,0.0,3915.5783385588406,2865.5783385588406,1050.0,3909.699091804248,5.879246754592854,312725.89569625334,242375.8956962535,70350.0,1414326.0180998633,-1101600.1224036098,0.95,0.25,22.0,67,0.0,0.1,0.0,0.0,1050.0,70350.0,13125.0,879375.0,13125.0,879375.0,true,67,0.8774410583025257,53000.0,1239.904194285078,0.0,2514.3760900338625,219266.4661569223,2865.5783385588406,242375.8956962535,2514.3760900338625,219266.4661569223,-0.0,0.0,-0.0,0.0,351.20224852497813,23109.429539331213,67,53000.0,1239.904194285078,2514.3760900338625,156860.56359277366,1050.0,70350.0,554.8525859309602,13788.017465920184,808.7229540168461,100484.24733164355,0.0,0.0,1134.8045221585019,40600.784012041244,15.996027927554303,1987.5147831687011,-2514.3760900338625,-253192.81115190047,true,true,11.08677187,401.40372837499996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,68,0.9079988930716182,666.0,0.0,2071.999418587271,1021.9994185872712,1050.0,2068.888308349152,3.1111102381190254,314797.8951148406,243397.89511484077,71400.0,1416394.9064082124,-1101597.0112933717,0.95,0.25,22.0,68,0.0,0.1,0.0,0.0,1050.0,71400.0,13125.0,892500.0,13125.0,892500.0,true,68,0.8463195872857558,53000.0,1239.904194285078,0.0,864.9381261450618,220131.4042830674,1021.9994185872712,243397.89511484077,864.9381261450618,220131.4042830674,-0.0,0.0,-0.0,0.0,157.06129244220938,23266.490831773423,68,53000.0,1239.904194285078,864.9381261450618,157725.50171891873,1050.0,71400.0,554.8525859309602,14342.870051851143,-808.7229540168461,99675.5243776267,0.0,0.0,1134.8045221585019,41735.58853419975,-15.996027927554303,1971.518755241147,-864.9381261450618,-254057.74927804555,true,true,11.04206715,412.44579552499994,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,69,0.9079977459335461,666.0,0.0,2062.783681283212,1012.7836812832121,1050.0,2059.6864084884924,3.0972727947195375,316860.67879612383,244410.67879612398,72450.0,1418454.592816701,-1101593.914020577,0.95,0.25,22.0,69,0.0,0.1,0.0,0.0,1050.0,72450.0,13125.0,905625.0,13125.0,905625.0,true,69,0.8461695608072484,53000.0,1239.904194285078,0.0,856.9867227841638,220988.39100585156,1012.7836812832121,244410.67879612398,856.9867227841638,220988.39100585156,-0.0,0.0,-0.0,0.0,155.7969584990483,23422.287790272472,69,53000.0,1239.904194285078,856.9867227841638,158582.4884417029,1050.0,72450.0,548.154237167416,14891.02428901856,-805.4555667195948,98870.0688109071,0.0,0.0,1130.2194534121477,42865.80798761189,-15.931401075804967,1955.5873541653418,-856.9867227841638,-254914.73600082973,true,true,10.99736242,423.44315794499994,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,70,0.9079960823055456,666.0,0.0,2991.5358704567134,1941.5358704567134,1050.0,2987.044074855427,4.4917956012863565,319852.21466658055,246352.2146665807,73500.0,1421441.6368915564,-1101589.4222249757,0.95,0.25,22.0,70,0.0,0.1,0.0,0.0,1050.0,73500.0,13125.0,918750.0,13125.0,918750.0,true,70,0.8615613640157782,53000.0,1239.904194285078,0.0,1672.7522928362473,222661.14329868782,1941.5358704567134,246352.2146665807,1672.7522928362473,222661.14329868782,-0.0,0.0,-0.0,0.0,268.7835776204661,23691.07136789294,70,53000.0,1239.904194285078,1672.7522928362473,160255.24073453917,1050.0,73500.0,544.8253740536853,15435.849663072246,0.0,98870.0688109071,0.0,0.0,1127.926918782562,43993.73490639446,0.0,1955.5873541653418,-1672.7522928362473,-256587.48829366599,true,true,10.99736242,434.44052036499994,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,71,0.9079919367251437,666.0,0.0,7454.582678767141,6404.582678767141,1050.0,7443.389611681905,11.193067085235947,327306.7973453477,252756.79734534785,74550.0,1428885.0265032384,-1101578.2291578904,0.95,0.25,22.0,71,0.0,0.1,0.0,0.0,1050.0,74550.0,13125.0,931875.0,13125.0,931875.0,true,71,0.9120424578407049,53000.0,1239.904194285078,0.0,5841.251327786789,228502.39462647462,6404.582678767141,252756.79734534785,5841.251327786789,228502.39462647462,-0.0,0.0,-0.0,0.0,563.331350980352,24254.40271887329,71,53000.0,1239.904194285078,5841.251327786789,166096.49206232597,1050.0,74550.0,561.6052820545196,15997.454945126765,4059.9531523345827,102930.02196324168,0.0,0.0,1139.389590904856,45133.124497299315,80.30330249283016,2035.890656658172,-5841.251327786789,-262428.73962145275,true,true,11.22088605,445.66140641499993,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,72,0.9079877074067666,666.0,0.0,7605.160305709623,6555.160305709623,1050.0,7593.74114609144,11.419159618182617,334911.95765105734,259311.95765105748,75600.0,1436478.7676493297,-1101566.8099982722,0.95,0.25,22.0,72,0.0,0.1,0.0,0.0,1050.0,75600.0,13125.0,945000.0,13125.0,945000.0,true,72,0.9125738408202795,53000.0,1239.904194285078,0.0,5982.067817374068,234484.4624438487,6555.160305709623,259311.95765105748,5982.067817374068,234484.4624438487,-0.0,0.0,-0.0,0.0,573.0924883355547,24827.495207208845,72,53000.0,1239.904194285078,5982.067817374068,172078.55987970004,1050.0,75600.0,596.1916585577573,16593.646603684523,4141.642164748756,107071.66412799044,0.0,0.0,1162.314934636627,46295.43943193594,81.91905943092799,2117.8097160891,-5982.067817374068,-268410.8074388268,true,true,11.44440967,457.10581608499996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,73,0.9079854497954343,666.0,0.0,4059.636697841186,3009.636697841186,1050.0,4053.541147243827,6.095550597359138,338971.5943488985,262321.5943488987,76650.0,1440532.3087965737,-1101560.7144476748,0.95,0.25,22.0,73,0.0,0.1,0.0,0.0,1050.0,76650.0,13125.0,958125.0,13125.0,958125.0,true,73,0.879969600022897,53000.0,1239.904194285078,0.0,2648.3888012135412,237132.85124506222,3009.636697841186,262321.5943488987,2648.3888012135412,237132.85124506222,-0.0,0.0,-0.0,0.0,361.2478966276449,25188.74310383649,73,53000.0,1239.904194285078,2648.3888012135412,174726.94868091357,1050.0,76650.0,617.6097062385463,17211.25630992307,838.1312487244746,107909.79537671492,0.0,0.0,1176.0701408756895,47471.50957281163,16.577705374830778,2134.387421463931,-2648.3888012135412,-271059.19624004036,true,true,11.4891144,468.59493048499996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,74,0.9079852223187701,666.0,0.0,409.0485375350345,-640.9514624649655,1050.0,408.43435054173864,0.6141869932958476,339380.6428864335,261680.64288643372,77700.0,1440940.7431471155,-1101560.1002606815,0.95,0.25,22.0,74,0.0,0.1,0.0,0.0,1050.0,77700.0,13125.0,971250.0,13125.0,971250.0,true,74,0.83,53000.0,1239.904194285078,0.0,-772.2306776686332,236360.62056739358,-640.9514624649655,261680.64288643372,-772.2306776686332,236360.62056739358,-0.0,0.0,-0.0,0.0,131.27921520366772,25320.022319040156,74,53000.0,1239.904194285078,-772.2306776686332,173954.71800324493,1050.0,77700.0,610.4143261643655,17821.670636087434,-2504.5908548213597,105405.20452189355,0.0,0.0,1171.485072129335,48642.99464494096,-49.53922114097418,2084.8482003229565,-772.2306776686332,-271831.426917709,true,true,11.35500022,479.949930705,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,75,0.9079852107074261,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,339401.5224051769,260651.5224051771,78750.0,1440961.5913152301,-1101560.0689100528,0.95,0.25,22.0,75,0.0,0.1,0.0,0.0,1050.0,78750.0,13125.0,984375.0,13125.0,984375.0,true,75,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,235120.7163731085,-1029.1204812566145,260651.5224051771,-1239.904194285078,235120.7163731085,-0.0,0.0,-0.0,0.0,210.78371302846335,25530.80603206862,75,53000.0,1239.904194285078,-2454.9027947659533,171499.81520847898,1050.0,78750.0,582.1916504382081,18403.862286525644,-4108.966487129434,101296.23803476412,0.0,0.0,1153.1447971439186,49796.13944208488,-81.2727552186452,2003.5754451043113,-1239.904194285078,-273071.3311119941,true,true,11.1314766,491.08140730499997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,76,0.9079830155971528,666.0,0.0,3947.2472934022626,2897.2472934022626,1050.0,3941.3204956644213,5.926797737841235,343348.76969857916,263548.76969857933,79800.0,1444902.9118108945,-1101554.142112315,0.95,0.25,22.0,76,0.0,0.1,0.0,0.0,1050.0,79800.0,13125.0,997500.0,13125.0,997500.0,true,76,0.8779956713677174,53000.0,1239.904194285078,0.0,2543.7705824890218,237664.48695559753,2897.2472934022626,263548.76969857933,2543.7705824890218,237664.48695559753,-0.0,0.0,-0.0,0.0,353.4767109132408,25884.28274298186,76,53000.0,1239.904194285078,2543.7705824890218,174043.585790968,1050.0,79800.0,568.4125451233863,18972.27483164903,815.25808895598,102111.49612372009,0.0,0.0,1143.97465965121,50940.11410173609,16.125288758445397,2019.7007338627566,-2543.7705824890218,-275615.10169448314,true,true,11.17618132,502.257588625,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,77,0.907979308555432,666.0,0.0,6666.002422338203,5616.002422338203,1050.0,6655.99340969205,10.009012646153458,350014.77212091733,269164.7721209175,80850.0,1451558.9052205866,-1101544.133099669,0.95,0.25,22.0,77,0.0,0.1,0.0,0.0,1050.0,80850.0,13125.0,1010625.0,13125.0,1010625.0,true,77,0.9081128685822093,53000.0,1239.904194285078,0.0,5099.964069714182,242764.45102531172,5616.002422338203,269164.7721209175,5099.964069714182,242764.45102531172,-0.0,0.0,-0.0,0.0,516.0383526240212,26400.321095605883,77,53000.0,1239.904194285078,5099.964069714182,179143.5498606822,1050.0,80850.0,585.6708738198415,19557.945705468872,3293.7083981734545,105405.20452189355,0.0,0.0,1155.437331260687,52095.55143299678,65.14746646019981,2084.8482003229565,-5099.964069714182,-280715.0657641973,true,true,11.35500022,513.612588845,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,78,0.9079745134437123,666.0,0.0,8622.569894282302,7572.569894282302,1050.0,8609.623092639235,12.94680164306652,358637.34201519965,276737.3420151998,81900.0,1460168.5283132258,-1101531.1862980258,0.95,0.25,22.0,78,0.0,0.1,0.0,0.0,1050.0,81900.0,13125.0,1023750.0,13125.0,1023750.0,true,78,0.9161805325218976,53000.0,1239.904194285078,0.0,6937.841118302849,249702.29214361456,7572.569894282302,276737.3420151998,6937.841118302849,249702.29214361456,-0.0,0.0,-0.0,0.0,634.7287759794526,27035.049871585335,78,53000.0,1239.904194285078,6937.841118302849,186081.39097898503,1050.0,81900.0,621.2285043174536,20179.174209786324,5038.589822350736,110443.79434424429,0.0,0.0,1178.3626755052749,53273.91410850205,99.66011612938529,2184.5083164523417,-6937.841118302849,-287652.90688250016,true,true,11.62322858,525.235817425,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,79,0.9079727490633028,666.0,0.0,3172.708852260033,2122.708852260033,1050.0,3167.9450251545372,4.763827105495545,361810.0508674597,278860.05086745985,82950.0,1463336.4733383805,-1101526.4224709203,0.95,0.25,22.0,79,0.0,0.1,0.0,0.0,1050.0,82950.0,13125.0,1036875.0,13125.0,1036875.0,true,79,0.8646293662188045,53000.0,1239.904194285078,0.0,1835.356409596638,251537.64855321118,2122.708852260033,278860.05086745985,1835.356409596638,251537.64855321118,-0.0,0.0,-0.0,0.0,287.35244266339487,27322.40231424873,79,53000.0,1239.904194285078,1835.356409596638,187916.74738858166,1050.0,82950.0,643.2385273394837,20822.412737125807,0.0,110443.79434424429,0.0,0.0,1192.1178822571544,54466.031990759206,0.0,2184.5083164523417,-1835.356409596638,-289488.2632920968,true,true,11.62322858,536.8590460050001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,80,0.9079725190384105,666.0,0.0,413.63076145245884,-636.3692385475412,1050.0,413.0096942430708,0.6210672093880764,362223.68162891216,278223.68162891234,84000.0,1463749.4830326235,-1101525.8014037109,0.95,0.25,22.0,80,0.0,0.1,0.0,0.0,1050.0,84000.0,13125.0,1050000.0,13125.0,1050000.0,true,80,0.83,53000.0,1239.904194285078,0.0,-766.709925960893,250770.9386272503,-636.3692385475412,278223.68162891234,-766.709925960893,250770.9386272503,-0.0,0.0,-0.0,0.0,130.34068741335182,27452.743001662082,80,53000.0,1239.904194285078,-766.709925960893,187150.03746262076,1050.0,84000.0,632.1696576756791,21454.582394801488,-2533.998967529376,107909.79537671492,0.0,0.0,1185.2402788812149,55651.27226964042,-50.120894988411116,2134.3874214639304,-766.709925960893,-290254.97321805765,true,true,11.4891144,548.348160405,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,81,0.907968710361826,666.0,0.0,6848.762234230275,5798.762234230275,1050.0,6838.478807452151,10.283426778123536,369072.44386314246,284022.44386314263,85050.0,1470587.9618400757,-1101515.5179769327,0.95,0.25,22.0,81,0.0,0.1,0.0,0.0,1050.0,85050.0,13125.0,1063125.0,13125.0,1063125.0,true,81,0.9097692007866758,53000.0,1239.904194285078,0.0,5275.535283387636,256046.47391063793,5798.762234230275,284022.44386314263,5275.535283387636,256046.47391063793,-0.0,0.0,-0.0,0.0,523.2269508426389,27975.96995250472,81,53000.0,1239.904194285078,5275.535283387636,192425.5727460084,1050.0,85050.0,635.8450530496157,22090.427447851103,3385.2002990160518,111294.99567573097,0.0,0.0,1187.5328129979832,56838.805082638406,66.95711832398551,2201.344539787916,-5275.535283387636,-295530.5085014453,true,true,11.6679333,560.016093705,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,82,0.9079637831711459,666.0,0.0,8860.07428102365,7810.07428102365,1050.0,8846.770866187278,13.303414836371847,377932.5181441661,291832.5181441663,86100.0,1479434.732706263,-1101502.2145620964,0.95,0.25,22.0,82,0.0,0.1,0.0,0.0,1050.0,86100.0,13125.0,1076250.0,13125.0,1076250.0,true,82,0.917026587805411,53000.0,1239.904194285078,0.0,7162.045768433916,263208.51967907185,7810.07428102365,291832.5181441663,7162.045768433916,263208.51967907185,-0.0,0.0,-0.0,0.0,648.0285125897335,28623.998465094453,82,53000.0,1239.904194285078,7162.045768433916,199587.61851444232,1050.0,86100.0,673.3855379630368,22763.81298581414,5175.827483574925,116470.8231593059,0.0,0.0,1210.4581567297541,58049.26323936816,102.37459016619962,2303.7191299541155,-7162.045768433916,-302692.5542698792,true,true,11.93616165,571.952255355,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,83,0.907957669316016,666.0,0.0,10993.934294686262,9943.934294686262,1050.0,10977.42688583538,16.50740885088027,388926.45243885234,301776.4524388525,87150.0,1490412.1595920983,-1101485.7071532456,0.95,0.25,22.0,83,0.0,0.1,0.0,0.0,1050.0,87150.0,13125.0,1089375.0,13125.0,1089375.0,true,83,0.9246986514427616,53000.0,1239.904194285078,0.0,9195.142632331816,272403.66231140366,9943.934294686262,301776.4524388525,9195.142632331816,272403.66231140366,-0.0,0.0,-0.0,0.0,748.7916623544461,29372.790127448898,83,53000.0,1239.904194285078,9195.142632331816,208782.76114677414,1050.0,87150.0,728.3831269582084,23492.196112772348,7084.0871101947,123554.9102695006,0.0,0.0,1242.5536379542332,59291.816877322395,140.11875722467542,2443.837887178791,-9195.142632331816,-311887.696902211,true,true,12.29379945,584.2460548050001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,84,0.9079496986427015,666.0,0.0,14332.86475407513,13282.86475407513,1050.0,14311.343936126068,21.520817949061758,403259.31719292747,315059.31719292764,88200.0,1504723.5035282243,-1101464.1863352966,0.95,0.25,22.0,84,0.0,0.1,0.0,0.0,1050.0,88200.0,13125.0,1102500.0,13125.0,1102500.0,true,84,0.9316748213650654,53000.0,1239.904194285078,0.0,12375.31064696927,284778.9729583729,13282.86475407513,315059.31719292764,12375.31064696927,284778.9729583729,-0.0,0.0,-0.0,0.0,907.5541071058597,30280.34423455476,84,53000.0,1239.904194285078,12375.31064696927,221158.0717937434,1050.0,88200.0,807.7009634475132,24299.897076219862,10082.080719800011,133636.9909893006,0.0,0.0,1286.1117913010062,60577.928668623405,199.41717242073975,2643.255059599531,-12375.31064696927,-324263.00754918024,true,true,12.78555143,597.0316062350001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,85,0.9079437163599335,666.0,0.0,10757.340873264597,9707.340873264597,1050.0,10741.188709791226,16.152163473370265,414016.65806619206,324766.65806619223,89250.0,1515464.6922380156,-1101448.0341718232,0.95,0.25,22.0,85,0.0,0.1,0.0,0.0,1050.0,89250.0,13125.0,1115625.0,13125.0,1115625.0,true,85,0.9238416835280664,53000.0,1239.904194285078,0.0,8968.046134937575,293747.01909331046,9707.340873264597,324766.65806619223,8968.046134937575,293747.01909331046,-0.0,0.0,-0.0,0.0,739.2947383270221,31019.63897288178,85,53000.0,1239.904194285078,8968.046134937575,230126.117928681,1050.0,89250.0,887.9688042353264,25187.86588045519,6621.726365694784,140258.71735499537,0.0,0.0,1327.3774105310108,61905.30607915441,130.97355447645248,2774.2286140759834,-8968.046134937575,-333231.0536841178,true,true,13.09848451,610.1300907450002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,86,0.907938753572455,666.0,0.0,8924.084443861511,7874.084443861511,1050.0,8910.684917669527,13.39952619198425,422940.74251005356,332640.74251005374,90300.0,1524375.377155685,-1101434.6346456313,0.95,0.25,22.0,86,0.0,0.1,0.0,0.0,1050.0,90300.0,13125.0,1128750.0,13125.0,1128750.0,true,86,0.9172548768173728,53000.0,1239.904194285078,0.0,7222.5423566037825,300969.56144991424,7874.084443861511,332640.74251005374,7222.5423566037825,300969.56144991424,-0.0,0.0,-0.0,0.0,651.5420872577288,31671.181060139512,86,53000.0,1239.904194285078,7222.5423566037825,237348.66028528477,1050.0,90300.0,944.3314645878538,26132.19734504304,4827.831616224582,145086.54897121995,0.0,0.0,1354.8878235219527,63260.193902676365,95.49145226939437,2869.7200663453777,-7222.5423566037825,-340453.5960407216,true,true,13.32200814,623.4520988850002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,87,0.9079349006405686,666.0,0.0,6928.342118119285,5878.342118119285,1050.0,6917.939202026013,10.4029160932722,429869.08462817286,338519.08462817303,91350.0,1531293.316357711,-1101424.231729538,0.95,0.25,22.0,87,0.0,0.1,0.0,0.0,1050.0,91350.0,13125.0,1141875.0,13125.0,1141875.0,true,87,0.910190224653128,53000.0,1239.904194285078,0.0,5350.409533078937,306319.9709829932,5878.342118119285,338519.08462817303,5350.409533078937,306319.9709829932,-0.0,0.0,-0.0,0.0,527.9325850403484,32199.11364517986,87,53000.0,1239.904194285078,5350.409533078937,242699.0698183637,1050.0,91350.0,983.2013920812159,27115.39873712426,2935.9096095032187,148022.45858072318,0.0,0.0,1373.2280985073694,64633.42200118373,58.07043298713306,2927.790499332511,-5350.409533078937,-345804.00557380053,true,true,13.45612231,636.9082211950001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,88,0.9079310037586847,666.0,0.0,7007.373003487606,5957.373003487606,1050.0,6996.851422401289,10.521581086317727,436876.45763166045,344476.4576316606,92400.0,1538290.1677801125,-1101413.7101484516,0.95,0.25,22.0,88,0.0,0.1,0.0,0.0,1050.0,92400.0,13125.0,1155000.0,13125.0,1155000.0,true,88,0.9104679130789365,53000.0,1239.904194285078,0.0,5423.996965918157,311743.96794891136,5957.373003487606,344476.4576316606,5423.996965918157,311743.96794891136,-0.0,0.0,-0.0,0.0,533.3760375694492,32732.489682749307,88,53000.0,1239.904194285078,5423.996965918157,248123.06678428187,1050.0,92400.0,1013.0436100028431,28128.4423471271,2965.317940026072,150987.77652074926,0.0,0.0,1386.983304746432,66020.40530593017,58.65211114281012,2986.442610475321,-5423.996965918157,-351228.0025397187,true,true,13.59023649,650.4984576850002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,89,0.9079270625971532,666.0,0.0,7086.996666161574,6036.996666161574,1050.0,7076.355530026196,10.641136135377739,443963.454297822,350513.4542978222,93450.0,1545366.5233101386,-1101403.0690123162,0.95,0.25,22.0,89,0.0,0.1,0.0,0.0,1050.0,93450.0,13125.0,1168125.0,13125.0,1168125.0,true,89,0.9107478557311809,53000.0,1239.904194285078,0.0,5498.181768762941,317242.1497176743,6036.996666161574,350513.4542978222,5498.181768762941,317242.1497176743,-0.0,0.0,-0.0,0.0,538.8148973986326,33271.30458014794,89,53000.0,1239.904194285078,5498.181768762941,253621.2485530448,1050.0,93450.0,1043.483648884593,29171.925996011694,2994.7258283409597,153982.5023490902,0.0,0.0,1400.7385109854945,67421.14381691566,59.23378055189369,3045.676391027215,-5498.181768762941,-356726.18430848164,true,true,13.72435066,664.2228083450002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,90,0.9079249138031177,666.0,0.0,3863.961434548124,2813.961434548124,1050.0,3858.159690652406,5.801743895717904,447827.41573237017,353327.41573237034,94500.0,1549224.6830007911,-1101397.2672684204,0.95,0.25,22.0,90,0.0,0.1,0.0,0.0,1050.0,94500.0,13125.0,1181250.0,13125.0,1181250.0,true,90,0.8765386003246481,53000.0,1239.904194285078,0.0,2466.545817206352,319708.6955348806,2813.961434548124,353327.41573237034,2466.545817206352,319708.6955348806,-0.0,0.0,-0.0,0.0,347.4156173417723,33618.72019748971,90,53000.0,1239.904194285078,2466.545817206352,256087.79437025115,1050.0,94500.0,1058.9297033577343,30230.85569936943,0.0,153982.5023490902,0.0,0.0,1407.6161138486173,68828.75993076428,0.0,3045.676391027215,-2466.545817206352,-359192.730125688,true,true,13.72435066,677.9471590050002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,91,0.9079240561770658,666.0,0.0,1542.1831665207571,492.1831665207571,1050.0,1539.867576180636,2.3155903401212568,449369.5988988909,353819.59889889107,95550.0,1550764.5505769718,-1101394.9516780803,0.95,0.25,22.0,91,0.0,0.1,0.0,0.0,1050.0,95550.0,13125.0,1194375.0,13125.0,1194375.0,true,91,0.8377800231060408,53000.0,1239.904194285078,0.0,412.3412246201642,320121.0367595008,492.1831665207571,353819.59889889107,412.3412246201642,320121.0367595008,-0.0,0.0,-0.0,0.0,79.84194190059287,33698.562139390306,91,53000.0,1239.904194285078,412.3412246201642,256500.13559487133,1050.0,95550.0,1048.6155259026536,31279.471225272082,-1999.7515274624877,151982.75082162773,0.0,0.0,1403.0310451022629,70231.79097586655,-39.55381892226446,3006.1225721049505,-412.3412246201642,-359605.0713503082,true,true,13.63494121,691.5821002150002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,92,0.9079225538805973,666.0,0.0,2701.429509673302,1651.4295096733022,1050.0,2697.373309208327,4.056200464974928,452071.0284085642,355471.0284085644,96600.0,1553461.9238861802,-1101390.8954776153,0.95,0.25,22.0,92,0.0,0.1,0.0,0.0,1050.0,96600.0,13125.0,1207500.0,13125.0,1207500.0,true,92,0.8566937614804108,53000.0,1239.904194285078,0.0,1414.7693584617716,321535.8061179626,1651.4295096733022,355471.0284085644,1414.7693584617716,321535.8061179626,-0.0,0.0,-0.0,0.0,236.66015121153055,33935.222290601836,92,53000.0,1239.904194285078,1414.7693584617716,257914.9049533331,1050.0,96600.0,1033.2701787307324,32312.741404002816,-994.9743008784717,150987.77652074926,0.0,0.0,1396.15344223914,71627.94441810569,-19.679961629629226,2986.442610475321,-1414.7693584617716,-361019.84070877,true,true,13.59023649,705.1723367050002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,93,0.9079210587553233,666.0,0.0,2688.534267834671,1638.534267834671,1050.0,2684.497429594679,4.036838239991998,454759.5626763989,357109.5626763991,97650.0,1556146.4213157748,-1101386.8586393753,0.95,0.25,22.0,93,0.0,0.1,0.0,0.0,1050.0,97650.0,13125.0,1220625.0,13125.0,1220625.0,true,93,0.8564786727348219,53000.0,1239.904194285078,0.0,1403.3696549455622,322939.17577290814,1638.534267834671,357109.5626763991,1403.3696549455622,322939.17577290814,-0.0,0.0,-0.0,0.0,235.16461288910887,34170.386903490944,93,53000.0,1239.904194285078,1403.3696549455622,259318.27460827868,1050.0,97650.0,1023.1235722985792,33335.8649763014,-991.7069552438643,149996.0695655054,0.0,0.0,1391.568373492786,73019.51279159848,-19.615335601938465,2966.8272748733825,-1403.3696549455622,-362423.21036371554,true,true,13.54553176,718.7178684650003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,94,0.9079183396796195,666.0,0.0,4889.441930336394,3839.441930336394,1050.0,4882.100425936489,7.341504399904495,459649.0046067353,360949.0046067355,98700.0,1561028.5217417113,-1101379.5171349754,0.95,0.25,22.0,94,0.0,0.1,0.0,0.0,1050.0,98700.0,13125.0,1233750.0,13125.0,1233750.0,true,94,0.8923208890248789,53000.0,1239.904194285078,0.0,3426.0142366371683,326365.1900095453,3839.441930336394,360949.0046067355,3426.0142366371683,326365.1900095453,-0.0,0.0,-0.0,0.0,413.42769369922553,34583.81459719017,94,53000.0,1239.904194285078,3426.0142366371683,262744.28884491586,1050.0,98700.0,1023.1235722985792,34358.98854859998,991.7069552438643,150987.77652074926,0.0,0.0,1391.568373492786,74411.08116509127,19.615335601938465,2986.442610475321,-3426.0142366371683,-365849.2246003527,true,true,13.59023649,732.3081049550003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,95,0.9079137853014134,666.0,0.0,8189.682890220169,7139.682890220169,1050.0,8177.386069063682,12.29682115648674,467838.6874969555,368088.6874969557,99750.0,1569205.907810775,-1101367.220313819,0.95,0.25,22.0,95,0.0,0.1,0.0,0.0,1050.0,99750.0,13125.0,1246875.0,13125.0,1246875.0,true,95,0.9146424802525575,53000.0,1239.904194285078,0.0,6530.257266927723,332895.44727647305,7139.682890220169,368088.6874969557,6530.257266927723,332895.44727647305,-0.0,0.0,-0.0,0.0,609.4256232924454,35193.240220482614,95,53000.0,1239.904194285078,6530.257266927723,269274.5461118436,1050.0,99750.0,1048.6155270524812,35407.60407565246,3999.50305638672,154987.27957713598,0.0,0.0,1403.03104561508,75814.11221070634,79.10763787344166,3065.5502483487626,-6530.257266927723,-372379.48186728044,true,true,13.76905539,746.0771603450003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,96,0.9079137736900694,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,467859.5670156989,367059.56701569905,100800.0,1569226.7559788898,-1101367.1889631902,0.95,0.25,22.0,96,0.0,0.1,0.0,0.0,1050.0,100800.0,13125.0,1260000.0,13125.0,1260000.0,true,96,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,331655.54308218794,-1029.1204812566145,367059.56701569905,-1239.904194285078,331655.54308218794,-0.0,0.0,-0.0,0.0,210.78371302846335,35404.023933511075,96,53000.0,1239.904194285078,-1626.9641215926006,267647.581990251,1050.0,100800.0,1048.6155270524812,36456.21960270494,-3999.50305638672,150987.77652074926,0.0,0.0,1403.03104561508,77217.14325632142,-79.10763787344166,2986.442610475321,-1239.904194285078,-373619.38606156554,true,true,13.59023649,759.6673968350003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,97,0.9079137620787254,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,467880.44653444225,366030.4465344424,101850.0,1569247.6041470044,-1101367.1576125615,0.95,0.25,22.0,97,0.0,0.1,0.0,0.0,1050.0,101850.0,13125.0,1273125.0,13125.0,1273125.0,true,97,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,330415.63888790284,-1029.1204812566145,366030.4465344424,-1239.904194285078,330415.63888790284,-0.0,0.0,-0.0,0.0,210.78371302846335,35614.807646539535,97,53000.0,1239.904194285078,-2637.8607102028736,265009.72128004814,1050.0,101850.0,1003.0300722582315,37459.249674963175,-4925.858653468197,146061.91786728107,0.0,0.0,1382.3982360000778,78599.5414923215,-97.43036499298574,2889.0122454823354,-1239.904194285078,-374859.29025585065,true,true,13.36671286,773.0341096950003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,98,0.9079137504673814,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,467901.3260531856,365001.3260531858,102900.0,1569268.452315119,-1101367.1262619328,0.95,0.25,22.0,98,0.0,0.1,0.0,0.0,1050.0,102900.0,13125.0,1286250.0,13125.0,1286250.0,true,98,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,329175.73469361773,-1029.1204812566145,365001.3260531858,-1239.904194285078,329175.73469361773,-0.0,0.0,-0.0,0.0,210.78371302846335,35825.591359567996,98,53000.0,1239.904194285078,-1638.1008610516512,263371.6204189965,1050.0,102900.0,958.7852680554249,38418.0349430186,-3881.8706128638887,142180.04725441718,0.0,0.0,1361.7654263850754,79961.30691870657,-76.78094262826316,2812.231302854072,-1239.904194285078,-376099.19445013575,true,true,13.18789396,786.2220036550003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,99,0.9079099407049909,666.0,0.0,6850.714730647867,5800.714730647867,1050.0,6840.428372193441,10.286358454426228,474752.0407838335,370802.04078383365,103950.0,1576108.8806873125,-1101356.8399034783,0.95,0.25,22.0,99,0.0,0.1,0.0,0.0,1050.0,103950.0,13125.0,1299375.0,13125.0,1299375.0,true,99,0.9097869286686722,53000.0,1239.904194285078,0.0,5277.414438879247,334453.14913249697,5800.714730647867,370802.04078383365,5277.414438879247,334453.14913249697,-0.0,0.0,-0.0,0.0,523.3002917686199,36348.89165133661,99,53000.0,1239.904194285078,5277.414438879247,268649.0348578757,1050.0,103950.0,953.9510663168394,39371.986009335444,2906.5017168027957,145086.54897121998,0.0,0.0,1359.4728922683069,81320.77981097488,57.488763491305725,2869.7200663453777,-5277.414438879247,-381376.608889015,true,true,13.32200814,799.5440117950003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,100,0.9079048868057206,666.0,0.0,9087.921667798142,8037.921667798142,1050.0,9074.276139768415,13.64552802972694,483839.9624516316,378839.9624516318,105000.0,1585183.1568270808,-1101343.1943754486,0.95,0.25,22.0,100,0.0,0.1,0.0,0.0,1050.0,105000.0,13125.0,1312500.0,13125.0,1312500.0,true,100,0.9178397121114966,53000.0,1239.904194285078,0.0,7377.523709546607,341830.67284204357,8037.921667798142,378839.9624516318,7377.523709546607,341830.67284204357,-0.0,0.0,-0.0,0.0,660.3979582515349,37009.289609588144,100,53000.0,1239.904194285078,7377.523709546607,276026.5585674223,1050.0,105000.0,993.0827394794525,40365.0687488149,4909.520594285426,149996.0695655054,0.0,0.0,1377.8131672537233,82698.59297822861,97.10720852800472,2966.8272748733825,-7377.523709546607,-388754.1325985616,true,true,13.54553176,813.0895435550003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,101,0.9079003490902188,666.0,0.0,8159.7200154016955,7109.7200154016955,1050.0,8147.468183546738,12.251831854957501,491999.68246703333,385949.6824670335,106050.0,1593330.6250106276,-1101330.9425435937,0.95,0.25,22.0,101,0.0,0.1,0.0,0.0,1050.0,106050.0,13125.0,1325625.0,13125.0,1325625.0,true,101,0.9145362128967615,53000.0,1239.904194285078,0.0,6502.096417641771,348332.76925968536,7109.7200154016955,385949.6824670335,6502.096417641771,348332.76925968536,-0.0,0.0,-0.0,0.0,607.6235977599245,37616.91320734807,101,53000.0,1239.904194285078,6502.096417641771,282528.6549850641,1050.0,106050.0,1038.3685415472064,41403.437290362104,3986.432783584824,153982.50234909024,0.0,0.0,1398.445976355909,84097.03895458452,78.84911615383216,3045.676391027215,-6502.096417641771,-395256.2290162034,true,true,13.72435066,826.8138942150003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,102,0.9078969721271672,666.0,0.0,6072.454959287778,5022.454959287778,1050.0,6063.337159048608,9.117800239170839,498072.1374263211,390972.1374263213,107100.0,1599393.962169676,-1101321.8247433545,0.95,0.25,22.0,102,0.0,0.1,0.0,0.0,1050.0,107100.0,13125.0,1338750.0,13125.0,1338750.0,true,102,0.9027749680708322,53000.0,1239.904194285078,0.0,4534.146615508217,352866.9158751936,5022.454959287778,390972.1374263213,4534.146615508217,352866.9158751936,-0.0,0.0,-0.0,0.0,488.30834377956126,38105.22155112763,102,53000.0,1239.904194285078,4534.146615508217,287062.80160057236,1050.0,107100.0,1069.3112934977391,42472.748583859844,2012.8217988025465,155995.3241478928,0.0,0.0,1412.2011825949714,85509.2401371795,39.81234061295975,3085.4887316401746,-4534.146615508217,-399790.3756317116,true,true,13.81376011,840.6276543250003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,103,0.9078941874223824,666.0,0.0,5007.456144243549,3957.456144243549,1050.0,4999.937441324264,7.518702919284608,503079.59357056464,394929.5935705648,108150.0,1604393.8996110004,-1101314.306040435,0.95,0.25,22.0,103,0.0,0.1,0.0,0.0,1050.0,108150.0,13125.0,1351875.0,13125.0,1351875.0,true,103,0.8933528757266224,53000.0,1239.904194285078,0.0,3535.404827021965,356402.3207022156,3957.456144243549,394929.5935705648,3535.404827021965,356402.3207022156,-0.0,0.0,-0.0,0.0,422.05131722158376,38527.27286834922,103,53000.0,1239.904194285078,3535.404827021965,290598.20642759436,1050.0,108150.0,1085.0105584229455,43557.75914228279,1011.312364446755,157006.63651233955,0.0,0.0,1419.078785970911,86928.31892315041,20.003118181353283,3105.491849821528,-3535.404827021965,-403325.7804587336,true,true,13.85846484,854.4861191650003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,104,0.9078926486928122,666.0,0.0,2766.9435131900455,1716.9435131900455,1050.0,2762.7889433504206,4.154569839624693,505846.53708375467,396646.53708375484,109200.0,1607156.6885543508,-1101310.1514705955,0.95,0.25,22.0,104,0.0,0.1,0.0,0.0,1050.0,109200.0,13125.0,1365000.0,13125.0,1365000.0,true,104,0.8577881860710518,53000.0,1239.904194285078,0.0,1472.773861765748,357875.09456398134,1716.9435131900455,396646.53708375484,1472.773861765748,357875.09456398134,-0.0,0.0,-0.0,0.0,244.1696514242974,38771.44251977351,104,53000.0,1239.904194285078,1472.773861765748,292070.9802893601,1050.0,109200.0,1085.0105584229455,44642.769700705736,-1011.312364446755,155995.3241478928,0.0,0.0,1419.078785970911,88347.39770912132,-20.003118181353283,3085.4887316401746,-1472.773861765748,-404798.55432049936,true,true,13.81376011,868.2998792750003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,105,0.9078926370814682,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,505867.41660249804,395617.4166024982,110250.0,1607177.5367224654,-1101310.1201199668,0.95,0.25,22.0,105,0.0,0.1,0.0,0.0,1050.0,110250.0,13125.0,1378125.0,13125.0,1378125.0,true,105,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,356635.19036969624,-1029.1204812566145,395617.4166024982,-1239.904194285078,356635.19036969624,-0.0,0.0,-0.0,0.0,210.78371302846335,38982.22623280197,105,53000.0,1239.904194285078,-2647.5059662310587,289423.47432312905,1050.0,110250.0,1053.764202345453,45696.53390305119,-5007.547627143506,150987.7765207493,0.0,0.0,1405.3235797318484,89752.72128885316,-99.04612116485345,2986.442610475321,-1239.904194285078,-406038.45851478446,true,true,13.59023649,881.8901157650004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,106,0.9078926254701242,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,505888.2961212414,394588.2961212416,111300.0,1607198.38489058,-1101310.088769338,0.95,0.25,22.0,106,0.0,0.1,0.0,0.0,1050.0,111300.0,13125.0,1391250.0,13125.0,1391250.0,true,106,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,355395.28617541114,-1029.1204812566145,394588.2961212416,-1239.904194285078,355395.28617541114,-0.0,0.0,-0.0,0.0,210.78371302846335,39193.00994583043,106,53000.0,1239.904194285078,-3639.7962472474524,285783.6780758816,1050.0,111300.0,998.0481445284727,46694.582047579665,-5901.227549529291,145086.54897122,0.0,0.0,1380.1057018833092,91132.82699073647,-116.72254412994319,2869.7200663453777,-1239.904194285078,-407278.36270906957,true,true,13.32200814,895.2121239050003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,107,0.9078899600974013,666.0,0.0,4792.873230298974,3742.873230298974,1050.0,4785.676723947174,7.196506351800261,510681.1693515404,398331.16935154056,112350.0,1611984.0616145274,-1101302.8922629864,0.95,0.25,22.0,107,0.0,0.1,0.0,0.0,1050.0,112350.0,13125.0,1404375.0,13125.0,1404375.0,true,107,0.8914782067494085,53000.0,1239.904194285078,0.0,3336.689915437295,358731.97609084845,3742.873230298974,398331.16935154056,3336.689915437295,358731.97609084845,-0.0,0.0,-0.0,0.0,406.1833148616788,39599.19326069211,107,53000.0,1239.904194285078,3336.689915437295,289120.3679913189,1050.0,112350.0,973.3858104782291,47667.96785805789,975.3688960610931,146061.9178672811,0.0,0.0,1368.6430297610152,92501.4700204975,19.292179136957433,2889.0122454823354,-3336.689915437295,-410615.0526245069,true,true,13.36671286,908.5788367650003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,108,0.9078860925519049,666.0,0.0,6954.620311641533,5904.620311641533,1050.0,6944.17793880123,10.442372840302601,517635.78966318193,404235.7896631821,113400.0,1618928.2395533286,-1101292.449890146,0.95,0.25,22.0,108,0.0,0.1,0.0,0.0,1050.0,113400.0,13125.0,1417500.0,13125.0,1417500.0,true,108,0.9102825387457,53000.0,1239.904194285078,0.0,5374.872767610481,364106.8488584589,5904.620311641533,404235.7896631821,5374.872767610481,364106.8488584589,-0.0,0.0,-0.0,0.0,529.7475440310518,40128.94080472316,108,53000.0,1239.904194285078,5374.872767610481,294495.2407589294,1050.0,113400.0,993.0827394794528,48661.050597537345,2945.712532284995,149007.6303995661,0.0,0.0,1377.8131672537236,93879.28318775122,58.26432859230915,2947.2765740746445,-5374.872767610481,-415989.92539211735,true,true,13.50082704,922.0796638050003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,109,0.9078809651503301,666.0,0.0,9220.093511838344,8170.093511838344,1050.0,9206.249527586335,13.843984252009525,526855.8831750202,412405.88317502046,114450.0,1628134.489080915,-1101278.605905894,0.95,0.25,22.0,109,0.0,0.1,0.0,0.0,1050.0,114450.0,13125.0,1430625.0,13125.0,1430625.0,true,109,0.9183120580658363,53000.0,1239.904194285078,0.0,7502.695387446605,371609.54424590553,8170.093511838344,412405.88317502046,7502.695387446605,371609.54424590553,-0.0,0.0,-0.0,0.0,667.3981243917387,40796.3389291149,109,53000.0,1239.904194285078,7502.695387446605,301997.936146376,1050.0,114450.0,1033.2701787307328,49694.320776268076,4974.871949524161,153982.50234909024,0.0,0.0,1396.1534422391403,95275.43662999036,98.39981695257029,3045.676391027215,-7502.695387446605,-423492.62077956396,true,true,13.72435066,935.8040144650004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,110,0.9078757450942103,666.0,0.0,9386.70491463991,8336.70491463991,1050.0,9372.610763116427,14.094151523483347,536242.5880896602,420742.5880896604,115500.0,1637507.0998440315,-1101264.5117543705,0.95,0.25,22.0,110,0.0,0.1,0.0,0.0,1050.0,115500.0,13125.0,1443750.0,13125.0,1443750.0,true,110,0.9189081747024324,53000.0,1239.904194285078,0.0,7660.666296144556,379270.2105420501,8336.70491463991,420742.5880896604,7660.666296144556,379270.2105420501,-0.0,0.0,-0.0,0.0,676.0386184953531,41472.37754761025,110,53000.0,1239.904194285078,7660.666296144556,309658.60244252055,1050.0,115500.0,1085.0105584229455,50779.33133469102,5056.561369792925,159039.06371888318,0.0,0.0,1419.078785970911,96694.51541596127,100.01558195777413,3145.6919729849888,-7660.666296144556,-431153.2870757085,true,true,13.94787429,949.7518887550003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,111,0.907869810383245,666.0,0.0,10671.797257756794,9621.797257756794,1050.0,10655.773538150554,16.023719606241432,546914.385347417,430364.3853474172,116550.0,1648162.873382182,-1101248.4880347643,0.95,0.25,22.0,111,0.0,0.1,0.0,0.0,1050.0,116550.0,13125.0,1456875.0,13125.0,1456875.0,true,111,0.923532225802555,53000.0,1239.904194285078,0.0,8886.039837677052,388156.2503797271,9621.797257756794,430364.3853474172,8886.039837677052,388156.2503797271,-0.0,0.0,-0.0,0.0,735.7574200797426,42208.13496769,111,53000.0,1239.904194285078,8886.039837677052,318544.6422801976,1050.0,116550.0,1143.8884260386078,51923.21976072963,6175.703247671617,165214.7669665548,0.0,0.0,1444.2966643322675,98138.81208029354,122.15149963455985,3267.8434726195487,-8886.039837677052,-440039.32691338554,true,true,14.21610264,963.9679913950004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,112,0.9078650189137422,666.0,0.0,8616.020460025,7566.020460025,1050.0,8603.083492367305,12.936967657695195,555530.405807442,437930.4058074422,117600.0,1656765.9568745494,-1101235.5510671067,0.95,0.25,22.0,112,0.0,0.1,0.0,0.0,1050.0,117600.0,13125.0,1470000.0,13125.0,1470000.0,true,112,0.9161572237723056,53000.0,1239.904194285078,0.0,6931.664299660966,395087.91467938805,7566.020460025,437930.4058074422,6931.664299660966,395087.91467938805,-0.0,0.0,-0.0,0.0,634.3561603640337,42842.49112805403,112,53000.0,1239.904194285078,6931.664299660966,325476.30657985853,1050.0,117600.0,1199.2284949054788,53122.448255635114,4182.486855148263,169397.25382170305,0.0,0.0,1467.2220080640382,99606.03408835758,82.72694154318573,3350.5704141627343,-6931.664299660966,-446970.9912130465,true,true,14.39492154,978.3629129350004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,113,0.907861447390928,666.0,0.0,6422.312324475628,5372.312324475628,1050.0,6412.669212877317,9.643111598311753,561952.7181319176,443302.7181319178,118650.0,1663178.6260874267,-1101225.9079555084,0.95,0.25,22.0,113,0.0,0.1,0.0,0.0,1050.0,118650.0,13125.0,1483125.0,13125.0,1483125.0,true,113,0.9059136914081433,53000.0,1239.904194285078,0.0,4866.851289263179,399954.7659686512,5372.312324475628,443302.7181319178,4866.851289263179,399954.7659686512,-0.0,0.0,-0.0,0.0,505.46103521244913,43347.952163266484,113,53000.0,1239.904194285078,4866.851289263179,330343.1578691217,1050.0,118650.0,1233.2739870681398,54355.722242703254,2110.848834584301,171508.10265628734,0.0,0.0,1480.9772143031007,101087.01130266069,41.751253307637285,3392.3216674703717,-4866.851289263179,-451837.84250230965,true,true,14.48433099,992.8472439250004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,114,0.9078604919036312,666.0,0.0,1718.157257260365,668.157257260365,1050.0,1715.5774415587728,2.5798157015921395,563670.875389178,443970.87538917817,119700.0,1664894.2035289854,-1101223.3281398069,0.95,0.25,22.0,114,0.0,0.1,0.0,0.0,1050.0,119700.0,13125.0,1496250.0,13125.0,1496250.0,true,114,0.8405971908203642,53000.0,1239.904194285078,0.0,561.6511134793022,400516.4170821305,668.157257260365,443970.87538917817,561.6511134793022,400516.4170821305,-0.0,0.0,-0.0,0.0,106.50614378106275,43454.45830704755,114,53000.0,1239.904194285078,561.6511134793022,330904.808982601,1050.0,119700.0,1233.2739870681398,55588.996229771394,-2110.848834584301,169397.25382170305,0.0,0.0,1480.9772143031007,102567.98851696379,-41.751253307637285,3350.5704141627343,-561.6511134793022,-452399.49361578893,true,true,14.39492154,1007.2421654650004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,115,0.9078604802922872,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,563691.7549079214,442941.75490792154,120750.0,1664915.0516971,-1101223.2967891782,0.95,0.25,22.0,115,0.0,0.1,0.0,0.0,1050.0,120750.0,13125.0,1509375.0,13125.0,1509375.0,true,115,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,399276.5128878454,-1029.1204812566145,442941.75490792154,-1239.904194285078,399276.5128878454,-0.0,0.0,-0.0,0.0,210.78371302846335,43665.24202007601,115,53000.0,1239.904194285078,-2664.641267295394,328240.1677153056,1050.0,120750.0,1193.6158908347595,56782.61212060615,-5219.939533496588,164177.31428820646,0.0,0.0,1464.9294739472698,104032.91799091105,-103.24709858083469,3247.3233155819,-1239.904194285078,-453639.39781007404,true,true,14.17139792,1021.4135633850004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,116,0.9078604686809432,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,563712.6344266648,441912.6344266649,121800.0,1664935.8998652147,-1101223.2654385495,0.95,0.25,22.0,116,0.0,0.1,0.0,0.0,1050.0,121800.0,13125.0,1522500.0,13125.0,1522500.0,true,116,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,398036.6086935603,-1029.1204812566145,441912.6344266649,-1239.904194285078,398036.6086935603,-0.0,0.0,-0.0,0.0,210.78371302846335,43876.02573310447,116,53000.0,1239.904194285078,-28758.963246629894,299481.20446867566,1050.0,121800.0,1003.0300722582315,57785.64219286438,-30540.323298905834,133636.99098930063,0.0,0.0,1382.3982360000778,105415.31622691113,-604.0682559823688,2643.255059599531,-1239.904194285078,-454879.30200435914,true,true,12.78555143,1034.1991148150005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,117,0.9078604570695992,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,563733.5139454082,440883.5139454083,122850.0,1664956.7480333294,-1101223.2340879207,0.95,0.25,22.0,117,0.0,0.1,0.0,0.0,1050.0,122850.0,13125.0,1535625.0,13125.0,1535625.0,true,117,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,396796.7044992752,-1029.1204812566145,440883.5139454083,-1239.904194285078,396796.7044992752,-0.0,0.0,-0.0,0.0,210.78371302846335,44086.80944613293,117,53000.0,1239.904194285078,-27682.874433590867,271798.3300350848,1050.0,122850.0,716.355027256107,58501.99722012049,-29060.114826241283,104576.87616305935,0.0,0.0,1235.6760350911104,106650.99226200224,-574.7906696968024,2068.4643899027283,-1239.904194285078,-456119.20619864424,true,true,11.3102955,1045.5094103150004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,118,0.9078604454582552,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,563754.3934641515,439854.39346415165,123900.0,1664977.596201444,-1101223.202737292,0.95,0.25,22.0,118,0.0,0.1,0.0,0.0,1050.0,123900.0,13125.0,1548750.0,13125.0,1548750.0,true,118,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,395556.8003049901,-1029.1204812566145,439854.39346415165,-1239.904194285078,395556.8003049901,-0.0,0.0,-0.0,0.0,210.78371302846335,44297.59315916139,118,53000.0,1239.904194285078,-24437.66135629633,247360.66867878847,1050.0,123900.0,484.11154515659297,58986.10876527708,-25501.733526257765,79075.14263680158,0.0,0.0,1084.3687656409159,107735.36102764316,-504.40814083607023,1564.056249066658,-1239.904194285078,-457359.11039292935,true,true,9.835039564,1055.3444498790004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,119,0.9078604338469112,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,563775.2729828949,438825.272982895,124950.0,1664998.4443695587,-1101223.1713866633,0.95,0.25,22.0,119,0.0,0.1,0.0,0.0,1050.0,124950.0,13125.0,1561875.0,13125.0,1561875.0,true,119,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,394316.896110705,-1029.1204812566145,438825.272982895,-1239.904194285078,394316.896110705,-0.0,0.0,-0.0,0.0,210.78371302846335,44508.37687218985,119,53000.0,1239.904194285078,-21135.89427421992,226224.77440456854,1050.0,124950.0,308.42192624962576,59294.53069152671,-21943.352087179723,57131.79054962186,0.0,0.0,933.0614959343129,108668.42252357746,-434.02560922413744,1130.0306398425205,-1239.904194285078,-458599.01458721445,true,true,8.359783629,1063.7042335080005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,120,0.9078604222355672,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,563796.1525016383,437796.1525016384,126000.0,1665019.2925376734,-1101223.1400360346,0.95,0.25,22.0,120,0.0,0.1,0.0,0.0,1050.0,126000.0,13125.0,1575000.0,13125.0,1575000.0,true,120,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,393076.9919164199,-1029.1204812566145,437796.1525016384,-1239.904194285078,393076.9919164199,-0.0,0.0,-0.0,0.0,210.78371302846335,44719.16058521831,120,53000.0,1239.904194285078,-17785.46457250141,208439.30983206714,1050.0,126000.0,181.39493426148408,59475.92562578819,-18384.970655337835,38746.819894284024,0.0,0.0,781.7542263302732,109450.17674990774,-363.64307775533047,766.38756208719,-1239.904194285078,-459838.91878149955,true,true,6.884527695,1070.5887612030006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,121,0.9078604106242232,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,563817.0320203817,436767.03202038177,127050.0,1665040.140705788,-1101223.108685406,0.95,0.25,22.0,121,0.0,0.1,0.0,0.0,1050.0,127050.0,13125.0,1588125.0,13125.0,1588125.0,true,121,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,391837.0877221348,-1029.1204812566145,436767.03202038177,-1239.904194285078,391837.0877221348,-0.0,0.0,-0.0,0.0,210.78371302846335,44929.94429824677,121,53000.0,1239.904194285078,-14394.263506193847,194045.0463258733,1050.0,127050.0,95.13933227979064,59571.06495806798,-14826.589248420358,23920.230645863667,0.0,0.0,630.4469567262335,110080.62370663397,-293.26054677951294,473.127015307677,-1239.904194285078,-461078.82297578466,true,true,5.40927176,1075.9980329630005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,122,0.9078603990128792,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,563837.911539125,435737.91153912514,128100.0,1665060.9888739027,-1101223.0773347772,0.95,0.25,22.0,122,0.0,0.1,0.0,0.0,1050.0,128100.0,13125.0,1601250.0,13125.0,1601250.0,true,122,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,390597.1835278497,-1029.1204812566145,435737.91153912514,-1239.904194285078,390597.1835278497,-0.0,0.0,-0.0,0.0,210.78371302846335,45140.728011275234,122,53000.0,1239.904194285078,-10970.182272780969,183074.86405309231,1050.0,128100.0,41.763883516125524,59612.82884158411,-11268.20782783466,12652.022818029007,0.0,0.0,479.1396870709121,110559.76339370488,-222.87801553334637,250.24899977433066,-1239.904194285078,-462318.72717006976,true,true,3.934015825,1079.9320487880004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,123,0.9078603874015352,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,563858.7910578684,434708.7910578685,129150.0,1665081.8370420174,-1101223.0459841485,0.95,0.25,22.0,123,0.0,0.1,0.0,0.0,1050.0,129150.0,13125.0,1614375.0,13125.0,1614375.0,true,123,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,389357.27933356457,-1029.1204812566145,434708.7910578685,-1239.904194285078,389357.27933356457,-0.0,0.0,-0.0,0.0,210.78371302846335,45351.511724303695,123,53000.0,1239.904194285078,-7521.112118740241,175553.75193435207,1050.0,129150.0,13.377351229430168,59626.20619281354,-7709.826403228879,4942.196414800128,0.0,0.0,327.83241746687236,110887.59581117175,-152.4954842076653,97.75351556666536,-1239.904194285078,-463558.63136435486,true,true,2.458759891,1082.3908086790004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,124,0.9078603757901912,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,563879.6705766118,433679.6705766119,130200.0,1665102.685210132,-1101223.0146335198,0.95,0.25,22.0,124,0.0,0.1,0.0,0.0,1050.0,130200.0,13125.0,1627500.0,13125.0,1627500.0,true,124,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,388117.37513927947,-1029.1204812566145,433679.6705766119,-1239.904194285078,388117.37513927947,-0.0,0.0,-0.0,0.0,210.78371302846335,45562.295437332155,124,53000.0,1239.904194285078,-4054.9442956797043,171498.80763867236,1050.0,130200.0,2.0884986214778967,59628.29469143502,-4151.444989075293,790.7514257248349,0.0,0.0,176.52514786283268,111064.12095903458,-82.11295308872191,15.640562477943448,-1239.904194285078,-464798.53555863997,true,true,0.983503956,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,125,0.9078601407792035,666.0,0.0,422.59675811191187,-627.4032418880881,1050.0,421.9622284450772,0.6345296668347025,564302.2673347237,433052.2673347238,131250.0,1665524.6474385771,-1101222.380103853,0.95,0.25,22.0,125,0.0,0.1,0.0,0.0,1050.0,131250.0,13125.0,1640625.0,13125.0,1640625.0,true,125,0.83,53000.0,1239.904194285078,0.0,-755.9075203470942,387361.46761893237,-627.4032418880881,433052.2673347238,-755.9075203470942,387361.46761893237,-0.0,0.0,-0.0,0.0,128.50427845900606,45690.79971579116,125,53000.0,1239.904194285078,-755.9075203470942,170742.90011832525,1050.0,131250.0,0.04871133806781876,59628.343402773084,-790.7514257248038,3.115019353572279e-11,0.0,0.0,50.43575651758599,111114.55671555217,-15.640562477944266,-8.189005029635155e-13,-755.9075203470942,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,126,0.907859556861953,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,565352.2673347237,433052.2673347238,132300.0,1666573.0708620006,-1101220.8035272765,0.95,0.25,22.0,126,0.0,0.1,0.0,0.0,1050.0,132300.0,13125.0,1653750.0,13125.0,1653750.0,true,126,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,126,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,132300.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,127,0.9078589729447024,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,566402.2673347237,433052.2673347238,133350.0,1667621.494285424,-1101219.2269507,0.95,0.25,22.0,127,0.0,0.1,0.0,0.0,1050.0,133350.0,13125.0,1666875.0,13125.0,1666875.0,true,127,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,127,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,133350.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,128,0.9078583890274519,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,567452.2673347237,433052.2673347238,134400.0,1668669.9177088474,-1101217.6503741234,0.95,0.25,22.0,128,0.0,0.1,0.0,0.0,1050.0,134400.0,13125.0,1680000.0,13125.0,1680000.0,true,128,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,128,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,134400.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,129,0.9078578051102013,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,568502.2673347237,433052.2673347238,135450.0,1669718.3411322709,-1101216.0737975468,0.95,0.25,22.0,129,0.0,0.1,0.0,0.0,1050.0,135450.0,13125.0,1693125.0,13125.0,1693125.0,true,129,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,129,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,135450.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,130,0.9078572211929508,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,569552.2673347237,433052.2673347238,136500.0,1670766.7645556943,-1101214.4972209702,0.95,0.25,22.0,130,0.0,0.1,0.0,0.0,1050.0,136500.0,13125.0,1706250.0,13125.0,1706250.0,true,130,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,130,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,136500.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,131,0.9078566372757002,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,570602.2673347237,433052.2673347238,137550.0,1671815.1879791177,-1101212.9206443937,0.95,0.25,22.0,131,0.0,0.1,0.0,0.0,1050.0,137550.0,13125.0,1719375.0,13125.0,1719375.0,true,131,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,131,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,137550.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,132,0.9078560533584497,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,571652.2673347237,433052.2673347238,138600.0,1672863.6114025412,-1101211.344067817,0.95,0.25,22.0,132,0.0,0.1,0.0,0.0,1050.0,138600.0,13125.0,1732500.0,13125.0,1732500.0,true,132,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,132,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,138600.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,133,0.9078554694411991,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,572702.2673347237,433052.2673347238,139650.0,1673912.0348259646,-1101209.7674912405,0.95,0.25,22.0,133,0.0,0.1,0.0,0.0,1050.0,139650.0,13125.0,1745625.0,13125.0,1745625.0,true,133,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,133,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,139650.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,134,0.9078548855239486,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,573752.2673347237,433052.2673347238,140700.0,1674960.458249388,-1101208.190914664,0.95,0.25,22.0,134,0.0,0.1,0.0,0.0,1050.0,140700.0,13125.0,1758750.0,13125.0,1758750.0,true,134,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,134,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,140700.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,135,0.907854301606698,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,574802.2673347237,433052.2673347238,141750.0,1676008.8816728115,-1101206.6143380874,0.95,0.25,22.0,135,0.0,0.1,0.0,0.0,1050.0,141750.0,13125.0,1771875.0,13125.0,1771875.0,true,135,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,135,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,141750.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,136,0.9078537176894474,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,575852.2673347237,433052.2673347238,142800.0,1677057.305096235,-1101205.0377615108,0.95,0.25,22.0,136,0.0,0.1,0.0,0.0,1050.0,142800.0,13125.0,1785000.0,13125.0,1785000.0,true,136,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,136,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,142800.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,137,0.9078531337721969,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,576902.2673347237,433052.2673347238,143850.0,1678105.7285196583,-1101203.4611849342,0.95,0.25,22.0,137,0.0,0.1,0.0,0.0,1050.0,143850.0,13125.0,1798125.0,13125.0,1798125.0,true,137,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,137,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,143850.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,138,0.9078525498549463,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,577952.2673347237,433052.2673347238,144900.0,1679154.1519430818,-1101201.8846083577,0.95,0.25,22.0,138,0.0,0.1,0.0,0.0,1050.0,144900.0,13125.0,1811250.0,13125.0,1811250.0,true,138,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,138,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,144900.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,139,0.9078519659376958,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,579002.2673347237,433052.2673347238,145950.0,1680202.5753665052,-1101200.308031781,0.95,0.25,22.0,139,0.0,0.1,0.0,0.0,1050.0,145950.0,13125.0,1824375.0,13125.0,1824375.0,true,139,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,139,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,145950.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,140,0.9078513820204452,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,580052.2673347237,433052.2673347238,147000.0,1681250.9987899286,-1101198.7314552045,0.95,0.25,22.0,140,0.0,0.1,0.0,0.0,1050.0,147000.0,13125.0,1837500.0,13125.0,1837500.0,true,140,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,140,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,147000.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,141,0.9078507981031947,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,581102.2673347237,433052.2673347238,148050.0,1682299.422213352,-1101197.154878628,0.95,0.25,22.0,141,0.0,0.1,0.0,0.0,1050.0,148050.0,13125.0,1850625.0,13125.0,1850625.0,true,141,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,141,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,148050.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,142,0.9078502141859441,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,582152.2673347237,433052.2673347238,149100.0,1683347.8456367755,-1101195.5783020514,0.95,0.25,22.0,142,0.0,0.1,0.0,0.0,1050.0,149100.0,13125.0,1863750.0,13125.0,1863750.0,true,142,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,142,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,149100.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,143,0.9078496302686936,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,583202.2673347237,433052.2673347238,150150.0,1684396.269060199,-1101194.0017254748,0.95,0.25,22.0,143,0.0,0.1,0.0,0.0,1050.0,150150.0,13125.0,1876875.0,13125.0,1876875.0,true,143,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,143,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,150150.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,144,0.907849046351443,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,584252.2673347237,433052.2673347238,151200.0,1685444.6924836223,-1101192.4251488983,0.95,0.25,22.0,144,0.0,0.1,0.0,0.0,1050.0,151200.0,13125.0,1890000.0,13125.0,1890000.0,true,144,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,144,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,151200.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,145,0.9078484624341925,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,585302.2673347237,433052.2673347238,152250.0,1686493.1159070458,-1101190.8485723217,0.95,0.25,22.0,145,0.0,0.1,0.0,0.0,1050.0,152250.0,13125.0,1903125.0,13125.0,1903125.0,true,145,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,145,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,152250.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,146,0.9078478785169419,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,586352.2673347237,433052.2673347238,153300.0,1687541.5393304692,-1101189.2719957451,0.95,0.25,22.0,146,0.0,0.1,0.0,0.0,1050.0,153300.0,13125.0,1916250.0,13125.0,1916250.0,true,146,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,146,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,153300.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,147,0.9078472945996914,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,587402.2673347237,433052.2673347238,154350.0,1688589.9627538926,-1101187.6954191686,0.95,0.25,22.0,147,0.0,0.1,0.0,0.0,1050.0,154350.0,13125.0,1929375.0,13125.0,1929375.0,true,147,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,147,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,154350.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,148,0.9078467106824408,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,588452.2673347237,433052.2673347238,155400.0,1689638.386177316,-1101186.118842592,0.95,0.25,22.0,148,0.0,0.1,0.0,0.0,1050.0,155400.0,13125.0,1942500.0,13125.0,1942500.0,true,148,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,148,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,155400.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,149,0.9078461267651903,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,589502.2673347237,433052.2673347238,156450.0,1690686.8096007395,-1101184.5422660154,0.95,0.25,22.0,149,0.0,0.1,0.0,0.0,1050.0,156450.0,13125.0,1955625.0,13125.0,1955625.0,true,149,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,149,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,156450.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,150,0.9078455428479397,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,590552.2673347237,433052.2673347238,157500.0,1691735.233024163,-1101182.9656894389,0.95,0.25,22.0,150,0.0,0.1,0.0,0.0,1050.0,157500.0,13125.0,1968750.0,13125.0,1968750.0,true,150,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,150,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,157500.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,151,0.9078449589306892,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,591602.2673347237,433052.2673347238,158550.0,1692783.6564475864,-1101181.3891128623,0.95,0.25,22.0,151,0.0,0.1,0.0,0.0,1050.0,158550.0,13125.0,1981875.0,13125.0,1981875.0,true,151,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,151,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,158550.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,152,0.9078443750134386,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,592652.2673347237,433052.2673347238,159600.0,1693832.0798710098,-1101179.8125362857,0.95,0.25,22.0,152,0.0,0.1,0.0,0.0,1050.0,159600.0,13125.0,1995000.0,13125.0,1995000.0,true,152,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,152,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,159600.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,153,0.9078437910961881,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,593702.2673347237,433052.2673347238,160650.0,1694880.5032944332,-1101178.2359597092,0.95,0.25,22.0,153,0.0,0.1,0.0,0.0,1050.0,160650.0,13125.0,2008125.0,13125.0,2008125.0,true,153,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,153,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,160650.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,154,0.9078432071789375,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,594752.2673347237,433052.2673347238,161700.0,1695928.9267178567,-1101176.6593831326,0.95,0.25,22.0,154,0.0,0.1,0.0,0.0,1050.0,161700.0,13125.0,2021250.0,13125.0,2021250.0,true,154,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,154,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,161700.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,155,0.907842623261687,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,595802.2673347237,433052.2673347238,162750.0,1696977.35014128,-1101175.082806556,0.95,0.25,22.0,155,0.0,0.1,0.0,0.0,1050.0,162750.0,13125.0,2034375.0,13125.0,2034375.0,true,155,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,155,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,162750.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,156,0.9078420393444364,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,596852.2673347237,433052.2673347238,163800.0,1698025.7735647035,-1101173.5062299795,0.95,0.25,22.0,156,0.0,0.1,0.0,0.0,1050.0,163800.0,13125.0,2047500.0,13125.0,2047500.0,true,156,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,156,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,163800.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,157,0.9078414554271859,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,597902.2673347237,433052.2673347238,164850.0,1699074.196988127,-1101171.9296534029,0.95,0.25,22.0,157,0.0,0.1,0.0,0.0,1050.0,164850.0,13125.0,2060625.0,13125.0,2060625.0,true,157,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,157,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,164850.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,158,0.9078408715099353,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,598952.2673347237,433052.2673347238,165900.0,1700122.6204115504,-1101170.3530768263,0.95,0.25,22.0,158,0.0,0.1,0.0,0.0,1050.0,165900.0,13125.0,2073750.0,13125.0,2073750.0,true,158,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,158,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,165900.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,159,0.9078402875926848,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,600002.2673347237,433052.2673347238,166950.0,1701171.0438349738,-1101168.7765002497,0.95,0.25,22.0,159,0.0,0.1,0.0,0.0,1050.0,166950.0,13125.0,2086875.0,13125.0,2086875.0,true,159,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,159,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,166950.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,160,0.9078397036754342,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,601052.2673347237,433052.2673347238,168000.0,1702219.4672583973,-1101167.1999236732,0.95,0.25,22.0,160,0.0,0.1,0.0,0.0,1050.0,168000.0,13125.0,2100000.0,13125.0,2100000.0,true,160,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,160,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,168000.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,161,0.9078391197581837,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,602102.2673347237,433052.2673347238,169050.0,1703267.8906818207,-1101165.6233470966,0.95,0.25,22.0,161,0.0,0.1,0.0,0.0,1050.0,169050.0,13125.0,2113125.0,13125.0,2113125.0,true,161,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,161,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,169050.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,162,0.9078385358409331,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,603152.2673347237,433052.2673347238,170100.0,1704316.3141052441,-1101164.04677052,0.95,0.25,22.0,162,0.0,0.1,0.0,0.0,1050.0,170100.0,13125.0,2126250.0,13125.0,2126250.0,true,162,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,162,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,170100.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,163,0.9078379519236826,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,604202.2673347237,433052.2673347238,171150.0,1705364.7375286676,-1101162.4701939435,0.95,0.25,22.0,163,0.0,0.1,0.0,0.0,1050.0,171150.0,13125.0,2139375.0,13125.0,2139375.0,true,163,0.83,53000.0,1239.904194285078,0.0,0.0,387361.46761893237,0.0,433052.2673347238,0.0,387361.46761893237,-0.0,0.0,-0.0,0.0,0.0,45690.79971579116,163,53000.0,1239.904194285078,0.0,170742.90011832525,1050.0,171150.0,0.0,59628.343402773084,0.0,3.115019353572279e-11,0.0,0.0,0.0,111114.55671555217,0.0,-8.189005029635155e-13,0.0,-465554.44307898707,true,true,0.0,1083.3743126350005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,164,0.9078361537222568,666.0,0.0,3233.5258038302586,2183.5258038302586,1050.0,3228.6706599806635,4.855143849594983,607435.793138554,435235.793138554,172200.0,1708593.4081886483,-1101157.615050094,0.95,0.25,22.0,164,0.0,0.1,0.0,0.0,1050.0,172200.0,13125.0,2152500.0,13125.0,2152500.0,true,164,0.8656641511605643,53000.0,1239.904194285078,0.0,1890.2000115099095,389251.6676304423,2183.5258038302586,435235.793138554,1890.2000115099095,389251.6676304423,-0.0,0.0,-0.0,0.0,293.32579232034914,45984.12550811151,164,53000.0,1239.904194285078,1890.2000115099095,172633.10012983516,1050.0,172200.0,0.1644007663132048,59628.507803539396,1779.1907102928521,1779.1907102928833,0.0,0.0,75.6536348276607,111190.21035037983,35.1912656230833,35.19126562308248,-1890.2000115099095,-467444.643090497,true,true,1.475255935,1084.8495685700004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,165,0.9078321074013254,666.0,0.0,7276.0942989123205,6226.0942989123205,1050.0,7265.169232397438,10.925066514883364,614711.8874374663,441461.88743746636,173250.0,1715858.5774210456,-1101146.689983579,0.95,0.25,22.0,165,0.0,0.1,0.0,0.0,1050.0,173250.0,13125.0,2165625.0,13125.0,2165625.0,true,165,0.9114133798035753,53000.0,1239.904194285078,0.0,5674.54564794745,394926.21327838977,6226.0942989123205,441461.88743746636,5674.54564794745,394926.21327838977,-0.0,0.0,-0.0,0.0,551.5486509648708,46535.67415907638,165,53000.0,1239.904194285078,5674.54564794745,178307.6457777826,1050.0,173250.0,4.4388206874476825,59632.946624226846,5337.57212605447,7116.762836347353,0.0,0.0,226.96090443170038,111417.17125481153,105.5737967738325,140.76506239691497,-5674.54564794745,-473119.18873844447,true,true,2.950511869,1087.8000804390003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,166,0.907825834208033,666.0,0.0,11280.45617830062,10230.45617830062,1050.0,11263.51855641128,16.93762188934027,625992.343615767,451692.34361576696,174300.0,1727122.095977457,-1101129.7523616897,0.95,0.25,22.0,166,0.0,0.1,0.0,0.0,1050.0,174300.0,13125.0,2178750.0,13125.0,2178750.0,true,166,0.9257385967808608,53000.0,1239.904194285078,0.0,9470.728146928102,404396.9414253179,10230.45617830062,451692.34361576696,9470.728146928102,404396.9414253179,-0.0,0.0,-0.0,0.0,759.7280313725169,47295.40219044889,166,53000.0,1239.904194285078,9470.728146928102,187778.3739247107,1050.0,174300.0,20.55009577243478,59653.49671999928,8895.95354905222,16012.716385399573,0.0,0.0,378.2681740357401,111795.43942884727,175.95632806770777,316.72139046462274,-9470.728146928102,-482589.9168853726,true,true,4.425767804,1092.2258482430004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,167,0.9078173268795845,666.0,0.0,15297.878016075163,14247.878016075163,1050.0,15274.90822926424,22.96978681092367,641290.2216318421,465940.22163184214,175350.0,1742397.0042067212,-1101106.7825748788,0.95,0.25,22.0,167,0.0,0.1,0.0,0.0,1050.0,175350.0,13125.0,2191875.0,13125.0,2191875.0,true,167,0.9325345648354235,53000.0,1239.904194285078,0.0,13286.63872554885,417683.58015086676,14247.878016075163,465940.22163184214,13286.63872554885,417683.58015086676,-0.0,0.0,-0.0,0.0,961.2392905263132,48256.6414809752,167,53000.0,1239.904194285078,13286.63872554885,201065.01265025954,1050.0,175350.0,56.389462796284725,59709.88618279557,12454.334959989745,28467.051345389318,0.0,0.0,529.5754436397798,112325.01487248705,246.33885912303964,563.0602495876624,-13286.63872554885,-495876.55561092147,true,true,5.901023738,1098.1268719810005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,168,0.9078065670509632,666.0,0.0,19348.32382684558,18298.32382684558,1050.0,19319.272289568034,29.051537277545915,660638.5454586877,484238.5454586877,176400.0,1761716.2764962893,-1101077.7310376011,0.95,0.25,22.0,168,0.0,0.1,0.0,0.0,1050.0,176400.0,13125.0,2205000.0,13125.0,2205000.0,true,168,0.9361605364623601,53000.0,1239.904194285078,0.0,17130.168650101743,434813.7488009685,18298.32382684558,484238.5454586877,17130.168650101743,434813.7488009685,-0.0,0.0,-0.0,0.0,1168.155176743836,49424.79665771904,168,53000.0,1239.904194285078,17130.168650101743,218195.1813003613,1050.0,176400.0,119.84815853400774,59829.734341329575,16012.71638781158,44479.7677332009,0.0,0.0,680.8827132438195,113005.89758573087,316.7213905123323,879.7816400999947,-17130.168650101743,-513006.7242610232,true,true,7.376279673,1105.5031516540005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,169,0.9077935515338289,666.0,0.0,23404.502910892228,22354.502910892228,1050.0,23369.361014629627,35.141896262600945,684043.04836958,506593.04836957995,177450.0,1785085.637510919,-1101042.5891413386,0.95,0.25,22.0,169,0.0,0.1,0.0,0.0,1050.0,177450.0,13125.0,2218125.0,13125.0,2218125.0,true,169,0.9398200086018922,53000.0,1239.904194285078,0.0,21009.209118005758,455822.9579189743,22354.502910892228,506593.04836957995,21009.209118005758,455822.9579189743,-0.0,0.0,-0.0,0.0,1345.2937928864703,50770.09045060551,169,53000.0,1239.904194285078,21009.209118005758,239204.39041836705,1050.0,177450.0,218.81741976061417,60048.55176109019,19571.097793925037,64050.865527125934,0.0,0.0,832.1899828478593,113838.08756857873,387.1039214722469,1266.8855615722416,-21009.209118005758,-534015.9333790289,true,true,8.851535607,1114.3546872610004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,170,0.9077822283774841,666.0,0.0,20361.299739231396,19311.299739231396,1050.0,20330.72721710042,30.572522130978072,704404.3481088113,525904.3481088113,178500.0,1805416.3647280193,-1101012.0166192076,0.95,0.25,22.0,170,0.0,0.1,0.0,0.0,1050.0,178500.0,13125.0,2231250.0,13125.0,2231250.0,true,170,0.9370717677203962,53000.0,1239.904194285078,0.0,18096.07378361999,473919.03170259425,19311.299739231396,525904.3481088113,18096.07378361999,473919.03170259425,-0.0,0.0,-0.0,0.0,1215.225955611404,51985.31640621691,170,53000.0,1239.904194285078,18096.07378361999,257300.46420198705,1050.0,178500.0,338.929904065593,60387.48166515578,16468.54210211356,80519.40762923949,0.0,0.0,962.8644429394599,114800.9520115182,325.7373345013789,1592.6228960736205,-18096.07378361999,-552112.007162649,true,true,9.924449014,1124.2791362750004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,171,0.9077710804325275,666.0,0.0,20046.234620963987,18996.234620963987,1050.0,20016.135169581157,30.09945138282881,724450.5827297753,544900.5827297753,179550.0,1825432.4998976004,-1100981.9171678247,0.95,0.25,22.0,171,0.0,0.1,0.0,0.0,1050.0,179550.0,13125.0,2244375.0,13125.0,2244375.0,true,171,0.9367881581532258,53000.0,1239.904194285078,0.0,17795.447642419396,491714.4793450136,18996.234620963987,544900.5827297753,17795.447642419396,491714.4793450136,-0.0,0.0,-0.0,0.0,1200.786978544591,53186.1033847615,171,53000.0,1239.904194285078,17795.447642419396,275095.91184440645,1050.0,179550.0,459.9608591178923,60847.44252427367,15953.90024813272,96473.30787737221,0.0,0.0,1066.0284906554994,115866.9805021737,315.5580445132837,1908.1809405869042,-17795.447642419396,-569907.4548050683,true,true,10.86324825,1135.1423845250004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,172,0.9077620100717783,666.0,0.0,16310.322699241573,15260.322699241573,1050.0,16285.832725218688,24.489974022885246,740760.9054290169,560160.9054290169,180600.0,1841718.332622819,-1100957.4271938019,0.95,0.25,22.0,172,0.0,0.1,0.0,0.0,1050.0,180600.0,13125.0,2257500.0,13125.0,2257500.0,true,172,0.9334382728906931,53000.0,1239.904194285078,0.0,14244.569264134694,505959.0486091483,15260.322699241573,560160.9054290169,14244.569264134694,505959.0486091483,-0.0,0.0,-0.0,0.0,1015.7534351068789,54201.85681986838,172,53000.0,1239.904194285078,14244.569264134694,289340.48110854113,1050.0,180600.0,575.2745947228524,61422.71711899652,12277.886128055243,108751.19400542745,0.0,0.0,1148.5597283975644,117015.54023057126,242.84881295903517,2151.0297535459395,-14244.569264134694,-584152.0240692031,true,true,11.53381912,1146.6762036450004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,173,0.9077571396587354,666.0,0.0,8757.976733777869,7707.976733777868,1050.0,8744.826618561985,13.150115215882686,749518.8821627948,567868.8821627948,181650.0,1850463.159241381,-1100944.277078586,0.95,0.25,22.0,173,0.0,0.1,0.0,0.0,1050.0,181650.0,13125.0,2270625.0,13125.0,2270625.0,true,173,0.9166626971406887,53000.0,1239.904194285078,0.0,7065.614742282496,513024.6633514308,7707.976733777868,567868.8821627948,7065.614742282496,513024.6633514308,-0.0,0.0,-0.0,0.0,642.3619914953715,54844.21881136375,173,53000.0,1239.904194285078,7065.614742282496,296406.0958508236,1050.0,181650.0,650.6890921453011,62073.406211141824,5117.011453315112,113868.20545874255,0.0,0.0,1196.7029504906918,118212.24318106196,101.21124633139102,2252.2409998773305,-7065.614742282496,-591217.6388114856,true,true,11.80204748,1158.4782511250005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,174,0.9077571280473914,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,749539.7616815382,566839.7616815382,182700.0,1850484.0074094958,-1100944.2457279572,0.95,0.25,22.0,174,0.0,0.1,0.0,0.0,1050.0,182700.0,13125.0,2283750.0,13125.0,2283750.0,true,174,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,511784.7591571457,-1029.1204812566145,566839.7616815382,-1239.904194285078,511784.7591571457,-0.0,0.0,-0.0,0.0,210.78371302846335,55055.002524392214,174,53000.0,1239.904194285078,-4234.896584569216,292171.1992662544,1050.0,182700.0,646.9566594978879,62720.362870639714,-5958.410082027627,107909.79537671493,0.0,0.0,1194.410416373923,119406.65359743588,-117.85357841340006,2134.3874214639304,-1239.904194285078,-592457.5430057707,true,true,11.4891144,1169.9673655250006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,175,0.9077571164360474,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,749560.6412002816,565810.6412002816,183750.0,1850504.8555776104,-1100944.2143773285,0.95,0.25,22.0,175,0.0,0.1,0.0,0.0,1050.0,183750.0,13125.0,2296875.0,13125.0,2296875.0,true,175,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,510544.8549628606,-1029.1204812566145,565810.6412002816,-1239.904194285078,510544.8549628606,-0.0,0.0,-0.0,0.0,210.78371302846335,55265.786237420674,175,53000.0,1239.904194285078,-3313.936326104562,288857.2629401498,1050.0,183750.0,599.7263829082143,63320.08925354793,-4979.77341347323,102930.0219632417,0.0,0.0,1164.6074692662125,120571.26106670209,-98.49676480575877,2035.8906566581716,-1239.904194285078,-593697.4472000557,true,true,11.22088605,1181.1882515750005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,176,0.9077571048247034,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,749581.5207190249,564781.5207190249,184800.0,1850525.703745725,-1100944.1830266998,0.95,0.25,22.0,176,0.0,0.1,0.0,0.0,1050.0,184800.0,13125.0,2310000.0,13125.0,2310000.0,true,176,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,509304.9507685755,-1029.1204812566145,564781.5207190249,-1239.904194285078,509304.9507685755,-0.0,0.0,-0.0,0.0,210.78371302846335,55476.569950449135,176,53000.0,1239.904194285078,-1612.1852821201835,287245.0776580296,1050.0,184800.0,565.0020793773876,63885.091332925316,-3254.4975856149877,99675.52437762672,0.0,0.0,1141.6821255344416,121712.94319223653,-64.3719014170252,1971.5187552411464,-1239.904194285078,-594937.3513943407,true,true,11.04206715,1192.2303187250006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,177,0.9077539334086673,666.0,0.0,5702.840316243484,4652.840316243484,1050.0,5694.277492945821,8.56282329766289,755284.3610352684,569434.3610352684,185850.0,1856219.9812386709,-1100935.6202034021,0.95,0.25,22.0,177,0.0,0.1,0.0,0.0,1050.0,185850.0,13125.0,2323125.0,13125.0,2323125.0,true,177,0.8994825339403244,53000.0,1239.904194285078,0.0,4185.14859767439,513490.09936624987,4652.840316243484,569434.3610352684,4185.14859767439,513490.09936624987,-0.0,0.0,-0.0,0.0,467.6917185690945,55944.26166901823,177,53000.0,1239.904194285078,4185.14859767439,291430.226255704,1050.0,185850.0,561.6052820545196,64446.69661497984,2435.971746093404,102111.49612372012,0.0,0.0,1139.389590904856,122852.33278314139,48.18197862160998,2019.7007338627564,-4185.14859767439,-599122.4999920152,true,true,11.17618132,1203.4065000450007,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,178,0.9077512285551305,666.0,0.0,4863.867629990634,3813.8676299906338,1050.0,4856.564525441098,7.303104549535486,760148.2286652591,573248.2286652591,186900.0,1861076.545764112,-1100928.3170988525,0.95,0.25,22.0,178,0.0,0.1,0.0,0.0,1050.0,186900.0,13125.0,2336250.0,13125.0,2336250.0,true,178,0.8920975663303857,53000.0,1239.904194285078,0.0,3402.3420310208803,516892.44139727077,3813.8676299906338,573248.2286652591,3402.3420310208803,516892.44139727077,-0.0,0.0,-0.0,0.0,411.52559896975345,56355.78726798799,178,53000.0,1239.904194285078,3402.3420310208803,294832.5682867249,1050.0,186900.0,578.7262327051446,65025.42284768498,1640.3190634166515,103751.81518713677,0.0,0.0,1150.852262514333,124003.18504565573,32.444472384751336,2052.1452062475078,-3402.3420310208803,-602524.8420230361,true,true,11.26559077,1214.6720908150007,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,179,0.907748501809411,666.0,0.0,4903.2341527464305,3853.23415274643,1050.0,4895.871939303868,7.362213442562208,765051.4628180055,577101.4628180055,187950.0,1865972.4177034157,-1100920.95488541,0.95,0.25,22.0,179,0.0,0.1,0.0,0.0,1050.0,187950.0,13125.0,2349375.0,13125.0,2349375.0,true,179,0.8924413733893174,53000.0,1239.904194285078,0.0,3438.785579267647,520331.2269765384,3853.23415274643,577101.4628180055,3438.785579267647,520331.2269765384,-0.0,0.0,-0.0,0.0,414.44857347878315,56770.23584146677,179,53000.0,1239.904194285078,3438.785579267647,298271.35386599257,1050.0,187950.0,592.6708504283539,65618.09369811334,1653.3893347568032,105405.20452189358,0.0,0.0,1160.0224000070414,125163.20744566277,32.70299407544848,2084.848200322956,-3438.785579267647,-605963.6276023037,true,true,11.35500022,1226.0270910350007,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,180,0.907744736840218,666.0,0.0,6770.167603071999,5720.167603071999,1050.0,6760.00218625057,10.165416821429428,771821.6304210775,582821.6304210775,189000.0,1872732.4198896664,-1100910.7894685885,0.95,0.25,22.0,180,0.0,0.1,0.0,0.0,1050.0,189000.0,13125.0,2362500.0,13125.0,2362500.0,true,180,0.9090561663403082,53000.0,1239.904194285078,0.0,5199.953632072661,525531.1806086111,5720.167603071999,582821.6304210775,5199.953632072661,525531.1806086111,-0.0,0.0,-0.0,0.0,520.213970999338,57290.449812466104,180,53000.0,1239.904194285078,5199.953632072661,303471.30749806523,1050.0,189000.0,614.0049890696986,66232.09868718304,3345.9894835338755,108751.19400542746,0.0,0.0,1173.777606246104,126336.98505190888,66.1815532229832,2151.029753545939,-5199.953632072661,-611163.5812343764,true,true,11.53381912,1237.5609101550008,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,181,0.9077356582610151,666.0,0.0,16325.101122651313,15275.101122651313,1050.0,16300.588958803488,24.512163847824795,788146.7315437288,598096.7315437288,190050.0,1889033.00884847,-1100886.2773047406,0.95,0.25,22.0,181,0.0,0.1,0.0,0.0,1050.0,190050.0,13125.0,2375625.0,13125.0,2375625.0,true,181,0.9334514770806559,53000.0,1239.904194285078,0.0,14258.565705495253,539789.7463141064,15275.101122651313,598096.7315437288,14258.565705495253,539789.7463141064,-0.0,0.0,-0.0,0.0,1016.5354171560593,58306.985229622165,181,53000.0,1239.904194285078,14258.565705495253,317729.8732035605,1050.0,190050.0,681.0666681565705,66913.1653553396,12122.676938392855,120873.87094382031,0.0,0.0,1215.0432254761083,127552.02827738499,239.77887346971906,2390.808627015658,-14258.565705495253,-625422.1469398717,true,true,12.15968528,1249.7205954350009,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,182,0.9077356466496711,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,788167.6110624722,597067.6110624722,191100.0,1889053.8570165846,-1100886.245954112,0.95,0.25,22.0,182,0.0,0.1,0.0,0.0,1050.0,191100.0,13125.0,2388750.0,13125.0,2388750.0,true,182,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,538549.8421198213,-1029.1204812566145,597067.6110624722,-1239.904194285078,538549.8421198213,-0.0,0.0,-0.0,0.0,210.78371302846335,58517.768942650626,182,53000.0,1239.904194285078,-4323.365487145798,313406.5077164147,1050.0,191100.0,708.4103123632634,67621.57566770287,-6141.393883712845,114732.47706010746,0.0,0.0,1231.0909663447562,128783.11924372974,-121.47288214097293,2269.335744874685,-1239.904194285078,-626662.0511341568,true,true,11.8467522,1261.567347635001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,183,0.9077356350383271,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,788188.4905812156,596038.4905812156,192150.0,1889074.7051846993,-1100886.2146034832,0.95,0.25,22.0,183,0.0,0.1,0.0,0.0,1050.0,192150.0,13125.0,2401875.0,13125.0,2401875.0,true,183,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,537309.9379255363,-1029.1204812566145,596038.4905812156,-1239.904194285078,537309.9379255363,-0.0,0.0,-0.0,0.0,210.78371302846335,58728.55265567909,183,53000.0,1239.904194285078,-19287.607933199233,294118.8997832155,1050.0,192150.0,589.1639318547457,68210.73959955761,-20626.522183369005,94105.95487673845,0.0,0.0,1157.7298658902725,129940.84910962002,-407.97954757524644,1861.3561972994387,-1239.904194285078,-627901.9553284418,true,true,10.72913407,1272.296481705001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,184,0.9077356234269831,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,788209.370099959,595009.370099959,193200.0,1889095.553352814,-1100886.1832528545,0.95,0.25,22.0,184,0.0,0.1,0.0,0.0,1050.0,193200.0,13125.0,2415000.0,13125.0,2415000.0,true,184,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,536070.0337312513,-1029.1204812566145,595009.370099959,-1239.904194285078,536070.0337312513,-0.0,0.0,-0.0,0.0,210.78371302846335,58939.33636870755,184,53000.0,1239.904194285078,-8578.353003460386,285540.5467797551,1050.0,193200.0,465.9214010255889,68676.66100058319,-9918.702312699263,84187.2525640392,0.0,0.0,1070.6135591967266,131011.46266881675,-196.18565098343893,1665.1705463159997,-1239.904194285078,-629141.8595227269,true,true,10.14797264,1282.444454345001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,185,0.9077356118156391,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,788230.2496187023,593980.2496187023,194250.0,1889116.4015209286,-1100886.1519022258,0.95,0.25,22.0,185,0.0,0.1,0.0,0.0,1050.0,194250.0,13125.0,2428125.0,13125.0,2428125.0,true,185,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,534830.1295369662,-1029.1204812566145,593980.2496187023,-1239.904194285078,534830.1295369662,-0.0,0.0,-0.0,0.0,210.78371302846335,59150.12008173601,185,53000.0,1239.904194285078,-21840.601909212506,263699.9448705426,1050.0,194250.0,341.3566006248085,69018.017601208,-22698.160250419678,61489.09231361952,0.0,0.0,965.1569773126372,131976.61964612937,-448.9552367302727,1216.215309585727,-1239.904194285078,-630381.7637170119,true,true,8.672716706,1291.1171710510012,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,186,0.9077356002042951,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,788251.1291374457,592951.1291374457,195300.0,1889137.2496890433,-1100886.120551597,0.95,0.25,22.0,186,0.0,0.1,0.0,0.0,1050.0,195300.0,13125.0,2441250.0,13125.0,2441250.0,true,186,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,533590.2253426812,-1029.1204812566145,592951.1291374457,-1239.904194285078,533590.2253426812,-0.0,0.0,-0.0,0.0,210.78371302846335,59360.90379476447,186,53000.0,1239.904194285078,-9423.95121738952,254275.9936531531,1050.0,195300.0,233.60586726221354,69251.62346847022,-10304.27530202931,51184.81701159021,0.0,0.0,850.5302579358392,132827.1499040652,-203.8120405582621,1012.403269027465,-1239.904194285078,-631621.667911297,true,true,7.912736376,1299.0299074270013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,187,0.9077355885929511,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,788272.0086561891,591922.0086561891,196350.0,1889158.097857158,-1100886.0892009684,0.95,0.25,22.0,187,0.0,0.1,0.0,0.0,1050.0,196350.0,13125.0,2454375.0,13125.0,2454375.0,true,187,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,532350.3211483961,-1029.1204812566145,591922.0086561891,-1239.904194285078,532350.3211483961,-0.0,0.0,-0.0,0.0,210.78371302846335,59571.68750779293,187,53000.0,1239.904194285078,-1912.784920525524,252363.20873262757,1050.0,196350.0,194.4635897283959,69446.08705819862,-2850.9529672717813,48333.86404431843,0.0,0.0,800.0945014182532,133627.24440548348,-56.3900444003919,956.013224627073,-1239.904194285078,-632861.572105582,true,true,7.68921275,1306.7191201770013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,188,0.9077311683847155,666.0,0.0,7948.418449300815,6898.418449300815,1050.0,7936.483887064628,11.93456223618741,796220.4271054899,598820.4271054899,197400.0,1897094.5817442227,-1100874.154638732,0.95,0.25,22.0,188,0.0,0.1,0.0,0.0,1050.0,197400.0,13125.0,2467500.0,13125.0,2467500.0,true,188,0.9137875040632858,53000.0,1239.904194285078,0.0,6303.6885767707145,538654.0097251668,6898.418449300815,598820.4271054899,6303.6885767707145,538654.0097251668,-0.0,0.0,-0.0,0.0,594.7298725301007,60166.41738032303,188,53000.0,1239.904194285078,6303.6885767707145,258666.89730939828,1050.0,197400.0,201.22694492498718,69647.31400312361,5190.531565291903,53524.39560961033,0.0,0.0,809.2646389622432,134436.50904444573,102.66542759158142,1058.6786522186544,-6303.6885767707145,-639165.2606823527,true,true,8.091555277,1314.8106754540013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,189,0.9077280326744693,666.0,0.0,5638.634164605389,4588.634164605389,1050.0,5630.167746940816,8.466417664572656,801859.0612700953,603409.0612700953,198450.0,1902724.7494911635,-1100865.6882210674,0.95,0.25,22.0,189,0.0,0.1,0.0,0.0,1050.0,198450.0,13125.0,2480625.0,13125.0,2480625.0,true,189,0.8989130483457439,53000.0,1239.904194285078,0.0,4124.783124648856,542778.7928498157,4588.634164605389,603409.0612700953,4124.783124648856,542778.7928498157,-0.0,0.0,-0.0,0.0,463.851039956533,60630.268420279564,189,53000.0,1239.904194285078,4124.783124648856,262791.6804340471,1050.0,198450.0,226.1310557079917,69873.4450588316,2997.9935348319204,56522.38914444225,0.0,0.0,841.3601203918493,135277.86916483758,59.29841371709458,1117.977065935749,-4124.783124648856,-643290.0438070016,true,true,8.315078904,1323.1257543580014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,190,0.9077213673334924,666.0,0.0,11985.61614480613,10935.61614480613,1050.0,11967.619724168284,17.99642063784704,813844.6774149014,614344.6774149014,199500.0,1914692.3692153317,-1100847.6918004295,0.95,0.25,22.0,190,0.0,0.1,0.0,0.0,1050.0,199500.0,13125.0,2493750.0,13125.0,2493750.0,true,190,0.9283079998116726,53000.0,1239.904194285078,0.0,10151.619950093213,552930.4127999089,10935.61614480613,614344.6774149014,10151.619950093213,552930.4127999089,-0.0,0.0,-0.0,0.0,783.9961947129177,61414.264614992484,190,53000.0,1239.904194285078,10151.619950093213,272943.30038414034,1050.0,199500.0,263.1018680130599,70136.54692684466,8828.968403975547,65351.35754841779,0.0,0.0,884.9182737899039,136162.78743862748,174.63140431470188,1292.6084702504509,-10151.619950093213,-653441.6637570948,true,true,8.940945058,1332.0666994160013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,191,0.907710812402221,666.0,0.0,18979.877412273865,17929.877412273865,1050.0,18951.37909784102,28.498314432843642,832824.5548271753,632274.5548271753,200550.0,1933643.7483131727,-1100819.1934859967,0.95,0.25,22.0,191,0.0,0.1,0.0,0.0,1050.0,200550.0,13125.0,2506875.0,13125.0,2506875.0,true,191,0.9358295366710346,53000.0,1239.904194285078,0.0,16779.3088712967,569709.7216712056,17929.877412273865,632274.5548271753,16779.3088712967,569709.7216712056,-0.0,0.0,-0.0,0.0,1150.568540977165,62564.83315596965,191,53000.0,1239.904194285078,16779.3088712967,289722.60925543704,1050.0,200550.0,343.79485291473685,70480.3417797594,15168.050080821698,80519.40762923949,0.0,0.0,967.4495117370959,137130.23695036458,300.01442582316923,1592.62289607362,-16779.3088712967,-670220.9726283915,true,true,9.924449014,1341.9911484300012,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,192,0.9076987118588165,666.0,0.0,21759.197149967436,20709.197149967436,1050.0,21726.525682775293,32.6714671921433,854583.7519771428,652983.7519771428,201600.0,1955370.273995948,-1100786.5220188044,0.95,0.25,22.0,192,0.0,0.1,0.0,0.0,1050.0,201600.0,13125.0,2520000.0,13125.0,2520000.0,true,192,0.93833217548517,53000.0,1239.904194285078,0.0,19432.106014280227,589141.8276854858,20709.197149967436,652983.7519771428,19432.106014280227,589141.8276854858,-0.0,0.0,-0.0,0.0,1277.0911356872093,63841.92429165686,192,53000.0,1239.904194285078,19432.106014280227,309154.7152697173,1050.0,201600.0,465.921401293397,70946.2631810528,17548.47336258992,98067.88099182941,0.0,0.0,1070.6135594018533,138200.85050976643,347.09769099505615,1939.7205870686762,-19432.106014280227,-689653.0786426717,true,true,10.9526577,1352.9438061300011,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,193,0.9076827529449455,666.0,0.0,28697.318922795614,27647.318922795614,1050.0,28654.22985534397,43.089067451645064,883281.0708999383,680631.0708999383,202650.0,1984024.503851292,-1100743.4329513528,0.95,0.25,22.0,193,0.0,0.1,0.0,0.0,1050.0,202650.0,13125.0,2533125.0,13125.0,2533125.0,true,193,0.94,53000.0,1239.904194285078,0.0,25988.479787427874,615130.3074729138,27647.318922795614,680631.0708999383,25988.479787427874,615130.3074729138,-0.0,0.0,-0.0,0.0,1658.8391353677398,65500.763427024605,193,53000.0,1239.904194285078,25988.479787427874,335143.19505714515,1050.0,202650.0,635.8450530496157,71582.10823410242,23696.402093112374,121764.2830849418,0.0,0.0,1187.5328129979832,139388.38332276442,468.6998282679012,2408.420415336577,-25988.479787427874,-715641.5584300996,true,true,12.20439,1365.1481961300012,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,194,0.9076626073444496,666.0,0.0,36225.81881178232,35175.81881178232,1050.0,36171.42569044331,54.393121339012495,919506.8897117206,715806.8897117206,203700.0,2020195.9295417352,-1100689.0398300139,0.95,0.25,22.0,194,0.0,0.1,0.0,0.0,1050.0,203700.0,13125.0,2546250.0,13125.0,2546250.0,true,194,0.9388446880753374,53000.0,1239.904194285078,0.0,33024.63064014236,648154.9381130561,35175.81881178232,715806.8897117206,33024.63064014236,648154.9381130561,-0.0,0.0,-0.0,0.0,2151.1881716399657,67651.95159866457,194,53000.0,1239.904194285078,33024.63064014236,368167.8256972875,1050.0,203700.0,883.3758707865975,72465.48410488901,30218.467736685965,151982.75082162776,0.0,0.0,1325.084875901425,140713.46819866585,597.702156768372,3006.122572104949,-33024.63064014236,-748666.189070242,true,true,13.63494121,1378.7831373400013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,195,0.9076414619922247,666.0,0.0,38023.572370700786,36973.572370700786,1050.0,37966.479919693724,57.09245100705824,957530.4620824214,752780.4620824214,204750.0,2058162.4094614289,-1100631.9473790068,0.95,0.25,22.0,195,0.0,0.1,0.0,0.0,1050.0,204750.0,13125.0,2559375.0,13125.0,2559375.0,true,195,0.9373060809276633,53000.0,1239.904194285078,0.0,34655.55421667689,682810.492329733,36973.572370700786,752780.4620824214,34655.55421667689,682810.492329733,-0.0,0.0,-0.0,0.0,2318.018154023899,69969.96975268847,195,53000.0,1239.904194285078,34655.55421667689,402823.3799139644,1050.0,204750.0,1199.2284949054788,73664.71259979448,31368.651647507173,183351.40246913495,0.0,0.0,1467.2220080640382,142180.6902067299,620.4520662001961,3626.574638305145,-34655.55421667689,-783321.7432869188,true,true,14.97608297,1393.7592203100014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,196,0.907620411369749,666.0,0.0,37853.229335730146,36803.229335730146,1050.0,37796.392655045864,56.8366806842795,995383.6914181516,789583.6914181516,205800.0,2095958.8021164748,-1100575.1106983225,0.95,0.25,22.0,196,0.0,0.1,0.0,0.0,1050.0,205800.0,13125.0,2572500.0,13125.0,2572500.0,true,196,0.9374516526749478,53000.0,1239.904194285078,0.0,34501.24816455535,717311.7404942883,36803.229335730146,789583.6914181516,34501.24816455535,717311.7404942883,-0.0,0.0,-0.0,0.0,2301.981171174797,72271.95092386327,196,53000.0,1239.904194285078,34501.24816455535,437324.6280785198,1050.0,205800.0,1549.0318645061961,75213.74446430067,30746.179863468726,214097.58233260366,0.0,0.0,1597.8964681043574,143778.58667483425,608.1399684760758,4234.714606781221,-34501.24816455535,-817822.9914514741,true,true,16.18311055,1409.9423308600014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,197,0.9076097439634169,666.0,0.0,19182.130066521848,18132.130066521848,1050.0,19153.32806942497,28.801997096879653,1014565.8214846734,807715.8214846734,206850.0,2115112.1301859,-1100546.3087012256,0.95,0.25,22.0,197,0.0,0.1,0.0,0.0,1050.0,206850.0,13125.0,2585625.0,13125.0,2585625.0,true,197,0.9360112046283423,53000.0,1239.904194285078,0.0,16971.8769060429,734283.6174003312,18132.130066521848,807715.8214846734,16971.8769060429,734283.6174003312,-0.0,0.0,-0.0,0.0,1160.2531604789474,73432.20408434223,197,53000.0,1239.904194285078,16971.8769060429,454296.5049845627,1050.0,206850.0,1816.4524534820773,77030.19691778276,13209.143189816696,227306.72552242037,0.0,0.0,1685.0127747979031,145463.59944963217,261.26848794622447,4495.983094727446,-16971.8769060429,-834794.868357517,true,true,16.67486253,1426.6171933900014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,198,0.9075918041324371,666.0,0.0,32259.404067775286,31209.404067775286,1050.0,32210.966524129977,48.43754364530824,1046825.2255524487,838925.2255524487,207900.0,2147323.09671003,-1100497.8711575803,0.95,0.25,22.0,198,0.0,0.1,0.0,0.0,1050.0,207900.0,13125.0,2598750.0,13125.0,2598750.0,true,198,0.94,53000.0,1239.904194285078,0.0,29336.839823708768,763620.45722404,31209.404067775286,838925.2255524487,29336.839823708768,763620.45722404,-0.0,0.0,-0.0,0.0,1872.5642440665179,75304.76832840874,198,53000.0,1239.904194285078,29336.839823708768,483633.34480827145,1050.0,207900.0,2056.1193791165133,79086.31629689927,25029.57005705607,252336.29557947643,0.0,0.0,1756.0813411356185,147219.68079076777,495.0690464005671,4991.052141128013,-29336.839823708768,-864131.7081812258,true,true,17.56895704,1444.1861504300014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,199,0.9075793106841799,666.0,0.0,22465.71865617677,21415.71865617677,1050.0,22431.98634588221,33.73231029455972,1069290.9442086255,860340.9442086255,208950.0,2169755.083055912,-1100464.1388472856,0.95,0.25,22.0,199,0.0,0.1,0.0,0.0,1050.0,208950.0,13125.0,2611875.0,13125.0,2611875.0,true,199,0.9389704981267284,53000.0,1239.904194285078,0.0,20108.728014332173,783729.1852383721,21415.71865617677,860340.9442086255,20108.728014332173,783729.1852383721,-0.0,0.0,-0.0,0.0,1306.9906418445971,76611.75897025334,199,53000.0,1239.904194285078,20108.728014332173,503742.07282260363,1050.0,208950.0,2324.720212005453,81411.03650890473,15645.114894978386,267981.4104744548,0.0,0.0,1829.4424415901024,149049.12323235787,309.4504657582308,5300.502606886244,-20108.728014332173,-884240.4361955579,true,true,18.10541374,1462.2915641700013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,200,0.907563054526016,666.0,0.0,29231.823610059615,28181.823610059615,1050.0,29187.931983017483,43.89162704213155,1098522.7678186852,888522.767818685,210000.0,2198943.0150389294,-1100420.2472202436,0.95,0.25,22.0,200,0.0,0.1,0.0,0.0,1050.0,210000.0,13125.0,2625000.0,13125.0,2625000.0,true,200,0.94,53000.0,1239.904194285078,0.0,26490.914193456036,810220.0994318281,28181.823610059615,888522.767818685,26490.914193456036,810220.0994318281,-0.0,0.0,-0.0,0.0,1690.9094166035793,78302.66838685692,200,53000.0,1239.904194285078,26490.914193456036,530232.9870160597,1050.0,210000.0,2578.114251058759,83989.15075996348,21592.08869606897,289573.4991705238,0.0,0.0,1893.6334045518772,150942.75663690976,427.07784177642685,5727.580448662671,-26490.914193456036,-910731.350389014,true,true,18.82068935,1481.1122535200013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,201,0.9075477997380667,666.0,0.0,27431.159690608612,26381.159690608612,1050.0,27389.971763145237,41.1879274633763,1125953.9275092937,914903.9275092937,211050.0,2226332.9868020746,-1100379.0592927802,0.95,0.25,22.0,201,0.0,0.1,0.0,0.0,1050.0,211050.0,13125.0,2638125.0,13125.0,2638125.0,true,201,0.94,53000.0,1239.904194285078,0.0,24798.290109172096,835018.3895410002,26381.159690608612,914903.9275092937,24798.290109172096,835018.3895410002,-0.0,0.0,-0.0,0.0,1582.8695814365165,79885.53796829344,201,53000.0,1239.904194285078,24798.290109172096,555031.2771252318,1050.0,211050.0,2869.3485823238943,86858.49934228737,19579.266595395544,309152.76576591935,0.0,0.0,1962.4094362600067,152905.16607316976,387.26549519265126,6114.845943855323,-24798.290109172096,-935529.6404981861,true,true,19.4465555,1500.5588090200013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,202,0.9075301588488432,666.0,0.0,31721.847001507398,30671.847001507398,1050.0,31674.216600604235,47.63040090316426,1157675.774510801,945575.7745108011,212100.0,2258007.203402679,-1100331.4288918772,0.95,0.25,22.0,202,0.0,0.1,0.0,0.0,1050.0,212100.0,13125.0,2651250.0,13125.0,2651250.0,true,202,0.94,53000.0,1239.904194285078,0.0,28831.536181416952,863849.9257224172,30671.847001507398,945575.7745108011,28831.536181416952,863849.9257224172,-0.0,0.0,-0.0,0.0,1840.3108200904462,81725.84878838388,202,53000.0,1239.904194285078,28831.536181416952,583862.8133066487,1050.0,212100.0,3181.728977619134,90040.2283199065,23160.521290504697,332313.2870564241,0.0,0.0,2031.1854679681362,154936.3515411379,458.10044532498216,6572.946389180305,-28831.536181416952,-964361.176679603,true,true,20.16183111,1520.7206401300014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,203,0.9075181888030363,666.0,0.0,21524.536370140006,20474.536370140006,1050.0,21492.217246461118,32.3191236788889,1179200.310880941,966050.3108809411,213150.0,2279499.42064914,-1100299.1097681983,0.95,0.25,22.0,203,0.0,0.1,0.0,0.0,1050.0,213150.0,13125.0,2664375.0,13125.0,2664375.0,true,203,0.9381203579128831,53000.0,1239.904194285078,0.0,19207.579387656082,883057.5051100733,20474.536370140006,966050.3108809411,19207.579387656082,883057.5051100733,-0.0,0.0,-0.0,0.0,1266.9569824839236,82992.80577086781,203,53000.0,1239.904194285078,19207.579387656082,603070.3926943048,1050.0,213150.0,3458.7338835289875,93498.96220343548,13395.394260389641,345708.6813168137,0.0,0.0,2088.4988275539718,157024.85036869187,264.9524161834805,6837.898805363786,-19207.579387656082,-983568.7560672591,true,true,20.56417363,1541.2848137600013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,204,0.9075068327195243,666.0,0.0,20420.50937136381,19370.50937136381,1050.0,20389.84794588128,30.66142548252824,1199620.820252305,985420.8202523049,214200.0,2299889.268595021,-1100268.4483427159,0.95,0.25,22.0,204,0.0,0.1,0.0,0.0,1050.0,214200.0,13125.0,2677500.0,13125.0,2677500.0,true,204,0.9371250851356223,53000.0,1239.904194285078,0.0,18152.590243759678,901210.0953538329,19370.50937136381,985420.8202523049,18152.590243759678,901210.0953538329,-0.0,0.0,-0.0,0.0,1217.919127604131,84210.72489847193,204,53000.0,1239.904194285078,18152.590243759678,621222.9829380645,1050.0,214200.0,3655.9979726606184,97154.96017609611,12129.212221709247,357837.89353852294,0.0,0.0,2127.471912154391,159152.32228084627,239.9081372354197,7077.806942599205,-18152.590243759678,-1001721.3463110188,true,true,20.92181144,1562.2066252000013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,205,0.9074961512594204,666.0,0.0,19207.401558664864,18157.401558664864,1050.0,19178.561616384588,28.839942280277572,1218828.2218109698,1003578.2218109698,215250.0,2319067.8302114056,-1100239.6084004357,0.95,0.25,22.0,205,0.0,0.1,0.0,0.0,1050.0,215250.0,13125.0,2690625.0,13125.0,2690625.0,true,205,0.9360339090175072,53000.0,1239.904194285078,0.0,16995.94355855765,918206.0389123906,18157.401558664864,1003578.2218109698,16995.94355855765,918206.0389123906,-0.0,0.0,-0.0,0.0,1161.4580001072136,85372.18289857915,205,53000.0,1239.904194285078,16995.94355855765,638218.9264966222,1050.0,215250.0,3836.1633849861573,100991.12356108226,10784.607537544256,368622.5010760672,0.0,0.0,2161.8599280084554,161314.18220885473,213.31270801877952,7291.119650617985,-16995.94355855765,-1018717.2898695765,true,true,21.23474451,1583.4413697100013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,206,0.9074918518059177,666.0,0.0,7731.277288510791,6681.277288510791,1050.0,7719.668764053567,11.608524457223409,1226559.4990994805,1010259.4990994806,216300.0,2326787.498975459,-1100227.9998759783,0.95,0.25,22.0,206,0.0,0.1,0.0,0.0,1050.0,216300.0,13125.0,2703750.0,13125.0,2703750.0,true,206,0.9130193797970113,53000.0,1239.904194285078,0.0,6100.135646207979,924306.1745585985,6681.277288510791,1010259.4990994806,6100.135646207979,924306.1745585985,-0.0,0.0,-0.0,0.0,581.1416423028113,85953.32454088196,206,53000.0,1239.904194285078,6100.135646207979,644319.0621428301,1050.0,216300.0,3922.2279778436928,104913.35153892596,0.0,368622.5010760672,0.0,0.0,2177.9076683642866,163492.08987721903,0.0,7291.119650617985,-6100.135646207979,-1024817.4255157844,true,true,21.23474451,1604.6761142200012,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,207,0.9074894379992662,666.0,0.0,4340.507120886523,3290.507120886523,1050.0,4333.989842927233,6.517277959289073,1230900.006220367,1013550.006220367,217350.0,2331121.488818386,-1100221.482598019,0.95,0.25,22.0,207,0.0,0.1,0.0,0.0,1050.0,217350.0,13125.0,2716875.0,13125.0,2716875.0,true,207,0.8849416369420127,53000.0,1239.904194285078,0.0,2911.906757926669,927218.0813165252,3290.507120886523,1013550.006220367,2911.906757926669,927218.0813165252,-0.0,0.0,-0.0,0.0,378.600362959854,86331.92490384182,207,53000.0,1239.904194285078,2911.906757926669,647230.9689007568,1050.0,217350.0,3897.508126734853,108810.85966566081,-3097.654327340818,365524.8467487264,0.0,0.0,2173.322599617932,165665.41247683697,-61.26964108529815,7229.850009532687,-2911.906757926669,-1027729.3322737111,true,true,21.14533506,1625.8214492800012,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,208,0.9074861089269355,666.0,0.0,5986.337864962505,4936.337864962505,1050.0,5977.349369669768,8.988495292736493,1236886.3440853294,1018486.3440853296,218400.0,2337098.838188056,-1100212.4941027262,0.95,0.25,22.0,208,0.0,0.1,0.0,0.0,1050.0,218400.0,13125.0,2730000.0,13125.0,2730000.0,true,208,0.9020057068404608,53000.0,1239.904194285078,0.0,4452.604925088835,931670.686241614,4936.337864962505,1018486.3440853296,4452.604925088835,931670.686241614,-0.0,0.0,-0.0,0.0,483.73293987366924,86815.65784371548,208,53000.0,1239.904194285078,4452.604925088835,651683.5738258456,1050.0,218400.0,3860.623439251068,112671.48310491188,-1543.9256394202928,363980.9211093061,0.0,0.0,2166.44499675481,167831.85747359178,-30.537871496749055,7199.312138035938,-4452.604925088835,-1032181.9371987999,true,true,21.10063034,1646.922079620001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,209,0.907483734842754,666.0,0.0,4269.07817512883,3219.0781751288296,1050.0,4262.668147838846,6.410027289983228,1241155.4222604583,1021705.4222604583,219450.0,2341361.5063358946,-1100206.0840754362,0.95,0.25,22.0,209,0.0,0.1,0.0,0.0,1050.0,219450.0,13125.0,2743125.0,13125.0,2743125.0,true,209,0.8836718643892618,53000.0,1239.904194285078,0.0,2844.6088126308755,934515.2950542449,3219.0781751288296,1021705.4222604583,2844.6088126308755,934515.2950542449,-0.0,0.0,-0.0,0.0,374.4693624979541,87190.12720621344,209,53000.0,1239.904194285078,2844.6088126308755,654528.1826384765,1050.0,219450.0,3823.9721983644777,116495.45530327637,-3078.0489210615783,360902.87218824454,0.0,0.0,2159.567393891687,169991.42486748347,-60.88185856371103,7138.430279472227,-2844.6088126308755,-1035026.5460114308,true,true,21.01122089,1667.9333005100011,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,210,0.9074795218212032,666.0,0.0,7575.855352696357,6525.855352696357,1050.0,7564.480194509125,11.375158187231767,1248731.2776131546,1028231.2776131547,220500.0,2348925.9865304036,-1100194.708917249,0.95,0.25,22.0,210,0.0,0.1,0.0,0.0,1050.0,220500.0,13125.0,2756250.0,13125.0,2756250.0,true,210,0.9124703761833702,53000.0,1239.904194285078,0.0,5954.649688593105,940469.944742838,6525.855352696357,1028231.2776131547,5954.649688593105,940469.944742838,-0.0,0.0,-0.0,0.0,571.2056641032523,87761.33287031669,210,53000.0,1239.904194285078,5954.649688593105,660482.8323270696,1050.0,220500.0,3799.6673634477715,120295.12266672414,0.0,360902.87218824454,0.0,0.0,2154.9823251453327,172146.4071926288,0.0,7138.430279472227,-5954.649688593105,-1040981.1957000239,true,true,21.01122089,1688.9445214000011,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,211,0.9074753087996523,666.0,0.0,7575.855352696357,6525.855352696357,1050.0,7564.480194509125,11.375158187231767,1256307.1329658509,1034757.1329658511,221550.0,2356490.4667249126,-1100183.3337590618,0.95,0.25,22.0,211,0.0,0.1,0.0,0.0,1050.0,221550.0,13125.0,2769375.0,13125.0,2769375.0,true,211,0.9124703761833702,53000.0,1239.904194285078,0.0,5954.649688593105,946424.5944314311,6525.855352696357,1034757.1329658511,5954.649688593105,946424.5944314311,-0.0,0.0,-0.0,0.0,571.2056641032523,88332.53853441995,211,53000.0,1239.904194285078,5954.649688593105,666437.4820156627,1050.0,221550.0,3799.6673634477715,124094.79003017192,0.0,360902.87218824454,0.0,0.0,2154.9823251453327,174301.38951777414,0.0,7138.430279472227,-5954.649688593105,-1046935.845388617,true,true,21.01122089,1709.9557422900011,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,212,0.9074710957781015,666.0,0.0,7575.855352696357,6525.855352696357,1050.0,7564.480194509125,11.375158187231767,1263882.9883185471,1041282.9883185475,222600.0,2364054.9469194217,-1100171.9586008745,0.95,0.25,22.0,212,0.0,0.1,0.0,0.0,1050.0,222600.0,13125.0,2782500.0,13125.0,2782500.0,true,212,0.9124703761833702,53000.0,1239.904194285078,0.0,5954.649688593105,952379.2441200243,6525.855352696357,1041282.9883185475,5954.649688593105,952379.2441200243,-0.0,0.0,-0.0,0.0,571.2056641032523,88903.7441985232,212,53000.0,1239.904194285078,5954.649688593105,672392.1317042558,1050.0,222600.0,3799.6673634477715,127894.4573936197,0.0,360902.87218824454,0.0,0.0,2154.9823251453327,176456.37184291947,0.0,7138.430279472227,-5954.649688593105,-1052890.49507721,true,true,21.01122089,1730.9669631800011,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,213,0.9074668827565506,666.0,0.0,7575.855352696357,6525.855352696357,1050.0,7564.480194509125,11.375158187231767,1271458.8436712434,1047808.8436712439,223650.0,2371619.4271139307,-1100160.5834426873,0.95,0.25,22.0,213,0.0,0.1,0.0,0.0,1050.0,223650.0,13125.0,2795625.0,13125.0,2795625.0,true,213,0.9124703761833702,53000.0,1239.904194285078,0.0,5954.649688593105,958333.8938086174,6525.855352696357,1047808.8436712439,5954.649688593105,958333.8938086174,-0.0,0.0,-0.0,0.0,571.2056641032523,89474.94986262645,213,53000.0,1239.904194285078,5954.649688593105,678346.7813928489,1050.0,223650.0,3799.6673634477715,131694.12475706748,0.0,360902.87218824454,0.0,0.0,2154.9823251453327,178611.3541680648,0.0,7138.430279472227,-5954.649688593105,-1058845.1447658031,true,true,21.01122089,1751.9781840700011,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,214,0.9074608109788356,666.0,0.0,10918.270687227665,9868.270687227665,1050.0,10901.876887396993,16.39379983067217,1282377.114358471,1057677.1143584715,224700.0,2382521.3040013276,-1100144.1896428566,0.95,0.25,22.0,214,0.0,0.1,0.0,0.0,1050.0,224700.0,13125.0,2808750.0,13125.0,2808750.0,true,214,0.9244244164976659,53000.0,1239.904194285078,0.0,9122.470371881454,967456.3641804989,9868.270687227665,1057677.1143584715,9122.470371881454,967456.3641804989,-0.0,0.0,-0.0,0.0,745.8003153462105,90220.75017797266,214,53000.0,1239.904194285078,9122.470371881454,687469.2517647304,1050.0,224700.0,3823.9721983644777,135518.09695543195,3078.0489210615783,363980.9211093061,0.0,0.0,2159.567393891687,180770.9215619565,60.88185856371103,7199.312138035938,-9122.470371881454,-1067967.6151376846,true,true,21.10063034,1773.078814410001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,215,0.9074546978490806,666.0,0.0,10992.629925436084,9942.629925436084,1050.0,10976.124475097591,16.50545033849262,1293369.744283907,1067619.7442839076,225750.0,2393497.4284764254,-1100127.684192518,0.95,0.25,22.0,215,0.0,0.1,0.0,0.0,1050.0,225750.0,13125.0,2821875.0,13125.0,2821875.0,true,215,0.9246939225126144,53000.0,1239.904194285078,0.0,9193.889465842794,976650.2536463416,9942.629925436084,1067619.7442839076,9193.889465842794,976650.2536463416,-0.0,0.0,-0.0,0.0,748.7404595932894,90969.49063756595,215,53000.0,1239.904194285078,9193.889465842794,696663.1412305732,1050.0,225750.0,3872.892361802209,139390.98931723414,3091.1191924017767,367072.04030170786,0.0,0.0,2168.737531384395,182939.6590933409,61.1403802544141,7260.452518290352,-9193.889465842794,-1077161.5046035275,true,true,21.19003979,1794.268854200001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,216,0.9074457222283102,666.0,0.0,16139.961269315045,15089.961269315045,1050.0,16115.727093234993,24.23417608005262,1309509.7055532222,1082709.7055532227,226800.0,2409613.1555696605,-1100103.450016438,0.95,0.25,22.0,216,0.0,0.1,0.0,0.0,1050.0,226800.0,13125.0,2835000.0,13125.0,2835000.0,true,216,0.9332860857424952,53000.0,1239.904194285078,0.0,14083.250887044893,990733.5045333866,15089.961269315045,1082709.7055532227,14083.250887044893,990733.5045333866,-0.0,0.0,-0.0,0.0,1006.710382270152,91976.2010198361,216,53000.0,1239.904194285078,14083.250887044893,710746.3921176181,1050.0,226800.0,3959.5033926729625,143350.4927099071,7784.980243061378,374857.02054476924,0.0,0.0,2184.785271740226,185124.44436508112,153.98197957032528,7414.434497860677,-14083.250887044893,-1091244.7554905724,true,true,21.41356341,1815.682417610001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,217,0.9074356551511336,666.0,0.0,18102.61817911534,17052.61817911534,1050.0,18075.437070738288,27.18110837705006,1327612.3237323374,1099762.323732338,227850.0,2427688.5926403985,-1100076.268908061,0.95,0.25,22.0,217,0.0,0.1,0.0,0.0,1050.0,227850.0,13125.0,2848125.0,13125.0,2848125.0,true,217,0.9350423779744245,53000.0,1239.904194285078,0.0,15944.920652889909,1006678.4251862764,17052.61817911534,1099762.323732338,15944.920652889909,1006678.4251862764,-0.0,0.0,-0.0,0.0,1107.697526225431,93083.89854606152,217,53000.0,1239.904194285078,15944.920652889909,726691.312770508,1050.0,227850.0,4098.199719631012,147448.69242953812,9449.806592601324,384306.8271373706,0.0,0.0,2210.0031501015824,187334.4475151827,186.9111905559894,7601.345688416666,-15944.920652889909,-1107189.6761434623,true,true,21.68179177,1837.364209380001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,218,0.9074254111546021,666.0,0.0,18420.754562956325,17370.754562956325,1050.0,18393.095772321256,27.658790635069558,1346033.0782952937,1117133.0782952942,228900.0,2446081.68841272,-1100048.610117426,0.95,0.25,22.0,218,0.0,0.1,0.0,0.0,1050.0,228900.0,13125.0,2861250.0,13125.0,2861250.0,true,218,0.9353276864886146,53000.0,1239.904194285078,0.0,16247.347677931484,1022925.772864208,17370.754562956325,1117133.0782952942,16247.347677931484,1022925.772864208,-0.0,0.0,-0.0,0.0,1123.4068850248404,94207.30543108637,218,53000.0,1239.904194285078,16247.347677931484,742938.6604484395,1050.0,228900.0,4253.157551441188,151701.8499809793,9567.438684550501,393874.2658219211,0.0,0.0,2237.5135630925247,189571.96107827523,189.23787884726823,7790.583567263934,-16247.347677931484,-1123437.0238213937,true,true,21.95002012,1859.3142295000011,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,219,0.9074169449361161,666.0,0.0,15223.95408143092,14173.95408143092,1050.0,15201.095291518863,22.858789912058437,1361257.0323767248,1131307.0323767252,229950.0,2461282.783704239,-1100025.751327514,0.95,0.25,22.0,219,0.0,0.1,0.0,0.0,1050.0,229950.0,13125.0,2874375.0,13125.0,2874375.0,true,219,0.9324686488788517,53000.0,1239.904194285078,0.0,13216.767811582777,1036142.5406757907,14173.95408143092,1131307.0323767252,13216.767811582777,1036142.5406757907,-0.0,0.0,-0.0,0.0,957.1862698481436,95164.49170093451,219,53000.0,1239.904194285078,13216.767811582777,756155.4282600223,1050.0,229950.0,4385.23389733933,156087.08387831863,6443.643813067496,400317.90963498864,0.0,0.0,2260.438906824296,191832.39998509953,127.45119435165564,7918.03476161559,-13216.767811582777,-1136653.7916329766,true,true,22.12883902,1881.4430685200011,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,220,0.9074073865837154,666.0,0.0,17187.82928692975,16137.829286929753,1050.0,17162.021735447874,25.8075514818765,1378444.8616636544,1147444.861663655,231000.0,2478444.805439687,-1099999.9437760322,0.95,0.25,22.0,220,0.0,0.1,0.0,0.0,1050.0,231000.0,13125.0,2887500.0,13125.0,2887500.0,true,220,0.9342229533366779,53000.0,1239.904194285078,0.0,15076.33053687865,1051218.8712126694,16137.829286929753,1147444.861663655,15076.33053687865,1051218.8712126694,-0.0,0.0,-0.0,0.0,1061.4987500511033,96225.99045098561,220,53000.0,1239.904194285078,15076.33053687865,771231.758796901,1050.0,231000.0,4506.415787224848,160593.4996655435,8128.074859891884,408445.98449488054,0.0,0.0,2281.0717159264805,194113.47170102602,160.76817383543803,8078.802935451027,-15076.33053687865,-1151730.1221698553,true,true,22.35236264,1903.795431160001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,221,0.9073966908443338,666.0,0.0,19233.078556018874,18183.078556018874,1050.0,19204.200059688515,28.87849633035867,1397677.9402196733,1165627.9402196738,232050.0,2497649.0054993755,-1099971.0652797017,0.95,0.25,22.0,221,0.0,0.1,0.0,0.0,1050.0,232050.0,13125.0,2900625.0,13125.0,2900625.0,true,221,0.9360569788484059,53000.0,1239.904194285078,0.0,17020.39757931026,1068239.2687919796,18183.078556018874,1165627.9402196738,17020.39757931026,1068239.2687919796,-0.0,0.0,-0.0,0.0,1162.6809767086124,97388.67142769422,221,53000.0,1239.904194285078,17020.39757931026,788252.1563762112,1050.0,232050.0,4657.5332035056645,165251.03286904917,9861.520157356874,418307.5046522374,0.0,0.0,2306.289594287837,196419.76129531386,195.05462415988745,8273.857559610915,-17020.39757931026,-1168750.5197491655,true,true,22.620591,1926.4160221600011,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,222,0.9073878240257964,666.0,0.0,15944.313093888833,14894.313093888833,1050.0,15920.37268383795,23.940410050884136,1413622.2533135621,1180522.2533135626,233100.0,2513569.3781832135,-1099947.124869651,0.95,0.25,22.0,222,0.0,0.1,0.0,0.0,1050.0,233100.0,13125.0,2913750.0,13125.0,2913750.0,true,222,0.9331113706661982,53000.0,1239.904194285078,0.0,13898.052906170113,1082137.3216981497,14894.313093888833,1180522.2533135626,13898.052906170113,1082137.3216981497,-0.0,0.0,-0.0,0.0,996.2601877187208,98384.93161541295,222,53000.0,1239.904194285078,13898.052906170113,802150.2092823813,1050.0,233100.0,4797.811063265714,170048.8439323149,6639.6978846309585,424947.20253686834,0.0,0.0,2329.214938532425,198748.97623384628,131.32901974101367,8405.186579351928,-13898.052906170113,-1182648.5726553355,true,true,22.7994099,1949.2154320600011,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,223,0.9073778329556844,666.0,0.0,17965.942275475787,16915.942275475787,1050.0,17938.96638617327,26.975889302516197,1431588.1955890378,1197438.1955890383,234150.0,2531508.344569387,-1099920.1489803484,0.95,0.25,22.0,223,0.0,0.1,0.0,0.0,1050.0,234150.0,13125.0,2926875.0,13125.0,2926875.0,true,223,0.9349198588341839,53000.0,1239.904194285078,0.0,15815.050364235027,1097952.3720623846,16915.942275475787,1197438.1955890383,15815.050364235027,1097952.3720623846,-0.0,0.0,-0.0,0.0,1100.8919112407602,99485.82352665371,223,53000.0,1239.904194285078,15815.050364235027,817965.2596466164,1050.0,234150.0,4926.4447172723585,174975.28864958725,8373.142443864357,433320.3449807327,0.0,0.0,2349.8477476346097,201098.82398148088,165.61545546370243,8570.802034815631,-15815.050364235027,-1198463.6230195705,true,true,23.02293352,1972.238365580001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,224,0.9073656505085395,666.0,0.0,21906.476456156583,20856.476456156583,1050.0,21873.583848865055,32.8926072915264,1453494.6720451945,1218294.672045195,235200.0,2553381.928418252,-1099887.256373057,0.95,0.25,22.0,224,0.0,0.1,0.0,0.0,1050.0,235200.0,13125.0,2940000.0,13125.0,2940000.0,true,224,0.9384651666540021,53000.0,1239.904194285078,0.0,19573.07665324226,1117525.448715627,20856.476456156583,1218294.672045195,19573.07665324226,1117525.448715627,-0.0,0.0,-0.0,0.0,1283.3998029143222,100769.22332956803,224,53000.0,1239.904194285078,19573.07665324226,837538.3362998586,1050.0,235200.0,5101.504646602214,180076.79329618945,11859.637722191277,445179.982702924,0.0,0.0,2377.358160112735,203476.1821415936,234.57612433603444,8805.378159151665,-19573.07665324226,-1218036.6996728128,true,true,23.3358666,1995.574232180001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,225,0.9073500790564852,666.0,0.0,28000.585083916234,26950.585083916234,1050.0,27958.542163369813,42.042920546420774,1481495.2571291109,1245245.2571291113,236250.0,2581340.470581622,-1099845.2134525105,0.95,0.25,22.0,225,0.0,0.1,0.0,0.0,1050.0,236250.0,13125.0,2953125.0,13125.0,2953125.0,true,225,0.94,53000.0,1239.904194285078,0.0,25333.54997888126,1142858.9986945083,26950.585083916234,1245245.2571291113,25333.54997888126,1142858.9986945083,-0.0,0.0,-0.0,0.0,1617.0351050349745,102386.258434603,225,53000.0,1239.904194285078,25333.54997888126,862871.8862787399,1050.0,236250.0,5356.53380427482,185433.3271004643,17220.082600232698,462400.0653031567,0.0,0.0,2416.3312447131543,205892.51338630676,340.60232966058845,9145.980488812254,-25333.54997888126,-1243370.2496516942,true,true,23.78291385,2019.3571460300009,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,226,0.9073351777037011,666.0,0.0,26795.612576500003,25745.612576500003,1050.0,26755.378923982735,40.233652517267274,1508290.869705611,1270990.8697056114,237300.0,2608095.8495056047,-1099804.9797999933,0.95,0.25,22.0,226,0.0,0.1,0.0,0.0,1050.0,237300.0,13125.0,2966250.0,13125.0,2966250.0,true,226,0.94,53000.0,1239.904194285078,0.0,24200.875821910002,1167059.8745164184,25745.612576500003,1270990.8697056114,24200.875821910002,1167059.8745164184,-0.0,0.0,-0.0,0.0,1544.7367545900015,103930.99518919301,226,53000.0,1239.904194285078,24200.875821910002,887072.7621006499,1050.0,237300.0,5651.466834287523,191084.79393475183,15777.451587818723,478177.5168909754,0.0,0.0,2459.889398059927,208352.40278436668,312.0680017438276,9458.048490556082,-24200.875821910002,-1267571.1254736043,true,true,24.18525638,2043.542402410001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,227,0.9073242470857564,666.0,0.0,19655.437188101052,18605.437188101052,1050.0,19625.92451965045,29.51266845060218,1527946.306893712,1289596.3068937124,238350.0,2627721.7740252553,-1099775.4671315427,0.95,0.25,22.0,227,0.0,0.1,0.0,0.0,1050.0,238350.0,13125.0,2979375.0,13125.0,2979375.0,true,227,0.9364366156923605,53000.0,1239.904194285078,0.0,17422.812633902136,1184482.6871503205,18605.437188101052,1289596.3068937124,17422.812633902136,1184482.6871503205,-0.0,0.0,-0.0,0.0,1182.6245541989156,105113.61974339193,227,53000.0,1239.904194285078,17422.812633902136,904495.5747345521,1050.0,238350.0,5875.578727545738,196960.37266229757,8879.615847875326,487057.1327388507,0.0,0.0,2491.984879797223,210844.38766416392,175.63317868385093,9633.681669239933,-17422.812633902136,-1284993.9381075064,true,true,24.40878001,2067.951182420001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,228,0.9073153264061188,666.0,0.0,16041.166124363148,14991.166124363148,1050.0,16017.080289341582,24.08583502156629,1543987.473018075,1304587.4730180756,239400.0,2643738.854314597,-1099751.3812965213,0.95,0.25,22.0,228,0.0,0.1,0.0,0.0,1050.0,239400.0,13125.0,2992500.0,13125.0,2992500.0,true,228,0.9331978528671993,53000.0,1239.904194285078,0.0,13989.724039231183,1198472.4111895517,14991.166124363148,1304587.4730180756,13989.724039231183,1198472.4111895517,-0.0,0.0,-0.0,0.0,1001.4420851319646,106115.06182852389,228,53000.0,1239.904194285078,13989.724039231183,918485.2987737833,1050.0,239400.0,6006.263415002425,202966.6360773,5366.980003478612,492424.1127423293,0.0,0.0,2510.3251547826403,213354.71281894657,106.15546596750454,9739.837135207437,-13989.724039231183,-1298983.6621467376,true,true,24.54289418,2092.494076600001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,229,0.9073085054504761,666.0,0.0,12265.442436673526,11215.442436673526,1050.0,12247.02585643828,18.416580235245533,1556252.9154547486,1315802.915454749,240450.0,2655985.880171035,-1099732.964716286,0.95,0.25,22.0,229,0.0,0.1,0.0,0.0,1050.0,240450.0,13125.0,3005625.0,13125.0,3005625.0,true,229,0.9293315647905358,53000.0,1239.904194285078,0.0,10422.864669491988,1208895.2758590437,11215.442436673526,1315802.915454749,10422.864669491988,1208895.2758590437,-0.0,0.0,-0.0,0.0,792.5777671815376,106907.63959570543,229,53000.0,1239.904194285078,10422.864669491988,928908.1634432753,1050.0,240450.0,6072.326218076996,209038.962295377,1795.5287376804633,494219.64148000977,0.0,0.0,2519.495292275348,215874.20811122193,35.514421459180326,9775.351556666617,-10422.864669491988,-1309406.5268162296,true,true,24.58759891,2117.081675510001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,230,0.9073038148189537,666.0,0.0,8434.693603669031,7384.693603669031,1050.0,8422.028898558417,12.664705110614161,1564687.6090584176,1323187.609058418,241500.0,2664407.9090695935,-1099720.3000111752,0.95,0.25,22.0,230,0.0,0.1,0.0,0.0,1050.0,241500.0,13125.0,3018750.0,13125.0,3018750.0,true,230,0.9155123711366517,53000.0,1239.904194285078,0.0,6760.778351212701,1215656.0542102563,7384.693603669031,1323187.609058418,6760.778351212701,1215656.0542102563,-0.0,0.0,-0.0,0.0,623.9152524563306,107531.55484816176,230,53000.0,1239.904194285078,6760.778351212701,935668.941794488,1050.0,241500.0,6072.326218076996,215111.28851345397,-1795.5287376804633,492424.1127423293,0.0,0.0,2519.495292275348,218393.7034034973,-35.514421459180326,9739.837135207437,-6760.778351212701,-1316167.3051674422,true,true,24.54289418,2141.624569690001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,231,0.9073013236956124,666.0,0.0,4479.537992327462,3429.5379923274622,1050.0,4472.811959305949,6.726033021512706,1569167.147050745,1326617.1470507456,242550.0,2668880.7210288993,-1099713.5739781538,0.95,0.25,22.0,231,0.0,0.1,0.0,0.0,1050.0,242550.0,13125.0,3031875.0,13125.0,3031875.0,true,231,0.8874236434026217,53000.0,1239.904194285078,0.0,3043.453100338949,1218699.5073105954,3429.5379923274622,1326617.1470507456,3043.453100338949,1218699.5073105954,-0.0,0.0,-0.0,0.0,386.0848919885134,107917.63974015028,231,53000.0,1239.904194285078,3043.453100338949,938712.3948948269,1050.0,242550.0,6006.263415002425,221117.5519284564,-5366.980003478612,487057.1327388507,0.0,0.0,2510.3251547826403,220904.02855827994,-106.15546596750454,9633.681669239933,-3043.453100338949,-1319210.7582677812,true,true,24.40878001,2166.033349700001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,232,0.9072956363647883,666.0,0.0,10226.958288096566,9176.958288096566,1050.0,10211.602494871197,15.35579322537022,1579394.1053388417,1335794.1053388421,243600.0,2679092.3235237706,-1099698.2181849284,0.95,0.25,22.0,232,0.0,0.1,0.0,0.0,1050.0,243600.0,13125.0,3045000.0,13125.0,3045000.0,true,232,0.9219263379160498,53000.0,1239.904194285078,0.0,8460.47954775321,1227159.9868583486,9176.958288096566,1335794.1053388421,8460.47954775321,1227159.9868583486,-0.0,0.0,-0.0,0.0,716.4787403433565,108634.11848049363,232,53000.0,1239.904194285078,8460.47954775321,947172.8744425802,1050.0,243600.0,5957.031995833692,227074.5839242901,0.0,487057.1327388507,0.0,0.0,2503.447551919517,223407.47611019947,0.0,9633.681669239933,-8460.47954775321,-1327671.2378155345,true,true,24.40878001,2190.442129710001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,233,0.9072878024856634,666.0,0.0,14086.881442284535,13036.881442284535,1050.0,14065.72996864747,21.151473637063866,1593480.9867811261,1348830.9867811266,244650.0,2693158.053492418,-1099677.0667112914,0.95,0.25,22.0,233,0.0,0.1,0.0,0.0,1050.0,244650.0,13125.0,3058125.0,13125.0,3058125.0,true,233,0.931455924964601,53000.0,1239.904194285078,0.0,12143.280462476983,1239303.2673208255,13036.881442284535,1348830.9867811266,12143.280462476983,1239303.2673208255,-0.0,0.0,-0.0,0.0,893.600979807552,109527.71946030119,233,53000.0,1239.904194285078,12143.280462476983,959316.1549050572,1050.0,244650.0,5989.822924033728,233064.40684832385,3574.719234909392,490631.8519737601,0.0,0.0,2508.0326206658715,225915.50873086535,70.70568286799238,9704.387352107926,-12143.280462476983,-1339814.5182780114,true,true,24.49818946,2214.940319170001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,234,0.9072788258667682,666.0,0.0,16141.756097341655,15091.756097341655,1050.0,16117.519226324624,24.23687101702951,1609622.7428784678,1363922.7428784682,245700.0,2709275.572718743,-1099652.8298402743,0.95,0.25,22.0,234,0.0,0.1,0.0,0.0,1050.0,245700.0,13125.0,3071250.0,13125.0,3071250.0,true,234,0.9332876888383013,53000.0,1239.904194285078,0.0,14084.950168599335,1253388.2174894249,15091.756097341655,1363922.7428784682,14084.950168599335,1253388.2174894249,-0.0,0.0,-0.0,0.0,1006.8059287423202,110534.52538904351,234,53000.0,1239.904194285078,14084.950168599335,973401.1050736565,1050.0,245700.0,6072.326218076996,239136.73306640086,5386.585409757898,496018.43738351803,0.0,0.0,2519.495292275348,228435.0040231407,106.54324848909165,9810.930600597017,-14084.950168599335,-1353899.4684466107,true,true,24.63230363,2239.572622800001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,235,0.9072686707081189,666.0,0.0,18261.006283266426,17211.006283266426,1050.0,18233.587354913172,27.41892835325289,1627883.7491617342,1381133.7491617347,246750.0,2727509.160073656,-1099625.410911921,0.95,0.25,22.0,235,0.0,0.1,0.0,0.0,1050.0,246750.0,13125.0,3084375.0,13125.0,3084375.0,true,235,0.9351844005604324,53000.0,1239.904194285078,0.0,16095.464594058347,1269483.6820834833,17211.006283266426,1381133.7491617347,16095.464594058347,1269483.6820834833,-0.0,0.0,-0.0,0.0,1115.5416892080793,111650.0670782516,235,53000.0,1239.904194285078,16095.464594058347,989496.5696677149,1050.0,246750.0,6189.098554979732,245325.83162138058,7227.860502059633,503246.29788557766,0.0,0.0,2535.543033143996,230970.5470562847,142.96250387498327,9953.893104472001,-16095.464594058347,-1369994.9330406692,true,true,24.81112254,2264.383745340001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,236,0.9072605999900958,666.0,0.0,14512.765149088274,13462.765149088274,1050.0,14490.97421042598,21.790938662294707,1642396.5143108226,1394596.514310823,247800.0,2742000.1342840823,-1099603.6199732586,0.95,0.25,22.0,236,0.0,0.1,0.0,0.0,1050.0,247800.0,13125.0,3097500.0,13125.0,3097500.0,true,236,0.9318349768404807,53000.0,1239.904194285078,0.0,12545.075450909502,1282028.7575343929,13462.765149088274,1394596.514310823,12545.075450909502,1282028.7575343929,-0.0,0.0,-0.0,0.0,917.6896981787722,112567.75677643037,236,53000.0,1239.904194285078,12545.075450909502,1002041.6451186244,1050.0,247800.0,6290.372723852122,251616.2043452327,3633.535456670924,506879.8333422486,0.0,0.0,2549.298239895876,233519.84529618057,71.8690304905807,10025.762134962582,-12545.075450909502,-1382540.0084915787,true,true,24.90053199,2289.2842773300013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,237,0.90725026287779,666.0,0.0,18588.195348339257,17538.195348339257,1050.0,18560.28514511352,27.91020322573462,1660984.7096591617,1412134.7096591622,248850.0,2760560.419429196,-1099575.709770033,0.95,0.25,22.0,237,0.0,0.1,0.0,0.0,1050.0,248850.0,13125.0,3110625.0,13125.0,3110625.0,true,237,0.9354779193333262,53000.0,1239.904194285078,0.0,16406.59449332583,1298435.3520277187,17538.195348339257,1412134.7096591622,16406.59449332583,1298435.3520277187,-0.0,0.0,-0.0,0.0,1131.6008550134284,113699.3576314438,237,53000.0,1239.904194285078,16406.59449332583,1018448.2396119502,1050.0,248850.0,6392.745693775477,258008.95003900817,7306.281727362164,514186.11506961077,0.0,0.0,2563.0534461349384,236082.8987423155,144.51362605325136,10170.275761015833,-16406.59449332583,-1398946.6029849045,true,true,25.07935089,2314.3636282200014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,238,0.9072420311446323,666.0,0.0,14802.3025641476,13752.3025641476,1050.0,14780.076884621853,22.225679525747147,1675787.0122233094,1425887.0122233098,249900.0,2775340.496313818,-1099553.4840905073,0.95,0.25,22.0,238,0.0,0.1,0.0,0.0,1050.0,249900.0,13125.0,3123750.0,13125.0,3123750.0,true,238,0.9320928518074866,53000.0,1239.904194285078,0.0,12818.422915935746,1311253.7749436544,13752.3025641476,1425887.0122233098,12818.422915935746,1311253.7749436544,-0.0,0.0,-0.0,0.0,933.8796482118541,114633.23727965564,238,53000.0,1239.904194285078,12818.422915935746,1031266.662527886,1050.0,249900.0,6496.223397307928,264505.1734363161,3672.7462706911465,517858.8613403019,0.0,0.0,2576.8086523740008,238659.7073946895,72.64459556266917,10242.920356578503,-12818.422915935746,-1411765.0259008403,true,true,25.16876034,2339.5323885600014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,239,0.9072326262298458,666.0,0.0,16911.91776919802,15861.917769198019,1050.0,16886.5244992743,25.393269923720748,1692698.9299925074,1441748.929992508,250950.0,2792227.020813092,-1099528.0908205835,0.95,0.25,22.0,239,0.0,0.1,0.0,0.0,1050.0,250950.0,13125.0,3136875.0,13125.0,3136875.0,true,239,0.9339760866843246,53000.0,1239.904194285078,0.0,14814.651885384117,1326068.4268290387,15861.917769198019,1441748.929992508,14814.651885384117,1326068.4268290387,-0.0,0.0,-0.0,0.0,1047.2658838139014,115680.50316346955,239,53000.0,1239.904194285078,14814.651885384117,1046081.3144132701,1050.0,250950.0,6583.302986029437,271088.4764223455,5533.625957948523,523392.48729825043,0.0,0.0,2588.2713239834775,241247.97871867297,109.45161742267926,10352.371974001182,-14814.651885384117,-1426579.6777862245,true,true,25.30287451,2364.8352630700015,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,240,0.9072253853729293,666.0,0.0,13020.508907229718,11970.508907229718,1050.0,13000.958593555199,19.550313674519096,1705719.438899737,1453719.4388997375,252000.0,2805227.9794066474,-1099508.540506909,0.95,0.25,22.0,240,0.0,0.1,0.0,0.0,1050.0,252000.0,13125.0,3150000.0,13125.0,3150000.0,true,240,0.9305081663142594,53000.0,1239.904194285078,0.0,11138.656293114833,1337207.0831221535,11970.508907229718,1453719.4388997375,11138.656293114833,1337207.0831221535,-0.0,0.0,-0.0,0.0,831.852614114885,116512.35577758444,240,53000.0,1239.904194285078,11138.656293114833,1057219.9707063849,1050.0,252000.0,6653.524295409529,277742.000717755,1851.0773974543647,525243.5646957048,0.0,0.0,2597.441461476186,243845.42018014914,36.61313877475199,10388.985112775934,-11138.656293114833,-1437718.3340793394,true,true,25.34757924,2390.1828423100014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,241,0.9072192276856942,666.0,0.0,11072.75318618908,10022.75318618908,1050.0,11056.127430654262,16.62575553481844,1716792.1920859262,1463742.1920859267,253050.0,2816284.1068373015,-1099491.9147513742,0.95,0.25,22.0,241,0.0,0.1,0.0,0.0,1050.0,253050.0,13125.0,3163125.0,13125.0,3163125.0,true,241,0.9249844954684212,53000.0,1239.904194285078,0.0,9270.891299131617,1346477.974421285,10022.75318618908,1463742.1920859267,9270.891299131617,1346477.974421285,-0.0,0.0,-0.0,0.0,751.8618870574628,117264.2176646419,241,53000.0,1239.904194285078,9270.891299131617,1066490.8620055164,1050.0,253050.0,6671.157303025845,284413.15802078083,0.0,525243.5646957048,0.0,0.0,2599.733996105772,246445.1541762549,0.0,10388.985112775934,-9270.891299131617,-1446989.225378471,true,true,25.34757924,2415.5304215500014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,242,0.9072153098940536,666.0,0.0,7044.972928034595,5994.972928034595,1050.0,7034.394890605113,10.578037429481373,1723837.1650139608,1469737.1650139613,254100.0,2823318.5017279065,-1099481.3367139448,0.95,0.25,22.0,242,0.0,0.1,0.0,0.0,1050.0,254100.0,13125.0,3176250.0,13125.0,3176250.0,true,242,0.9106000862850755,53000.0,1239.904194285078,0.0,5459.022865544994,1351936.99728683,5994.972928034595,1469737.1650139613,5459.022865544994,1351936.99728683,-0.0,0.0,-0.0,0.0,535.9500624896009,117800.1677271315,242,53000.0,1239.904194285078,5459.022865544994,1071949.8848710614,1050.0,254100.0,6635.922390501184,291049.080411282,-3698.886813371543,521544.6778823333,0.0,0.0,2595.1489273594175,249040.3031036143,-73.16163894406493,10315.82347383187,-5459.022865544994,-1452448.248244016,true,true,25.25816979,2440.7885913400014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,243,0.9072091982194186,666.0,0.0,10990.01332882247,9940.01332882247,1050.0,10973.511807307721,16.501521514748454,1734827.1783427834,1479677.1783427838,255150.0,2834292.013535214,-1099464.83519243,0.95,0.25,22.0,243,0.0,0.1,0.0,0.0,1050.0,255150.0,13125.0,3189375.0,13125.0,3189375.0,true,243,0.9246844363089262,53000.0,1239.904194285078,0.0,9191.375621865418,1361128.3729086956,9940.01332882247,1479677.1783427838,9191.375621865418,1361128.3729086956,-0.0,0.0,-0.0,0.0,748.6377069570517,118548.80543408854,243,53000.0,1239.904194285078,9191.375621865418,1081141.260492927,1050.0,255150.0,6600.8117632523545,297649.8921745344,0.0,521544.6778823333,0.0,0.0,2590.563858613063,251630.86696222736,0.0,10315.82347383187,-9191.375621865418,-1461639.6238658815,true,true,25.25816979,2466.0467611300014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,244,0.9072030865447835,666.0,0.0,10990.01332882247,9940.01332882247,1050.0,10973.511807307721,16.501521514748454,1745817.191671606,1489617.1916716064,256200.0,2845265.5253425217,-1099448.3336709153,0.95,0.25,22.0,244,0.0,0.1,0.0,0.0,1050.0,256200.0,13125.0,3202500.0,13125.0,3202500.0,true,244,0.9246844363089262,53000.0,1239.904194285078,0.0,9191.375621865418,1370319.748530561,9940.01332882247,1489617.1916716064,9191.375621865418,1370319.748530561,-0.0,0.0,-0.0,0.0,748.6377069570517,119297.4431410456,244,53000.0,1239.904194285078,9191.375621865418,1090332.6361147924,1050.0,256200.0,6600.8117632523545,304250.70393778675,0.0,521544.6778823333,0.0,0.0,2590.563858613063,254221.4308208404,0.0,10315.82347383187,-9191.375621865418,-1470830.999487747,true,true,25.25816979,2491.3049309200014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,245,0.9071969748701485,666.0,0.0,10990.01332882247,9940.01332882247,1050.0,10973.511807307721,16.501521514748454,1756807.2050004285,1499557.205000429,257250.0,2856239.0371498293,-1099431.8321494006,0.95,0.25,22.0,245,0.0,0.1,0.0,0.0,1050.0,257250.0,13125.0,3215625.0,13125.0,3215625.0,true,245,0.9246844363089262,53000.0,1239.904194285078,0.0,9191.375621865418,1379511.1241524266,9940.01332882247,1499557.205000429,9191.375621865418,1379511.1241524266,-0.0,0.0,-0.0,0.0,748.6377069570517,120046.08084800266,245,53000.0,1239.904194285078,9191.375621865418,1099524.011736658,1050.0,257250.0,6600.8117632523545,310851.5157010391,0.0,521544.6778823333,0.0,0.0,2590.563858613063,256811.99467945346,0.0,10315.82347383187,-9191.375621865418,-1480022.3751096125,true,true,25.25816979,2516.5631007100014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,246,0.9071908631955135,666.0,0.0,10990.01332882247,9940.01332882247,1050.0,10973.511807307721,16.501521514748454,1767797.218329251,1509497.2183292515,258300.0,2867212.548957137,-1099415.3306278859,0.95,0.25,22.0,246,0.0,0.1,0.0,0.0,1050.0,258300.0,13125.0,3228750.0,13125.0,3228750.0,true,246,0.9246844363089262,53000.0,1239.904194285078,0.0,9191.375621865418,1388702.499774292,9940.01332882247,1509497.2183292515,9191.375621865418,1388702.499774292,-0.0,0.0,-0.0,0.0,748.6377069570517,120794.71855495972,246,53000.0,1239.904194285078,9191.375621865418,1108715.3873585234,1050.0,258300.0,6600.8117632523545,317452.3274642915,0.0,521544.6778823333,0.0,0.0,2590.563858613063,259402.5585380665,0.0,10315.82347383187,-9191.375621865418,-1489213.750731478,true,true,25.25816979,2541.8212705000014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,247,0.9071847515208784,666.0,0.0,10990.01332882247,9940.01332882247,1050.0,10973.511807307721,16.501521514748454,1778787.2316580736,1519437.231658074,259350.0,2878186.0607644445,-1099398.8291063712,0.95,0.25,22.0,247,0.0,0.1,0.0,0.0,1050.0,259350.0,13125.0,3241875.0,13125.0,3241875.0,true,247,0.9246844363089262,53000.0,1239.904194285078,0.0,9191.375621865418,1397893.8753961576,9940.01332882247,1519437.231658074,9191.375621865418,1397893.8753961576,-0.0,0.0,-0.0,0.0,748.6377069570517,121543.35626191678,247,53000.0,1239.904194285078,9191.375621865418,1117906.762980389,1050.0,259350.0,6600.8117632523545,324053.13922754384,0.0,521544.6778823333,0.0,0.0,2590.563858613063,261993.12239667957,0.0,10315.82347383187,-9191.375621865418,-1498405.1263533435,true,true,25.25816979,2567.0794402900015,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,248,0.9071797487392461,666.0,0.0,8996.001931227562,7946.001931227563,1050.0,8982.494420820312,13.50751040724859,1787783.2335893011,1527383.2335893016,260400.0,2887168.555185265,-1099385.3215959638,0.95,0.25,22.0,248,0.0,0.1,0.0,0.0,1050.0,260400.0,13125.0,3255000.0,13125.0,3255000.0,true,248,0.9175115025322442,53000.0,1239.904194285078,0.0,7290.548171044716,1405184.4235672024,7946.001931227563,1527383.2335893016,7290.548171044716,1405184.4235672024,-0.0,0.0,-0.0,0.0,655.453760182847,122198.81002209963,248,53000.0,1239.904194285078,7290.548171044716,1125197.3111514337,1050.0,260400.0,6583.302986029437,330636.44221357326,-1844.5422610532542,519700.13562128006,0.0,0.0,2588.2713239834775,264581.39372066304,-36.48387791494482,10279.339595916925,-7290.548171044716,-1505695.6745243883,true,true,25.21346506,2592.2929053500015,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,249,0.9071770034994218,666.0,0.0,4936.490252198742,3886.490252198742,1050.0,4929.078104672918,7.412147525823937,1792719.7238414998,1531269.7238415002,261450.0,2892097.633289938,-1099377.9094484379,0.95,0.25,22.0,249,0.0,0.1,0.0,0.0,1050.0,261450.0,13125.0,3268125.0,13125.0,3268125.0,true,249,0.892732021699635,53000.0,1239.904194285078,0.0,3469.594300161307,1408654.0178673638,3886.490252198742,1531269.7238415002,3469.594300161307,1408654.0178673638,-0.0,0.0,-0.0,0.0,416.8959520374351,122615.70597413706,249,53000.0,1239.904194285078,3469.594300161307,1128666.905451595,1050.0,261450.0,6513.577500240865,337150.01971381414,-5514.020551669238,514186.1150696108,0.0,0.0,2579.1011864907696,267160.4949071538,-109.06383490109066,10170.275761015833,-3469.594300161307,-1509165.2688245496,true,true,25.07935089,2617.3722562400017,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,250,0.9071743107731511,666.0,0.0,4842.060379884266,3792.060379884266,1050.0,4834.7900189535085,7.270360930757156,1797561.784221384,1535061.7842213844,262500.0,2896932.4233088912,-1099370.639087507,0.95,0.25,22.0,250,0.0,0.1,0.0,0.0,1050.0,262500.0,13125.0,3281250.0,13125.0,3281250.0,true,250,0.8919072269612471,53000.0,1239.904194285078,0.0,3382.1660578921887,1412036.183925256,3792.060379884266,1535061.7842213844,3382.1660578921887,1412036.183925256,-0.0,0.0,-0.0,0.0,409.89432199207704,123025.60029612914,250,53000.0,1239.904194285078,3382.1660578921887,1132049.0715094872,1050.0,262500.0,6409.915098049504,343559.93481186364,-5484.612851201521,508701.5022184093,0.0,0.0,2565.345980251707,269725.84088740556,-108.48216920750129,10061.793591808331,-3382.1660578921887,-1512547.4348824418,true,true,24.94523671,2642.3174929500015,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,251,0.9071742991618071,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,1797582.6637401273,1534032.6637401278,263550.0,2896953.271477006,-1099370.6077368783,0.95,0.25,22.0,251,0.0,0.1,0.0,0.0,1050.0,263550.0,13125.0,3294375.0,13125.0,3294375.0,true,251,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1410796.2797309707,-1029.1204812566145,1534032.6637401278,-1239.904194285078,1410796.2797309707,-0.0,0.0,-0.0,0.0,210.78371302846335,123236.3840091576,251,53000.0,1239.904194285078,-4151.908534515927,1127897.1629749713,1050.0,263550.0,6239.598655579468,349799.53346744314,-12683.0648348912,496018.43738351815,0.0,0.0,2542.420636007119,272268.26152341266,-250.86299121131404,9810.930600597017,-1239.904194285078,-1513787.339076727,true,true,24.63230363,2666.9497965800015,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,252,0.907173984991675,666.0,0.0,564.9407315055176,-485.05926849448235,1050.0,564.0924721489027,0.8482593566148914,1798147.604471633,1533547.6044716334,264600.0,2897517.363949155,-1099369.7594775218,0.95,0.25,22.0,252,0.0,0.1,0.0,0.0,1050.0,264600.0,13125.0,3307500.0,13125.0,3307500.0,true,252,0.83,53000.0,1239.904194285078,0.0,-584.4087572222679,1410211.8709737484,-485.05926849448235,1533547.6044716334,-584.4087572222679,1410211.8709737484,-0.0,0.0,-0.0,0.0,99.34948872778557,123335.73349788539,252,53000.0,1239.904194285078,-584.4087572222679,1127312.754217749,1050.0,264600.0,6039.234595273113,355838.76806271623,-8961.30464466729,487057.13273885084,0.0,0.0,2514.910223528994,274783.17174694163,-177.24893135708405,9633.681669239933,-584.4087572222679,-1514371.7478339493,true,true,24.40878001,2691.3585765900016,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,253,0.9071726595936328,666.0,0.0,2383.3307595399083,1333.3307595399083,1050.0,2379.7521848258843,3.5785747140238864,1800530.935231173,1534880.9352311734,265650.0,2899897.116133981,-1099366.1809028077,0.95,0.25,22.0,253,0.0,0.1,0.0,0.0,1050.0,265650.0,13125.0,3320625.0,13125.0,3320625.0,true,253,0.851419312424953,53000.0,1239.904194285078,0.0,1135.223558522509,1411347.094532271,1333.3307595399083,1534880.9352311734,1135.223558522509,1411347.094532271,-0.0,0.0,-0.0,0.0,198.10720101739935,123533.84069890279,253,53000.0,1239.904194285078,1135.223558522509,1128447.9777762715,1050.0,265650.0,5891.80960055825,361730.5776632745,-7110.227655798654,479946.9050830522,0.0,0.0,2494.277414426809,277277.4491613684,-140.63580066389628,9493.045868576037,-1135.223558522509,-1515506.9713924718,true,true,24.22996111,2715.588537700002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,254,0.9071692030490615,666.0,0.0,6215.558448276286,5165.558448276286,1050.0,6206.225777933529,9.332670342757186,1806746.4936794492,1540046.4936794497,266700.0,2906103.3419119143,-1099356.848232465,0.95,0.25,22.0,254,0.0,0.1,0.0,0.0,1050.0,266700.0,13125.0,3333750.0,13125.0,3333750.0,true,254,0.9040561795866034,53000.0,1239.904194285078,0.0,4669.955036179963,1416017.0495684508,5165.558448276286,1540046.4936794497,4669.955036179963,1416017.0495684508,-0.0,0.0,-0.0,0.0,495.60341209632315,124029.44411099912,254,53000.0,1239.904194285078,4669.955036179963,1133117.9328124514,1050.0,266700.0,5794.87136667729,367525.44902995176,-3535.5084208891694,476411.396662163,0.0,0.0,2480.5222081877464,279757.97136955615,-69.93011779590391,9423.115750780133,-4669.955036179963,-1520176.9264286517,true,true,24.14055166,2739.7290893600016,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,255,0.9071668548846423,666.0,0.0,4222.469258468203,3172.4692584682034,1050.0,4216.12921453657,6.340043931633939,1810968.9629379173,1543218.9629379178,267750.0,2910319.4711264507,-1099350.5081885334,0.95,0.25,22.0,255,0.0,0.1,0.0,0.0,1050.0,267750.0,13125.0,3346875.0,13125.0,3346875.0,true,255,0.8828452733928845,53000.0,1239.904194285078,0.0,2800.7994898228826,1418817.8490582737,3172.4692584682034,1543218.9629379178,2800.7994898228826,1418817.8490582737,-0.0,0.0,-0.0,0.0,371.6697686453208,124401.11387964444,255,53000.0,1239.904194285078,2800.7994898228826,1135918.7323022743,1050.0,267750.0,5714.9064749866875,373240.35550493846,-5278.7560688237,471132.64059333934,0.0,0.0,2469.0595360654524,282227.0309056216,-104.41045240555745,9318.705298374574,-2800.7994898228826,-1522977.7259184746,true,true,24.00643748,2763.7355268400015,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,256,0.9071624228561526,666.0,0.0,7969.673630348452,6919.673630348452,1050.0,7957.707153426007,11.966476922445123,1818938.6365682657,1550138.6365682662,268800.0,2918277.1782798767,-1099338.541711611,0.95,0.25,22.0,256,0.0,0.1,0.0,0.0,1050.0,268800.0,13125.0,3360000.0,13125.0,3360000.0,true,256,0.9138627624880993,53000.0,1239.904194285078,0.0,6323.6320593462915,1425141.48111762,6919.673630348452,1550138.6365682662,6323.6320593462915,1425141.48111762,-0.0,0.0,-0.0,0.0,596.0415710021607,124997.1554506466,256,53000.0,1239.904194285078,6323.6320593462915,1142242.3643616205,1050.0,268800.0,5651.466837822034,378891.8223427605,-1753.0499589343233,469379.59063440503,0.0,0.0,2459.889398572744,284686.9203041943,-34.67421811416338,9284.03108026041,-6323.6320593462915,-1529301.3579778208,true,true,23.96173276,2787.6972596000014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,257,0.9071537778132369,666.0,0.0,15545.516170906323,14495.516170906323,1050.0,15522.174555034091,23.341615872231717,1834484.152739172,1564634.1527391726,269850.0,2933799.3528349106,-1099315.2000957387,0.95,0.25,22.0,257,0.0,0.1,0.0,0.0,1050.0,269850.0,13125.0,3373125.0,13125.0,3373125.0,true,257,0.9327554449392623,53000.0,1239.904194285078,0.0,13520.771635617999,1438662.252753238,14495.516170906323,1564634.1527391726,13520.771635617999,1438662.252753238,-0.0,0.0,-0.0,0.0,974.7445352883242,125971.89998593493,257,53000.0,1239.904194285078,13520.771635617999,1155763.1359972386,1050.0,269850.0,5683.127642856867,384574.94998561736,5268.952972082463,474648.5436064875,0.0,0.0,2464.474467319098,287151.3947715134,104.2165533595704,9388.247633619982,-13520.771635617999,-1542822.1296134389,true,true,24.09584693,2811.7931065300013,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,258,0.9071471891596713,666.0,0.0,11847.716841718933,10797.716841718933,1050.0,11829.927477091727,17.789364627205604,1846331.869580891,1575431.8695808914,270900.0,2945629.280312002,-1099297.4107311117,0.95,0.25,22.0,258,0.0,0.1,0.0,0.0,1050.0,270900.0,13125.0,3386250.0,13125.0,3386250.0,true,258,0.9278044125714879,53000.0,1239.904194285078,0.0,10018.169331444296,1448680.4220846822,10797.716841718933,1575431.8695808914,10018.169331444296,1448680.4220846822,-0.0,0.0,-0.0,0.0,779.5475102746368,126751.44749620957,258,53000.0,1239.904194285078,10018.169331444296,1165781.3053286828,1050.0,270900.0,5746.80355379678,390321.75353941415,1762.8530556755604,476411.3966621631,0.0,0.0,2473.6446048118064,289625.0393763252,34.86811716015044,9423.115750780133,-10018.169331444296,-1552840.298944883,true,true,24.14055166,2835.933658190001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,259,0.9071405775502157,666.0,0.0,11888.996122938403,10838.996122938403,1050.0,11871.144777408465,17.851345529937543,1858220.8657038293,1586270.8657038298,271950.0,2957500.4250894105,-1099279.5593855816,0.95,0.25,22.0,259,0.0,0.1,0.0,0.0,1050.0,271950.0,13125.0,3399375.0,13125.0,3399375.0,true,259,0.9279551009095058,53000.0,1239.904194285078,0.0,10058.101741019047,1458738.523825701,10838.996122938403,1586270.8657038298,10058.101741019047,1458738.523825701,-0.0,0.0,-0.0,0.0,780.8943819193555,127532.34187812892,259,53000.0,1239.904194285078,10058.101741019047,1175839.4070697017,1050.0,271950.0,5778.819098872439,396100.57263828657,1766.1202288124982,478177.5168909756,0.0,0.0,2478.229673558161,292103.26904988335,34.93273977594927,9458.048490556082,-10058.101741019047,-1562898.400685902,true,true,24.18525638,2860.118914570001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,260,0.9071349980798407,666.0,0.0,10033.003628482806,8983.003628482806,1050.0,10017.939058470069,15.064570012736946,1868253.8693323121,1595253.8693323126,273000.0,2967518.3641478806,-1099264.494815569,0.95,0.25,22.0,260,0.0,0.1,0.0,0.0,1050.0,273000.0,13125.0,3412500.0,13125.0,3412500.0,true,260,0.921227900267012,53000.0,1239.904194285078,0.0,8275.393570758164,1467013.9173964593,8983.003628482806,1595253.8693323126,8275.393570758164,1467013.9173964593,-0.0,0.0,-0.0,0.0,707.6100577246416,128239.95193585356,260,53000.0,1239.904194285078,8275.393570758164,1184114.8006404599,1050.0,273000.0,5794.871363083234,401895.4440013698,0.0,478177.5168909756,0.0,0.0,2480.522207674929,294583.7912575583,0.0,9458.048490556082,-8275.393570758164,-1571173.7942566602,true,true,24.18525638,2884.3041709500008,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,261,0.9071326342392223,666.0,0.0,4250.658199832027,3200.658199832027,1050.0,4244.27583016261,6.382369669417458,1872504.5275321442,1598454.5275321447,274050.0,2971762.6399780433,-1099258.1124458995,0.95,0.25,22.0,261,0.0,0.1,0.0,0.0,1050.0,274050.0,13125.0,3425625.0,13125.0,3425625.0,true,261,0.8833450083842599,53000.0,1239.904194285078,0.0,2827.285444365772,1469841.202840825,3200.658199832027,1598454.5275321447,2827.285444365772,1469841.202840825,-0.0,0.0,-0.0,0.0,373.37275546625506,128613.32469131982,261,53000.0,1239.904194285078,2827.285444365772,1186942.0860848257,1050.0,274050.0,5746.803553796779,407642.2475551666,-5288.558378361656,472888.95851261396,0.0,0.0,2473.6446048118064,297057.43586237007,-104.60433588115752,9353.444154674926,-2827.285444365772,-1574001.079701026,true,true,24.05114221,2908.3553131600006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,262,0.9071314278778279,666.0,0.0,2169.279059404509,1119.279059404509,1050.0,2166.0218836396375,3.257175764871635,1874673.8065915487,1599573.8065915492,275100.0,2973928.661861683,-1099254.8552701348,0.95,0.25,22.0,262,0.0,0.1,0.0,0.0,1050.0,275100.0,13125.0,3438750.0,13125.0,3438750.0,true,262,0.8479064901655755,53000.0,1239.904194285078,0.0,949.043978775504,1470790.2468196007,1119.279059404509,1599573.8065915492,949.043978775504,1470790.2468196007,-0.0,0.0,-0.0,0.0,170.2350806290051,128783.55977194883,262,53000.0,1239.904194285078,949.043978775504,1187891.1300636013,1050.0,275100.0,5635.6806250808695,413277.9281802475,-7005.665875390064,465883.2926372239,0.0,0.0,2457.5968639431585,299515.0327263132,-138.56763485846008,9214.876519816466,-949.043978775504,-1574950.1236798016,true,true,23.8723233,2932.2276364600007,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,263,0.9071302795795344,666.0,0.0,2064.869991293905,1014.8699912939051,1050.0,2061.7695859015716,3.1004053923331907,1876738.6765828426,1600588.676582843,276150.0,2975990.431447584,-1099251.7548647425,0.95,0.25,22.0,263,0.0,0.1,0.0,0.0,1050.0,276150.0,13125.0,3451875.0,13125.0,3451875.0,true,263,0.846203519980288,53000.0,1239.904194285078,0.0,858.7865589552666,1471649.033378556,1014.8699912939051,1600588.676582843,858.7865589552666,1471649.033378556,-0.0,0.0,-0.0,0.0,156.08343233863843,128939.64320428747,263,53000.0,1239.904194285078,858.7865589552666,1188749.9166225565,1050.0,276150.0,5510.447907621871,418788.37608786934,-6953.38439679381,458929.9082404301,0.0,0.0,2439.256588444925,301954.28931475815,-137.5335403177199,9077.342979498746,-858.7865589552666,-1575808.9102387568,true,true,23.6935044,2955.921140860001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,264,0.9071291883691298,666.0,0.0,1962.214549570307,912.2145495703072,1050.0,1959.268281477859,2.9462680924479088,1878700.891132413,1601500.8911324134,277200.0,2977949.699729062,-1099248.8085966501,0.95,0.25,22.0,264,0.0,0.1,0.0,0.0,1050.0,277200.0,13125.0,3465000.0,13125.0,3465000.0,true,264,0.8445358085316162,53000.0,1239.904194285078,0.0,770.3978521756635,1472419.4312307315,912.2145495703072,1601500.8911324134,770.3978521756635,1472419.4312307315,-0.0,0.0,-0.0,0.0,141.8166973946437,129081.45990168212,264,53000.0,1239.904194285078,770.3978521756635,1189520.3144747321,1050.0,277200.0,5387.0843037042905,424175.4603915736,-6901.103311433203,452028.8049289969,0.0,0.0,2420.916313459508,304375.20562821766,-136.49945355493134,8940.843525943814,-770.3978521756635,-1576579.3080909324,true,true,23.5146855,2979.4358263600006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,265,0.9071290989016346,666.0,0.0,160.88044993824508,-889.1195500617549,1050.0,160.63888770110057,0.24156223714451214,1878861.7715823513,1600611.7715823518,278250.0,2978110.3386167632,-1099248.567034413,0.95,0.25,22.0,265,0.0,0.1,0.0,0.0,1050.0,278250.0,13125.0,3478125.0,13125.0,3478125.0,true,265,0.83,53000.0,1239.904194285078,0.0,-1071.2283735683795,1471348.2028571633,-889.1195500617549,1600611.7715823518,-1071.2283735683795,1471348.2028571633,-0.0,0.0,-0.0,0.0,182.10882350662462,129263.56872518874,265,53000.0,1239.904194285078,-1071.2283735683795,1188449.0861011639,1050.0,278250.0,5250.516923339749,429425.97731491335,-8552.858672598048,443475.94625639886,0.0,0.0,2400.283504357323,306775.489132575,-169.17012866740424,8771.673397276409,-1071.2283735683795,-1577650.5364645007,true,true,23.29116188,3002.7269882400005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,266,0.9071208548129799,666.0,0.0,14824.52021897858,13774.52021897858,1050.0,14802.261179610743,22.259039367835705,1893686.29180133,1614386.2918013304,279300.0,2992912.599796374,-1099226.3079950453,0.95,0.25,22.0,266,0.0,0.1,0.0,0.0,1050.0,279300.0,13125.0,3491250.0,13125.0,3491250.0,true,266,0.9321126457406799,53000.0,1239.904194285078,0.0,12839.404485120613,1484187.607342284,13774.52021897858,1614386.2918013304,12839.404485120613,1484187.607342284,-0.0,0.0,-0.0,0.0,935.1157338579669,130198.68445904671,266,53000.0,1239.904194285078,12839.404485120613,1201288.4905862845,1050.0,279300.0,5220.485441191916,434646.4627561053,5121.912423891744,448597.85868029064,0.0,0.0,2395.6984356109688,309171.18756818597,101.30818442598279,8872.981581702392,-12839.404485120613,-1590489.9409496214,true,true,23.42527605,3026.1522642900004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,267,0.9071198473971177,666.0,0.0,1811.5352032918413,761.5352032918412,1050.0,1808.8151804640759,2.7200228277655274,1895497.8270046217,1615147.8270046222,280350.0,2994721.414976838,-1099223.5879722175,0.95,0.25,22.0,267,0.0,0.1,0.0,0.0,1050.0,280350.0,13125.0,3504375.0,13125.0,3504375.0,true,267,0.8420997854969899,53000.0,1239.904194285078,0.0,641.288631340466,1484828.8959736244,761.5352032918412,1615147.8270046222,641.288631340466,1484828.8959736244,-0.0,0.0,-0.0,0.0,120.24657195137513,130318.93103099808,267,53000.0,1239.904194285078,641.288631340466,1201929.779217625,1050.0,280350.0,5205.5127371624085,439851.9754932677,-6822.681683392571,441775.1769968981,0.0,0.0,2393.4059009813836,311564.59346916736,-134.9483234107544,8738.033258291638,-641.288631340466,-1591131.2295809619,true,true,23.24645715,3049.3987214400004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,268,0.9071157371130827,666.0,0.0,7391.112751795825,6341.112751795825,1050.0,7380.014984901237,11.097766894588325,1902888.9397564176,1621488.939756418,281400.0,3002101.429961739,-1099212.4902053229,0.95,0.25,22.0,268,0.0,0.1,0.0,0.0,1050.0,281400.0,13125.0,3517500.0,13125.0,3517500.0,true,268,0.9118186601246869,53000.0,1239.904194285078,0.0,5781.944933042036,1490610.8409066664,6341.112751795825,1621488.939756418,5781.944933042036,1490610.8409066664,-0.0,0.0,-0.0,0.0,559.1678187537891,130878.09884975187,268,53000.0,1239.904194285078,5781.944933042036,1207711.724150667,1050.0,281400.0,5131.0785163007695,444983.05400956847,-1697.501311586272,440077.6756853118,0.0,0.0,2381.943229371906,313946.5366985393,-33.57550104436704,8704.457757247272,-5781.944933042036,-1596913.1745140038,true,true,23.20175243,3072.6004738700003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,269,0.9071126696180967,666.0,0.0,5515.969483821835,4465.969483821835,1050.0,5507.6872473596395,8.282236462194946,1908404.9092402395,1625954.90924024,282450.0,3007609.117209099,-1099204.2079688606,0.95,0.25,22.0,269,0.0,0.1,0.0,0.0,1050.0,282450.0,13125.0,3530625.0,13125.0,3530625.0,true,269,0.8978270589334559,53000.0,1239.904194285078,0.0,4009.6682469463226,1494620.5091536127,4465.969483821835,1625954.90924024,4009.6682469463226,1494620.5091536127,-0.0,0.0,-0.0,0.0,456.30123687551213,131334.40008662737,269,53000.0,1239.904194285078,4009.6682469463226,1211721.3923976133,1050.0,282450.0,5086.760424396925,450069.81443396537,-3385.2006776337666,436692.47500767803,0.0,0.0,2375.0656259959665,316321.60232453526,-66.9571258128027,8637.500631434468,-4009.6682469463226,-1600922.84276095,true,true,23.11234297,3095.7128168400004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,270,0.9071096344966003,666.0,0.0,5457.755474773806,4407.755474773806,1050.0,5449.560646733605,8.19482804020091,1913862.6647150132,1630362.6647150137,283500.0,3013058.6778558325,-1099196.0131408204,0.95,0.25,22.0,270,0.0,0.1,0.0,0.0,1050.0,283500.0,13125.0,3543750.0,13125.0,3543750.0,true,270,0.8973125894207822,53000.0,1239.904194285078,0.0,3955.134478602913,1498575.6436322157,4407.755474773806,1630362.6647150137,3955.134478602913,1498575.6436322157,-0.0,0.0,-0.0,0.0,452.6209961708928,131787.02108279825,270,53000.0,1239.904194285078,3955.134478602913,1215676.5268762163,1050.0,283500.0,5028.06761417636,455097.88204814174,-3372.130026945051,433320.344980733,0.0,0.0,2365.895487990441,318687.4978125257,-66.69859661883608,8570.802034815631,-3955.134478602913,-1604877.9772395531,true,true,23.02293352,3118.7357503600006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,271,0.9071035787370109,666.0,0.0,10889.466893807261,9839.466893807261,1050.0,10873.116342915659,16.350550891602495,1924752.1316088205,1640202.131608821,284550.0,3023931.794198748,-1099179.6625899288,0.95,0.25,22.0,271,0.0,0.1,0.0,0.0,1050.0,284550.0,13125.0,3556875.0,13125.0,3556875.0,true,271,0.92432006285958,53000.0,1239.904194285078,0.0,9094.816657788684,1507670.4602900043,9839.466893807261,1640202.131608821,9094.816657788684,1507670.4602900043,-0.0,0.0,-0.0,0.0,744.6502360185768,132531.67131881684,271,53000.0,1239.904194285078,9094.816657788684,1224771.3435340049,1050.0,284550.0,5013.465298953945,460111.34734709567,1684.4314181330324,435004.77639886603,0.0,0.0,2363.6029538736725,321051.1007663994,33.31698682803405,8604.119021643666,-9094.816657788684,-1613972.7938973417,true,true,23.06763825,3141.8033886100006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,272,0.9070964947014551,666.0,0.0,12738.512736264103,11688.512736264103,1050.0,12719.385840263707,19.126896000396552,1937490.6443450847,1651890.6443450851,285600.0,3036651.180039012,-1099160.5356939284,0.95,0.25,22.0,272,0.0,0.1,0.0,0.0,1050.0,285600.0,13125.0,3570000.0,13125.0,3570000.0,true,272,0.9302578592794316,53000.0,1239.904194285078,0.0,10873.330836197416,1518543.7911262016,11688.512736264103,1651890.6443450851,10873.330836197416,1518543.7911262016,-0.0,0.0,-0.0,0.0,815.1819000666874,133346.8532188835,272,53000.0,1239.904194285078,10873.330836197416,1235644.6743702022,1050.0,285600.0,5057.357258123189,465168.70460521884,3378.665163345976,438383.441562212,0.0,0.0,2370.4805572496125,323421.58132364904,66.82785747863731,8670.946879122304,-10873.330836197416,-1624846.124733539,true,true,23.1570477,3164.9604363100007,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,273,0.9070883290311534,666.0,0.0,14683.508336612313,13633.508336612313,1050.0,14661.461026797579,22.047309814733204,1952174.152681697,1665524.1526816974,286650.0,3051312.6410658094,-1099138.4883841136,0.95,0.25,22.0,273,0.0,0.1,0.0,0.0,1050.0,286650.0,13125.0,3583125.0,13125.0,3583125.0,true,273,0.9319870310924657,53000.0,1239.904194285078,0.0,12706.25295801369,1531250.0440842153,13633.508336612313,1665524.1526816974,12706.25295801369,1531250.0440842153,-0.0,0.0,-0.0,0.0,927.255378598622,134274.10859748212,273,53000.0,1239.904194285078,12706.25295801369,1248350.927328216,1050.0,286650.0,5131.0785163007695,470299.7831215196,5092.504694186909,443475.9462563989,0.0,0.0,2381.943229371906,325803.52455302095,100.72651815410607,8771.67339727641,-12706.25295801369,-1637552.3776915527,true,true,23.29116188,3188.2515981900005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,274,0.9070790474367422,666.0,0.0,16690.163070297145,15640.163070297145,1050.0,16665.10276538679,25.060304910356074,1968864.315751994,1681164.3157519945,287700.0,3067977.7438311963,-1099113.4280792032,0.95,0.25,22.0,274,0.0,0.1,0.0,0.0,1050.0,287700.0,13125.0,3596250.0,13125.0,3596250.0,true,274,0.9337777703774738,53000.0,1239.904194285078,0.0,14604.436600122173,1545854.4806843374,15640.163070297145,1681164.3157519945,14604.436600122173,1545854.4806843374,-0.0,0.0,-0.0,0.0,1035.7264701749718,135309.83506765708,274,53000.0,1239.904194285078,14604.436600122173,1262955.363928338,1050.0,287700.0,5235.486828556739,475535.26995007636,6835.751956194514,450311.69821259344,0.0,0.0,2397.990970240555,328201.5155232615,135.20684513036576,8906.880242406776,-14604.436600122173,-1652156.8142916749,true,true,23.46998078,3211.7215789700003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,275,0.9070686094948885,666.0,0.0,18769.507041092544,17719.507041092544,1050.0,18741.3245980879,28.18244300464346,1987633.8227930865,1698883.822793087,288750.0,3086719.0684292843,-1099085.2456361987,0.95,0.25,22.0,275,0.0,0.1,0.0,0.0,1050.0,288750.0,13125.0,3609375.0,13125.0,3609375.0,true,275,0.935640652001004,53000.0,1239.904194285078,0.0,16579.091121064208,1562433.5718054017,17719.507041092544,1698883.822793087,16579.091121064208,1562433.5718054017,-0.0,0.0,-0.0,0.0,1140.4159200283357,136450.25098768543,275,53000.0,1239.904194285078,16579.091121064208,1279534.4550494023,1050.0,288750.0,5371.79457679276,480907.0645268691,8618.210027836738,458929.9082404302,0.0,0.0,2418.6237793427395,330620.13930260425,170.4627370919698,9077.342979498746,-16579.091121064208,-1668735.9054127391,true,true,23.6935044,3235.4150833700005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,276,0.9070580193869002,666.0,0.0,19043.132184665,17993.132184665,1050.0,19014.538893096433,28.593291568566066,2006676.9549777515,1716876.954977752,289800.0,3105733.607322381,-1099056.65234463,0.95,0.25,22.0,276,0.0,0.1,0.0,0.0,1050.0,289800.0,13125.0,3622500.0,13125.0,3622500.0,true,276,0.9358863459744734,53000.0,1239.904194285078,0.0,16839.52673294182,1579273.0985383436,17993.132184665,1716876.954977752,16839.52673294182,1579273.0985383436,-0.0,0.0,-0.0,0.0,1153.6054517231787,137603.8564394086,276,53000.0,1239.904194285078,16839.52673294182,1296373.9817823442,1050.0,289800.0,5525.999493444699,486433.0640203138,8699.899611101482,467629.80785153166,0.0,0.0,2441.5491230745106,333061.68842567876,172.07850532112835,9249.421484819874,-16839.52673294182,-1685575.432145681,true,true,23.91702803,3259.3321114000005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,277,0.9070472754862557,666.0,0.0,19319.68213899897,18269.68213899897,1050.0,19290.673607258734,29.008531740238695,2025996.6371167505,1735146.637116751,290850.0,3125024.2809296395,-1099027.64381289,0.95,0.25,22.0,277,0.0,0.1,0.0,0.0,1050.0,290850.0,13125.0,3635625.0,13125.0,3635625.0,true,277,0.9361347973460074,53000.0,1239.904194285078,0.0,17102.885186767773,1596375.9837251112,18269.68213899897,1735146.637116751,17102.885186767773,1596375.9837251112,-0.0,0.0,-0.0,0.0,1166.7969522311978,138770.65339163982,277,53000.0,1239.904194285078,17102.885186767773,1313476.8669691118,1050.0,290850.0,5683.127642856867,492116.19166317064,8781.588810631547,476411.3966621632,0.0,0.0,2464.474467319098,335526.16289299785,173.6942659602599,9423.115750780133,-17102.885186767773,-1702678.3173324487,true,true,24.14055166,3283.4726630600003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,278,0.9070320586868638,666.0,0.0,27362.848666674367,26312.848666674367,1050.0,27321.763308315996,41.085358358369916,2053359.485783425,1761459.4857834254,291900.0,3152346.0442379555,-1098986.5584545315,0.95,0.25,22.0,278,0.0,0.1,0.0,0.0,1050.0,291900.0,13125.0,3648750.0,13125.0,3648750.0,true,278,0.94,53000.0,1239.904194285078,0.0,24734.077746673902,1621110.0614717852,26312.848666674367,1761459.4857834254,24734.077746673902,1621110.0614717852,-0.0,0.0,-0.0,0.0,1578.7709200004647,140349.4243116403,278,53000.0,1239.904194285078,24734.077746673902,1338210.9447157858,1050.0,291900.0,5908.070333536582,498024.26199670724,16012.716080166436,492424.11274232966,0.0,0.0,2496.5699485435775,338022.7328415414,316.7213844273047,9739.837135207437,-24734.077746673902,-1727412.3950791226,true,true,24.54289418,3308.0155572400004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,279,0.9070208753989865,666.0,0.0,20109.78826092709,19059.78826092709,1050.0,20079.59338365843,30.194877268659294,2073469.2740443521,1780519.2740443526,292950.0,3172425.6376216137,-1098956.3635772627,0.95,0.25,22.0,279,0.0,0.1,0.0,0.0,1050.0,292950.0,13125.0,3661875.0,13125.0,3661875.0,true,279,0.9368453528860775,53000.0,1239.904194285078,0.0,17856.074059242157,1638966.1355310273,19059.78826092709,1780519.2740443526,17856.074059242157,1638966.1355310273,-0.0,0.0,-0.0,0.0,1203.714201684932,141553.13851332522,279,53000.0,1239.904194285078,17856.074059242157,1356067.018775028,1050.0,292950.0,6138.871669625497,504163.13366633275,9010.31856419996,501434.4313065296,0.0,0.0,2528.6654297680566,340551.39827130944,178.21839564864487,9918.055530856082,-17856.074059242157,-1745268.4691383648,true,true,24.76641781,3332.7819750500003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,280,0.9070128312729309,666.0,0.0,14464.947473259826,13414.947473259826,1050.0,14443.228332909586,21.71914035023998,2087934.221517612,1793934.2215176125,294000.0,3186868.8659545234,-1098934.6444369124,0.95,0.25,22.0,280,0.0,0.1,0.0,0.0,1050.0,294000.0,13125.0,3675000.0,13125.0,3675000.0,true,280,0.9317924020084204,53000.0,1239.904194285078,0.0,12499.946128925563,1651466.0816599529,13414.947473259826,1793934.2215176125,12499.946128925563,1651466.0816599529,-0.0,0.0,-0.0,0.0,915.0013443342632,142468.1398576595,280,53000.0,1239.904194285078,12499.946128925563,1368566.9649039535,1050.0,294000.0,6256.492868388083,510419.6265347208,3627.000320269999,505061.43162679963,0.0,0.0,2544.713170636705,343096.1114419461,71.73976963077651,9989.795300486858,-12499.946128925563,-1757768.4152672903,true,true,24.85582726,3357.63780231,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,281,0.907002524657024,666.0,0.0,18533.35672362185,17483.35672362185,1050.0,18505.52886067347,27.82786294838116,2106467.5782412337,1811417.5782412344,295050.0,3205374.3948151967,-1098906.816573964,0.95,0.25,22.0,281,0.0,0.1,0.0,0.0,1050.0,295050.0,13125.0,3688125.0,13125.0,3688125.0,true,281,0.9354287111764296,53000.0,1239.904194285078,0.0,16354.433847015353,1667820.5155069681,17483.35672362185,1811417.5782412344,16354.433847015353,1667820.5155069681,-0.0,0.0,-0.0,0.0,1128.922876606499,143597.062734266,281,53000.0,1239.904194285078,16354.433847015353,1384921.3987509687,1050.0,295050.0,6358.498911245818,516778.12544596667,7293.211454560128,512354.64308135974,0.0,0.0,2558.4683768757673,345654.57981882186,144.25510433364,10134.050404820498,-16354.433847015353,-1774122.8491143056,true,true,25.03464616,3382.6724484700003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,282,0.9069965268880751,666.0,0.0,10785.188124060034,9735.188124060034,1050.0,10768.994147897782,16.193976162252305,2117252.766365294,1821152.7663652943,296100.0,3216143.3889630944,-1098890.6225978017,0.95,0.25,22.0,282,0.0,0.1,0.0,0.0,1050.0,296100.0,13125.0,3701250.0,13125.0,3701250.0,true,282,0.9239424669101057,53000.0,1239.904194285078,0.0,8994.753731177992,1676815.269238146,9735.188124060034,1821152.7663652943,8994.753731177992,1676815.269238146,-0.0,0.0,-0.0,0.0,740.4343928820417,144337.49712714803,282,53000.0,1239.904194285078,8994.753731177992,1393916.1524821466,1050.0,296100.0,6427.115216809517,523205.24066277617,0.0,512354.64308135974,0.0,0.0,2567.6385143684756,348222.21833319037,0.0,10134.050404820498,-8994.753731177992,-1783117.6028454835,true,true,25.03464616,3407.7070946300005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,283,0.906992744303254,666.0,0.0,6801.844025151992,5751.844025151992,1050.0,6791.631046135248,10.212979016744733,2124054.6103904457,1826904.6103904464,297150.0,3222935.02000923,-1098880.409618785,0.95,0.25,22.0,283,0.0,0.1,0.0,0.0,1050.0,297150.0,13125.0,3714375.0,13125.0,3714375.0,true,283,0.9093434099962078,53000.0,1239.904194285078,0.0,5230.401459598026,1682045.670697744,5751.844025151992,1826904.6103904464,5230.401459598026,1682045.670697744,-0.0,0.0,-0.0,0.0,521.4425655539662,144858.939692702,283,53000.0,1239.904194285078,5230.401459598026,1399146.5539417446,1050.0,297150.0,6392.745689938281,529597.9863527145,-3653.1408629502093,508701.50221840956,0.0,0.0,2563.053445622121,350785.2717788125,-72.25681301216783,10061.793591808331,-5230.401459598026,-1788348.0043050814,true,true,24.94523671,3432.6523313400003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,284,0.90699273269191,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2124075.4899091893,1825875.4899091898,298200.0,3222955.8681773446,-1098880.3782681562,0.95,0.25,22.0,284,0.0,0.1,0.0,0.0,1050.0,298200.0,13125.0,3727500.0,13125.0,3727500.0,true,284,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1680805.7665034588,-1029.1204812566145,1825875.4899091898,-1239.904194285078,1680805.7665034588,-0.0,0.0,-0.0,0.0,210.78371302846335,145069.72340573047,284,53000.0,1239.904194285078,-2295.0142306773587,1396851.5397110672,1050.0,298200.0,6256.49286838808,535854.4792211025,-10881.000960809812,497820.50125759974,0.0,0.0,2544.7131706367045,353329.9849494492,-215.2193088923325,9846.574282915999,-1239.904194285078,-1789587.9084993666,true,true,24.67700836,3457.3293397,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,285,0.9069927210805661,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2124096.369427933,1824846.3694279331,299250.0,3222976.716345459,-1098880.3469175275,0.95,0.25,22.0,285,0.0,0.1,0.0,0.0,1050.0,299250.0,13125.0,3740625.0,13125.0,3740625.0,true,285,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1679565.8623091737,-1029.1204812566145,1824846.3694279331,-1239.904194285078,1679565.8623091737,-0.0,0.0,-0.0,0.0,210.78371302846335,145280.50711875895,285,53000.0,1239.904194285078,-4239.830678240724,1392611.7090328266,1050.0,299250.0,6039.234595273113,541893.7138163757,-12545.8269836272,485274.6742739725,0.0,0.0,2514.910223528994,355844.89517297817,-248.1485134156316,9598.425769500367,-1239.904194285078,-1790827.8126936518,true,true,24.36407528,3481.6934149800004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,286,0.9069927094692221,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2124117.2489466765,1823817.2489466765,300300.0,3222997.564513574,-1098880.3155668988,0.95,0.25,22.0,286,0.0,0.1,0.0,0.0,1050.0,300300.0,13125.0,3753750.0,13125.0,3753750.0,true,286,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1678325.9581148885,-1029.1204812566145,1823817.2489466765,-1239.904194285078,1678325.9581148885,-0.0,0.0,-0.0,0.0,210.78371302846335,145491.29083178742,286,53000.0,1239.904194285078,-7952.429556376682,1384659.2794764498,1050.0,300300.0,5778.819098872439,547672.5329152482,-15895.083639567327,469379.5906344052,0.0,0.0,2478.229673558161,358323.1248465363,-314.394689239955,9284.031080260413,-1239.904194285078,-1792067.716887937,true,true,23.96173276,3505.6551477400003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,287,0.9069926978578781,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2124138.12846542,1822788.1284654199,301350.0,3223018.4126816886,-1098880.28421627,0.95,0.25,22.0,287,0.0,0.1,0.0,0.0,1050.0,301350.0,13125.0,3766875.0,13125.0,3766875.0,true,287,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1677086.0539206034,-1029.1204812566145,1822788.1284654199,-1239.904194285078,1677086.0539206034,-0.0,0.0,-0.0,0.0,210.78371302846335,145702.0745448159,287,53000.0,1239.904194285078,-11548.695993739402,1373110.5834827104,1050.0,301350.0,5463.968279831359,553136.5011950795,-19067.892421811743,450311.69821259344,0.0,0.0,2432.3789860946194,360755.50383263093,-377.1508378536372,8906.880242406776,-1239.904194285078,-1793307.621082222,true,true,23.46998078,3529.12512852,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,288,0.9069926862465341,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2124159.0079841637,1821759.0079841632,302400.0,3223039.260849803,-1098880.2528656414,0.95,0.25,22.0,288,0.0,0.1,0.0,0.0,1050.0,302400.0,13125.0,3780000.0,13125.0,3780000.0,true,288,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1675846.1497263182,-1029.1204812566145,1821759.0079841632,-1239.904194285078,1675846.1497263182,-0.0,0.0,-0.0,0.0,210.78371302846335,145912.85825784437,288,53000.0,1239.904194285078,-9797.287463887926,1363313.2960188226,1050.0,302400.0,5145.9082120749745,558282.4094071545,-16991.35323186043,433320.344980733,0.0,0.0,2384.235763488675,363139.7395961196,-336.0782075911432,8570.802034815633,-1239.904194285078,-1794547.5252765073,true,true,23.02293352,3552.1480620400002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,289,0.9069876425249149,666.0,0.0,9069.620215557545,8019.620215557544,1050.0,9056.002167185838,13.618048371708024,2133228.628199721,1829778.6281997208,303450.0,3232095.263016989,-1098866.6348172696,0.95,0.25,22.0,289,0.0,0.1,0.0,0.0,1050.0,303450.0,13125.0,3793125.0,13125.0,3793125.0,true,289,0.9177743460330832,53000.0,1239.904194285078,0.0,7360.201698767019,1683206.3514250852,8019.620215557544,1829778.6281997208,7360.201698767019,1683206.3514250852,-0.0,0.0,-0.0,0.0,659.4185167905252,146572.2767746349,289,53000.0,1239.904194285078,7360.201698767019,1370673.4977175896,1050.0,303450.0,4998.891279522932,563281.3006866775,0.0,433320.344980733,0.0,0.0,2361.310419244087,365501.0500153637,0.0,8570.802034815633,-7360.201698767019,-1801907.7269752743,true,true,23.02293352,3575.1709955600004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,290,0.9069825988032958,666.0,0.0,9069.620215557545,8019.620215557544,1050.0,9056.002167185838,13.618048371708024,2142298.2484152787,1837798.2484152783,304500.0,3241151.2651841748,-1098853.016768898,0.95,0.25,22.0,290,0.0,0.1,0.0,0.0,1050.0,304500.0,13125.0,3806250.0,13125.0,3806250.0,true,290,0.9177743460330832,53000.0,1239.904194285078,0.0,7360.201698767019,1690566.5531238522,8019.620215557544,1837798.2484152783,7360.201698767019,1690566.5531238522,-0.0,0.0,-0.0,0.0,659.4185167905252,147231.69529142542,290,53000.0,1239.904194285078,7360.201698767019,1378033.6994163566,1050.0,304500.0,4998.891279522932,568280.1919662004,0.0,433320.344980733,0.0,0.0,2361.310419244087,367862.36043460784,0.0,8570.802034815633,-7360.201698767019,-1809267.9286740413,true,true,23.02293352,3598.1939290800005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,291,0.9069817129227787,666.0,0.0,1592.9903458184235,542.9903458184234,1050.0,1590.5984684222997,2.391877396123759,2143891.238761097,1838341.2387610967,305550.0,3242741.863652597,-1098850.6248915019,0.95,0.25,22.0,291,0.0,0.1,0.0,0.0,1050.0,305550.0,13125.0,3819375.0,13125.0,3819375.0,true,291,0.8385914540306505,53000.0,1239.904194285078,0.0,455.3470636244774,1691021.9001874768,542.9903458184234,1838341.2387610967,455.3470636244774,1691021.9001874768,-0.0,0.0,-0.0,0.0,87.64328219394599,147319.33857361937,291,53000.0,1239.904194285078,455.3470636244774,1378489.0464799812,1050.0,305550.0,4940.877649908368,573221.0696161088,-6705.049239869693,426615.2957408633,0.0,0.0,2352.1402817513786,370214.50071635924,-132.62162816557628,8438.180406650057,-455.3470636244774,-1809723.2757376658,true,true,22.84411462,3621.0380437000003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,292,0.9069817013114347,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2143912.118279841,1837312.11827984,306600.0,3242762.711820712,-1098850.5935408731,0.95,0.25,22.0,292,0.0,0.1,0.0,0.0,1050.0,306600.0,13125.0,3832500.0,13125.0,3832500.0,true,292,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1689781.9959931916,-1029.1204812566145,1837312.11827984,-1239.904194285078,1689781.9959931916,-0.0,0.0,-0.0,0.0,210.78371302846335,147530.12228664785,292,53000.0,1239.904194285078,-9799.511684951362,1368689.5347950298,1050.0,306600.0,4741.366806570892,577962.4364226797,-16533.893351222392,410081.4023896409,0.0,0.0,2320.0448005268995,372534.54551688617,-327.0299408267607,8111.150465823296,-1239.904194285078,-1810963.179931951,true,true,22.39706737,3643.4351110700004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,293,0.906977927350549,666.0,0.0,6786.33646473635,5736.33646473635,1050.0,6776.146770344853,10.18969439149602,2150698.454744577,1843048.4547445765,307650.0,3249538.858591057,-1098840.4038464816,0.95,0.25,22.0,293,0.0,0.1,0.0,0.0,1050.0,307650.0,13125.0,3845625.0,13125.0,3845625.0,true,293,0.909202763850118,53000.0,1239.904194285078,0.0,5215.492968112504,1694997.488961304,5736.33646473635,1843048.4547445765,5215.492968112504,1694997.488961304,-0.0,0.0,-0.0,0.0,520.8434966238456,148050.9657832717,293,53000.0,1239.904194285078,5215.492968112504,1373905.0277631423,1050.0,307650.0,4588.43147107933,582550.867893759,-1635.4178947601024,408445.98449488083,0.0,0.0,2294.8269221655432,374829.3724390517,-32.34753037226659,8078.80293545103,-5215.492968112504,-1816178.6729000635,true,true,22.35236264,3665.7874737100005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,294,0.9069721873137782,666.0,0.0,10321.734121514675,9271.734121514675,1050.0,10306.23602223312,15.498099281553566,2161020.1888660914,1852320.1888660912,308700.0,3259845.09461329,-1098824.9057472001,0.95,0.25,22.0,294,0.0,0.1,0.0,0.0,1050.0,308700.0,13125.0,3858750.0,13125.0,3858750.0,true,294,0.9222680144089708,53000.0,1239.904194285078,0.0,8551.023818377242,1703548.5127796812,9271.734121514675,1852320.1888660912,8551.023818377242,1703548.5127796812,-0.0,0.0,-0.0,0.0,720.7103031374336,148771.67608640913,294,53000.0,1239.904194285078,8551.023818377242,1382456.0515815194,1050.0,308700.0,4588.43147107933,587139.2993648384,1635.4178947601024,410081.4023896409,0.0,0.0,2294.8269221655432,377124.1993612172,32.34753037226659,8111.150465823296,-8551.023818377242,-1824729.6967184406,true,true,22.39706737,3688.1845410800006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,295,0.9069684133528925,666.0,0.0,6786.33646473635,5736.33646473635,1050.0,6776.146770344853,10.18969439149602,2167806.5253308276,1858056.5253308276,309750.0,3266621.241383635,-1098814.7160528086,0.95,0.25,22.0,295,0.0,0.1,0.0,0.0,1050.0,309750.0,13125.0,3871875.0,13125.0,3871875.0,true,295,0.909202763850118,53000.0,1239.904194285078,0.0,5215.492968112504,1708764.0057477937,5736.33646473635,1858056.5253308276,5215.492968112504,1708764.0057477937,-0.0,0.0,-0.0,0.0,520.8434966238456,149292.519583033,295,53000.0,1239.904194285078,5215.492968112504,1387671.544549632,1050.0,309750.0,4588.43147107933,591727.7308359178,-1635.4178947601024,408445.98449488083,0.0,0.0,2294.8269221655432,379419.02628338273,-32.34753037226659,8078.80293545103,-5215.492968112504,-1829945.189686553,true,true,22.35236264,3710.5369037200007,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,296,0.9069677188695656,666.0,0.0,1248.8199183341608,198.81991833416077,1050.0,1246.944813351677,1.875104982483725,2169055.3452491616,1858255.3452491618,310800.0,3267868.1861969866,-1098812.8409478262,0.95,0.25,22.0,296,0.0,0.1,0.0,0.0,1050.0,310800.0,13125.0,3885000.0,13125.0,3885000.0,true,296,0.8331253190167742,53000.0,1239.904194285078,0.0,165.6419078890367,1708929.6476556826,198.81991833416077,1858255.3452491618,165.6419078890367,1708929.6476556826,-0.0,0.0,-0.0,0.0,33.17801044512407,149325.6975934781,296,53000.0,1239.904194285078,165.6419078890367,1387837.1864575208,1050.0,310800.0,4520.0166289282415,596247.747464846,-6508.995168306231,401936.9893265746,0.0,0.0,2283.364250043249,381702.39053342596,-128.74380277622268,7950.059132674807,-165.6419078890367,-1830110.831594442,true,true,22.17354374,3732.7104474600005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,297,0.9069640274216622,666.0,0.0,6637.961620087406,5587.961620087406,1050.0,6627.994710747936,9.966909339470579,2175693.306869249,1863843.3068692493,311850.0,3274496.1809077347,-1098802.8740384867,0.95,0.25,22.0,297,0.0,0.1,0.0,0.0,1050.0,311850.0,13125.0,3898125.0,13125.0,3898125.0,true,297,0.9078592713663757,53000.0,1239.904194285078,0.0,5073.0827648358245,1714002.7304205184,5587.961620087406,1863843.3068692493,5073.0827648358245,1714002.7304205184,-0.0,0.0,-0.0,0.0,514.8788552515816,149840.5764487297,297,53000.0,1239.904194285078,5073.0827648358245,1392910.2692223566,1050.0,311850.0,4452.28524904692,600700.0327138929,-1619.079691585653,400317.90963498893,0.0,0.0,2271.9015784337726,383974.2921118597,-32.02437105921534,7918.034761615592,-5073.0827648358245,-1835183.9143592778,true,true,22.12883902,3754.8392864800007,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,298,0.9069593677089326,666.0,0.0,8379.095430258036,7329.095430258036,1050.0,8366.51420588828,12.58122436975681,2184072.402299507,1871172.4022995073,312900.0,3282862.695113623,-1098790.292814117,0.95,0.25,22.0,298,0.0,0.1,0.0,0.0,1050.0,312900.0,13125.0,3911250.0,13125.0,3911250.0,true,298,0.9153148291764706,53000.0,1239.904194285078,0.0,6708.429731764685,1720711.160152283,7329.095430258036,1871172.4022995073,6708.429731764685,1720711.160152283,-0.0,0.0,-0.0,0.0,620.6656984933506,150461.24214722303,298,53000.0,1239.904194285078,6708.429731764685,1399618.6989541212,1050.0,312900.0,4438.820687447682,605138.8534013405,0.0,400317.90963498893,0.0,0.0,2269.6090443170037,386243.9011561767,0.0,7918.034761615592,-6708.429731764685,-1841892.3440910424,true,true,22.12883902,3776.968125500001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,299,0.906954707996203,666.0,0.0,8379.095430258036,7329.095430258036,1050.0,8366.51420588828,12.58122436975681,2192451.4977297653,1878501.4977297653,313950.0,3291229.2093195114,-1098777.711589747,0.95,0.25,22.0,299,0.0,0.1,0.0,0.0,1050.0,313950.0,13125.0,3924375.0,13125.0,3924375.0,true,299,0.9153148291764706,53000.0,1239.904194285078,0.0,6708.429731764685,1727419.5898840476,7329.095430258036,1878501.4977297653,6708.429731764685,1727419.5898840476,-0.0,0.0,-0.0,0.0,620.6656984933506,151081.9078457164,299,53000.0,1239.904194285078,6708.429731764685,1406327.1286858858,1050.0,313950.0,4438.820687447682,609577.6740887882,0.0,400317.90963498893,0.0,0.0,2269.6090443170037,388513.5102004937,0.0,7918.034761615592,-6708.429731764685,-1848600.773822807,true,true,22.12883902,3799.096964520001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,300,0.9069540741953497,666.0,0.0,1139.7006944146683,89.70069441466838,1050.0,1137.9894321107424,1.7112623039259285,2193591.19842418,1878591.1984241798,315000.0,3292367.1987516223,-1098776.0003274432,0.95,0.25,22.0,300,0.0,0.1,0.0,0.0,1050.0,315000.0,13125.0,3937500.0,13125.0,3937500.0,true,300,0.8314071282404617,53000.0,1239.904194285078,0.0,74.57779674447465,1727494.167680792,89.70069441466838,1878591.1984241798,74.57779674447465,1727494.167680792,-0.0,0.0,-0.0,0.0,15.122897670193723,151097.0307433866,300,53000.0,1239.904194285078,74.57779674447465,1406401.7064826302,1050.0,315000.0,4385.23389733933,613962.9079861275,-6443.643813067496,393874.2658219214,0.0,0.0,2260.438906824296,390773.94910731795,-127.45119435165564,7790.583567263937,-74.57779674447465,-1848675.3516195514,true,true,21.95002012,3821.046984640001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,301,0.9069540625840057,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193612.0779429236,1877562.0779429232,316050.0,3292388.046919737,-1098775.9689768145,0.95,0.25,22.0,301,0.0,0.1,0.0,0.0,1050.0,316050.0,13125.0,3950625.0,13125.0,3950625.0,true,301,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1726254.2634865069,-1029.1204812566145,1877562.0779429232,-1239.904194285078,1726254.2634865069,-0.0,0.0,-0.0,0.0,210.78371302846335,151307.81445641507,301,53000.0,1239.904194285078,-1632.8442030484266,1404768.8622795818,1050.0,316050.0,4266.244179345301,618229.1521654729,-7981.034667660518,385893.23115426087,0.0,0.0,2239.806097209293,393013.75520452723,-157.85981194250277,7632.7237553214345,-1239.904194285078,-1849915.2558138366,true,true,21.72649649,3842.773481130001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,302,0.9069540509726617,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193632.9574616672,1876532.9574616665,317100.0,3292408.8950878517,-1098775.9376261858,0.95,0.25,22.0,302,0.0,0.1,0.0,0.0,1050.0,317100.0,13125.0,3963750.0,13125.0,3963750.0,true,302,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1725014.3592922217,-1029.1204812566145,1876532.9574616665,-1239.904194285078,1725014.3592922217,-0.0,0.0,-0.0,0.0,210.78371302846335,151518.59816944355,302,53000.0,1239.904194285078,-1702.1286541778081,1403066.733625404,1050.0,317100.0,4136.580112290882,622365.7322777638,-7899.345468130034,377993.88568613084,0.0,0.0,2216.8807529647056,395230.63595749193,-156.2440513033623,7476.479704018072,-1239.904194285078,-1851155.1600081217,true,true,21.50297286,3864.276453990001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,303,0.9069540393613177,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193653.836980411,1875503.83698041,318150.0,3292429.7432559663,-1098775.9062755571,0.95,0.25,22.0,303,0.0,0.1,0.0,0.0,1050.0,318150.0,13125.0,3976875.0,13125.0,3976875.0,true,303,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1723774.4550979366,-1029.1204812566145,1875503.83698041,-1239.904194285078,1723774.4550979366,-0.0,0.0,-0.0,0.0,210.78371302846335,151729.38188247202,303,53000.0,1239.904194285078,-8145.843478393372,1394920.8901470108,1050.0,318150.0,3959.5033926729625,626325.2356704368,-14012.964576824428,363980.9211093064,0.0,0.0,2184.785271740226,397415.42122923216,-277.1675659821319,7199.31213803594,-1239.904194285078,-1852395.064202407,true,true,21.10063034,3885.377084330001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,304,0.9069540277499737,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193674.7164991545,1874474.7164991533,319200.0,3292450.591424081,-1098775.8749249284,0.95,0.25,22.0,304,0.0,0.1,0.0,0.0,1050.0,319200.0,13125.0,3990000.0,13125.0,3990000.0,true,304,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1722534.5509036514,-1029.1204812566145,1874474.7164991533,-1239.904194285078,1722534.5509036514,-0.0,0.0,-0.0,0.0,210.78371302846335,151940.1655955005,304,53000.0,1239.904194285078,-11244.829322776062,1383676.0608242347,1050.0,319200.0,3715.4117389404264,630040.6474093772,-16767.52462648273,347213.39648282365,0.0,0.0,2138.9345842766847,399554.35581350885,-331.6510195104458,6867.661118525494,-1239.904194285078,-1853634.968396692,true,true,20.60887836,3905.9859626900006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,305,0.9069540161386297,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193695.596017898,1873445.5960178967,320250.0,3292471.4395921957,-1098775.8435742997,0.95,0.25,22.0,305,0.0,0.1,0.0,0.0,1050.0,320250.0,13125.0,4003125.0,13125.0,4003125.0,true,305,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1721294.6467093662,-1029.1204812566145,1873445.5960178967,-1239.904194285078,1721294.6467093662,-0.0,0.0,-0.0,0.0,210.78371302846335,152150.94930852897,305,53000.0,1239.904194285078,-11148.746937529117,1372527.3138867056,1050.0,320250.0,3458.733883528985,633499.3812929061,-16372.148910404207,330841.24757241947,0.0,0.0,2088.4988275539713,401642.85464106285,-323.83073820786603,6543.830380317628,-1239.904194285078,-1854874.8725909772,true,true,20.11712638,3926.103089070001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,306,0.9069540045272857,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193716.4755366417,1872416.47553664,321300.0,3292492.2877603103,-1098775.812223671,0.95,0.25,22.0,306,0.0,0.1,0.0,0.0,1050.0,321300.0,13125.0,4016250.0,13125.0,4016250.0,true,306,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1720054.742515081,-1029.1204812566145,1872416.47553664,-1239.904194285078,1720054.742515081,-0.0,0.0,-0.0,0.0,210.78371302846335,152361.73302155745,306,53000.0,1239.904194285078,-12514.857547014752,1360012.4563396908,1050.0,321300.0,3203.324349583011,636702.7056424891,-17409.60153904983,313431.64603336965,0.0,0.0,2035.7705367144906,403678.6251777773,-344.3508942624249,6199.479486055203,-1239.904194285078,-1856114.7767852624,true,true,19.58066968,3945.683758750001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,307,0.9069539929159417,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193737.3550553853,1871387.3550553834,322350.0,3292513.135928425,-1098775.7808730423,0.95,0.25,22.0,307,0.0,0.1,0.0,0.0,1050.0,322350.0,13125.0,4029375.0,13125.0,4029375.0,true,307,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1718814.838320796,-1029.1204812566145,1871387.3550553834,-1239.904194285078,1718814.838320796,-0.0,0.0,-0.0,0.0,210.78371302846335,152572.51673458592,307,53000.0,1239.904194285078,-12342.814680732194,1347669.6416589587,1050.0,322350.0,2950.551809757256,639653.2574522464,-16939.072082178747,296492.5739511909,0.0,0.0,1980.7497112454237,405659.3748890227,-335.0441195561253,5864.435366499078,-1239.904194285078,-1857354.6809795476,true,true,19.04421297,3964.727971720001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,308,0.9069539813045977,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193758.234574129,1870358.2345741268,323400.0,3292533.9840965397,-1098775.7495224136,0.95,0.25,22.0,308,0.0,0.1,0.0,0.0,1050.0,323400.0,13125.0,4042500.0,13125.0,4042500.0,true,308,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1717574.9341265108,-1029.1204812566145,1870358.2345741268,-1239.904194285078,1717574.9341265108,-0.0,0.0,-0.0,0.0,210.78371302846335,152783.3004476144,308,53000.0,1239.904194285078,-10763.927086854708,1336905.714572104,1050.0,323400.0,2721.1344774610366,642374.3919297074,-15114.134965734589,281378.4389854563,0.0,0.0,1928.021420405942,407587.3963094287,-298.94801898709795,5565.487347511979,-1239.904194285078,-1858594.5851738327,true,true,18.552461,3983.280432720001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,309,0.9069539696932537,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193779.1140928725,1869329.1140928701,324450.0,3292554.8322646543,-1098775.718171785,0.95,0.25,22.0,309,0.0,0.1,0.0,0.0,1050.0,324450.0,13125.0,4055625.0,13125.0,4055625.0,true,309,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1716335.0299322256,-1029.1204812566145,1869329.1140928701,-1239.904194285078,1716335.0299322256,-0.0,0.0,-0.0,0.0,210.78371302846335,152994.08416064287,309,53000.0,1239.904194285078,-11975.207800966899,1324930.506771137,1050.0,324450.0,2503.928530459909,644878.3204601672,-16037.223338514425,265341.21564694186,0.0,0.0,1875.2931295664612,409462.68943899515,-317.20612247884327,5248.281225033136,-1239.904194285078,-1859834.4893681179,true,true,18.01600429,4001.2964370100012,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,310,0.9069539580819097,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193799.993611616,1868299.9936116135,325500.0,3292575.680432769,-1098775.6868211562,0.95,0.25,22.0,310,0.0,0.1,0.0,0.0,1050.0,325500.0,13125.0,4068750.0,13125.0,4068750.0,true,310,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1715095.1257379404,-1029.1204812566145,1868299.9936116135,-1239.904194285078,1715095.1257379404,-0.0,0.0,-0.0,0.0,210.78371302846335,153204.86787367135,310,53000.0,1239.904194285078,-19587.017777221503,1305343.4889939155,1050.0,325500.0,2238.415322832086,647116.7357829993,-23173.591237315235,242167.62440962662,0.0,0.0,1806.5170978583317,411269.20653685345,-458.3589605966871,4789.922264436449,-1239.904194285078,-1861074.393562403,true,true,17.21131924,4018.5077562500014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,311,0.9069539464705657,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193820.8731303597,1867270.873130357,326550.0,3292596.5286008837,-1098775.6554705275,0.95,0.25,22.0,311,0.0,0.1,0.0,0.0,1050.0,326550.0,13125.0,4081875.0,13125.0,4081875.0,true,311,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1713855.2215436553,-1029.1204812566145,1867270.873130357,-1239.904194285078,1713855.2215436553,-0.0,0.0,-0.0,0.0,210.78371302846335,153415.65158669982,311,53000.0,1239.904194285078,-15168.903671120117,1290174.5853227954,1050.0,326550.0,1968.8057663002132,649085.5415492995,-18502.603127147406,223665.02128247923,0.0,0.0,1730.8634632870794,413000.0700001405,-365.9697735600036,4423.952490876445,-1239.904194285078,-1862314.2977566882,true,true,16.54074836,4035.0485046100016,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,312,0.9069539348592217,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193841.7526491033,1866241.7526491003,327600.0,3292617.3767689983,-1098775.6241198988,0.95,0.25,22.0,312,0.0,0.1,0.0,0.0,1050.0,327600.0,13125.0,4095000.0,13125.0,4095000.0,true,312,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1712615.31734937,-1029.1204812566145,1866241.7526491003,-1239.904194285078,1712615.31734937,-0.0,0.0,-0.0,0.0,210.78371302846335,153626.4352997283,312,53000.0,1239.904194285078,-18275.650910729317,1271898.9344120661,1050.0,327600.0,1721.7639495700623,650807.3054988695,-21232.65619401525,202432.36508846396,0.0,0.0,1655.20982820301,414655.27982834354,-419.96849448714033,4003.9839963893046,-1239.904194285078,-1863554.2019509734,true,true,15.7360633,4050.7845679100014,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,313,0.9069539232478777,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193862.632167847,1865212.6321678436,328650.0,3292638.224937113,-1098775.59276927,0.95,0.25,22.0,313,0.0,0.1,0.0,0.0,1050.0,328650.0,13125.0,4108125.0,13125.0,4108125.0,true,313,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1711375.413155085,-1029.1204812566145,1865212.6321678436,-1239.904194285078,1711375.413155085,-0.0,0.0,-0.0,0.0,210.78371302846335,153837.21901275677,313,53000.0,1239.904194285078,-13009.84092075825,1258889.093491308,1050.0,328650.0,1502.8280405441235,652310.1335394137,-15782.352745511445,186650.0123429525,0.0,0.0,1581.8487277485262,416237.1285560921,-312.16494353945535,3691.8190528498494,-1239.904194285078,-1864794.1061452585,true,true,15.11019715,4065.8947650600016,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,314,0.9069539116365337,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193883.5116865905,1864183.511686587,329700.0,3292659.0731052277,-1098775.5614186414,0.95,0.25,22.0,314,0.0,0.1,0.0,0.0,1050.0,329700.0,13125.0,4121250.0,13125.0,4121250.0,true,314,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1710135.5089607998,-1029.1204812566145,1864183.511686587,-1239.904194285078,1710135.5089607998,-0.0,0.0,-0.0,0.0,210.78371302846335,154048.00272578525,314,53000.0,1239.904194285078,-11506.935906852883,1247382.157584455,1050.0,329700.0,1333.2224033184614,653643.3559427322,-14081.583798845326,172568.42854410718,0.0,0.0,1519.9502994163367,417757.0788555084,-278.52481074235476,3413.2942421074945,-1239.904194285078,-1866034.0103395437,true,true,14.52903572,4080.423800780002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,315,0.9069539000251897,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193904.391205334,1863154.3912053304,330750.0,3292679.9212733423,-1098775.5300680127,0.95,0.25,22.0,315,0.0,0.1,0.0,0.0,1050.0,330750.0,13125.0,4134375.0,13125.0,4134375.0,true,315,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1708895.6047665146,-1029.1204812566145,1863154.3912053304,-1239.904194285078,1708895.6047665146,-0.0,0.0,-0.0,0.0,210.78371302846335,154258.78643881372,315,53000.0,1239.904194285078,-7996.58399071571,1239385.5735937394,1050.0,330750.0,1199.2284961629261,654842.5844388951,-10456.21714152524,162112.21140258195,0.0,0.0,1467.2220085768554,419224.30086408526,-206.81735393025156,3206.476888177243,-1239.904194285078,-1867273.9145338289,true,true,14.08198847,4094.5057892500017,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,316,0.9069538884138457,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2193925.2707240777,1862125.2707240738,331800.0,3292700.769441457,-1098775.498717384,0.95,0.25,22.0,316,0.0,0.1,0.0,0.0,1050.0,331800.0,13125.0,4147500.0,13125.0,4147500.0,true,316,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1707655.7005722295,-1029.1204812566145,1862125.2707240738,-1239.904194285078,1707655.7005722295,-0.0,0.0,-0.0,0.0,210.78371302846335,154469.5701518422,316,53000.0,1239.904194285078,-6792.6027115408915,1232592.9708821985,1050.0,331800.0,1095.5616421486131,655938.1460810438,-9131.21848930904,152980.9929132729,0.0,0.0,1423.6638552300822,420647.96471931535,-180.60971961054724,3025.867168566696,-1239.904194285078,-1868513.818728114,true,true,13.67964594,4108.185435190002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,317,0.906952378908038,666.0,0.0,2714.393343443504,1664.3933434435041,1050.0,2710.3176777626577,4.075665680846102,2196639.664067521,1863789.6640675173,332850.0,3295411.08711922,-1098771.423051703,0.95,0.25,22.0,317,0.0,0.1,0.0,0.0,1050.0,332850.0,13125.0,4160625.0,13125.0,4160625.0,true,317,0.8569101032408208,53000.0,1239.904194285078,0.0,1426.235471763508,1709081.9360439929,1664.3933434435041,1863789.6640675173,1426.235471763508,1709081.9360439929,-0.0,0.0,-0.0,0.0,238.1578716799961,154707.72802352218,317,53000.0,1239.904194285078,1426.235471763508,1234019.206353962,1050.0,332850.0,1043.483648884593,656981.6297299283,-998.2420916448357,151982.75082162805,0.0,0.0,1400.7385109854945,422048.70323030086,-19.744596461743775,3006.1225721049523,-1426.235471763508,-1869940.0541998774,true,true,13.63494121,4121.820376400002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,318,0.906952367296694,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196660.543586265,1862760.5435862606,333900.0,3295431.9352873345,-1098771.3917010743,0.95,0.25,22.0,318,0.0,0.1,0.0,0.0,1050.0,333900.0,13125.0,4173750.0,13125.0,4173750.0,true,318,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1707842.0318497077,-1029.1204812566145,1862760.5435862606,-1239.904194285078,1707842.0318497077,-0.0,0.0,-0.0,0.0,210.78371302846335,154918.51173655066,318,53000.0,1239.904194285078,-2639.922869895807,1231379.2834840661,1050.0,333900.0,1013.0436100028431,657994.6733399312,-4942.196271904794,147040.55454972325,0.0,0.0,1386.983304746432,423435.6865350473,-97.75351274028787,2908.3690593646643,-1239.904194285078,-1871179.9583941626,true,true,13.41141759,4135.231793990002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,319,0.90695235568535,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196681.4231050084,1861731.423105004,334950.0,3295452.783455449,-1098771.3603504456,0.95,0.25,22.0,319,0.0,0.1,0.0,0.0,1050.0,334950.0,13125.0,4186875.0,13125.0,4186875.0,true,319,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1706602.1276554225,-1029.1204812566145,1861731.423105004,-1239.904194285078,1706602.1276554225,-0.0,0.0,-0.0,0.0,210.78371302846335,155129.29544957913,319,53000.0,1239.904194285078,-7537.843844862557,1223841.4396392035,1050.0,334950.0,939.5460097084001,658934.2193496396,-9639.325391081276,137401.22915864197,0.0,0.0,1352.595288892367,424788.2818239397,-190.65975238204672,2717.7093069826174,-1239.904194285078,-1872419.8625884478,true,true,12.96437033,4148.196164320002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,320,0.906952344074006,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196702.302623752,1860702.3026237474,336000.0,3295473.631623564,-1098771.328999817,0.95,0.25,22.0,320,0.0,0.1,0.0,0.0,1050.0,336000.0,13125.0,4200000.0,13125.0,4200000.0,true,320,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1705362.2234611374,-1029.1204812566145,1860702.3026237474,-1239.904194285078,1705362.2234611374,-0.0,0.0,-0.0,0.0,210.78371302846335,155340.0791626076,320,53000.0,1239.904194285078,-11999.806910724636,1211841.6327284789,1050.0,336000.0,825.1014694265428,659759.3208190661,-13846.318889141068,123554.9102695009,0.0,0.0,1295.2819287937145,426083.5637527334,-273.8714198038244,2443.837887178793,-1239.904194285078,-1873659.766782733,true,true,12.29379945,4160.489963770002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,321,0.906952332462662,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196723.1821424956,1859673.1821424908,337050.0,3295494.4797916785,-1098771.2976491882,0.95,0.25,22.0,321,0.0,0.1,0.0,0.0,1050.0,337050.0,13125.0,4213125.0,13125.0,4213125.0,true,321,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1704122.3192668522,-1029.1204812566145,1859673.1821424908,-1239.904194285078,1704122.3192668522,-0.0,0.0,-0.0,0.0,210.78371302846335,155550.86287563608,321,53000.0,1239.904194285078,-21673.554704529804,1190168.0780239492,1050.0,337050.0,654.4358527298748,660413.756671796,-23070.66293785705,100484.24733164386,0.0,0.0,1198.9954846074602,427282.5592373409,-456.3231040100902,1987.514783168703,-1239.904194285078,-1874899.670977018,true,true,11.08677187,4171.576735640002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,322,0.906952320851318,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196744.0616612392,1858644.0616612341,338100.0,3295515.327959793,-1098771.2662985595,0.95,0.25,22.0,322,0.0,0.1,0.0,0.0,1050.0,338100.0,13125.0,4226250.0,13125.0,4226250.0,true,322,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1702882.415072567,-1029.1204812566145,1858644.0616612341,-1239.904194285078,1702882.415072567,-0.0,0.0,-0.0,0.0,210.78371302846335,155761.64658866456,322,53000.0,1239.904194285078,-23940.834098485255,1166227.2439254639,1050.0,338100.0,454.0513700623448,660867.8080418584,-24962.58477025346,75521.6625613904,0.0,0.0,1061.443421550173,428344.002658891,-493.7441198443131,1493.7706633243897,-1239.904194285078,-1876139.5751713032,true,true,9.611515937,4181.188251577002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,323,0.906952309239974,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196764.941179983,1857614.9411799775,339150.0,3295536.176127908,-1098771.2349479308,0.95,0.25,22.0,323,0.0,0.1,0.0,0.0,1050.0,339150.0,13125.0,4239375.0,13125.0,4239375.0,true,323,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1701642.510878282,-1029.1204812566145,1857614.9411799775,-1239.904194285078,1701642.510878282,-0.0,0.0,-0.0,0.0,210.78371302846335,155972.43030169304,323,53000.0,1239.904194285078,-8420.329020085666,1157806.9149053781,1050.0,339150.0,329.3381255727985,661197.1461674311,-9515.157657809988,66006.50490358041,0.0,0.0,953.6943053954699,429297.6969642865,-188.20379324394648,1305.5668700804433,-1239.904194285078,-1877379.4793655884,true,true,8.985649783,4190.173901360002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,324,0.90695229762863,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196785.8206987265,1856585.8206987209,340200.0,3295557.0242960225,-1098771.203597302,0.95,0.25,22.0,324,0.0,0.1,0.0,0.0,1050.0,340200.0,13125.0,4252500.0,13125.0,4252500.0,true,324,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1700402.6066839967,-1029.1204812566145,1856585.8206987209,-1239.904194285078,1700402.6066839967,-0.0,0.0,-0.0,0.0,210.78371302846335,156183.2140147215,324,53000.0,1239.904194285078,-5356.872625988855,1152450.0422793892,1050.0,340200.0,275.5625649678818,661472.708732399,-6404.4330409290205,59602.07186265139,0.0,0.0,898.6734800802479,430196.37044436677,-126.67563010796478,1178.8912399724786,-1239.904194285078,-1878619.3835598736,true,true,8.53860253,4198.712503890002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,325,0.9069522860172861,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196806.70021747,1855556.7002174642,341250.0,3295577.872464137,-1098771.1722466734,0.95,0.25,22.0,325,0.0,0.1,0.0,0.0,1050.0,341250.0,13125.0,4265625.0,13125.0,4265625.0,true,325,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1699162.7024897116,-1029.1204812566145,1855556.7002174642,-1239.904194285078,1699162.7024897116,-0.0,0.0,-0.0,0.0,210.78371302846335,156393.99772775,325,53000.0,1239.904194285078,-2653.548032039506,1149796.4942473497,1050.0,341250.0,243.17871113045263,661715.8874435294,-3685.816555553422,55916.25530709797,0.0,0.0,861.992929904288,431058.3633742711,-72.90311752082414,1105.9881224516544,-1239.904194285078,-1879859.2877541587,true,true,8.270374179,4206.982878069002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,326,0.9069522744059421,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196827.5797362137,1854527.5797362076,342300.0,3295598.720632252,-1098771.1408960447,0.95,0.25,22.0,326,0.0,0.1,0.0,0.0,1050.0,342300.0,13125.0,4278750.0,13125.0,4278750.0,true,326,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1697922.7982954264,-1029.1204812566145,1854527.5797362076,-1239.904194285078,1697922.7982954264,-0.0,0.0,-0.0,0.0,210.78371302846335,156604.78144077846,326,53000.0,1239.904194285078,-7853.461629146131,1141943.0326182034,1050.0,342300.0,204.6666479569444,661920.5540914864,-8699.89948209352,47216.35582500445,0.0,0.0,813.849707759879,431872.21308203094,-172.07850276943296,933.9096196822214,-1239.904194285078,-1881099.191948444,true,true,7.599803299,4214.582681368002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,327,0.9069522627945981,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196848.4592549573,1853498.459254951,343350.0,3295619.5688003665,-1098771.109545416,0.95,0.25,22.0,327,0.0,0.1,0.0,0.0,1050.0,343350.0,13125.0,4291875.0,13125.0,4291875.0,true,327,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1696682.8941011413,-1029.1204812566145,1853498.459254951,-1239.904194285078,1696682.8941011413,-0.0,0.0,-0.0,0.0,210.78371302846335,156815.56515380694,327,53000.0,1239.904194285078,-7220.119022148872,1134722.9135960545,1050.0,343350.0,157.04065589418371,662077.5947473806,-7964.69669691925,39251.6591280852,0.0,0.0,745.0736761030313,432617.28675813397,-157.53665722683792,776.3729624553835,-1239.904194285078,-1882339.096142729,true,true,6.92923242,4221.511913788002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,328,0.9069522511832541,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196869.338773701,1852469.3387736944,344400.0,3295640.416968481,-1098771.0781947873,0.95,0.25,22.0,328,0.0,0.1,0.0,0.0,1050.0,344400.0,13125.0,4305000.0,13125.0,4305000.0,true,328,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1695442.989906856,-1029.1204812566145,1852469.3387736944,-1239.904194285078,1695442.989906856,-0.0,0.0,-0.0,0.0,210.78371302846335,157026.3488668354,328,53000.0,1239.904194285078,-13252.899562897188,1121470.0140331574,1050.0,344400.0,100.42367528671701,662178.0184226673,-13723.785088018327,25527.874040066876,0.0,0.0,641.9096286434005,433259.1963867774,-271.4477788089779,504.92518364640557,-1239.904194285078,-1883579.0003370142,true,true,5.588090661,4227.100004449002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,329,0.9069522395719101,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196890.2182924445,1851440.2182924377,345450.0,3295661.265136596,-1098771.0468441586,0.95,0.25,22.0,329,0.0,0.1,0.0,0.0,1050.0,345450.0,13125.0,4318125.0,13125.0,4318125.0,true,329,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1694203.085712571,-1029.1204812566145,1851440.2182924377,-1239.904194285078,1694203.085712571,-0.0,0.0,-0.0,0.0,210.78371302846335,157237.1325798639,329,53000.0,1239.904194285078,-6007.391381052868,1115462.6226521046,1050.0,345450.0,57.86684180633219,662235.8852644736,-6471.418181473999,19056.455858592875,0.0,0.0,534.160512386134,433793.3568991635,-128.00055377133629,376.9246298750693,-1239.904194285078,-1884818.9045312994,true,true,4.828110331,4231.928114780002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,330,0.9069522279605661,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196911.097811188,1850411.097811181,346500.0,3295682.1133047105,-1098771.0154935298,0.95,0.25,22.0,330,0.0,0.1,0.0,0.0,1050.0,346500.0,13125.0,4331250.0,13125.0,4331250.0,true,330,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1692963.1815182858,-1029.1204812566145,1850411.097811181,-1239.904194285078,1692963.1815182858,-0.0,0.0,-0.0,0.0,210.78371302846335,157447.91629289236,330,53000.0,1239.904194285078,-8308.95212286093,1107153.6705292438,1050.0,346500.0,30.397338885881396,662266.2826033595,-8600.238652015187,10456.217206577689,0.0,0.0,430.9964649265032,434224.35336409,-170.10727465812698,206.8173552169423,-1239.904194285078,-1886058.8087255845,true,true,3.576378023,4235.504492803002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,331,0.9069522163492221,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196931.9773299317,1849381.9773299245,347550.0,3295702.961472825,-1098770.9841429011,0.95,0.25,22.0,331,0.0,0.1,0.0,0.0,1050.0,347550.0,13125.0,4344375.0,13125.0,4344375.0,true,331,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1691723.2773240006,-1029.1204812566145,1849381.9773299245,-1239.904194285078,1691723.2773240006,-0.0,0.0,-0.0,0.0,210.78371302846335,157658.70000592084,331,53000.0,1239.904194285078,-6682.098945095763,1100471.571584148,1050.0,347550.0,9.370724730465096,662275.65332809,-6847.1884846949215,3609.028721882767,0.0,0.0,291.1518672909123,434515.5052313809,-135.43305242221862,71.38430279472368,-1239.904194285078,-1887298.7129198697,true,true,2.101122089,4237.6056148920015,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,332,0.9069522047378781,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2196952.8568486753,1848352.8568486678,348600.0,3295723.80964094,-1098770.9527922724,0.95,0.25,22.0,332,0.0,0.1,0.0,0.0,1050.0,348600.0,13125.0,4357500.0,13125.0,4357500.0,true,332,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1690483.3731297154,-1029.1204812566145,1848352.8568486678,-1239.904194285078,1690483.3731297154,-0.0,0.0,-0.0,0.0,210.78371302846335,157869.4837189493,332,53000.0,1239.904194285078,-3212.974625018742,1097258.5969591294,1050.0,348600.0,1.0383685426895308,662276.6916966327,-3288.8070699565947,320.2216519261724,0.0,0.0,139.8445976868726,434655.3498290678,-65.05052129170943,6.333781503014251,-1239.904194285078,-1888538.6171141549,true,true,0.625866154,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,333,0.9069517567295037,666.0,0.0,805.6086587969257,-244.3913412030743,1050.0,804.3990361861196,1.2096226108061947,2197758.4655074724,1848108.4655074647,349650.0,3296528.208677126,-1098769.7431696616,0.95,0.25,22.0,333,0.0,0.1,0.0,0.0,1050.0,349650.0,13125.0,4370625.0,13125.0,4370625.0,true,333,0.83,53000.0,1239.904194285078,0.0,-294.44739903984856,1690188.9257306757,-244.3913412030743,1848108.4655074647,-294.44739903984856,1690188.9257306757,-0.0,0.0,-0.0,0.0,50.05605783677427,157919.53977678608,333,53000.0,1239.904194285078,-294.44739903984856,1096964.1495600897,1050.0,349650.0,0.012552959407831086,662276.704249592,-320.2216519258495,3.228706191293895e-10,0.0,0.0,32.09548142960594,434687.4453104974,-6.333781503012812,1.4388490399142029e-12,-294.44739903984856,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,334,0.9069511728122531,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2198808.4655074724,1848108.4655074647,350700.0,3297576.6321005495,-1098768.166593085,0.95,0.25,22.0,334,0.0,0.1,0.0,0.0,1050.0,350700.0,13125.0,4383750.0,13125.0,4383750.0,true,334,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,334,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,350700.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,335,0.9069505888950026,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2199858.4655074724,1848108.4655074647,351750.0,3298625.055523973,-1098766.5900165085,0.95,0.25,22.0,335,0.0,0.1,0.0,0.0,1050.0,351750.0,13125.0,4396875.0,13125.0,4396875.0,true,335,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,335,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,351750.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,336,0.906950004977752,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2200908.4655074724,1848108.4655074647,352800.0,3299673.4789473964,-1098765.013439932,0.95,0.25,22.0,336,0.0,0.1,0.0,0.0,1050.0,352800.0,13125.0,4410000.0,13125.0,4410000.0,true,336,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,336,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,352800.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,337,0.9069494210605015,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2201958.4655074724,1848108.4655074647,353850.0,3300721.90237082,-1098763.4368633553,0.95,0.25,22.0,337,0.0,0.1,0.0,0.0,1050.0,353850.0,13125.0,4423125.0,13125.0,4423125.0,true,337,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,337,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,353850.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,338,0.9069488371432509,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2203008.4655074724,1848108.4655074647,354900.0,3301770.3257942433,-1098761.8602867788,0.95,0.25,22.0,338,0.0,0.1,0.0,0.0,1050.0,354900.0,13125.0,4436250.0,13125.0,4436250.0,true,338,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,338,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,354900.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,339,0.9069482532260004,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2204058.4655074724,1848108.4655074647,355950.0,3302818.7492176667,-1098760.2837102022,0.95,0.25,22.0,339,0.0,0.1,0.0,0.0,1050.0,355950.0,13125.0,4449375.0,13125.0,4449375.0,true,339,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,339,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,355950.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,340,0.9069476693087498,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2205108.4655074724,1848108.4655074647,357000.0,3303867.17264109,-1098758.7071336256,0.95,0.25,22.0,340,0.0,0.1,0.0,0.0,1050.0,357000.0,13125.0,4462500.0,13125.0,4462500.0,true,340,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,340,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,357000.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,341,0.9069470853914993,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2206158.4655074724,1848108.4655074647,358050.0,3304915.5960645135,-1098757.130557049,0.95,0.25,22.0,341,0.0,0.1,0.0,0.0,1050.0,358050.0,13125.0,4475625.0,13125.0,4475625.0,true,341,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,341,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,358050.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,342,0.9069465014742487,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2207208.4655074724,1848108.4655074647,359100.0,3305964.019487937,-1098755.5539804725,0.95,0.25,22.0,342,0.0,0.1,0.0,0.0,1050.0,359100.0,13125.0,4488750.0,13125.0,4488750.0,true,342,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,342,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,359100.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,343,0.9069459175569982,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2208258.4655074724,1848108.4655074647,360150.0,3307012.4429113604,-1098753.977403896,0.95,0.25,22.0,343,0.0,0.1,0.0,0.0,1050.0,360150.0,13125.0,4501875.0,13125.0,4501875.0,true,343,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,343,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,360150.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,344,0.9069453336397476,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2209308.4655074724,1848108.4655074647,361200.0,3308060.866334784,-1098752.4008273194,0.95,0.25,22.0,344,0.0,0.1,0.0,0.0,1050.0,361200.0,13125.0,4515000.0,13125.0,4515000.0,true,344,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,344,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,361200.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,345,0.9069447497224971,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2210358.4655074724,1848108.4655074647,362250.0,3309109.2897582073,-1098750.8242507428,0.95,0.25,22.0,345,0.0,0.1,0.0,0.0,1050.0,362250.0,13125.0,4528125.0,13125.0,4528125.0,true,345,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,345,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,362250.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,346,0.9069441658052465,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2211408.4655074724,1848108.4655074647,363300.0,3310157.7131816307,-1098749.2476741662,0.95,0.25,22.0,346,0.0,0.1,0.0,0.0,1050.0,363300.0,13125.0,4541250.0,13125.0,4541250.0,true,346,0.83,53000.0,1239.904194285078,0.0,0.0,1690188.9257306757,0.0,1848108.4655074647,0.0,1690188.9257306757,-0.0,0.0,-0.0,0.0,0.0,157919.53977678608,346,53000.0,1239.904194285078,0.0,1096964.1495600897,1050.0,363300.0,0.0,662276.704249592,0.0,3.228706191293895e-10,0.0,0.0,0.0,434687.4453104974,0.0,1.4388490399142029e-12,0.0,-1888833.0645131946,true,true,0.0,4238.231481046001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,347,0.9069434554384764,666.0,0.0,1277.3815260172341,227.38152601723408,1050.0,1275.463535737929,1.9179902793051564,2212685.8470334895,1848335.847033482,364350.0,3311433.1767173684,-1098747.3296838868,0.95,0.25,22.0,347,0.0,0.1,0.0,0.0,1050.0,364350.0,13125.0,4554375.0,13125.0,4554375.0,true,347,0.8335762232773677,53000.0,1239.904194285078,0.0,189.5398337004905,1690378.4655643762,227.38152601723408,1848335.847033482,189.5398337004905,1690378.4655643762,-0.0,0.0,-0.0,0.0,37.841692316743575,157957.38146910284,347,53000.0,1239.904194285078,189.5398337004905,1097153.6893937902,1050.0,364350.0,0.00457469366613165,662276.7088242857,163.3783939441366,163.37839394445948,0.0,0.0,22.925343885615916,434710.37065438303,3.2315211770718477,3.2315211770732866,-189.5398337004905,-1889022.6043468951,true,true,0.447047253,4238.678528299001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,348,0.9069409685711156,666.0,0.0,4471.884888144601,3421.8848881446006,1050.0,4465.17034627051,6.714541874090993,2217157.731921634,1851757.7319216267,365400.0,3315898.3470636387,-1098740.6151420127,0.95,0.25,22.0,348,0.0,0.1,0.0,0.0,1050.0,365400.0,13125.0,4567500.0,13125.0,4567500.0,true,348,0.8872866566377563,53000.0,1239.904194285078,0.0,3036.1928018010854,1693414.6583661772,3421.8848881446006,1851757.7319216267,3036.1928018010854,1693414.6583661772,-0.0,0.0,-0.0,0.0,385.69208634351526,158343.07355544635,348,53000.0,1239.904194285078,3036.1928018010854,1100189.8821955912,1050.0,365400.0,0.6810666681565701,662277.3898909538,2857.4881072542803,3020.8665011987396,0.0,0.0,121.50432254761081,434831.8749769306,56.51930533103734,59.75082650811062,-3036.1928018010854,-1892058.7971486961,true,true,1.922303187,4240.600831486001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,349,0.9069362410344547,666.0,0.0,8501.056423654964,7451.0564236549635,1050.0,8488.292074670497,12.764348984466912,2225658.788345289,1859208.7883452817,366450.0,3324386.6391383093,-1098727.8507930283,0.95,0.25,22.0,349,0.0,0.1,0.0,0.0,1050.0,366450.0,13125.0,4580625.0,13125.0,4580625.0,true,349,0.915748271862304,53000.0,1239.904194285078,0.0,6823.2920435105525,1700237.9504096878,7451.0564236549635,1859208.7883452817,6823.2920435105525,1700237.9504096878,-0.0,0.0,-0.0,0.0,627.764380144411,158970.83793559077,349,53000.0,1239.904194285078,6823.2920435105525,1107013.1742391018,1050.0,366450.0,7.709086196334267,662285.0989771502,6415.869528570906,9436.736029769647,0.0,0.0,272.81159215165053,435104.68656908226,126.9018365916611,186.6526630997717,-6823.2920435105525,-1898882.0891922067,true,true,3.397559122,4243.998390608001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,350,0.9069293040771328,666.0,0.0,12474.03665630587,11424.03665630587,1050.0,12455.306871536643,18.729784769228033,2238132.8250015946,1870632.8250015876,367500.0,3336841.946009846,-1098709.121008259,0.95,0.25,22.0,350,0.0,0.1,0.0,0.0,1050.0,367500.0,13125.0,4593750.0,13125.0,4593750.0,true,350,0.930023225871292,53000.0,1239.904194285078,0.0,10624.619423569475,1710862.5698332572,11424.03665630587,1870632.8250015876,10624.619423569475,1710862.5698332572,-0.0,0.0,-0.0,0.0,799.4172327363958,159770.25516832716,350,53000.0,1239.904194285078,10624.619423569475,1117637.7936626712,1050.0,367500.0,28.96524476806052,662314.0642219182,9974.250949156614,19410.98697892626,0.0,0.0,424.11886180697195,435528.80543088925,197.28436783782777,383.9370309375995,-10624.619423569475,-1909506.7086157762,true,true,4.872815057,4248.871205665,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,351,0.9069201142496134,666.0,0.0,16525.1478454512,15475.1478454512,1050.0,16500.33531114872,24.81253430247928,2254657.972847046,1886107.9728470389,368550.0,3353342.2813209947,-1098684.3084739565,0.95,0.25,22.0,351,0.0,0.1,0.0,0.0,1050.0,368550.0,13125.0,4606875.0,13125.0,4606875.0,true,351,0.9336302511026406,53000.0,1239.904194285078,0.0,14448.066168799092,1725310.6360020563,15475.1478454512,1886107.9728470389,14448.066168799092,1725310.6360020563,-0.0,0.0,-0.0,0.0,1027.0816766521075,160797.33684497926,351,53000.0,1239.904194285078,14448.066168799092,1132085.8598314703,1050.0,368550.0,72.34077914616587,662386.4050010644,13532.632359363213,32943.61933828947,0.0,0.0,575.4261314110116,436104.23156230024,267.6668988787024,651.6039298163018,-14448.066168799092,-1923954.7747845752,true,true,6.348070991,4255.219276656,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,352,0.9069093518383965,666.0,0.0,19352.967850287812,18302.967850287812,1050.0,19323.909340002094,29.058510285717436,2274010.940697334,1904410.9406973268,369600.0,3372666.190660997,-1098655.2499636707,0.95,0.25,22.0,352,0.0,0.1,0.0,0.0,1050.0,369600.0,13125.0,4620000.0,13125.0,4620000.0,true,352,0.9361647099901161,53000.0,1239.904194285078,0.0,17134.59258952311,1742445.2285915795,18302.967850287812,1904410.9406973268,17134.59258952311,1742445.2285915795,-0.0,0.0,-0.0,0.0,1168.3752607647039,161965.71210574397,352,53000.0,1239.904194285078,17134.59258952311,1149220.4524209935,1050.0,369600.0,142.98605328528745,662529.3910543497,15953.90016122608,48897.51949951555,0.0,0.0,722.1483322174154,436826.37989451765,315.55804279432556,967.1619726106273,-17134.59258952311,-1941089.3673740984,true,true,7.733917475,4262.953194131001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,353,0.9068981593811811,666.0,0.0,20126.276564714728,19076.276564714728,1050.0,20096.056930233175,30.219634481553644,2294137.2172620483,1923487.2172620415,370650.0,3392762.24759123,-1098625.0303291893,0.95,0.25,22.0,353,0.0,0.1,0.0,0.0,1050.0,370650.0,13125.0,4633125.0,13125.0,4633125.0,true,353,0.9368601925812757,53000.0,1239.904194285078,0.0,17871.804136152317,1760317.0327277319,19076.276564714728,1923487.2172620415,17871.804136152317,1760317.0327277319,-0.0,0.0,-0.0,0.0,1204.4724285624106,163170.18453430638,353,53000.0,1239.904194285078,17871.804136152317,1167092.2565571459,1050.0,370650.0,237.40426287648515,662766.7953172262,16453.838048902533,65351.35754841808,0.0,0.0,855.1153267334752,437681.49522125116,325.446497639826,1292.6084702504534,-17871.804136152317,-1958961.1715102508,true,true,8.940945058,4271.894139189,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,354,0.9068862938621243,666.0,0.0,21336.57636804645,20286.57636804645,1050.0,21304.539466592927,32.0369014535232,2315473.7936300947,1943773.793630088,371700.0,3414066.787057823,-1098592.9934277358,0.95,0.25,22.0,354,0.0,0.1,0.0,0.0,1050.0,371700.0,13125.0,4646250.0,13125.0,4646250.0,true,354,0.9379507639647533,53000.0,1239.904194285078,0.0,19027.80980263848,1779344.8425303702,20286.57636804645,1943773.793630088,19027.80980263848,1779344.8425303702,-0.0,0.0,-0.0,0.0,1258.766565407972,164428.95109971435,354,53000.0,1239.904194285078,19027.80980263848,1186120.0663597842,1050.0,371700.0,351.1792182146088,663117.9745354408,17358.95434468701,82710.31189310508,0.0,0.0,974.3271149079087,438655.82233615906,343.3491248289544,1635.9575950794078,-19027.80980263848,-1977988.9813128891,true,true,10.05856319,4281.952702379001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,355,0.9068792844533349,666.0,0.0,12604.31888498816,11554.31888498816,1050.0,12585.393481256948,18.925403731213454,2328078.112515083,1955328.112515076,372750.0,3426652.18053908,-1098574.0680240046,0.95,0.25,22.0,355,0.0,0.1,0.0,0.0,1050.0,372750.0,13125.0,4659375.0,13125.0,4659375.0,true,355,0.9301387926581798,53000.0,1239.904194285078,0.0,10747.120217670494,1790091.9627480407,11554.31888498816,1955328.112515076,10747.120217670494,1790091.9627480407,-0.0,0.0,-0.0,0.0,807.1986673176671,165236.149767032,355,53000.0,1239.904194285078,10747.120217670494,1196867.1865774547,1050.0,372750.0,451.1157021081735,663569.0902375489,9057.698095707883,91768.00998881296,0.0,0.0,1059.1508870744326,439714.9732232335,179.1555327800051,1815.113127859413,-10747.120217670494,-1988736.1015305596,true,true,10.59501989,4292.547722269001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,356,0.9068704301196057,666.0,0.0,15921.862911793,14871.862911793,1050.0,15897.956210724242,23.906701068758256,2343999.975426876,1970199.975426869,373800.0,3442550.136749804,-1098550.1613229357,0.95,0.25,22.0,356,0.0,0.1,0.0,0.0,1050.0,373800.0,13125.0,4672500.0,13125.0,4672500.0,true,356,0.9330913266931735,53000.0,1239.904194285078,0.0,13876.806294763932,1803968.7690428046,14871.862911793,1970199.975426869,13876.806294763932,1803968.7690428046,-0.0,0.0,-0.0,0.0,995.0566170290676,166231.20638406108,356,53000.0,1239.904194285078,13876.806294763932,1210743.9928722186,1050.0,373800.0,534.9197026451216,664104.0099401941,11983.805198324091,103751.81518713705,0.0,0.0,1121.0493154066223,440836.0225386401,237.03207838809686,2052.14520624751,-13876.806294763932,-2002612.9078253235,true,true,11.26559077,4303.813313039001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,357,0.9068615586730893,666.0,0.0,15952.635125831448,14902.635125831448,1050.0,15928.682220237106,23.952905594341512,2359952.610552707,1985102.6105527005,374850.0,3458478.8189700413,-1098526.2084173413,0.95,0.25,22.0,357,0.0,0.1,0.0,0.0,1050.0,374850.0,13125.0,4685625.0,13125.0,4685625.0,true,357,0.933118800962067,53000.0,1239.904194285078,0.0,13905.929019791023,1817874.6980625957,14902.635125831448,1985102.6105527005,13905.929019791023,1817874.6980625957,-0.0,0.0,-0.0,0.0,996.7061060404249,167227.9124901015,357,53000.0,1239.904194285078,13905.929019791023,1224649.9218920097,1050.0,374850.0,635.8450530496157,664739.8549932437,11848.201235865063,115600.01642300212,0.0,0.0,1187.5328129979832,442023.5553516381,234.34991787836086,2286.495124125871,-13905.929019791023,-2016518.8368451146,true,true,11.89145693,4315.704769969,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,358,0.9068516507099288,666.0,0.0,17816.499355128395,16766.499355128395,1050.0,17789.74785459517,26.75150053322582,2377769.1099078357,2001869.109907829,375900.0,3476268.5668246364,-1098499.4569168082,0.95,0.25,22.0,358,0.0,0.1,0.0,0.0,1050.0,375900.0,13125.0,4698750.0,13125.0,4698750.0,true,358,0.9347859318140983,53000.0,1239.904194285078,0.0,15673.087722944174,1833547.7857855398,16766.499355128395,2001869.109907829,15673.087722944174,1833547.7857855398,-0.0,0.0,-0.0,0.0,1093.4116321842212,168321.32412228573,358,53000.0,1239.904194285078,15673.087722944174,1240323.0096149538,1050.0,375900.0,748.7278659634928,665488.5828592072,13405.197233605133,129005.21365660726,0.0,0.0,1254.0163105893441,443277.57166222745,265.14631278620493,2551.6414369120757,-15673.087722944174,-2032191.9245680587,true,true,12.56202781,4328.266797779,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,359,0.9068388600124137,666.0,0.0,23000.2322717988,21950.2322717988,1050.0,22965.69738850781,34.534883290989185,2400769.3421796346,2023819.3421796279,376950.0,3499234.2642131443,-1098464.9220335172,0.95,0.25,22.0,359,0.0,0.1,0.0,0.0,1050.0,376950.0,13125.0,4711875.0,13125.0,4711875.0,true,359,0.9394539937466104,53000.0,1239.904194285078,0.0,20621.233371407114,1854169.0191569468,21950.2322717988,2023819.3421796279,20621.233371407114,1854169.0191569468,-0.0,0.0,-0.0,0.0,1328.9989003916853,169650.32302267742,359,53000.0,1239.904194285078,20621.233371407114,1260944.2429863608,1050.0,376950.0,897.2023760483518,666385.7852352555,18035.34089311599,147040.55454972325,0.0,0.0,1331.962479790182,444609.53414201766,356.72762245258855,2908.3690593646643,-20621.233371407114,-2052813.1579394657,true,true,13.41141759,4341.678215369,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,360,0.9068319800027363,666.0,0.0,12371.633401702895,11321.633401702895,1050.0,12353.057375574212,18.576026128683026,2413140.9755813377,2035140.9755813307,378000.0,3511587.3215887183,-1098446.3460073886,0.95,0.25,22.0,360,0.0,0.1,0.0,0.0,1050.0,378000.0,13125.0,4725000.0,13125.0,4725000.0,true,360,0.9297205873824923,53000.0,1239.904194285078,0.0,10525.95565636046,1864694.9748133072,11321.633401702895,2035140.9755813307,10525.95565636046,1864694.9748133072,-0.0,0.0,-0.0,0.0,795.6777453424347,170446.00076801985,360,53000.0,1239.904194285078,10525.95565636046,1271470.1986427212,1050.0,378000.0,1028.188531840946,667413.9737670964,7946.725027413042,154987.2795771363,0.0,0.0,1393.8609081223715,446003.39505014004,157.18118898410032,3065.5502483487644,-10525.95565636046,-2063339.113595826,true,true,13.76905539,4355.447270759,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,361,0.9068249043071115,666.0,0.0,12723.515872645647,11673.515872645647,1050.0,12704.41149445849,19.104378187155625,2425864.4914539834,2046814.4914539764,379050.0,3524291.733083177,-1098427.2416292015,0.95,0.25,22.0,361,0.0,0.1,0.0,0.0,1050.0,379050.0,13125.0,4738125.0,13125.0,4738125.0,true,361,0.9302445514498032,53000.0,1239.904194285078,0.0,10859.224536791407,1875554.1993500986,11673.515872645647,2046814.4914539764,10859.224536791407,1875554.1993500986,-0.0,0.0,-0.0,0.0,814.2913358542392,171260.2921038741,361,53000.0,1239.904194285078,10859.224536791407,1282329.4231795126,1050.0,379050.0,1111.5161738081947,668525.4899409045,8155.849368854772,163143.12894599108,0.0,0.0,1430.541458093205,447433.93650823325,161.31753603523572,3226.867784384,-10859.224536791407,-2074198.3381326175,true,true,14.12669319,4369.573963949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,362,0.906819515261098,666.0,0.0,9690.582541366428,8640.582541366428,1050.0,9676.032117130142,14.550424236285927,2435555.07399535,2055455.0739953427,380100.0,3533967.765200307,-1098412.691204965,0.95,0.25,22.0,362,0.0,0.1,0.0,0.0,1050.0,380100.0,13125.0,4751250.0,13125.0,4751250.0,true,362,0.9199974096448281,53000.0,1239.904194285078,0.0,7949.31355587944,1883503.5129059781,8640.582541366428,2055455.0739953427,7949.31355587944,1883503.5129059781,-0.0,0.0,-0.0,0.0,691.2689854869877,171951.5610893611,362,53000.0,1239.904194285078,7949.31355587944,1290278.7367353921,1050.0,380100.0,1182.4432721135404,669707.9332130181,5203.601927485679,168346.73087347674,0.0,0.0,1460.3444052009154,448894.28091343417,102.92395107930565,3329.7917354633055,-7949.31355587944,-2082147.651688497,true,true,14.35021682,4383.9241807690005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,363,0.9068127604610676,666.0,0.0,12146.481414769698,11096.481414769698,1050.0,12128.243454687461,18.237960082236782,2447701.5554101197,2066551.5554101125,381150.0,3546096.0086549944,-1098394.4532448829,0.95,0.25,22.0,363,0.0,0.1,0.0,0.0,1050.0,381150.0,13125.0,4764375.0,13125.0,4764375.0,true,363,0.9288961465133454,53000.0,1239.904194285078,0.0,10307.478826036528,1893810.9917320146,11096.481414769698,2066551.5554101125,10307.478826036528,1893810.9917320146,-0.0,0.0,-0.0,0.0,789.0025887331703,172740.56367809424,363,53000.0,1239.904194285078,10307.478826036528,1300586.2155614286,1050.0,381150.0,1250.5357386632681,670958.4689516814,7422.280265999789,175769.01113947653,0.0,0.0,1487.8548176790405,450382.1357311132,146.80800369442997,3476.5997391577353,-10307.478826036528,-2092455.1305145335,true,true,14.66314989,4398.587330659,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,364,0.9068051811184649,666.0,0.0,13629.173868379803,12579.173868379803,1050.0,13608.709643352206,20.4642250275973,2461330.7292784997,2079130.7292784923,382200.0,3559704.7182983467,-1098373.9890198552,0.95,0.25,22.0,364,0.0,0.1,0.0,0.0,1050.0,382200.0,13125.0,4777500.0,13125.0,4777500.0,true,364,0.931048892355569,53000.0,1239.904194285078,0.0,11711.825896903134,1905522.8176289177,12579.173868379803,2079130.7292784923,11711.825896903134,1905522.8176289177,-0.0,0.0,-0.0,0.0,867.347971476669,173607.91164957092,364,53000.0,1239.904194285078,11711.825896903134,1312298.0414583317,1050.0,382200.0,1339.2641868002838,672297.7331384817,8678.660468049055,184447.67160752558,0.0,0.0,1522.242833533105,451904.3785646463,171.65840852069022,3648.2581476784253,-11711.825896903134,-2104166.9564114367,true,true,15.0207877,4413.608118359,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,365,0.9067967144557076,666.0,0.0,15224.75297011414,14174.75297011414,1050.0,15201.892980669523,22.859989444615824,2476555.482248614,2093305.4822486064,383250.0,3574906.6112790164,-1098351.1290304104,0.95,0.25,22.0,365,0.0,0.1,0.0,0.0,1050.0,383250.0,13125.0,4790625.0,13125.0,4790625.0,true,365,0.9324693611762964,53000.0,1239.904194285078,0.0,13217.522846874142,1918740.3404757918,14174.75297011414,2093305.4822486064,13217.522846874142,1918740.3404757918,-0.0,0.0,-0.0,0.0,957.2301232399968,174565.14177281092,365,53000.0,1239.904194285078,13217.522846874142,1325515.5643052058,1050.0,383250.0,1444.7854295084792,673742.5185679902,10013.461570140364,194461.13317766594,0.0,0.0,1561.215918133524,453465.5944827798,198.05992909177445,3846.3180767701997,-13217.522846874142,-2117384.479258311,true,true,15.42313022,4429.031248579,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,366,0.9067935078080477,666.0,0.0,5766.193822184312,4716.193822184312,1050.0,5757.535873502354,8.657948681958427,2482321.676070798,2098021.6760707907,384300.0,3580664.147152519,-1098342.4710817286,0.95,0.25,22.0,366,0.0,0.1,0.0,0.0,1050.0,384300.0,13125.0,4803750.0,13125.0,4803750.0,true,366,0.9000451645740668,53000.0,1239.904194285078,0.0,4244.7874448510765,1922985.127920643,4716.193822184312,2098021.6760707907,4244.7874448510765,1922985.127920643,-0.0,0.0,-0.0,0.0,471.40637733323547,175036.54815014417,366,53000.0,1239.904194285078,4244.7874448510765,1329760.351750057,1050.0,384300.0,1509.3715489181802,675251.8901169084,1128.9448203952968,195590.07799806123,0.0,0.0,1584.1412618652948,455049.73574464506,22.329813672304876,3868.6478904425044,-4244.7874448510765,-2121629.266703162,true,true,15.46783495,4444.499083529,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,367,0.9067889104866137,666.0,0.0,8266.903402621669,7216.903402621669,1050.0,8254.490634749864,12.412767871804308,2490588.57947342,2105238.5794734126,385350.0,3588918.6377872685,-1098330.0583138568,0.95,0.25,22.0,367,0.0,0.1,0.0,0.0,1050.0,385350.0,13125.0,4816875.0,13125.0,4816875.0,true,367,0.914916467034164,53000.0,1239.904194285078,0.0,6602.863764053453,1929587.9916846964,7216.903402621669,2105238.5794734126,6602.863764053453,1929587.9916846964,-0.0,0.0,-0.0,0.0,614.0396385682152,175650.58778871238,367,53000.0,1239.904194285078,6602.863764053453,1336363.2155141104,1050.0,385350.0,1535.7355280988515,676787.6256450072,3406.439617489638,198996.51761555087,0.0,0.0,1593.3113998708202,456643.0471445159,67.37721859414361,3936.025109036648,-6602.863764053453,-2128232.1304672156,true,true,15.60194913,4460.101032659,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,368,0.9067870536110396,666.0,0.0,3339.0336572745273,2289.0336572745273,1050.0,3334.0200932245657,5.013564049961753,2493927.6131306947,2107527.6131306873,386400.0,3592252.657880493,-1098325.0447498069,0.95,0.25,22.0,368,0.0,0.1,0.0,0.0,1050.0,386400.0,13125.0,4830000.0,13125.0,4830000.0,true,368,0.8674652283827046,53000.0,1239.904194285078,0.0,1985.6571042833455,1931573.6487889797,2289.0336572745273,2107527.6131306873,1985.6571042833455,1931573.6487889797,-0.0,0.0,-0.0,0.0,303.3765529911818,175953.96434170357,368,53000.0,1239.904194285078,1985.6571042833455,1338348.8726183937,1050.0,386400.0,1549.0318659976006,678336.6575110048,-1138.7475253621897,197857.7700901887,0.0,0.0,1597.8964686171744,458240.9436131331,-22.523704969239727,3913.501404067408,-1985.6571042833455,-2130217.787571499,true,true,15.5572444,4475.658277059,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,369,0.9067866324343541,666.0,0.0,757.3599158876286,-292.6400841123713,1050.0,756.2227388367463,1.1371770508823253,2494684.973046582,2107234.9730465747,387450.0,3593008.88061933,-1098323.907572756,0.95,0.25,22.0,369,0.0,0.1,0.0,0.0,1050.0,387450.0,13125.0,4843125.0,13125.0,4843125.0,true,369,0.83,53000.0,1239.904194285078,0.0,-352.57841459321844,1931221.0703743866,-292.6400841123713,2107234.9730465747,-352.57841459321844,1931221.0703743866,-0.0,0.0,-0.0,0.0,59.93833048084713,176013.90267218443,369,53000.0,1239.904194285078,-352.57841459321844,1337996.2942038006,1050.0,387450.0,1522.515494615086,679859.1730056199,-3396.6369125227448,194461.13317766594,0.0,0.0,1588.726330611649,459829.6699437447,-67.18332729720876,3846.3180767701992,-352.57841459321844,-2130570.3659860925,true,true,15.42313022,4491.081407279,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,370,0.9067827449554947,666.0,0.0,6990.46448495351,5940.46448495351,1050.0,6979.968292033159,10.496192920350616,2501675.4375315355,2113175.437531528,388500.0,3599988.848911363,-1098313.4113798358,0.95,0.25,22.0,370,0.0,0.1,0.0,0.0,1050.0,388500.0,13125.0,4856250.0,13125.0,4856250.0,true,370,0.9104084878832864,53000.0,1239.904194285078,0.0,5408.249289070891,1936629.3196634576,5940.46448495351,2113175.437531528,5408.249289070891,1936629.3196634576,-0.0,0.0,-0.0,0.0,532.2151958826189,176546.11786806706,370,53000.0,1239.904194285078,5408.249289070891,1343404.5434928716,1050.0,388500.0,1515.9340254377553,681375.1070310577,2261.157209356515,196722.29038702245,0.0,0.0,1586.4337964948804,461416.10374023963,44.72425778173967,3891.042334551939,-5408.249289070891,-2135978.615275163,true,true,15.51253968,4506.593946959,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,371,0.9067746720547717,666.0,0.0,14516.690080043621,13466.690080043621,1050.0,14494.893248091605,21.79683195201745,2516192.127611579,2126642.1276115715,389550.0,3614483.7421594546,-1098291.6145478839,0.95,0.25,22.0,371,0.0,0.1,0.0,0.0,1050.0,389550.0,13125.0,4869375.0,13125.0,4869375.0,true,371,0.9318384716054454,53000.0,1239.904194285078,0.0,12548.77990177206,1949178.0995652296,13466.690080043621,2126642.1276115715,12548.77990177206,1949178.0995652296,-0.0,0.0,-0.0,0.0,917.9101782715607,177464.02804633862,371,53000.0,1239.904194285078,12548.77990177206,1355953.3233946436,1050.0,389550.0,1582.607990795155,682957.7150218529,9175.330542154425,205897.6209291769,0.0,0.0,1609.3591407394683,463025.4628809791,181.48222808301298,4072.524562634952,-12548.77990177206,-2148527.3951769355,true,true,15.87017748,4522.464124439,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,372,0.9067685162510799,666.0,0.0,11069.36619863058,10019.36619863058,1050.0,11052.745528662666,16.620669967913784,2527261.4938102094,2136661.493810202,390600.0,3625536.487688117,-1098274.993877916,0.95,0.25,22.0,372,0.0,0.1,0.0,0.0,1050.0,390600.0,13125.0,4882500.0,13125.0,4882500.0,true,372,0.9249722086098813,53000.0,1239.904194285078,0.0,9267.635281618517,1958445.734846848,10019.36619863058,2136661.493810202,9267.635281618517,1958445.734846848,-0.0,0.0,-0.0,0.0,751.7309170120625,178215.75896335067,372,53000.0,1239.904194285078,9267.635281618517,1365220.958676262,1050.0,390600.0,1672.168903678771,684629.8839255316,5840.777411918889,211738.39834109577,0.0,0.0,1639.1620873343618,464664.6249683135,115.52687868649573,4188.051441321448,-9267.635281618517,-2157795.030458554,true,true,16.0937011,4538.557825539,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,373,0.906765837985037,666.0,0.0,4816.057998501823,3766.0579985018235,1050.0,4808.826680185754,7.231318316068803,2532077.551808711,2140427.5518087037,391650.0,3630345.314368303,-1098267.7625596,0.95,0.25,22.0,373,0.0,0.1,0.0,0.0,1050.0,391650.0,13125.0,4895625.0,13125.0,4895625.0,true,373,0.8916803775273001,53000.0,1239.904194285078,0.0,3358.1200178938143,1961803.854864742,3766.0579985018235,2140427.5518087037,3358.1200178938143,1961803.854864742,-0.0,0.0,-0.0,0.0,407.9379806080092,178623.69694395867,373,53000.0,1239.904194285078,3358.1200178938143,1368579.078694156,1050.0,391650.0,1707.4952589499758,686337.3791844816,0.0,211738.39834109577,0.0,0.0,1650.6247589438387,466315.24972725735,0.0,4188.051441321448,-3358.1200178938143,-2161153.150476448,true,true,16.0937011,4554.651526639,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,374,0.906763159718994,666.0,0.0,4816.057998501823,3766.0579985018235,1050.0,4808.826680185754,7.231318316068803,2536893.609807213,2144193.6098072054,392700.0,3635154.1410484887,-1098260.531241284,0.95,0.25,22.0,374,0.0,0.1,0.0,0.0,1050.0,392700.0,13125.0,4908750.0,13125.0,4908750.0,true,374,0.8916803775273001,53000.0,1239.904194285078,0.0,3358.1200178938143,1965161.9748826358,3766.0579985018235,2144193.6098072054,3358.1200178938143,1965161.9748826358,-0.0,0.0,-0.0,0.0,407.9379806080092,179031.63492456666,374,53000.0,1239.904194285078,3358.1200178938143,1371937.1987120498,1050.0,392700.0,1707.4952589499758,688044.8744434315,0.0,211738.39834109577,0.0,0.0,1650.6247589438387,467965.8744862012,0.0,4188.051441321448,-3358.1200178938143,-2164511.2704943414,true,true,16.0937011,4570.745227738999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,375,0.9067604814529511,666.0,0.0,4816.057998501823,3766.0579985018235,1050.0,4808.826680185754,7.231318316068803,2541709.6678057145,2147959.667805707,393750.0,3639962.9677286744,-1098253.299922968,0.95,0.25,22.0,375,0.0,0.1,0.0,0.0,1050.0,393750.0,13125.0,4921875.0,13125.0,4921875.0,true,375,0.8916803775273001,53000.0,1239.904194285078,0.0,3358.1200178938143,1968520.0949005296,3766.0579985018235,2147959.667805707,3358.1200178938143,1968520.0949005296,-0.0,0.0,-0.0,0.0,407.9379806080092,179439.57290517466,375,53000.0,1239.904194285078,3358.1200178938143,1375295.3187299436,1050.0,393750.0,1707.4952589499758,689752.3697023814,0.0,211738.39834109577,0.0,0.0,1650.6247589438387,469616.49924514507,0.0,4188.051441321448,-3358.1200178938143,-2167869.390512235,true,true,16.0937011,4586.838928838999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,376,0.9067578031869081,666.0,0.0,4816.057998501823,3766.0579985018235,1050.0,4808.826680185754,7.231318316068803,2546525.725804216,2151725.725804209,394800.0,3644771.79440886,-1098246.068604652,0.95,0.25,22.0,376,0.0,0.1,0.0,0.0,1050.0,394800.0,13125.0,4935000.0,13125.0,4935000.0,true,376,0.8916803775273001,53000.0,1239.904194285078,0.0,3358.1200178938143,1971878.2149184234,3766.0579985018235,2151725.725804209,3358.1200178938143,1971878.2149184234,-0.0,0.0,-0.0,0.0,407.9379806080092,179847.51088578266,376,53000.0,1239.904194285078,3358.1200178938143,1378653.4387478374,1050.0,394800.0,1707.4952589499758,691459.8649613314,0.0,211738.39834109577,0.0,0.0,1650.6247589438387,471267.1240040889,0.0,4188.051441321448,-3358.1200178938143,-2171227.5105301286,true,true,16.0937011,4602.932629938999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,377,0.9067551249208652,666.0,0.0,4816.057998501823,3766.0579985018235,1050.0,4808.826680185754,7.231318316068803,2551341.783802718,2155491.7838027105,395850.0,3649580.621089046,-1098238.837286336,0.95,0.25,22.0,377,0.0,0.1,0.0,0.0,1050.0,395850.0,13125.0,4948125.0,13125.0,4948125.0,true,377,0.8916803775273001,53000.0,1239.904194285078,0.0,3358.1200178938143,1975236.3349363173,3766.0579985018235,2155491.7838027105,3358.1200178938143,1975236.3349363173,-0.0,0.0,-0.0,0.0,407.9379806080092,180255.44886639065,377,53000.0,1239.904194285078,3358.1200178938143,1382011.5587657313,1050.0,395850.0,1707.4952589499758,693167.3602202813,0.0,211738.39834109577,0.0,0.0,1650.6247589438387,472917.7487630328,0.0,4188.051441321448,-3358.1200178938143,-2174585.630548022,true,true,16.0937011,4619.026331038998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,378,0.9067517276331948,666.0,0.0,6109.002688854414,5059.002688854414,1050.0,6099.830012144423,9.172676709991613,2557450.7864915724,2160550.786491565,396900.0,3655680.4511011904,-1098229.6646096262,0.95,0.25,22.0,378,0.0,0.1,0.0,0.0,1050.0,396900.0,13125.0,4961250.0,13125.0,4961250.0,true,378,0.9031018360062746,53000.0,1239.904194285078,0.0,4568.794616665102,1979805.1295529823,5059.002688854414,2160550.786491565,4568.794616665102,1979805.1295529823,-0.0,0.0,-0.0,0.0,490.2080721893126,180745.65693857995,378,53000.0,1239.904194285078,4568.794616665102,1386580.3533823963,1050.0,396900.0,1714.619709195542,694881.9799294769,1177.9583437680642,212916.35668486383,0.0,0.0,1652.9172935734243,474570.6660566062,23.29927012807159,4211.35071144952,-4568.794616665102,-2179154.4251646874,true,true,16.13840583,4635.164736868998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,379,0.906746878690856,666.0,0.0,8719.368113649703,7669.3681136497025,1050.0,8706.275969334914,13.092144314789344,2566170.154605222,2168220.1546052145,397950.0,3664386.7270705253,-1098216.5724653113,0.95,0.25,22.0,379,0.0,0.1,0.0,0.0,1050.0,397950.0,13125.0,4974375.0,13125.0,4974375.0,true,379,0.9165251655860497,53000.0,1239.904194285078,0.0,7029.168880303163,1986834.2984332854,7669.3681136497025,2168220.1546052145,7029.168880303163,1986834.2984332854,-0.0,0.0,-0.0,0.0,640.1992333465396,181385.85617192648,379,53000.0,1239.904194285078,7029.168880303163,1393609.5222626994,1050.0,397950.0,1743.315684335417,696625.2956138123,3553.480176644206,216469.83686150803,0.0,0.0,1662.08743157895,476232.7534881852,70.28558774458935,4281.636299194109,-7029.168880303163,-2186183.594044991,true,true,16.27252001,4651.437256878999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,380,0.9067434290409827,666.0,0.0,6203.160402238645,5153.160402238645,1050.0,6193.846347580628,9.314054658015984,2572373.315007461,2173373.3150074533,399000.0,3670580.573418106,-1098207.2584106533,0.95,0.25,22.0,380,0.0,0.1,0.0,0.0,1050.0,399000.0,13125.0,4987500.0,13125.0,4987500.0,true,380,0.90394503549741,53000.0,1239.904194285078,0.0,4658.173762725459,1991492.4721960109,5153.160402238645,2173373.3150074533,4658.173762725459,1991492.4721960109,-0.0,0.0,-0.0,0.0,494.98663951318576,181880.84281143968,380,53000.0,1239.904194285078,4658.173762725459,1398267.6960254249,1050.0,399000.0,1772.330056554275,698397.6256703666,1191.0283505142575,217660.86521202227,0.0,0.0,1671.257569071658,477904.01105725684,23.557786585268413,4305.194085779377,-4658.173762725459,-2190841.7678077165,true,true,16.31722473,4667.7544816089985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,381,0.9067414236865355,666.0,0.0,3606.028366844455,2556.028366844455,1050.0,3600.613909837181,5.414457007273956,2575979.3433743054,2175929.343374298,400050.0,3674181.1873279433,-1098201.843953646,0.95,0.25,22.0,381,0.0,0.1,0.0,0.0,1050.0,400050.0,13125.0,5000625.0,13125.0,5000625.0,true,381,0.8720566318589889,53000.0,1239.904194285078,0.0,2229.0014885264072,1993721.4736845372,2556.028366844455,2175929.343374298,2229.0014885264072,1993721.4736845372,-0.0,0.0,-0.0,0.0,327.0268783180477,182207.86968975773,381,53000.0,1239.904194285078,2229.0014885264072,1400496.6975139512,1050.0,400050.0,1772.330056554275,700169.9557269209,-1191.0283505142575,216469.83686150803,0.0,0.0,1671.257569071658,479575.2686263285,-23.557786585268413,4281.636299194109,-2229.0014885264072,-2193070.769296243,true,true,16.27252001,4684.027001618999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,382,0.9067414120751915,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576000.222893049,2174900.2228930416,401100.0,3674202.035496058,-1098201.8126030173,0.95,0.25,22.0,382,0.0,0.1,0.0,0.0,1050.0,401100.0,13125.0,5013750.0,13125.0,5013750.0,true,382,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1992481.569490252,-1029.1204812566145,2174900.2228930416,-1239.904194285078,1992481.569490252,-0.0,0.0,-0.0,0.0,210.78371302846335,182418.6534027862,382,53000.0,1239.904194285078,-1429.1165724461093,1399067.580941505,1050.0,401100.0,1736.111908889458,701906.0676358104,-4731.43852041227,211738.39834109574,0.0,0.0,1659.7948969493639,481235.0635232779,-93.58485787266093,4188.051441321448,-1239.904194285078,-2194310.673490528,true,true,16.0937011,4700.1207027189985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,383,0.9067414004638475,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576021.1024117926,2173871.102411785,402150.0,3674222.8836641726,-1098201.7812523886,0.95,0.25,22.0,383,0.0,0.1,0.0,0.0,1050.0,402150.0,13125.0,5026875.0,13125.0,5026875.0,true,383,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1991241.665295967,-1029.1204812566145,2173871.102411785,-1239.904194285078,1991241.665295967,-0.0,0.0,-0.0,0.0,210.78371302846335,182629.43711581468,383,53000.0,1239.904194285078,-7387.115070589843,1391680.4658709152,1050.0,402150.0,1644.2612413542458,703550.3288771646,-10454.583225676346,201283.8151154194,0.0,0.0,1629.9919498416534,482865.05547311954,-206.78503610939467,3981.266405212053,-1239.904194285078,-2195550.577684813,true,true,15.69135858,4715.812061298999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,384,0.9067413888525035,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576041.981930536,2172841.981930529,403200.0,3674243.7318322873,-1098201.74990176,0.95,0.25,22.0,384,0.0,0.1,0.0,0.0,1050.0,403200.0,13125.0,5040000.0,13125.0,5040000.0,true,384,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1990001.7611016817,-1029.1204812566145,2172841.981930529,-1239.904194285078,1990001.7611016817,-0.0,0.0,-0.0,0.0,210.78371302846335,182840.22082884316,384,53000.0,1239.904194285078,-8427.038482153448,1383253.4273887617,1050.0,403200.0,1515.9340254377553,705066.2629026024,-11305.78503518612,189978.03008023326,0.0,0.0,1586.4337964948804,484451.48926961445,-223.62126889996316,3757.64513631209,-1239.904194285078,-2196790.4818790983,true,true,15.24431132,4731.0563726189985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,385,0.9067413772411596,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576062.86144928,2171812.8614492724,404250.0,3674264.580000402,-1098201.7185511312,0.95,0.25,22.0,385,0.0,0.1,0.0,0.0,1050.0,404250.0,13125.0,5053125.0,13125.0,5053125.0,true,385,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1988761.8569073966,-1029.1204812566145,2171812.8614492724,-1239.904194285078,1988761.8569073966,-0.0,0.0,-0.0,0.0,210.78371302846335,183051.00454187163,385,53000.0,1239.904194285078,-3794.7498210541635,1379458.6775677076,1050.0,404250.0,1413.1950420396463,706479.457944642,-6626.627611098097,183351.40246913518,0.0,0.0,1549.7532460112302,486001.24251562566,-131.07049800694298,3626.574638305147,-1239.904194285078,-2198030.3860733835,true,true,14.97608297,4746.032455588998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,386,0.9067413656298156,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576083.7409680234,2170783.740968016,405300.0,3674285.4281685166,-1098201.6872005025,0.95,0.25,22.0,386,0.0,0.1,0.0,0.0,1050.0,405300.0,13125.0,5066250.0,13125.0,5066250.0,true,386,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1987521.9527131114,-1029.1204812566145,2170783.740968016,-1239.904194285078,1987521.9527131114,-0.0,0.0,-0.0,0.0,210.78371302846335,183261.7882549001,386,53000.0,1239.904194285078,-19968.8747364917,1359489.802831216,1050.0,405300.0,1250.5357386632681,707729.9936833053,-22266.84127236801,161084.56119676717,0.0,0.0,1487.8548176790405,487489.0973333047,-440.4240204660007,3186.1506178391464,-1239.904194285078,-2199270.2902676687,true,true,14.03728374,4760.069739328998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,387,0.9067413540184716,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576104.620486767,2169754.6204867596,406350.0,3674306.2763366313,-1098201.6558498738,0.95,0.25,22.0,387,0.0,0.1,0.0,0.0,1050.0,406350.0,13125.0,5079375.0,13125.0,5079375.0,true,387,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1986282.0485188263,-1029.1204812566145,2169754.6204867596,-1239.904194285078,1986282.0485188263,-0.0,0.0,-0.0,0.0,210.78371302846335,183472.57196792858,387,53000.0,1239.904194285078,-21759.05402763917,1337730.748803577,1050.0,406350.0,1008.0285512257459,708738.0222345311,-23683.332038125234,137401.22915864195,0.0,0.0,1384.6907701168464,488873.78810342157,-468.4413108565299,2717.7093069826165,-1239.904194285078,-2200510.194461954,true,true,12.96437033,4773.034109658998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,388,0.9067413424071276,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576125.5000055106,2168725.500005503,407400.0,3674327.124504746,-1098201.624499245,0.95,0.25,22.0,388,0.0,0.1,0.0,0.0,1050.0,407400.0,13125.0,5092500.0,13125.0,5092500.0,true,388,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1985042.144324541,-1029.1204812566145,2168725.500005503,-1239.904194285078,1985042.144324541,-0.0,0.0,-0.0,0.0,210.78371302846335,183683.35568095706,388,53000.0,1239.904194285078,-28072.011492323963,1309658.7373112529,1050.0,407400.0,748.7278650449392,709486.7500995761,-29491.433781926746,107909.79537671519,0.0,0.0,1254.0163100765271,490127.8044134981,-583.3218855186849,2134.387421463932,-1239.904194285078,-2201750.098656239,true,true,11.4891144,4784.5232240589985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,389,0.9067413307957836,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576146.3795242542,2167696.379524247,408450.0,3674347.9726728606,-1098201.5931486164,0.95,0.25,22.0,389,0.0,0.1,0.0,0.0,1050.0,408450.0,13125.0,5105625.0,13125.0,5105625.0,true,389,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1983802.240130256,-1029.1204812566145,2167696.379524247,-1239.904194285078,1983802.240130256,-0.0,0.0,-0.0,0.0,210.78371302846335,183894.13939398553,389,53000.0,1239.904194285078,-20262.6903555588,1289396.046955694,1050.0,408450.0,528.3830791839623,710015.1331787601,-21482.624963455437,86427.17041325975,0.0,0.0,1116.4642471730854,491244.2686606712,-424.91271846040854,1709.4747030035232,-1239.904194285078,-2202990.002850524,true,true,10.28208682,4794.805310878998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,390,0.9067413191844396,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576167.259042998,2166667.2590429904,409500.0,3674368.8208409753,-1098201.5617979877,0.95,0.25,22.0,390,0.0,0.1,0.0,0.0,1050.0,409500.0,13125.0,5118750.0,13125.0,5118750.0,true,390,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1982562.3359359708,-1029.1204812566145,2166667.2590429904,-1239.904194285078,1982562.3359359708,-0.0,0.0,-0.0,0.0,210.78371302846335,184104.923107014,390,53000.0,1239.904194285078,-18114.31167981116,1271281.7352758828,1050.0,409500.0,371.3861527013293,710386.5193314614,-19100.568081011905,67326.60233224784,0.0,0.0,992.6673902010156,492236.9360508722,-377.79714170159826,1331.677561301925,-1239.904194285078,-2204229.9070448093,true,true,9.075059234,4803.880370112998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,391,0.9067413075730956,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576188.1385617414,2165638.138561734,410550.0,3674389.66900909,-1098201.530447359,0.95,0.25,22.0,391,0.0,0.1,0.0,0.0,1050.0,410550.0,13125.0,5131875.0,13125.0,5131875.0,true,391,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1981322.4317416856,-1029.1204812566145,2165638.138561734,-1239.904194285078,1981322.4317416856,-0.0,0.0,-0.0,0.0,210.78371302846335,184315.70682004248,391,53000.0,1239.904194285078,-16520.33550843162,1254761.3997674512,1050.0,410550.0,247.07990011206834,710633.5992315735,-17291.969206042442,50034.6331262054,0.0,0.0,866.5779987019239,493103.51404957415,-342.02420120317186,989.6533600987531,-1239.904194285078,-2205469.8112390945,true,true,7.823326926,4811.703697038998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,392,0.9067412959617516,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576209.018080485,2164609.0180804776,411600.0,3674410.5171772046,-1098201.4990967303,0.95,0.25,22.0,392,0.0,0.1,0.0,0.0,1050.0,411600.0,13125.0,5145000.0,13125.0,5145000.0,true,392,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1980082.5275474004,-1029.1204812566145,2164609.0180804776,-1239.904194285078,1980082.5275474004,-0.0,0.0,-0.0,0.0,210.78371302846335,184526.49053307096,392,53000.0,1239.904194285078,-15111.037282138452,1239650.3624853129,1050.0,411600.0,149.9035619574934,710783.502793531,-15684.32581534797,34350.30731085743,0.0,0.0,733.6110041858642,493837.12505376,-310.22603293384003,679.4273271649131,-1239.904194285078,-2206709.7154333796,true,true,6.482185167,4818.1858822059985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,393,0.9067412843504076,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576229.8975992287,2163579.897599221,412650.0,3674431.3653453193,-1098201.4677461016,0.95,0.25,22.0,393,0.0,0.1,0.0,0.0,1050.0,412650.0,13125.0,5158125.0,13125.0,5158125.0,true,393,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1978842.6233531153,-1029.1204812566145,2163579.897599221,-1239.904194285078,1978842.6233531153,-0.0,0.0,-0.0,0.0,210.78371302846335,184737.27424609943,393,53000.0,1239.904194285078,-10345.2519231093,1229305.1105622035,1050.0,412650.0,85.1333335626886,710868.6361270937,-10823.818591672552,23526.48871918488,0.0,0.0,607.5216128406175,494444.64666660066,-214.08827784005237,465.33904932486075,-1239.904194285078,-2207949.619627665,true,true,5.364567035,4823.550449240998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,394,0.9067412727390636,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576250.7771179723,2162550.777117965,413700.0,3674452.213513434,-1098201.4363954728,0.95,0.25,22.0,394,0.0,0.1,0.0,0.0,1050.0,413700.0,13125.0,5171250.0,13125.0,5171250.0,true,394,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1977602.7191588301,-1029.1204812566145,2162550.777117965,-1239.904194285078,1977602.7191588301,-0.0,0.0,-0.0,0.0,210.78371302846335,184948.0579591279,394,53000.0,1239.904194285078,-10865.992324699231,1218439.1182375043,1050.0,413700.0,40.576357094691346,710909.2124841884,-11160.378088547834,12366.110630637046,0.0,0.0,474.5546183245579,494919.2012849252,-220.74521157064694,244.5938377542138,-1239.904194285078,-2209189.52382195,true,true,3.8893111,4827.439760340998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,395,0.9067412611277196,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576271.656636716,2161521.6566367084,414750.0,3674473.0616815486,-1098201.4050448441,0.95,0.25,22.0,395,0.0,0.1,0.0,0.0,1050.0,414750.0,13125.0,5184375.0,13125.0,5184375.0,true,395,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1976362.814964545,-1029.1204812566145,2161521.6566367084,-1239.904194285078,1976362.814964545,-0.0,0.0,-0.0,0.0,210.78371302846335,185158.84167215638,395,53000.0,1239.904194285078,-7416.288118195506,1211022.8301193088,1050.0,414750.0,12.823877345532877,710922.0363615339,-7601.996664015146,4764.1139666219,0.0,0.0,323.2473487205182,495242.4486336457,-150.36268024641166,94.23115750780215,-1239.904194285078,-2210429.428016235,true,true,2.414055166,4829.853815506998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,396,0.9067412495163756,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2576292.5361554595,2160492.536155452,415800.0,3674493.9098496633,-1098201.3736942154,0.95,0.25,22.0,396,0.0,0.1,0.0,0.0,1050.0,415800.0,13125.0,5197500.0,13125.0,5197500.0,true,396,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,1975122.9107702598,-1029.1204812566145,2160492.536155452,-1239.904194285078,1975122.9107702598,-0.0,0.0,-0.0,0.0,210.78371302846335,185369.62538518486,396,53000.0,1239.904194285078,-3949.725370908473,1207073.1047484004,1050.0,415800.0,1.9299488895358692,710923.9663104234,-4043.615249788465,720.4987168334346,0.0,0.0,171.9400791164785,495414.3887127622,-79.9801491260225,14.251008381779656,-1239.904194285078,-2211669.3322105203,true,true,0.938799231,4830.7926147379985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,397,0.9067409824983762,666.0,0.0,480.1517664290002,-569.8482335709998,1050.0,479.43081783075843,0.7209485982417421,2576772.6879218887,2159922.687921881,416850.0,3674973.340667494,-1098200.652745617,0.95,0.25,22.0,397,0.0,0.1,0.0,0.0,1050.0,416850.0,13125.0,5210625.0,13125.0,5210625.0,true,397,0.83,53000.0,1239.904194285078,0.0,-686.5641368325299,1974436.3466334273,-569.8482335709998,2159922.687921881,-686.5641368325299,1974436.3466334273,-0.0,0.0,-0.0,0.0,116.71590326153012,185486.3412884464,397,53000.0,1239.904194285078,-686.5641368325299,1206386.540611568,1050.0,416850.0,0.04236623800142991,710924.0086766614,-720.4987168331614,2.731894710450433e-10,0.0,0.0,48.14322214440891,495462.5319349066,-14.251008381778824,8.313350008393172e-13,-686.5641368325299,-2212355.896347353,true,true,0.0,4830.7926147379985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,398,0.9067403985811257,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2577822.6879218887,2159922.687921881,417900.0,3676021.7640909175,-1098199.0761690405,0.95,0.25,22.0,398,0.0,0.1,0.0,0.0,1050.0,417900.0,13125.0,5223750.0,13125.0,5223750.0,true,398,0.83,53000.0,1239.904194285078,0.0,0.0,1974436.3466334273,0.0,2159922.687921881,0.0,1974436.3466334273,-0.0,0.0,-0.0,0.0,0.0,185486.3412884464,398,53000.0,1239.904194285078,0.0,1206386.540611568,1050.0,417900.0,0.0,710924.0086766614,0.0,2.731894710450433e-10,0.0,0.0,0.0,495462.5319349066,0.0,8.313350008393172e-13,0.0,-2212355.896347353,true,true,0.0,4830.7926147379985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,399,0.9067398146638751,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2578872.6879218887,2159922.687921881,418950.0,3677070.187514341,-1098197.499592464,0.95,0.25,22.0,399,0.0,0.1,0.0,0.0,1050.0,418950.0,13125.0,5236875.0,13125.0,5236875.0,true,399,0.83,53000.0,1239.904194285078,0.0,0.0,1974436.3466334273,0.0,2159922.687921881,0.0,1974436.3466334273,-0.0,0.0,-0.0,0.0,0.0,185486.3412884464,399,53000.0,1239.904194285078,0.0,1206386.540611568,1050.0,418950.0,0.0,710924.0086766614,0.0,2.731894710450433e-10,0.0,0.0,0.0,495462.5319349066,0.0,8.313350008393172e-13,0.0,-2212355.896347353,true,true,0.0,4830.7926147379985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,400,0.9067392307466245,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2579922.6879218887,2159922.687921881,420000.0,3678118.6109377644,-1098195.9230158874,0.95,0.25,22.0,400,0.0,0.1,0.0,0.0,1050.0,420000.0,13125.0,5250000.0,13125.0,5250000.0,true,400,0.83,53000.0,1239.904194285078,0.0,0.0,1974436.3466334273,0.0,2159922.687921881,0.0,1974436.3466334273,-0.0,0.0,-0.0,0.0,0.0,185486.3412884464,400,53000.0,1239.904194285078,0.0,1206386.540611568,1050.0,420000.0,0.0,710924.0086766614,0.0,2.731894710450433e-10,0.0,0.0,0.0,495462.5319349066,0.0,8.313350008393172e-13,0.0,-2212355.896347353,true,true,0.0,4830.7926147379985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,401,0.906738646829374,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2580972.6879218887,2159922.687921881,421050.0,3679167.034361188,-1098194.3464393108,0.95,0.25,22.0,401,0.0,0.1,0.0,0.0,1050.0,421050.0,13125.0,5263125.0,13125.0,5263125.0,true,401,0.83,53000.0,1239.904194285078,0.0,0.0,1974436.3466334273,0.0,2159922.687921881,0.0,1974436.3466334273,-0.0,0.0,-0.0,0.0,0.0,185486.3412884464,401,53000.0,1239.904194285078,0.0,1206386.540611568,1050.0,421050.0,0.0,710924.0086766614,0.0,2.731894710450433e-10,0.0,0.0,0.0,495462.5319349066,0.0,8.313350008393172e-13,0.0,-2212355.896347353,true,true,0.0,4830.7926147379985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,402,0.9067380629121234,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2582022.6879218887,2159922.687921881,422100.0,3680215.4577846113,-1098192.7698627342,0.95,0.25,22.0,402,0.0,0.1,0.0,0.0,1050.0,422100.0,13125.0,5276250.0,13125.0,5276250.0,true,402,0.83,53000.0,1239.904194285078,0.0,0.0,1974436.3466334273,0.0,2159922.687921881,0.0,1974436.3466334273,-0.0,0.0,-0.0,0.0,0.0,185486.3412884464,402,53000.0,1239.904194285078,0.0,1206386.540611568,1050.0,422100.0,0.0,710924.0086766614,0.0,2.731894710450433e-10,0.0,0.0,0.0,495462.5319349066,0.0,8.313350008393172e-13,0.0,-2212355.896347353,true,true,0.0,4830.7926147379985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,403,0.906736705239188,666.0,0.0,2441.367472393441,1391.3674723934412,1050.0,2437.701755467925,3.665716925515677,2584464.055394282,2161314.0553942746,423150.0,3682653.159540079,-1098189.1041458088,0.95,0.25,22.0,403,0.0,0.1,0.0,0.0,1050.0,423150.0,13125.0,5289375.0,13125.0,5289375.0,true,403,0.8523767797270895,53000.0,1239.904194285078,0.0,1185.9693255357415,1975622.315958963,1391.3674723934412,2161314.0553942746,1185.9693255357415,1975622.315958963,-0.0,0.0,-0.0,0.0,205.39814685769966,185691.7394353041,403,53000.0,1239.904194285078,1185.9693255357415,1207572.5099371036,1050.0,423150.0,0.08040481591743547,710924.0890814774,1104.437943442443,1104.437943442716,0.0,0.0,59.605894112857726,495522.13782901946,21.845083164523423,21.845083164524254,-1185.9693255357415,-2213541.8656728887,true,true,1.162322858,4831.954937595999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,404,0.9067331312504434,666.0,0.0,6426.746560549322,5376.746560549322,1050.0,6417.096790938887,9.649769610434417,2590890.8019548315,2166690.801954824,424200.0,3689070.256331018,-1098179.4543761984,0.95,0.25,22.0,404,0.0,0.1,0.0,0.0,1050.0,424200.0,13125.0,5302500.0,13125.0,5302500.0,true,404,0.9059536129474772,53000.0,1239.904194285078,0.0,4871.0829724325795,1980493.3989313955,5376.746560549322,2166690.801954824,4871.0829724325795,1980493.3989313955,-0.0,0.0,-0.0,0.0,505.6635881167422,186197.40302342083,404,53000.0,1239.904194285078,4871.0829724325795,1212443.592909536,1050.0,424200.0,2.8094337466040837,710926.898515224,4582.763946734242,5687.201890176959,0.0,0.0,194.86542300209442,495717.00325202156,90.64416894963944,112.48925211416369,-4871.0829724325795,-2218412.948645321,true,true,2.637578792,4834.592516387998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,405,0.906727325449468,666.0,0.0,10439.991314053816,9389.991314053816,1050.0,10424.315651420102,15.675662633714438,2601330.7932688855,2176080.793268878,425250.0,3699494.571982438,-1098163.7787135646,0.95,0.25,22.0,405,0.0,0.1,0.0,0.0,1050.0,425250.0,13125.0,5315625.0,13125.0,5315625.0,true,405,0.9226946988988048,53000.0,1239.904194285078,0.0,8664.095208183278,1989157.4941395787,9389.991314053816,2176080.793268878,8664.095208183278,1989157.4941395787,-0.0,0.0,-0.0,0.0,725.8961058705372,186923.29912929138,405,53000.0,1239.904194285078,8664.095208183278,1221107.6881177193,1050.0,425250.0,15.750446123401934,710942.6489613474,8141.145369220347,13828.347259397306,0.0,0.0,346.17269260613415,496063.17594462767,161.02670023339473,273.5159523475584,-8664.095208183278,-2227077.0438535046,true,true,4.112834727,4838.705351114998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,406,0.9067192959284478,666.0,0.0,14438.684698411907,13388.684698411907,1050.0,14417.004991657535,21.679706754372233,2615769.477967297,2189469.4779672897,426300.0,3713911.576974096,-1098142.0990068102,0.95,0.25,22.0,406,0.0,0.1,0.0,0.0,1050.0,426300.0,13125.0,5328750.0,13125.0,5328750.0,true,406,0.9317690204017999,53000.0,1239.904194285078,0.0,12475.161625907831,2001632.6557654864,13388.684698411907,2189469.4779672897,12475.161625907831,2001632.6557654864,-0.0,0.0,-0.0,0.0,913.5230725040765,187836.82220179547,406,53000.0,1239.904194285078,12475.161625907831,1233582.849743627,1050.0,426300.0,46.74565172929302,710989.3946130767,11699.52678066952,25527.874040066825,0.0,0.0,497.4799622101738,496560.65590683784,231.40923129884658,504.925183646405,-12475.161625907831,-2239552.2054794123,true,true,5.588090661,4844.293441775998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,407,0.9067090140229603,666.0,0.0,18488.92244745857,17438.92244745857,1050.0,18461.16130264257,27.76114481600386,2634258.4004147556,2206908.400414748,427350.0,3732372.738276738,-1098114.3378619943,0.95,0.25,22.0,407,0.0,0.1,0.0,0.0,1050.0,427350.0,13125.0,5341875.0,13125.0,5341875.0,true,407,0.9353888429149162,53000.0,1239.904194285078,0.0,16312.173489811232,2017944.8292552975,17438.92244745857,2206908.400414748,16312.173489811232,2017944.8292552975,-0.0,0.0,-0.0,0.0,1126.74895764734,188963.5711594428,407,53000.0,1239.904194285078,16312.173489811232,1249895.0232334381,1050.0,427350.0,103.68628733928757,711093.080900416,15257.908207979712,40785.78224804654,0.0,0.0,648.7872318142134,497209.4431386521,301.7917626780192,806.7169463244243,-16312.173489811232,-2255864.3789692237,true,true,7.063346596,4851.356788371998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,408,0.9066964774657796,666.0,0.0,22543.237122318915,21493.237122318915,1050.0,22509.388417931048,33.84870438786624,2656801.6375370743,2228401.637537067,428400.0,3754882.1266946695,-1098080.4891576064,0.95,0.25,22.0,408,0.0,0.1,0.0,0.0,1050.0,428400.0,13125.0,5355000.0,13125.0,5355000.0,true,408,0.9390405867918863,53000.0,1239.904194285078,0.0,20183.02199939951,2038127.851254697,21493.237122318915,2228401.637537067,20183.02199939951,2038127.851254697,-0.0,0.0,-0.0,0.0,1310.215122919406,190273.7862823622,408,53000.0,1239.904194285078,20183.02199939951,1270078.0452328376,1050.0,428400.0,194.4635897283959,711287.5444901444,18816.289614604808,59602.07186265135,0.0,0.0,800.0945014182532,498009.5376400703,372.17429364805366,1178.891239972478,-20183.02199939951,-2276047.4009686233,true,true,8.53860253,4859.895390901998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,409,0.9066816383960039,666.0,0.0,26683.615270800383,25633.615270800383,1050.0,26643.54978240579,40.06548839459517,2683485.2528078747,2254035.2528078672,429450.0,3781525.676477075,-1098040.4236692118,0.95,0.25,22.0,409,0.0,0.1,0.0,0.0,1050.0,429450.0,13125.0,5368125.0,13125.0,5368125.0,true,409,0.94,53000.0,1239.904194285078,0.0,24095.59835455236,2062223.4496092494,25633.615270800383,2254035.2528078672,24095.59835455236,2062223.4496092494,-0.0,0.0,-0.0,0.0,1538.0169162480233,191811.80319861023,409,53000.0,1239.904194285078,24095.59835455236,1294173.64358739,1050.0,429450.0,326.9687954072679,711614.5132855516,22374.670964875768,81976.74282752711,0.0,0.0,951.4017707658844,498960.9394108362,442.5568235034392,1621.448063475917,-24095.59835455236,-2300142.9993231758,true,true,10.01385846,4869.909249361998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,410,0.9066679758825557,666.0,0.0,24567.931682584727,23517.931682584727,1050.0,24531.04289627454,36.88878631018728,2708053.1844904595,2277553.184490452,430500.0,3806056.7193733496,-1098003.5348829017,0.95,0.25,22.0,410,0.0,0.1,0.0,0.0,1050.0,430500.0,13125.0,5381250.0,13125.0,5381250.0,true,410,0.94,53000.0,1239.904194285078,0.0,22106.85578162964,2084330.305390879,23517.931682584727,2277553.184490452,22106.85578162964,2084330.305390879,-0.0,0.0,-0.0,0.0,1411.0759009550857,193222.87909956533,410,53000.0,1239.904194285078,22106.85578162964,1316280.4993690196,1050.0,430500.0,487.18851549698564,712101.7018010486,20134.753296193256,102111.49612372037,0.0,0.0,1086.6612995525577,500047.60071038874,398.2526703868408,2019.7007338627577,-22106.85578162964,-2322249.8551048054,true,true,11.17618132,4881.085430681998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,411,0.9066632556186042,666.0,0.0,8487.978637539876,7437.978637539877,1050.0,8475.233924870898,12.744712668978794,2716541.1631279993,2284991.163127992,431550.0,3814531.9532982204,-1097990.7901702328,0.95,0.25,22.0,411,0.0,0.1,0.0,0.0,1050.0,431550.0,13125.0,5394375.0,13125.0,5394375.0,true,411,0.915701774478989,53000.0,1239.904194285078,0.0,6810.9702369320785,2091141.2756278112,7437.978637539877,2284991.163127992,6810.9702369320785,2091141.2756278112,-0.0,0.0,-0.0,0.0,627.0084006077986,193849.88750017312,411,53000.0,1239.904194285078,6810.9702369320785,1323091.4696059518,1050.0,431550.0,592.6708504283539,712694.372651477,4960.16800427034,107071.6641279907,0.0,0.0,1160.0224000070414,501207.6231103958,98.10898222634322,2117.809716089101,-6810.9702369320785,-2329060.8253417374,true,true,11.44440967,4892.529840351998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,412,0.9066515740864343,666.0,0.0,21005.731147906263,19955.731147906263,1050.0,20974.191011047544,31.540136858718114,2737546.8942759056,2304946.894275898,432600.0,3835506.144309268,-1097959.250033374,0.95,0.25,22.0,412,0.0,0.1,0.0,0.0,1050.0,432600.0,13125.0,5407500.0,13125.0,5407500.0,true,412,0.9376523953892242,53000.0,1239.904194285078,0.0,18711.53911257766,2109852.8147403887,19955.731147906263,2304946.894275898,18711.53911257766,2109852.8147403887,-0.0,0.0,-0.0,0.0,1244.192035328604,195094.07953550172,412,53000.0,1239.904194285078,18711.53911257766,1341803.0087185295,1050.0,432600.0,684.9290403849411,713379.3016918619,16483.24614151015,123554.91026950086,0.0,0.0,1217.335759592877,502424.9588699887,326.02817108969134,2443.8378871787927,-18711.53911257766,-2347772.364454315,true,true,12.29379945,4904.823639801998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,413,0.9066413340514837,666.0,0.0,18413.630848014636,17363.630848014636,1050.0,18385.982753648248,27.648094366388342,2755960.5251239203,2322310.525123913,433650.0,3853892.1270629163,-1097931.6019390076,0.95,0.25,22.0,413,0.0,0.1,0.0,0.0,1050.0,433650.0,13125.0,5420625.0,13125.0,5420625.0,true,413,0.9353212959501558,53000.0,1239.904194285078,0.0,16240.573707165151,2126093.388447554,17363.630848014636,2322310.525123913,16240.573707165151,2126093.388447554,-0.0,0.0,-0.0,0.0,1123.0571408494852,196217.1366763512,413,53000.0,1239.904194285078,16240.573707165151,1358043.5824256947,1050.0,433650.0,825.1014694265428,714204.4031612885,13846.318889141068,137401.22915864195,0.0,0.0,1295.2819287937145,503720.2407987824,273.8714198038244,2717.709306982617,-16240.573707165151,-2364012.9381614802,true,true,12.96437033,4917.788010131998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,414,0.9066335126469821,666.0,0.0,14064.449574722397,13014.449574722397,1050.0,14043.331782568159,21.117792154237833,2770024.9746986427,2335324.9746986353,434700.0,3867935.4588454845,-1097910.4841468534,0.95,0.25,22.0,414,0.0,0.1,0.0,0.0,1050.0,434700.0,13125.0,5433750.0,13125.0,5433750.0,true,414,0.9314359683415699,53000.0,1239.904194285078,0.0,12122.12644206409,2138215.514889618,13014.449574722397,2335324.9746986353,12122.12644206409,2138215.514889618,-0.0,0.0,-0.0,0.0,892.3231326583082,197109.4598090095,414,53000.0,1239.904194285078,12122.12644206409,1370165.7088677587,1050.0,434700.0,939.5460097084001,715143.9491709969,9639.325391081276,147040.55454972322,0.0,0.0,1352.595288892367,505072.8360876748,190.65975238204672,2908.369059364664,-12122.12644206409,-2376135.0646035443,true,true,13.41141759,4931.199427721998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,415,0.9066308259001113,666.0,0.0,4831.308223025144,3781.3082230251434,1050.0,4824.054006474055,7.254216551088804,2774856.2829216677,2339106.28292166,435750.0,3872759.5128519586,-1097903.2299303024,0.95,0.25,22.0,415,0.0,0.1,0.0,0.0,1050.0,435750.0,13125.0,5446875.0,13125.0,5446875.0,true,415,0.891813409223597,53000.0,1239.904194285078,0.0,3372.2213777012744,2141587.7362673194,3781.3082230251434,2339106.28292166,3372.2213777012744,2141587.7362673194,-0.0,0.0,-0.0,0.0,409.08684532386906,197518.5466543334,415,53000.0,1239.904194285078,3372.2213777012744,1373537.93024546,1050.0,435750.0,993.0827394794525,716137.0319104764,981.9040310002503,148022.45858072347,0.0,0.0,1377.8131672537233,506450.6492549285,19.421439967848524,2927.7904993325124,-3372.2213777012744,-2379507.285981246,true,true,13.45612231,4944.655550031998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,416,0.9066293520580483,666.0,0.0,2650.2627978662595,1600.2627978662595,1050.0,2646.2834242958897,3.979373570369759,2777506.545719534,2340706.5457195267,436800.0,3875405.7962762546,-1097899.250556732,0.95,0.25,22.0,416,0.0,0.1,0.0,0.0,1050.0,436800.0,13125.0,5460000.0,13125.0,5460000.0,true,416,0.855840951618209,53000.0,1239.904194285078,0.0,1369.570435765077,2142957.3067030846,1600.2627978662595,2340706.5457195267,1369.570435765077,2142957.3067030846,-0.0,0.0,-0.0,0.0,230.69236210118243,197749.23901643459,416,53000.0,1239.904194285078,1369.570435765077,1374907.500681225,1050.0,436800.0,993.0827394794525,717130.1146499559,-981.9040310002503,147040.55454972322,0.0,0.0,1377.8131672537233,507828.46242218226,-19.421439967848524,2908.369059364664,-1369.570435765077,-2380876.856417011,true,true,13.41141759,4958.066967621999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,417,0.9066290644496117,666.0,0.0,517.1774908124592,-532.8225091875408,1050.0,516.4009480334614,0.7765427789976864,2778023.7232103464,2340173.723210339,437850.0,3875922.1972242882,-1097898.474013953,0.95,0.25,22.0,417,0.0,0.1,0.0,0.0,1050.0,437850.0,13125.0,5473125.0,13125.0,5473125.0,true,417,0.83,53000.0,1239.904194285078,0.0,-641.9548303464348,2142315.351872738,-532.8225091875408,2340173.723210339,-641.9548303464348,2142315.351872738,-0.0,0.0,-0.0,0.0,109.132321158894,197858.37133759347,417,53000.0,1239.904194285078,-641.9548303464348,1374265.5458508786,1050.0,437850.0,973.3858104782291,718103.5004604341,-2926.1071245438725,144114.44742517936,0.0,0.0,1368.6430297610152,509197.1054519433,-57.8765460418067,2850.492513322857,-641.9548303464348,-2381518.8112473576,true,true,13.27730341,4971.344271031999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,418,0.9066290528382677,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2778044.60272909,2339144.6027290826,438900.0,3875943.045392403,-1097898.4426633243,0.95,0.25,22.0,418,0.0,0.1,0.0,0.0,1050.0,438900.0,13125.0,5486250.0,13125.0,5486250.0,true,418,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2141075.447678453,-1029.1204812566145,2339144.6027290826,-1239.904194285078,2141075.447678453,-0.0,0.0,-0.0,0.0,210.78371302846335,198069.15505062195,418,53000.0,1239.904194285078,-1639.8526708297836,1372625.6931800488,1050.0,438900.0,939.5460097084001,719043.0464701426,-3855.7300701836784,140258.7173549957,0.0,0.0,1352.595288892367,510549.7007408357,-76.2638992468722,2774.2286140759848,-1239.904194285078,-2382758.715441643,true,true,13.09848451,4984.442755541999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,419,0.9066290412269237,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2778065.4822478336,2338115.482247826,439950.0,3875963.8935605176,-1097898.4113126956,0.95,0.25,22.0,419,0.0,0.1,0.0,0.0,1050.0,439950.0,13125.0,5499375.0,13125.0,5499375.0,true,419,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2139835.5434841677,-1029.1204812566145,2338115.482247826,-1239.904194285078,2139835.5434841677,-0.0,0.0,-0.0,0.0,210.78371302846335,198279.93876365043,419,53000.0,1239.904194285078,-2610.8532540351407,1370014.8399260137,1050.0,439950.0,897.20237501206,719940.2488451547,-4746.142416694308,135512.57493830138,0.0,0.0,1331.962479277365,511881.663220113,-93.87569163025798,2680.3529224457266,-1239.904194285078,-2383998.619635928,true,true,12.87496088,4997.317716421999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,420,0.9066290296155797,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2778086.361766577,2337086.36176657,441000.0,3875984.7417286322,-1097898.379962067,0.95,0.25,22.0,420,0.0,0.1,0.0,0.0,1050.0,441000.0,13125.0,5512500.0,13125.0,5512500.0,true,420,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2138595.6392898825,-1029.1204812566145,2337086.36176657,-1239.904194285078,2138595.6392898825,-0.0,0.0,-0.0,0.0,210.78371302846335,198490.7224766789,420,53000.0,1239.904194285078,-5430.2803674759625,1364584.5595585378,1050.0,441000.0,838.314589556235,720778.5634347108,-7423.91416796125,128088.66077034012,0.0,0.0,1302.1595321696543,513183.82275228266,-146.84032124060104,2533.5126012051255,-1239.904194285078,-2385238.523830213,true,true,12.51732308,5009.835039501999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,421,0.9066290180042357,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2778107.241285321,2336057.2412853134,442050.0,3876005.589896747,-1097898.3486114382,0.95,0.25,22.0,421,0.0,0.1,0.0,0.0,1050.0,442050.0,13125.0,5525625.0,13125.0,5525625.0,true,421,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2137355.7350955973,-1029.1204812566145,2336057.2412853134,-1239.904194285078,2137355.7350955973,-0.0,0.0,-0.0,0.0,210.78371302846335,198701.50618970738,421,53000.0,1239.904194285078,-24594.866620329416,1339989.6929382083,1050.0,442050.0,681.0666681565705,721459.6301028674,-25977.164646619727,102111.4961237204,0.0,0.0,1215.0432254761083,514398.8659777588,-513.8118673423677,2019.7007338627577,-1239.904194285078,-2386478.4280244983,true,true,11.17618132,5021.011220821999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,422,0.9066290063928917,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2778128.1208040644,2335028.120804057,443100.0,3876026.4380648616,-1097898.3172608095,0.95,0.25,22.0,422,0.0,0.1,0.0,0.0,1050.0,443100.0,13125.0,5538750.0,13125.0,5538750.0,true,422,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2136115.830901312,-1029.1204812566145,2335028.120804057,-1239.904194285078,2136115.830901312,-0.0,0.0,-0.0,0.0,210.78371302846335,198912.28990273585,422,53000.0,1239.904194285078,-24139.719000138095,1315849.9739380702,1050.0,443100.0,465.9214008916849,721925.5515037591,-25178.244232673736,76933.25189104666,0.0,0.0,1070.613559094163,515469.4795368529,-498.00972745020835,1521.6910064125493,-1239.904194285078,-2387718.3322187834,true,true,9.700925388,5030.7121462099985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,423,0.9066289947815477,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2778149.000322808,2333999.0003228006,444150.0,3876047.2862329762,-1097898.2859101808,0.95,0.25,22.0,423,0.0,0.1,0.0,0.0,1050.0,444150.0,13125.0,5551875.0,13125.0,5551875.0,true,423,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2134875.926707027,-1029.1204812566145,2333999.0003228006,-1239.904194285078,2134875.926707027,-0.0,0.0,-0.0,0.0,210.78371302846335,199123.07361576433,423,53000.0,1239.904194285078,-20833.202033015852,1295016.7719050543,1050.0,444150.0,294.9817415869926,722220.5332453462,-21619.8628669072,55313.38902413946,0.0,0.0,919.3062895926869,516388.7858264456,-427.62719728833036,1094.063809124219,-1239.904194285078,-2388958.2364130686,true,true,8.225669453,5038.937815662998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,424,0.9066289831702037,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2778169.8798415517,2332969.879841544,445200.0,3876068.134401091,-1097898.254559552,0.95,0.25,22.0,424,0.0,0.1,0.0,0.0,1050.0,445200.0,13125.0,5565000.0,13125.0,5565000.0,true,424,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2133636.022512742,-1029.1204812566145,2332969.879841544,-1239.904194285078,2133636.022512742,-0.0,0.0,-0.0,0.0,210.78371302846335,199333.8573287928,424,53000.0,1239.904194285078,-17478.739757352025,1277538.0321477023,1050.0,445200.0,171.9873237677608,722392.5205691139,-18061.48143528457,37251.90758885489,0.0,0.0,767.9990199886472,517156.78484643425,-357.24466582386077,736.8191433003583,-1239.904194285078,-2390198.1406073538,true,true,6.750413519,5045.688229181998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,425,0.9066289715588597,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2778190.7593602953,2331940.759360288,446250.0,3876088.9825692056,-1097898.2232089234,0.95,0.25,22.0,425,0.0,0.1,0.0,0.0,1050.0,446250.0,13125.0,5578125.0,13125.0,5578125.0,true,425,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2132396.1183184567,-1029.1204812566145,2331940.759360288,-1239.904194285078,2132396.1183184567,-0.0,0.0,-0.0,0.0,210.78371302846335,199544.64104182128,425,53000.0,1239.904194285078,-14084.223501814062,1263453.8086458882,1050.0,446250.0,89.04691079288334,722481.5674799068,-14503.100028147846,22748.807560707042,0.0,0.0,616.6917503846076,517773.4765968189,-286.86213484370614,449.95700845665215,-1239.904194285078,-2391438.044801639,true,true,5.275157584,5050.963386765999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,426,0.9066289599475157,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2778211.638879039,2330911.6388790314,447300.0,3876109.8307373202,-1097898.1918582947,0.95,0.25,22.0,426,0.0,0.1,0.0,0.0,1050.0,447300.0,13125.0,5591250.0,13125.0,5591250.0,true,426,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2131156.2141241715,-1029.1204812566145,2330911.6388790314,-1239.904194285078,2131156.2141241715,-0.0,0.0,-0.0,0.0,210.78371302846335,199755.42475484975,426,53000.0,1239.904194285078,-10657.54445815603,1252796.2641877322,1050.0,447300.0,38.269265887349945,722519.8367457942,-10944.718601349294,11804.088959357749,0.0,0.0,465.38448078056786,518238.86107759946,-216.47960347465346,233.4774049819987,-1239.904194285078,-2392677.948995924,true,true,3.79990165,5054.763288415998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,427,0.9066289483361717,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2778232.5183977825,2329882.518397775,448350.0,3876130.678905435,-1097898.160507666,0.95,0.25,22.0,427,0.0,0.1,0.0,0.0,1050.0,448350.0,13125.0,5604375.0,13125.0,5604375.0,true,427,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2129916.3099298864,-1029.1204812566145,2329882.518397775,-1239.904194285078,2129916.3099298864,-0.0,0.0,-0.0,0.0,210.78371302846335,199966.20846787823,427,53000.0,1239.904194285078,-7206.593898334876,1245589.6702893975,1050.0,448350.0,11.76315227615045,722531.5998980703,-7386.337189388473,4417.751769969275,0.0,0.0,314.0772111765282,518552.938288776,-146.0970723990816,87.38033258291708,-1239.904194285078,-2393917.8531902093,true,true,2.324645715,5057.087934130998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,428,0.9066289367248277,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,2778253.397916526,2328853.3979165186,449400.0,3876151.5270735496,-1097898.1291570372,0.95,0.25,22.0,428,0.0,0.1,0.0,0.0,1050.0,449400.0,13125.0,5617500.0,13125.0,5617500.0,true,428,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2128676.405735601,-1029.1204812566145,2328853.3979165186,-1239.904194285078,2128676.405735601,-0.0,0.0,-0.0,0.0,210.78371302846335,200176.9921809067,428,53000.0,1239.904194285078,-3739.263035251751,1241850.4072541457,1050.0,449400.0,1.6373331827270214,722533.2372312531,-3827.95576880277,589.7960011665054,0.0,0.0,162.7699415212068,518715.7082302972,-75.71454115291505,11.665791430002031,-1239.904194285078,-2395157.7573844944,true,true,0.84938978,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,429,0.906628610306174,666.0,0.0,586.9660230167051,-463.03397698329485,1050.0,586.0846926518152,0.8813303648899475,2778840.363939543,2328390.3639395353,450450.0,3876737.6117662014,-1097897.2478266724,0.95,0.25,22.0,429,0.0,0.1,0.0,0.0,1050.0,450450.0,13125.0,5630625.0,13125.0,5630625.0,true,429,0.83,53000.0,1239.904194285078,0.0,-557.8722614256565,2128118.5334741757,-463.03397698329485,2328390.3639395353,-557.8722614256565,2128118.5334741757,-0.0,0.0,-0.0,0.0,94.83828444236161,200271.83046534908,429,53000.0,1239.904194285078,-557.8722614256565,1241292.53499272,1050.0,450450.0,0.03137782377841961,722533.2686090769,-589.7960011662066,2.9888269637012854e-10,0.0,0.0,43.55815334677305,518759.26638364396,-11.665791430001322,7.087663789206999e-13,-557.8722614256565,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,430,0.9066280263889235,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2779890.363939543,2328390.3639395353,451500.0,3877786.035189625,-1097895.6712500958,0.95,0.25,22.0,430,0.0,0.1,0.0,0.0,1050.0,451500.0,13125.0,5643750.0,13125.0,5643750.0,true,430,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,430,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,451500.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,431,0.9066274424716729,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2780940.363939543,2328390.3639395353,452550.0,3878834.4586130483,-1097894.0946735193,0.95,0.25,22.0,431,0.0,0.1,0.0,0.0,1050.0,452550.0,13125.0,5656875.0,13125.0,5656875.0,true,431,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,431,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,452550.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,432,0.9066268585544224,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2781990.363939543,2328390.3639395353,453600.0,3879882.8820364717,-1097892.5180969427,0.95,0.25,22.0,432,0.0,0.1,0.0,0.0,1050.0,453600.0,13125.0,5670000.0,13125.0,5670000.0,true,432,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,432,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,453600.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,433,0.9066262746371718,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2783040.363939543,2328390.3639395353,454650.0,3880931.305459895,-1097890.9415203661,0.95,0.25,22.0,433,0.0,0.1,0.0,0.0,1050.0,454650.0,13125.0,5683125.0,13125.0,5683125.0,true,433,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,433,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,454650.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,434,0.9066256907199213,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2784090.363939543,2328390.3639395353,455700.0,3881979.7288833186,-1097889.3649437896,0.95,0.25,22.0,434,0.0,0.1,0.0,0.0,1050.0,455700.0,13125.0,5696250.0,13125.0,5696250.0,true,434,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,434,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,455700.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,435,0.9066251068026707,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2785140.363939543,2328390.3639395353,456750.0,3883028.152306742,-1097887.788367213,0.95,0.25,22.0,435,0.0,0.1,0.0,0.0,1050.0,456750.0,13125.0,5709375.0,13125.0,5709375.0,true,435,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,435,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,456750.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,436,0.9066245228854202,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2786190.363939543,2328390.3639395353,457800.0,3884076.5757301655,-1097886.2117906364,0.95,0.25,22.0,436,0.0,0.1,0.0,0.0,1050.0,457800.0,13125.0,5722500.0,13125.0,5722500.0,true,436,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,436,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,457800.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,437,0.9066239389681696,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2787240.363939543,2328390.3639395353,458850.0,3885124.999153589,-1097884.6352140598,0.95,0.25,22.0,437,0.0,0.1,0.0,0.0,1050.0,458850.0,13125.0,5735625.0,13125.0,5735625.0,true,437,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,437,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,458850.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,438,0.9066233550509191,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2788290.363939543,2328390.3639395353,459900.0,3886173.4225770123,-1097883.0586374833,0.95,0.25,22.0,438,0.0,0.1,0.0,0.0,1050.0,459900.0,13125.0,5748750.0,13125.0,5748750.0,true,438,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,438,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,459900.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,439,0.9066227711336685,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2789340.363939543,2328390.3639395353,460950.0,3887221.8460004358,-1097881.4820609067,0.95,0.25,22.0,439,0.0,0.1,0.0,0.0,1050.0,460950.0,13125.0,5761875.0,13125.0,5761875.0,true,439,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,439,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,460950.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,440,0.906622187216418,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2790390.363939543,2328390.3639395353,462000.0,3888270.269423859,-1097879.9054843301,0.95,0.25,22.0,440,0.0,0.1,0.0,0.0,1050.0,462000.0,13125.0,5775000.0,13125.0,5775000.0,true,440,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,440,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,462000.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,441,0.9066216032991674,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2791440.363939543,2328390.3639395353,463050.0,3889318.6928472826,-1097878.3289077536,0.95,0.25,22.0,441,0.0,0.1,0.0,0.0,1050.0,463050.0,13125.0,5788125.0,13125.0,5788125.0,true,441,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,441,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,463050.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,442,0.9066210193819169,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2792490.363939543,2328390.3639395353,464100.0,3890367.116270706,-1097876.752331177,0.95,0.25,22.0,442,0.0,0.1,0.0,0.0,1050.0,464100.0,13125.0,5801250.0,13125.0,5801250.0,true,442,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,442,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,464100.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,443,0.9066204354646663,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2793540.363939543,2328390.3639395353,465150.0,3891415.5396941295,-1097875.1757546004,0.95,0.25,22.0,443,0.0,0.1,0.0,0.0,1050.0,465150.0,13125.0,5814375.0,13125.0,5814375.0,true,443,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,443,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,465150.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,444,0.9066198515474158,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2794590.363939543,2328390.3639395353,466200.0,3892463.963117553,-1097873.5991780239,0.95,0.25,22.0,444,0.0,0.1,0.0,0.0,1050.0,466200.0,13125.0,5827500.0,13125.0,5827500.0,true,444,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,444,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,466200.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,445,0.9066192676301652,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2795640.363939543,2328390.3639395353,467250.0,3893512.3865409764,-1097872.0226014473,0.95,0.25,22.0,445,0.0,0.1,0.0,0.0,1050.0,467250.0,13125.0,5840625.0,13125.0,5840625.0,true,445,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,445,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,467250.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,446,0.9066186837129147,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2796690.363939543,2328390.3639395353,468300.0,3894560.8099644,-1097870.4460248707,0.95,0.25,22.0,446,0.0,0.1,0.0,0.0,1050.0,468300.0,13125.0,5853750.0,13125.0,5853750.0,true,446,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,446,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,468300.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,447,0.9066180997956641,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,2797740.363939543,2328390.3639395353,469350.0,3895609.233387823,-1097868.8694482942,0.95,0.25,22.0,447,0.0,0.1,0.0,0.0,1050.0,469350.0,13125.0,5866875.0,13125.0,5866875.0,true,447,0.83,53000.0,1239.904194285078,0.0,0.0,2128118.5334741757,0.0,2328390.3639395353,0.0,2128118.5334741757,-0.0,0.0,-0.0,0.0,0.0,200271.83046534908,447,53000.0,1239.904194285078,0.0,1241292.53499272,1050.0,469350.0,0.0,722533.2686090769,0.0,2.9888269637012854e-10,0.0,0.0,0.0,518759.26638364396,0.0,7.087663789206999e-13,0.0,-2395715.62964592,true,true,0.0,5057.937323910998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,448,0.9066163015942383,666.0,0.0,3233.5258038302586,2183.5258038302586,1050.0,3228.6706599806635,4.855143849594983,2800973.8897433733,2330573.889743366,470400.0,3898837.904047804,-1097864.0143044447,0.95,0.25,22.0,448,0.0,0.1,0.0,0.0,1050.0,470400.0,13125.0,5880000.0,13125.0,5880000.0,true,448,0.8656641511605643,53000.0,1239.904194285078,0.0,1890.2000115099095,2130008.7334856857,2183.5258038302586,2330573.889743366,1890.2000115099095,2130008.7334856857,-0.0,0.0,-0.0,0.0,293.32579232034914,200565.15625766944,448,53000.0,1239.904194285078,1890.2000115099095,1243182.73500423,1050.0,470400.0,0.1644007663132048,722533.4330098432,1779.1907102928521,1779.190710293151,0.0,0.0,75.6536348276607,518834.9200184716,35.1912656230833,35.19126562308401,-1890.2000115099095,-2397605.82965743,true,true,1.475255935,5059.412579845998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,449,0.9066122552733069,666.0,0.0,7276.0942989123205,6226.0942989123205,1050.0,7265.169232397438,10.925066514883364,2808249.9840422855,2336799.984042278,471450.0,3906103.0732802013,-1097853.0892379298,0.95,0.25,22.0,449,0.0,0.1,0.0,0.0,1050.0,471450.0,13125.0,5893125.0,13125.0,5893125.0,true,449,0.9114133798035753,53000.0,1239.904194285078,0.0,5674.54564794745,2135683.2791336332,6226.0942989123205,2336799.984042278,5674.54564794745,2135683.2791336332,-0.0,0.0,-0.0,0.0,551.5486509648708,201116.7049086343,449,53000.0,1239.904194285078,5674.54564794745,1248857.2806521773,1050.0,471450.0,4.4388206874476825,722537.8718305307,5337.57212605447,7116.762836347621,0.0,0.0,226.96090443170038,519061.8809229033,105.5737967738325,140.7650623969165,-5674.54564794745,-2403280.3753053774,true,true,2.950511869,5062.3630917149985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,450,0.9066059820800145,666.0,0.0,11280.45617830062,10230.45617830062,1050.0,11263.51855641128,16.93762188934027,2819530.440220586,2347030.4402205786,472500.0,3917366.5918366127,-1097836.1516160404,0.95,0.25,22.0,450,0.0,0.1,0.0,0.0,1050.0,472500.0,13125.0,5906250.0,13125.0,5906250.0,true,450,0.9257385967808608,53000.0,1239.904194285078,0.0,9470.728146928102,2145154.007280561,10230.45617830062,2347030.4402205786,9470.728146928102,2145154.007280561,-0.0,0.0,-0.0,0.0,759.7280313725169,201876.4329400068,450,53000.0,1239.904194285078,9470.728146928102,1258328.0087991054,1050.0,472500.0,20.55009577243478,722558.4219263032,8895.95354905222,16012.716385399839,0.0,0.0,378.2681740357401,519440.1490969391,175.95632806770777,316.7213904646243,-9470.728146928102,-2412751.1034523053,true,true,4.425767804,5066.788859518999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,451,0.906597474751566,666.0,0.0,15297.878016075163,14247.878016075163,1050.0,15274.90822926424,22.96978681092367,2834828.318236661,2361278.3182366537,473550.0,3932641.500065877,-1097813.1818292295,0.95,0.25,22.0,451,0.0,0.1,0.0,0.0,1050.0,473550.0,13125.0,5919375.0,13125.0,5919375.0,true,451,0.9325345648354235,53000.0,1239.904194285078,0.0,13286.63872554885,2158440.64600611,14247.878016075163,2361278.3182366537,13286.63872554885,2158440.64600611,-0.0,0.0,-0.0,0.0,961.2392905263132,202837.67223053312,451,53000.0,1239.904194285078,13286.63872554885,1271614.6475246542,1050.0,473550.0,56.389462796284725,722614.8113890995,12454.334959989745,28467.051345389584,0.0,0.0,529.5754436397798,519969.72454057884,246.33885912303964,563.060249587664,-13286.63872554885,-2426037.7421778543,true,true,5.901023738,5072.689883256999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,452,0.9065867149229447,666.0,0.0,19348.32382684558,18298.32382684558,1050.0,19319.272289568034,29.051537277545915,2854176.642063507,2379576.6420634994,474600.0,3951960.772355445,-1097784.1302919518,0.95,0.25,22.0,452,0.0,0.1,0.0,0.0,1050.0,474600.0,13125.0,5932500.0,13125.0,5932500.0,true,452,0.9361605364623601,53000.0,1239.904194285078,0.0,17130.168650101743,2175570.814656212,18298.32382684558,2379576.6420634994,17130.168650101743,2175570.814656212,-0.0,0.0,-0.0,0.0,1168.155176743836,204005.82740727696,452,53000.0,1239.904194285078,17130.168650101743,1288744.8161747558,1050.0,474600.0,119.84815853400774,722734.6595476335,16012.71638781158,44479.767733201166,0.0,0.0,680.8827132438195,520650.6072538227,316.7213905123323,879.7816400999963,-17130.168650101743,-2443167.910827956,true,true,7.376279673,5080.066162929998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,453,0.9065736994058105,666.0,0.0,23404.502910892228,22354.502910892228,1050.0,23369.361014629627,35.141896262600945,2877581.144974399,2401931.1449743914,475650.0,3975330.133370075,-1097748.9883956893,0.95,0.25,22.0,453,0.0,0.1,0.0,0.0,1050.0,475650.0,13125.0,5945625.0,13125.0,5945625.0,true,453,0.9398200086018922,53000.0,1239.904194285078,0.0,21009.209118005758,2196580.023774218,22354.502910892228,2401931.1449743914,21009.209118005758,2196580.023774218,-0.0,0.0,-0.0,0.0,1345.2937928864703,205351.12120016344,453,53000.0,1239.904194285078,21009.209118005758,1309754.0252927616,1050.0,475650.0,218.81741976061417,722953.4769673941,19571.097793925037,64050.8655271262,0.0,0.0,832.1899828478593,521482.7972366705,387.1039214722469,1266.8855615722432,-21009.209118005758,-2464177.119945962,true,true,8.851535607,5088.917698536999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,454,0.9065583657202451,666.0,0.0,27573.033383594484,26523.033383594484,1050.0,27531.632432568065,41.40095102641814,2905154.1783579933,2428454.178357986,476700.0,4002861.765802643,-1097707.5874446628,0.95,0.25,22.0,454,0.0,0.1,0.0,0.0,1050.0,476700.0,13125.0,5958750.0,13125.0,5958750.0,true,454,0.94,53000.0,1239.904194285078,0.0,24931.651380578813,2221511.675154797,26523.033383594484,2428454.178357986,24931.651380578813,2221511.675154797,-0.0,0.0,-0.0,0.0,1591.3820030156712,206942.5032031791,454,53000.0,1239.904194285078,24931.651380578813,1334685.6766733404,1050.0,476700.0,361.18848313811515,723314.6654505322,23129.47919280233,87180.34471992853,0.0,0.0,983.4972523493354,522466.29448901984,457.4864522890351,1724.3720138612784,-24931.651380578813,-2489108.771326541,true,true,10.32679154,5099.244490076999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,455,0.9065406811403739,666.0,0.0,31800.411524382784,30750.411524382784,1050.0,31752.663158730556,47.748365652226404,2936954.589882376,2459204.5898823687,477750.0,4034614.4289613734,-1097659.8390790105,0.95,0.25,22.0,455,0.0,0.1,0.0,0.0,1050.0,477750.0,13125.0,5971875.0,13125.0,5971875.0,true,455,0.94,53000.0,1239.904194285078,0.0,28905.386832919816,2250417.0619877167,30750.411524382784,2459204.5898823687,28905.386832919816,2250417.0619877167,-0.0,0.0,-0.0,0.0,1845.024691462968,208787.5278946421,455,53000.0,1239.904194285078,28905.386832919816,1363591.0635062603,1050.0,477750.0,554.8525859309602,723869.5180364632,26687.860738814303,113868.20545874283,0.0,0.0,1134.8045221585019,523601.09901117836,527.8689860160536,2252.240999877332,-28905.386832919816,-2518014.158159461,true,true,11.80204748,5111.046537556998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,456,0.9065313943470306,666.0,0.0,16699.511789981392,15649.511789981392,1050.0,16674.437447954395,25.074342026999087,2953654.1016723574,2474854.10167235,478800.0,4051288.866409328,-1097634.7647369835,0.95,0.25,22.0,456,0.0,0.1,0.0,0.0,1050.0,478800.0,13125.0,5985000.0,13125.0,5985000.0,true,456,0.9337861292825743,53000.0,1239.904194285078,0.0,14613.297039528736,2265030.3590272455,15649.511789981392,2474854.10167235,14613.297039528736,2265030.3590272455,-0.0,0.0,-0.0,0.0,1036.2147504526565,209823.74264509475,456,53000.0,1239.904194285078,14613.297039528736,1378204.3605457891,1050.0,478800.0,728.3831278600463,724597.9011643232,12397.152447957254,126265.35790670008,0.0,0.0,1242.5536384670504,524843.6526496455,245.20782524438368,2497.4488251217153,-14613.297039528736,-2532627.4551989897,true,true,12.42791363,5123.4744511869985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,457,0.9065221908606906,666.0,0.0,16549.70913636968,15499.709136369682,1050.0,16524.859723252008,24.849413117672196,2970203.810808727,2490353.8108087196,479850.0,4067813.7261325796,-1097609.9153238658,0.95,0.25,22.0,457,0.0,0.1,0.0,0.0,1050.0,479850.0,13125.0,5998125.0,13125.0,5998125.0,true,457,0.9336522052987364,53000.0,1239.904194285078,0.0,14471.337616660527,2279501.696643906,15499.709136369682,2490353.8108087196,14471.337616660527,2279501.696643906,-0.0,0.0,-0.0,0.0,1028.371519709155,210852.1141648039,457,53000.0,1239.904194285078,14471.337616660527,1392675.6981624498,1050.0,479850.0,842.7501077804774,725440.6512721037,12085.099820213933,138350.45772691403,0.0,0.0,1304.45206679924,526148.1047164447,239.03562186687753,2736.484446988593,-14471.337616660527,-2547098.7928156503,true,true,13.00907506,5136.483526246999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,458,0.9065058470362332,666.0,0.0,29389.465139525513,28339.465139525513,1050.0,29345.33681349019,44.128326035323596,2999593.2759482525,2518693.275948245,480900.0,4097159.06294607,-1097565.7869978305,0.95,0.25,22.0,458,0.0,0.1,0.0,0.0,1050.0,480900.0,13125.0,6011250.0,13125.0,6011250.0,true,458,0.94,53000.0,1239.904194285078,0.0,26639.09723115398,2306140.79387506,28339.465139525513,2518693.275948245,26639.09723115398,2306140.79387506,-0.0,0.0,-0.0,0.0,1700.3679083715324,212552.48207317543,458,53000.0,1239.904194285078,26639.09723115398,1419314.7953936039,1050.0,480900.0,1018.0752749214362,726458.7265470251,23761.75367566788,162112.21140258192,0.0,0.0,1389.2758393760175,527537.3805558208,469.9924411886493,3206.4768881772425,-26639.09723115398,-2573737.890046804,true,true,14.08198847,5150.565514716999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,459,0.9064940990499291,666.0,0.0,21125.228972003122,20075.228972003122,1050.0,21093.509408982096,31.71956302102571,3020718.504920256,2538768.5049202484,481950.0,4118252.572355052,-1097534.0674348094,0.95,0.25,22.0,459,0.0,0.1,0.0,0.0,1050.0,481950.0,13125.0,6024375.0,13125.0,6024375.0,true,459,0.9377601410878842,53000.0,1239.904194285078,0.0,18825.749553157228,2324966.543428217,20075.228972003122,2538768.5049202484,18825.749553157228,2324966.543428217,-0.0,0.0,-0.0,0.0,1249.4794188458945,213801.96149202134,459,53000.0,1239.904194285078,18825.749553157228,1438140.544946761,1050.0,481950.0,1227.5555716233866,727686.2821186485,15806.859626703603,177919.07102928552,0.0,0.0,1478.684680699149,529016.0652365199,312.6496741310884,3519.126562308331,-18825.749553157228,-2592563.639599961,true,true,14.75255935,5165.3180740669995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,460,0.9064877881917781,666.0,0.0,11348.185127004364,10298.185127004364,1050.0,11331.14580999685,17.03931700751406,3032066.6900472604,2549066.690047253,483000.0,4129583.718165049,-1097517.028117802,0.95,0.25,22.0,460,0.0,0.1,0.0,0.0,1050.0,483000.0,13125.0,6037500.0,13125.0,6037500.0,true,460,0.9259847642530703,53000.0,1239.904194285078,0.0,9535.962527063612,2334502.5059552807,10298.185127004364,2549066.690047253,9535.962527063612,2334502.5059552807,-0.0,0.0,-0.0,0.0,762.2225999407528,214564.1840919621,460,53000.0,1239.904194285078,9535.962527063612,1447676.5074738248,1050.0,483000.0,1351.4024606611774,729037.6845793097,6528.600578240063,184447.67160752558,0.0,0.0,1526.8279027922763,530542.8931393122,129.13158537009463,3648.2581476784253,-9535.962527063612,-2602099.602127025,true,true,15.0207877,5180.338861767,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,461,0.9064772752727889,666.0,0.0,18904.330926355324,17854.330926355324,1050.0,18875.94604508452,28.38488127080379,3050971.020973616,2566921.0209736084,484050.0,4148459.6642101333,-1097488.6432365312,0.95,0.25,22.0,461,0.0,0.1,0.0,0.0,1050.0,484050.0,13125.0,6050625.0,13125.0,6050625.0,true,461,0.9357616971789057,53000.0,1239.904194285078,0.0,16707.39900964008,2351209.9049649206,17854.330926355324,2566921.0209736084,16707.39900964008,2351209.9049649206,-0.0,0.0,-0.0,0.0,1146.9319167152426,215711.11600867735,461,53000.0,1239.904194285078,16707.39900964008,1464383.9064834649,1050.0,484050.0,1463.963749078525,730501.6483283882,13410.098482663108,197857.7700901887,0.0,0.0,1568.093521509464,532110.9866608216,265.24325638898324,3913.5014040674087,-16707.39900964008,-2618807.0011366648,true,true,15.5572444,5195.896106167,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,462,0.9064726449466064,666.0,0.0,8326.252541234126,7276.252541234126,1050.0,8313.750660541582,12.501880692543732,3059297.27351485,2574197.2735148426,485100.0,4156773.4148706747,-1097476.1413558386,0.95,0.25,22.0,462,0.0,0.1,0.0,0.0,1050.0,485100.0,13125.0,6063750.0,13125.0,6063750.0,true,462,0.9151271558230561,53000.0,1239.904194285078,0.0,6658.69629310987,2357868.6012580306,7276.252541234126,2574197.2735148426,6658.69629310987,2357868.6012580306,-0.0,0.0,-0.0,0.0,617.556248124256,216328.6722568016,462,53000.0,1239.904194285078,6658.69629310987,1471042.6027765747,1050.0,485100.0,1562.4047293709593,732064.0530577592,3426.0450252307373,201283.81511541942,0.0,0.0,1602.4815373635286,533713.4681981851,67.76500114464496,3981.2664052120535,-6658.69629310987,-2625465.697429775,true,true,15.69135858,5211.587464747,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,463,0.9064665704597998,666.0,0.0,10923.14217565672,9873.14217565672,1050.0,10906.741061278857,16.401114377862942,3070220.415690507,2584070.4156904994,486150.0,4167680.155931954,-1097459.7402414607,0.95,0.25,22.0,463,0.0,0.1,0.0,0.0,1050.0,486150.0,13125.0,6076875.0,13125.0,6076875.0,true,463,0.9244420678060656,53000.0,1239.904194285078,0.0,9127.147968607376,2366995.749226638,9873.14217565672,2584070.4156904994,9127.147968607376,2366995.749226638,-0.0,0.0,-0.0,0.0,745.9942070493435,217074.66646385094,463,53000.0,1239.904194285078,9127.147968607376,1480169.7507451822,1050.0,486150.0,1616.6658293163239,733680.7188870755,5775.426056680177,207059.2411720996,0.0,0.0,1620.8218123489453,535334.290010534,114.23427026192942,4095.500675473983,-9127.147968607376,-2634592.8453983823,true,true,15.9148822,5227.502346947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,464,0.9064603942281138,666.0,0.0,11106.099817930155,10056.099817930155,1050.0,11089.423992377708,16.67582555244768,3081326.515508437,2594126.5155084296,487200.0,4178769.5799243315,-1097443.0644159082,0.95,0.25,22.0,464,0.0,0.1,0.0,0.0,1050.0,487200.0,13125.0,6090000.0,13125.0,6090000.0,true,464,0.9251054833301217,53000.0,1239.904194285078,0.0,9302.953082482225,2376298.7023091204,10056.099817930155,2594126.5155084296,9302.953082482225,2376298.7023091204,-0.0,0.0,-0.0,0.0,753.14673544793,217827.81319929886,464,53000.0,1239.904194285078,9302.953082482225,1489472.7038276645,1050.0,487200.0,1686.2403776617382,735366.9592647373,5857.115512764234,212916.35668486383,0.0,0.0,1643.747156080716,536978.0371666147,115.85003597553683,4211.35071144952,-9302.953082482225,-2643895.7984808646,true,true,16.13840583,5243.640752777,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,465,0.9064584269943848,666.0,0.0,3537.4796913968466,2487.4796913968466,1050.0,3532.1681603286834,5.311531068163434,3084863.995199834,2596613.9951998265,488250.0,4182301.74808466,-1097437.7528848401,0.95,0.25,22.0,465,0.0,0.1,0.0,0.0,1050.0,488250.0,13125.0,6103125.0,13125.0,6103125.0,true,465,0.8708731960164685,53000.0,1239.904194285078,0.0,2166.2793888728306,2378464.9816979934,2487.4796913968466,2596613.9951998265,2166.2793888728306,2378464.9816979934,-0.0,0.0,-0.0,0.0,321.200302524016,218149.0135018229,465,53000.0,1239.904194285078,2166.2793888728306,1491638.9832165374,1050.0,488250.0,1714.619709195542,737081.5789739329,-1177.9583437680642,211738.39834109577,0.0,0.0,1652.9172935734243,538630.954460188,-23.29927012807159,4188.051441321448,-2166.2793888728306,-2646062.0778697375,true,true,16.0937011,5259.734453876999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,466,0.9064550297067144,666.0,0.0,6109.002688854414,5059.002688854414,1050.0,6099.830012144423,9.172676709991613,3090972.9978886885,2601672.997888681,489300.0,4188401.5780968047,-1097428.5802081302,0.95,0.25,22.0,466,0.0,0.1,0.0,0.0,1050.0,489300.0,13125.0,6116250.0,13125.0,6116250.0,true,466,0.9031018360062746,53000.0,1239.904194285078,0.0,4568.794616665102,2383033.7763146586,5059.002688854414,2601672.997888681,4568.794616665102,2383033.7763146586,-0.0,0.0,-0.0,0.0,490.2080721893126,218639.2215740122,466,53000.0,1239.904194285078,4568.794616665102,1496207.7778332024,1050.0,489300.0,1714.619709195542,738796.1986831285,1177.9583437680642,212916.35668486383,0.0,0.0,1652.9172935734243,540283.8717537614,23.29927012807159,4211.35071144952,-4568.794616665102,-2650630.8724864027,true,true,16.13840583,5275.872859706999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,467,0.906451619389365,666.0,0.0,6132.432657630943,5082.432657630943,1050.0,6123.224800787653,9.207856843289704,3097105.4305463196,2606755.430546312,490350.0,4194524.802897592,-1097419.372351287,0.95,0.25,22.0,467,0.0,0.1,0.0,0.0,1050.0,490350.0,13125.0,6129375.0,13125.0,6129375.0,true,467,0.9033115085972504,53000.0,1239.904194285078,0.0,4591.01991130854,2387624.796225967,5082.432657630943,2606755.430546312,4591.01991130854,2387624.796225967,-0.0,0.0,-0.0,0.0,491.4127463224031,219130.6343203346,467,53000.0,1239.904194285078,4591.01991130854,1500798.797744511,1050.0,490350.0,1728.9280059169605,740525.1266890455,1181.2256477400974,214097.58233260392,0.0,0.0,1657.5023623197785,541941.3741160812,23.363895331703404,4234.714606781223,-4591.01991130854,-2655221.892397711,true,true,16.18311055,5292.055970256999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,468,0.9064503988575803,666.0,0.0,2194.760255390899,1144.7602553908991,1050.0,2191.4648195719938,3.295435818905254,3099300.1908017104,2607900.190801703,491400.0,4196716.267717164,-1097416.076915468,0.95,0.25,22.0,468,0.0,0.1,0.0,0.0,1050.0,491400.0,13125.0,6142500.0,13125.0,6142500.0,true,468,0.8483231437489058,53000.0,1239.904194285078,0.0,971.1266186920079,2388595.922844659,1144.7602553908991,2607900.190801703,971.1266186920079,2388595.922844659,-0.0,0.0,-0.0,0.0,173.63363669889122,219304.26795703347,468,53000.0,1239.904194285078,971.1266186920079,1501769.9243632029,1050.0,491400.0,1721.7639479697514,742246.8906370152,-2359.1839915081614,211738.39834109577,0.0,0.0,1655.209827690193,543596.5839437713,-46.663165459774994,4188.051441321448,-971.1266186920079,-2656193.0190164032,true,true,16.0937011,5308.149671356999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,469,0.9064499320835911,666.0,0.0,839.3529871669452,-210.64701283305482,1050.0,838.0926973964243,1.2602897705209388,3100139.5437888773,2607689.54378887,492450.0,4197554.360414561,-1097414.8166256975,0.95,0.25,22.0,469,0.0,0.1,0.0,0.0,1050.0,492450.0,13125.0,6155625.0,13125.0,6155625.0,true,469,0.83,53000.0,1239.904194285078,0.0,-253.79158172657208,2388342.1312629324,-210.64701283305482,2607689.54378887,-253.79158172657208,2388342.1312629324,-0.0,0.0,-0.0,0.0,43.14456889351726,219347.41252592698,469,53000.0,1239.904194285078,-253.79158172657208,1501516.1327814762,1050.0,492450.0,1686.2403776617393,743933.131014677,-3514.269098030025,208224.12924306575,0.0,0.0,1643.7471560807162,545240.331099852,-69.51001743900278,4118.541423882445,-253.79158172657208,-2656446.81059813,true,true,15.95958693,5324.109258286999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,470,0.9064451511686459,666.0,0.0,8597.041254671494,7547.041254671494,1050.0,8584.132784319134,12.9084703523596,3108736.5850435486,2615236.585043541,493500.0,4206138.49319888,-1097401.9081553451,0.95,0.25,22.0,470,0.0,0.1,0.0,0.0,1050.0,493500.0,13125.0,6168750.0,13125.0,6168750.0,true,470,0.9160896854687226,53000.0,1239.904194285078,0.0,6913.766649211483,2395255.8979121437,7547.041254671494,2615236.585043541,6913.766649211483,2395255.8979121437,-0.0,0.0,-0.0,0.0,633.2746054600111,219980.68713138698,470,53000.0,1239.904194285078,6913.766649211483,1508429.8994306878,1050.0,493500.0,1686.2403776617393,745619.3713923388,3514.269098030025,211738.39834109577,0.0,0.0,1643.7471560807162,546884.0782559327,69.51001743900278,4188.051441321448,-6913.766649211483,-2663360.577247341,true,true,16.0937011,5340.202959386998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,471,0.9064424729026029,666.0,0.0,4816.057998501823,3766.0579985018235,1050.0,4808.826680185754,7.231318316068803,3113552.6430420503,2619002.643042043,494550.0,4210947.319879066,-1097394.6768370292,0.95,0.25,22.0,471,0.0,0.1,0.0,0.0,1050.0,494550.0,13125.0,6181875.0,13125.0,6181875.0,true,471,0.8916803775273001,53000.0,1239.904194285078,0.0,3358.1200178938143,2398614.0179300373,3766.0579985018235,2619002.643042043,3358.1200178938143,2398614.0179300373,-0.0,0.0,-0.0,0.0,407.9379806080092,220388.62511199497,471,53000.0,1239.904194285078,3358.1200178938143,1511788.0194485816,1050.0,494550.0,1707.4952589499758,747326.8666512887,0.0,211738.39834109577,0.0,0.0,1650.6247589438387,548534.7030148765,0.0,4188.051441321448,-3358.1200178938143,-2666718.697265235,true,true,16.0937011,5356.296660486998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,472,0.9064424612912589,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3113573.522560794,2617973.5225607865,495600.0,4210968.16804718,-1097394.6454864005,0.95,0.25,22.0,472,0.0,0.1,0.0,0.0,1050.0,495600.0,13125.0,6195000.0,13125.0,6195000.0,true,472,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2397374.113735752,-1029.1204812566145,2617973.5225607865,-1239.904194285078,2397374.113735752,-0.0,0.0,-0.0,0.0,210.78371302846335,220599.40882502345,472,53000.0,1239.904194285078,-1451.0584999510222,1510336.9609486307,1050.0,495600.0,1679.1948134414831,749006.0614647302,-4679.15716899617,207059.2411720996,0.0,0.0,1641.4546214511304,550176.1576363276,-92.55076584746523,4095.5006754739825,-1239.904194285078,-2667958.60145952,true,true,15.9148822,5372.211542686998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,473,0.9064405407673753,666.0,0.0,3453.486047509895,2403.486047509895,1050.0,3448.300633024144,5.185414485750593,3117027.008608304,2620377.0086082965,496650.0,4214416.468680205,-1097389.4600719146,0.95,0.25,22.0,473,0.0,0.1,0.0,0.0,1050.0,496650.0,13125.0,6208125.0,13125.0,6208125.0,true,473,0.8694274874610217,53000.0,1239.904194285078,0.0,2089.65683543415,2399463.770571186,2403.486047509895,2620377.0086082965,2089.65683543415,2399463.770571186,-0.0,0.0,-0.0,0.0,313.8292120757451,220913.2380370992,473,53000.0,1239.904194285078,2089.65683543415,1512426.617784065,1050.0,496650.0,1644.2612413542458,750650.3227060845,-1161.6202429227187,205897.6209291769,0.0,0.0,1629.9919498416534,551806.1495861692,-22.9761128390305,4072.524562634952,-2089.65683543415,-2670048.258294954,true,true,15.87017748,5388.081720166998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,474,0.9064386294606707,666.0,0.0,3436.9117164571626,2386.9117164571626,1050.0,3431.751188354374,5.160528102788533,3120463.920324761,2622763.9203247535,497700.0,4217848.219868559,-1097384.2995438117,0.95,0.25,22.0,474,0.0,0.1,0.0,0.0,1050.0,497700.0,13125.0,6221250.0,13125.0,6221250.0,true,474,0.8691427749589353,53000.0,1239.904194285078,0.0,2074.5670728235737,2401538.33764401,2386.9117164571626,2622763.9203247535,2074.5670728235737,2401538.33764401,-0.0,0.0,-0.0,0.0,312.34464363358893,221225.58268073277,474,53000.0,1239.904194285078,2074.5670728235737,1514501.1848568886,1050.0,497700.0,1630.424613842105,752280.7473199266,-1158.3529345651734,204739.26799461173,0.0,0.0,1625.4068810952992,553431.5564672644,-22.911487548656773,4049.6130750862953,-2074.5670728235737,-2672122.8253677776,true,true,15.82547275,5403.907192916998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,475,0.9064374701913903,666.0,0.0,2084.5980199127916,1034.5980199127914,1050.0,2081.4679928558653,3.1300270569261137,3122548.518344674,2623798.5183446663,498750.0,4219929.687861416,-1097381.1695167548,0.95,0.25,22.0,475,0.0,0.1,0.0,0.0,1050.0,498750.0,13125.0,6234375.0,13125.0,6234375.0,true,475,0.8465247707860832,53000.0,1239.904194285078,0.0,875.8128516624113,2402414.150495672,1034.5980199127914,2623798.5183446663,875.8128516624113,2402414.150495672,-0.0,0.0,-0.0,0.0,158.78516825038014,221384.36784898315,475,53000.0,1239.904194285078,875.8128516624113,1515376.9977085511,1050.0,498750.0,1609.81555878783,753890.5628787144,-2306.902906147787,202432.36508846394,0.0,0.0,1618.5292777193597,555050.0857449837,-45.62907869699161,4003.9839963893037,-875.8128516624113,-2672998.63821944,true,true,15.7360633,5419.6432562169975,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,476,0.9064348810898936,666.0,0.0,4655.722311482552,3605.722311482552,1050.0,4648.731737441287,6.990574041265093,3127204.2406561566,2627404.240656149,499800.0,4224578.419598857,-1097374.1789427134,0.95,0.25,22.0,476,0.0,0.1,0.0,0.0,1050.0,499800.0,13125.0,6247500.0,13125.0,6247500.0,true,476,0.8902841258112878,53000.0,1239.904194285078,0.0,3210.1173359964996,2405624.2678316687,3605.722311482552,2627404.240656149,3210.1173359964996,2405624.2678316687,-0.0,0.0,-0.0,0.0,395.60497548605235,221779.9728244692,476,53000.0,1239.904194285078,3210.1173359964996,1518587.1150445477,1050.0,499800.0,1596.173127023494,755486.7360057379,0.0,202432.36508846394,0.0,0.0,1613.9442089730055,556664.0299539567,0.0,4003.9839963893037,-3210.1173359964996,-2676208.7555554365,true,true,15.7360633,5435.379319516997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,477,0.9064322919883968,666.0,0.0,4655.722311482552,3605.722311482552,1050.0,4648.731737441287,6.990574041265093,3131859.9629676393,2631009.962967632,500850.0,4229227.151336298,-1097367.188368672,0.95,0.25,22.0,477,0.0,0.1,0.0,0.0,1050.0,500850.0,13125.0,6260625.0,13125.0,6260625.0,true,477,0.8902841258112878,53000.0,1239.904194285078,0.0,3210.1173359964996,2408834.3851676653,3605.722311482552,2631009.962967632,3210.1173359964996,2408834.3851676653,-0.0,0.0,-0.0,0.0,395.60497548605235,222175.57779995527,477,53000.0,1239.904194285078,3210.1173359964996,1521797.2323805443,1050.0,500850.0,1596.173127023494,757082.9091327614,0.0,202432.36508846394,0.0,0.0,1613.9442089730055,558277.9741629297,0.0,4003.9839963893037,-3210.1173359964996,-2679418.872891433,true,true,15.7360633,5451.115382816997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,478,0.9064297028869001,666.0,0.0,4655.722311482552,3605.722311482552,1050.0,4648.731737441287,6.990574041265093,3136515.685279122,2634615.6852791146,501900.0,4233875.88307374,-1097360.1977946307,0.95,0.25,22.0,478,0.0,0.1,0.0,0.0,1050.0,501900.0,13125.0,6273750.0,13125.0,6273750.0,true,478,0.8902841258112878,53000.0,1239.904194285078,0.0,3210.1173359964996,2412044.502503662,3605.722311482552,2634615.6852791146,3210.1173359964996,2412044.502503662,-0.0,0.0,-0.0,0.0,395.60497548605235,222571.18277544132,478,53000.0,1239.904194285078,3210.1173359964996,1525007.349716541,1050.0,501900.0,1596.173127023494,758679.0822597849,0.0,202432.36508846394,0.0,0.0,1613.9442089730055,559891.9183719027,0.0,4003.9839963893037,-3210.1173359964996,-2682628.9902274297,true,true,15.7360633,5466.851446116997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,479,0.9064271137854033,666.0,0.0,4655.722311482552,3605.722311482552,1050.0,4648.731737441287,6.990574041265093,3141171.407590605,2638221.4075905974,502950.0,4238524.614811181,-1097353.2072205893,0.95,0.25,22.0,479,0.0,0.1,0.0,0.0,1050.0,502950.0,13125.0,6286875.0,13125.0,6286875.0,true,479,0.8902841258112878,53000.0,1239.904194285078,0.0,3210.1173359964996,2415254.6198396585,3605.722311482552,2638221.4075905974,3210.1173359964996,2415254.6198396585,-0.0,0.0,-0.0,0.0,395.60497548605235,222966.78775092738,479,53000.0,1239.904194285078,3210.1173359964996,1528217.4670525375,1050.0,502950.0,1596.173127023494,760275.2553868084,0.0,202432.36508846394,0.0,0.0,1613.9442089730055,561505.8625808756,0.0,4003.9839963893037,-3210.1173359964996,-2685839.1075634263,true,true,15.7360633,5482.587509416997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,480,0.9064245246839066,666.0,0.0,4655.722311482552,3605.722311482552,1050.0,4648.731737441287,6.990574041265093,3145827.1299020876,2641827.12990208,504000.0,4243173.3465486225,-1097346.216646548,0.95,0.25,22.0,480,0.0,0.1,0.0,0.0,1050.0,504000.0,13125.0,6300000.0,13125.0,6300000.0,true,480,0.8902841258112878,53000.0,1239.904194285078,0.0,3210.1173359964996,2418464.737175655,3605.722311482552,2641827.12990208,3210.1173359964996,2418464.737175655,-0.0,0.0,-0.0,0.0,395.60497548605235,223362.39272641344,480,53000.0,1239.904194285078,3210.1173359964996,1531427.584388534,1050.0,504000.0,1596.173127023494,761871.4285138319,0.0,202432.36508846394,0.0,0.0,1613.9442089730055,563119.8067898486,0.0,4003.9839963893037,-3210.1173359964996,-2689049.224899423,true,true,15.7360633,5498.323572716997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,481,0.9064233802683175,666.0,0.0,2057.8881123525316,1007.8881123525318,1050.0,2054.798190261912,3.089922090619417,3147885.0180144403,2642835.018014433,505050.0,4245228.144738885,-1097343.1267244574,0.95,0.25,22.0,481,0.0,0.1,0.0,0.0,1050.0,505050.0,13125.0,6313125.0,13125.0,6313125.0,true,481,0.8460898856168863,53000.0,1239.904194285078,0.0,852.763937694973,2419317.50111335,1007.8881123525318,2642835.018014433,852.763937694973,2419317.50111335,-0.0,0.0,-0.0,0.0,155.1241746575588,223517.516901071,481,53000.0,1239.904194285078,852.763937694973,1532280.348326229,1050.0,505050.0,1582.6079892822763,763454.0365031142,-2293.8326348076585,200138.53245365628,0.0,0.0,1609.359140226651,564729.1659300752,-45.370557006295954,3958.6134393830075,-852.763937694973,-2689901.988837118,true,true,15.64665385,5513.970226566997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,482,0.906420111069079,666.0,0.0,5878.674070516665,4828.674070516665,1050.0,5869.847232572946,8.826837943718717,3153763.692084957,2647663.6920849495,506100.0,4251097.991971457,-1097334.2998865137,0.95,0.25,22.0,482,0.0,0.1,0.0,0.0,1050.0,506100.0,13125.0,6326250.0,13125.0,6326250.0,true,482,0.9010458167123236,53000.0,1239.904194285078,0.0,4350.856571506309,2423668.3576848563,4828.674070516665,2647663.6920849495,4350.856571506309,2423668.3576848563,-0.0,0.0,-0.0,0.0,477.8174990103562,223995.33440008137,482,53000.0,1239.904194285078,4350.856571506309,1536631.2048977353,1050.0,506100.0,1575.8543378042193,765029.8908409184,1145.282661763161,201283.81511541945,0.0,0.0,1607.0666061098827,566336.2325361851,22.65296582904541,3981.266405212053,-4350.856571506309,-2694252.845408624,true,true,15.69135858,5529.661585146997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,483,0.9064168292409129,666.0,0.0,5901.383408211808,4851.383408211808,1050.0,5892.522472163442,8.860936048366078,3159665.0754931686,2652515.075493161,507150.0,4256990.514443621,-1097325.4389504653,0.95,0.25,22.0,483,0.0,0.1,0.0,0.0,1050.0,507150.0,13125.0,6339375.0,13125.0,6339375.0,true,483,0.9012481146222704,53000.0,1239.904194285078,0.0,4372.300149960656,2428040.6578348167,4851.383408211808,2652515.075493161,4372.300149960656,2428040.6578348167,-0.0,0.0,-0.0,0.0,479.0832582511521,224474.41765833253,483,53000.0,1239.904194285078,4372.300149960656,1541003.505047696,1050.0,507150.0,1589.380910882672,766619.2717518011,1148.5499730444974,202432.36508846394,0.0,0.0,1611.6516748562367,567947.8842110413,22.71759117725054,4003.9839963893037,-4372.300149960656,-2698625.1455585845,true,true,15.7360633,5545.397648446997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,484,0.9064121324059923,666.0,0.0,8445.848554349059,7395.848554349059,1050.0,8433.167100063249,12.681454285809398,3168110.9240475176,2659910.92404751,508200.0,4265423.681543685,-1097312.7574961795,0.95,0.25,22.0,484,0.0,0.1,0.0,0.0,1050.0,508200.0,13125.0,6352500.0,13125.0,6352500.0,true,484,0.915552015277826,53000.0,1239.904194285078,0.0,6771.284048623877,2434811.9418834406,7395.848554349059,2659910.92404751,6771.284048623877,2434811.9418834406,-0.0,0.0,-0.0,0.0,624.5645057251813,225098.9821640577,484,53000.0,1239.904194285078,6771.284048623877,1547774.7890963198,1050.0,508200.0,1616.6658293163239,768235.9375811175,3465.2558407129604,205897.6209291769,0.0,0.0,1620.8218123489453,569568.7060233902,68.54056624564838,4072.524562634952,-6771.284048623877,-2705396.4296072084,true,true,15.87017748,5561.267825926997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,485,0.9064116852567737,666.0,0.0,804.0637248065282,-245.9362751934718,1050.0,802.8564219164283,1.2073028900998921,3168914.987772324,2659664.9877723167,509250.0,4266226.537965601,-1097311.5501932895,0.95,0.25,22.0,485,0.0,0.1,0.0,0.0,1050.0,509250.0,13125.0,6365625.0,13125.0,6365625.0,true,485,0.83,53000.0,1239.904194285078,0.0,-296.30876529333955,2434515.633118147,-245.9362751934718,2659664.9877723167,-296.30876529333955,2434515.633118147,-0.0,0.0,-0.0,0.0,50.37249009986775,225149.35465415756,485,53000.0,1239.904194285078,-296.30876529333955,1547478.4803310265,1050.0,509250.0,1616.6658293163239,769852.6034104339,-3465.2558407129604,202432.36508846394,0.0,0.0,1620.8218123489453,571189.5278357391,-68.54056624564838,4003.9839963893037,-296.30876529333955,-2705692.738372502,true,true,15.7360633,5577.003889226997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,486,0.9064105408411847,666.0,0.0,2057.8881123525316,1007.8881123525318,1050.0,2054.798190261912,3.089922090619417,3170972.875884677,2660672.8758846694,510300.0,4268281.3361558635,-1097308.460271199,0.95,0.25,22.0,486,0.0,0.1,0.0,0.0,1050.0,510300.0,13125.0,6378750.0,13125.0,6378750.0,true,486,0.8460898856168863,53000.0,1239.904194285078,0.0,852.763937694973,2435368.397055842,1007.8881123525318,2660672.8758846694,852.763937694973,2435368.397055842,-0.0,0.0,-0.0,0.0,155.1241746575588,225304.47882881513,486,53000.0,1239.904194285078,852.763937694973,1548331.2442687214,1050.0,510300.0,1582.6079892822763,771435.2113997161,-2293.8326348076585,200138.53245365628,0.0,0.0,1609.359140226651,572798.8869759657,-45.370557006295954,3958.6134393830075,-852.763937694973,-2706545.502310197,true,true,15.64665385,5592.650543076997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,487,0.9064079734767535,666.0,0.0,4616.634720076312,3566.6347200763116,1050.0,4609.702836112234,6.931883964078547,3175589.510604753,2664239.5106047457,511350.0,4272891.038991976,-1097301.528387235,0.95,0.25,22.0,487,0.0,0.1,0.0,0.0,1050.0,511350.0,13125.0,6391875.0,13125.0,6391875.0,true,487,0.8898847924048903,53000.0,1239.904194285078,0.0,3173.8939974591826,2438542.291053301,3566.6347200763116,2664239.5106047457,3173.8939974591826,2438542.291053301,-0.0,0.0,-0.0,0.0,392.740722617129,225697.21955143227,487,53000.0,1239.904194285078,3173.8939974591826,1551505.1382661806,1050.0,511350.0,1569.1199259788855,773004.331325695,0.0,200138.53245365628,0.0,0.0,1604.7740714802972,574403.661047446,0.0,3958.6134393830075,-3173.8939974591826,-2709719.396307656,true,true,15.64665385,5608.297196926997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,488,0.9064054061123223,666.0,0.0,4616.634720076312,3566.6347200763116,1050.0,4609.702836112234,6.931883964078547,3180206.1453248295,2667806.145324822,512400.0,4277500.741828088,-1097294.596503271,0.95,0.25,22.0,488,0.0,0.1,0.0,0.0,1050.0,512400.0,13125.0,6405000.0,13125.0,6405000.0,true,488,0.8898847924048903,53000.0,1239.904194285078,0.0,3173.8939974591826,2441716.1850507604,3566.6347200763116,2667806.145324822,3173.8939974591826,2441716.1850507604,-0.0,0.0,-0.0,0.0,392.740722617129,226089.9602740494,488,53000.0,1239.904194285078,3173.8939974591826,1554679.0322636398,1050.0,512400.0,1569.1199259788855,774573.451251674,0.0,200138.53245365628,0.0,0.0,1604.7740714802972,576008.4351189262,0.0,3958.6134393830075,-3173.8939974591826,-2712893.2903051153,true,true,15.64665385,5623.943850776996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,489,0.9064042763667164,666.0,0.0,2031.5085485976224,981.5085485976223,1050.0,2028.45823546159,3.0503131360324662,3182237.6538734273,2668787.65387342,513450.0,4279529.200063549,-1097291.546190135,0.95,0.25,22.0,489,0.0,0.1,0.0,0.0,1050.0,513450.0,13125.0,6418125.0,13125.0,6418125.0,true,489,0.8456608173863923,53000.0,1239.904194285078,0.0,830.0233214787968,2442546.208372239,981.5085485976223,2668787.65387342,830.0233214787968,2442546.208372239,-0.0,0.0,-0.0,0.0,151.4852271188255,226241.44550116823,489,53000.0,1239.904194285078,830.0233214787968,1555509.0555851187,1050.0,513450.0,1555.7087175280299,776129.159969202,-2280.7623634675765,197857.77009018871,0.0,0.0,1600.189002733943,577608.6241216601,-45.11203531559955,3913.5014040674077,-830.0233214787968,-2713723.313626594,true,true,15.5572444,5639.501095176996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,490,0.9064031611079378,666.0,0.0,2005.458335496967,955.458335496967,1050.0,2002.4471367950196,3.011198701947398,3184243.1122089243,2669743.112208917,514500.0,4281531.647200344,-1097288.534991433,0.95,0.25,22.0,490,0.0,0.1,0.0,0.0,1050.0,514500.0,13125.0,6431250.0,13125.0,6431250.0,true,490,0.8452375329496535,53000.0,1239.904194285078,0.0,807.5892463316388,2443353.7976185707,955.458335496967,2669743.112208917,807.5892463316388,2443353.7976185707,-0.0,0.0,-0.0,0.0,147.8690891653282,226389.31459033355,490,53000.0,1239.904194285078,807.5892463316388,1556316.6448314504,1050.0,514500.0,1529.1159868427558,777658.2759560448,-2267.6920921274477,195590.07799806126,0.0,0.0,1591.0188652412346,579199.6429869013,-44.85351362490389,3868.647890442504,-807.5892463316388,-2714530.9028729256,true,true,15.46783495,5654.968930126996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,491,0.9064013308902296,666.0,0.0,3291.097482990134,2241.097482990134,1050.0,3286.155895177836,4.941587812297498,3187534.2096919143,2671984.209691907,515550.0,4284817.803095522,-1097283.5934036206,0.95,0.25,22.0,491,0.0,0.1,0.0,0.0,1050.0,515550.0,13125.0,6444375.0,13125.0,6444375.0,true,491,0.8666460033342618,53000.0,1239.904194285078,0.0,1942.2381767158734,2445296.0357952868,2241.097482990134,2671984.209691907,1942.2381767158734,2445296.0357952868,-0.0,0.0,-0.0,0.0,298.85930627426046,226688.17389660783,491,53000.0,1239.904194285078,1942.2381767158734,1558258.8830081662,1050.0,515550.0,1509.3715489181802,779167.647504963,-1128.9448203952968,194461.13317766596,0.0,0.0,1584.1412618652948,580783.7842487666,-22.329813672304876,3846.3180767701992,-1942.2381767158734,-2716473.1410496417,true,true,15.42313022,5670.392060346996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,492,0.9064013192788856,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187555.089210658,2670955.0892106504,516600.0,4284838.651263637,-1097283.562052992,0.95,0.25,22.0,492,0.0,0.1,0.0,0.0,1050.0,516600.0,13125.0,6457500.0,13125.0,6457500.0,true,492,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2444056.1316010016,-1029.1204812566145,2670955.0892106504,-1239.904194285078,2444056.1316010016,-0.0,0.0,-0.0,0.0,210.78371302846335,226898.9576096363,492,53000.0,1239.904194285078,-8332.120686650098,1549926.7623215162,1050.0,516600.0,1438.4300768417506,780606.0775818047,-11109.730708530735,183351.40246913524,0.0,0.0,1558.9233835039383,582342.7076322705,-219.7434384650524,3626.574638305147,-1239.904194285078,-2717713.045243927,true,true,14.97608297,5685.368143316996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,493,0.9064013076675416,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187575.9687294015,2669925.968729394,517650.0,4284859.499431751,-1097283.5307023632,0.95,0.25,22.0,493,0.0,0.1,0.0,0.0,1050.0,517650.0,13125.0,6470625.0,13125.0,6470625.0,true,493,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2442816.2274067164,-1029.1204812566145,2669925.968729394,-1239.904194285078,2442816.2274067164,-0.0,0.0,-0.0,0.0,210.78371302846335,227109.74132266478,493,53000.0,1239.904194285078,-13582.273186708524,1536344.4891348076,1050.0,517650.0,1285.5409558088031,781891.6185376135,-16051.927210676076,167299.47525845916,0.0,0.0,1501.610023918103,583844.3176561886,-317.4969557593528,3309.0776825457942,-1239.904194285078,-2718952.949438212,true,true,14.30551209,5699.673655406996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,494,0.9064012960561976,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187596.848248145,2668896.8482481376,518700.0,4284880.347599865,-1097283.4993517345,0.95,0.25,22.0,494,0.0,0.1,0.0,0.0,1050.0,518700.0,13125.0,6483750.0,13125.0,6483750.0,true,494,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2441576.3232124313,-1029.1204812566145,2668896.8482481376,-1239.904194285078,2441576.3232124313,-0.0,0.0,-0.0,0.0,210.78371302846335,227320.52503569325,494,53000.0,1239.904194285078,-17139.078365266938,1519205.4107695406,1050.0,518700.0,1095.5616409647187,782987.1801785782,-19277.01667773564,148022.45858072353,0.0,0.0,1423.6638547172652,585267.9815109059,-381.2871832132827,2927.7904993325114,-1239.904194285078,-2720192.853632497,true,true,13.45612231,5713.129777716996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,495,0.9064012844448536,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187617.7277668887,2667867.727766881,519750.0,4284901.195767979,-1097283.4680011058,0.95,0.25,22.0,495,0.0,0.1,0.0,0.0,1050.0,519750.0,13125.0,6496875.0,13125.0,6496875.0,true,495,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2440336.419018146,-1029.1204812566145,2667867.727766881,-1239.904194285078,2440336.419018146,-0.0,0.0,-0.0,0.0,210.78371302846335,227531.30874872173,495,53000.0,1239.904194285078,-18098.91085422132,1501106.4999153193,1050.0,519750.0,897.20237501206,783884.3825535903,-19933.79781038336,128088.66077034017,0.0,0.0,1331.962479277365,586599.9439901833,-394.27789812738644,2533.512601205125,-1239.904194285078,-2721432.7578267823,true,true,12.51732308,5725.647100796996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,496,0.9064012728335096,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187638.6072856323,2666838.607285625,520800.0,4284922.043936093,-1097283.4366504771,0.95,0.25,22.0,496,0.0,0.1,0.0,0.0,1050.0,520800.0,13125.0,6510000.0,13125.0,6510000.0,true,496,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2439096.514823861,-1029.1204812566145,2666838.607285625,-1239.904194285078,2439096.514823861,-0.0,0.0,-0.0,0.0,210.78371302846335,227742.0924617502,496,53000.0,1239.904194285078,-20357.04563876993,1480749.4542765494,1050.0,520800.0,700.5245561215831,784584.9071097119,-21851.86013612277,106236.80063421739,0.0,0.0,1226.5058975984023,587826.4498877818,-432.21595636714244,2101.2966448379825,-1239.904194285078,-2722672.6620210675,true,true,11.39970495,5737.046805746996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,497,0.9064012612221656,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187659.486804376,2665809.4868043684,521850.0,4284942.892104208,-1097283.4052998484,0.95,0.25,22.0,497,0.0,0.1,0.0,0.0,1050.0,521850.0,13125.0,6523125.0,13125.0,6523125.0,true,497,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2437856.610629576,-1029.1204812566145,2665809.4868043684,-1239.904194285078,2437856.610629576,-0.0,0.0,-0.0,0.0,210.78371302846335,227952.87617477868,497,53000.0,1239.904194285078,-22385.486762924513,1458363.9675136248,1050.0,521850.0,505.9245216419059,785090.8316313538,-23526.48874111228,82710.31189310511,0.0,0.0,1100.4165063044372,588926.8663940862,-465.3390497585759,1635.9575950794065,-1239.904194285078,-2723912.5662153526,true,true,10.05856319,5747.1053689369965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,498,0.9064012496108216,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187680.3663231195,2664780.366323112,522900.0,4284963.740272322,-1097283.3739492197,0.95,0.25,22.0,498,0.0,0.1,0.0,0.0,1050.0,522900.0,13125.0,6536250.0,13125.0,6536250.0,true,498,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2436616.7064352906,-1029.1204812566145,2664780.366323112,-1239.904194285078,2436616.7064352906,-0.0,0.0,-0.0,0.0,210.78371302846335,228163.65988780715,498,53000.0,1239.904194285078,-17712.531665101298,1440651.4358485234,1050.0,522900.0,346.24468827445764,785437.0763196283,-18659.446365978867,64050.86552712625,0.0,0.0,969.7420461102729,589896.6084401964,-369.07203350716406,1266.8855615722423,-1239.904194285078,-2725152.470409638,true,true,8.851535607,5755.956904543997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,499,0.9064012379994776,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187701.245841863,2663751.2458418556,523950.0,4284984.588440436,-1097283.342598591,0.95,0.25,22.0,499,0.0,0.1,0.0,0.0,1050.0,523950.0,13125.0,6549375.0,13125.0,6549375.0,true,499,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2435376.8022410055,-1029.1204812566145,2663751.2458418556,-1239.904194285078,2435376.8022410055,-0.0,0.0,-0.0,0.0,210.78371302846335,228374.44360083563,499,53000.0,1239.904194285078,-18907.19431278881,1421744.2415357346,1050.0,523950.0,218.81741976061417,785655.8937393889,-19571.097793925037,44479.76773320121,0.0,0.0,832.1899828478593,590728.7984230443,-387.1039214722469,879.7816400999955,-1239.904194285078,-2726392.374603923,true,true,7.376279673,5763.333184216996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,500,0.9064012263881336,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187722.1253606067,2662722.1253605993,525000.0,4285005.43660855,-1097283.3112479623,0.95,0.25,22.0,500,0.0,0.1,0.0,0.0,1050.0,525000.0,13125.0,6562500.0,13125.0,6562500.0,true,500,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2434136.8980467203,-1029.1204812566145,2662722.1253605993,-1239.904194285078,2434136.8980467203,-0.0,0.0,-0.0,0.0,210.78371302846335,228585.2273138641,500,53000.0,1239.904194285078,-15528.706906546087,1406215.5346291885,1050.0,525000.0,119.84815853400774,785775.7418979229,-16012.71638781158,28467.051345389627,0.0,0.0,680.8827132438195,591409.6811362881,-316.7213905123323,563.0602495876632,-1239.904194285078,-2727632.278798208,true,true,5.901023738,5769.234207954996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,501,0.9064012147767896,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187743.0048793503,2661693.004879343,526050.0,4285026.284776664,-1097283.2798973336,0.95,0.25,22.0,501,0.0,0.1,0.0,0.0,1050.0,526050.0,13125.0,6575625.0,13125.0,6575625.0,true,501,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2432896.993852435,-1029.1204812566145,2661693.004879343,-1239.904194285078,2432896.993852435,-0.0,0.0,-0.0,0.0,210.78371302846335,228796.01102689258,501,53000.0,1239.904194285078,-10756.350322973878,1395459.1843062146,1050.0,526050.0,59.36980251996394,785835.1117004429,-11134.237538631483,17332.813806758146,0.0,0.0,538.7455811837698,591948.4267174719,-220.22816804612887,342.8320815415343,-1239.904194285078,-2728872.1829924933,true,true,4.604586705,5773.838794659996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,502,0.9064012031654456,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187763.884398094,2660663.8843980865,527100.0,4285047.132944779,-1097283.2485467049,0.95,0.25,22.0,502,0.0,0.1,0.0,0.0,1050.0,527100.0,13125.0,6588750.0,13125.0,6588750.0,true,502,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2431657.08965815,-1029.1204812566145,2660663.8843980865,-1239.904194285078,2431657.08965815,-0.0,0.0,-0.0,0.0,210.78371302846335,229006.79473992105,502,53000.0,1239.904194285078,-8612.876874861753,1386846.3074313528,1050.0,527100.0,24.51749885282178,785859.6291992957,-8863.277867851346,8469.5359389068,0.0,0.0,401.193517921356,592349.6202353933,-175.31002378458476,167.52205775694955,-1239.904194285078,-2730112.0871867784,true,true,3.218740221,5777.057534880996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,503,0.9064011915541016,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187784.7639168375,2659634.76391683,528150.0,4285067.981112893,-1097283.2171960762,0.95,0.25,22.0,503,0.0,0.1,0.0,0.0,1050.0,528150.0,13125.0,6601875.0,13125.0,6601875.0,true,503,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2430417.185463865,-1029.1204812566145,2659634.76391683,-1239.904194285078,2430417.185463865,-0.0,0.0,-0.0,0.0,210.78371302846335,229217.57845294953,503,53000.0,1239.904194285078,-5708.108388015283,1381138.1990433375,1050.0,528150.0,6.427115220660449,785866.0563145163,-5855.481635800273,2614.054303106527,0.0,0.0,256.76385148812926,592606.3840868814,-115.81771892380002,51.704338833149535,-1239.904194285078,-2731351.9913810636,true,true,1.788189012,5778.845723892996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,504,0.9064011799427576,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3187805.643435581,2658605.6434355737,529200.0,4285088.829281007,-1097283.1858454475,0.95,0.25,22.0,504,0.0,0.1,0.0,0.0,1050.0,529200.0,13125.0,6615000.0,13125.0,6615000.0,true,504,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2429177.2812695797,-1029.1204812566145,2658605.6434355737,-1239.904194285078,2429177.2812695797,-0.0,0.0,-0.0,0.0,210.78371302846335,229428.362165978,504,53000.0,1239.904194285078,-2383.9501706817805,1378754.2488726557,1050.0,529200.0,0.5718367082664562,785866.6281512246,-2450.675909162049,163.37839394447838,0.0,0.0,114.62671942807957,592721.0108063095,-48.47281765607772,3.231521177071812,-1239.904194285078,-2732591.8955753488,true,true,0.447047253,5779.292771145996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,505,0.9064006623442686,666.0,0.0,930.7456028702011,-119.25439712979889,1050.0,929.3480869499756,1.3975159202255272,3188736.3890384515,2658486.389038444,530250.0,4286018.177367957,-1097281.7883295272,0.95,0.25,22.0,505,0.0,0.1,0.0,0.0,1050.0,530250.0,13125.0,6628125.0,13125.0,6628125.0,true,505,0.83,53000.0,1239.904194285078,0.0,-143.67999654192639,2429033.601273038,-119.25439712979889,2658486.389038444,-143.67999654192639,2429033.601273038,-0.0,0.0,-0.0,0.0,24.425599412127497,229452.78776539012,505,53000.0,1239.904194285078,-143.67999654192639,1378610.5688761137,1050.0,530250.0,0.00457469366613165,785866.6327259182,-163.3783939441366,3.417710559006082e-10,0.0,0.0,22.925343885615916,592743.9361501952,-3.2315211770718477,-3.552713678800501e-14,-143.67999654192639,-2732735.5755718905,true,true,0.0,5779.292771145996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,506,0.9064000784270181,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3189786.3890384515,2658486.389038444,531300.0,4287066.600791381,-1097280.2117529507,0.95,0.25,22.0,506,0.0,0.1,0.0,0.0,1050.0,531300.0,13125.0,6641250.0,13125.0,6641250.0,true,506,0.83,53000.0,1239.904194285078,0.0,0.0,2429033.601273038,0.0,2658486.389038444,0.0,2429033.601273038,-0.0,0.0,-0.0,0.0,0.0,229452.78776539012,506,53000.0,1239.904194285078,0.0,1378610.5688761137,1050.0,531300.0,0.0,785866.6327259182,0.0,3.417710559006082e-10,0.0,0.0,0.0,592743.9361501952,0.0,-3.552713678800501e-14,0.0,-2732735.5755718905,true,true,0.0,5779.292771145996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,507,0.9063994945097675,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3190836.3890384515,2658486.389038444,532350.0,4288115.024214804,-1097278.635176374,0.95,0.25,22.0,507,0.0,0.1,0.0,0.0,1050.0,532350.0,13125.0,6654375.0,13125.0,6654375.0,true,507,0.83,53000.0,1239.904194285078,0.0,0.0,2429033.601273038,0.0,2658486.389038444,0.0,2429033.601273038,-0.0,0.0,-0.0,0.0,0.0,229452.78776539012,507,53000.0,1239.904194285078,0.0,1378610.5688761137,1050.0,532350.0,0.0,785866.6327259182,0.0,3.417710559006082e-10,0.0,0.0,0.0,592743.9361501952,0.0,-3.552713678800501e-14,0.0,-2732735.5755718905,true,true,0.0,5779.292771145996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,508,0.906398910592517,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3191886.3890384515,2658486.389038444,533400.0,4289163.447638228,-1097277.0585997975,0.95,0.25,22.0,508,0.0,0.1,0.0,0.0,1050.0,533400.0,13125.0,6667500.0,13125.0,6667500.0,true,508,0.83,53000.0,1239.904194285078,0.0,0.0,2429033.601273038,0.0,2658486.389038444,0.0,2429033.601273038,-0.0,0.0,-0.0,0.0,0.0,229452.78776539012,508,53000.0,1239.904194285078,0.0,1378610.5688761137,1050.0,533400.0,0.0,785866.6327259182,0.0,3.417710559006082e-10,0.0,0.0,0.0,592743.9361501952,0.0,-3.552713678800501e-14,0.0,-2732735.5755718905,true,true,0.0,5779.292771145996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,509,0.9063983266752664,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3192936.3890384515,2658486.389038444,534450.0,4290211.871061651,-1097275.482023221,0.95,0.25,22.0,509,0.0,0.1,0.0,0.0,1050.0,534450.0,13125.0,6680625.0,13125.0,6680625.0,true,509,0.83,53000.0,1239.904194285078,0.0,0.0,2429033.601273038,0.0,2658486.389038444,0.0,2429033.601273038,-0.0,0.0,-0.0,0.0,0.0,229452.78776539012,509,53000.0,1239.904194285078,0.0,1378610.5688761137,1050.0,534450.0,0.0,785866.6327259182,0.0,3.417710559006082e-10,0.0,0.0,0.0,592743.9361501952,0.0,-3.552713678800501e-14,0.0,-2732735.5755718905,true,true,0.0,5779.292771145996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,510,0.9063977427580159,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3193986.3890384515,2658486.389038444,535500.0,4291260.2944850745,-1097273.9054466444,0.95,0.25,22.0,510,0.0,0.1,0.0,0.0,1050.0,535500.0,13125.0,6693750.0,13125.0,6693750.0,true,510,0.83,53000.0,1239.904194285078,0.0,0.0,2429033.601273038,0.0,2658486.389038444,0.0,2429033.601273038,-0.0,0.0,-0.0,0.0,0.0,229452.78776539012,510,53000.0,1239.904194285078,0.0,1378610.5688761137,1050.0,535500.0,0.0,785866.6327259182,0.0,3.417710559006082e-10,0.0,0.0,0.0,592743.9361501952,0.0,-3.552713678800501e-14,0.0,-2732735.5755718905,true,true,0.0,5779.292771145996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,511,0.9063969807372652,666.0,0.0,1370.2657140216088,320.2657140216087,1050.0,1368.2082579945493,2.0574560270594726,3195356.654752473,2658806.6547524654,536550.0,4292628.502743069,-1097271.8479906174,0.95,0.25,22.0,511,0.0,0.1,0.0,0.0,1050.0,536550.0,13125.0,6706875.0,13125.0,6706875.0,true,511,0.8350459734894428,53000.0,1239.904194285078,0.0,267.4365949404657,2429301.037867978,320.2657140216087,2658806.6547524654,267.4365949404657,2429301.037867978,-0.0,0.0,-0.0,0.0,52.829119081143006,229505.61688447127,511,53000.0,1239.904194285078,267.4365949404657,1378878.0054710542,1050.0,536550.0,0.007905070628551215,785866.6406309889,235.26488675329273,235.2648867536345,0.0,0.0,27.51041263197008,592771.4465628272,4.653390484574293,4.653390484574257,-267.4365949404657,-2733003.0121668307,true,true,0.536456703,5779.829227848996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,512,0.9063951707902087,666.0,0.0,3254.6467969370538,2204.6467969370538,1050.0,3249.7599398845955,4.886857052458039,3198611.30154941,2661011.3015494025,537600.0,4295878.262682954,-1097266.9611335648,0.95,0.25,22.0,512,0.0,0.1,0.0,0.0,1050.0,537600.0,13125.0,6720000.0,13125.0,6720000.0,true,512,0.8660240991758162,53000.0,1239.904194285078,0.0,1909.2772563182605,2431210.3151242966,2204.6467969370538,2661011.3015494025,1909.2772563182605,2431210.3151242966,-0.0,0.0,-0.0,0.0,295.3695406187933,229800.98642509006,512,53000.0,1239.904194285078,1909.2772563182605,1380787.2827273726,1050.0,537600.0,0.47495841975282194,785867.1155894087,1766.1204377832669,2001.3853245369014,0.0,0.0,107.74911620598495,592879.1956790332,34.932743909255784,39.586134393830044,-1909.2772563182605,-2734912.289423149,true,true,1.564665385,5781.393893233996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,513,0.90639258257923,666.0,0.0,4654.12098172238,3604.12098172238,1050.0,4647.132812080154,6.988169642225795,3203265.4225311326,2664615.422531125,538650.0,4300525.395495034,-1097259.9729639227,0.95,0.25,22.0,513,0.0,0.1,0.0,0.0,1050.0,538650.0,13125.0,6733125.0,13125.0,6733125.0,true,513,0.8902702030003373,53000.0,1239.904194285078,0.0,3208.641518035758,2434418.9566423325,3604.12098172238,2664615.422531125,3208.641518035758,2434418.9566423325,-0.0,0.0,-0.0,0.0,395.4794636866218,230196.46588877667,513,53000.0,1239.904194285078,3208.641518035758,1383995.9242454083,1050.0,538650.0,3.3349516801233223,785870.4505410888,2940.811090263537,4942.196414800439,0.0,0.0,206.32809491926156,593085.5237739524,58.167381172836095,97.75351556666614,-3208.641518035758,-2738120.930941185,true,true,2.458759891,5783.852653124996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,514,0.906390544895613,666.0,0.0,3664.16268021412,2614.16268021412,1050.0,3658.6609344480325,5.501745766087267,3206929.585211347,2667229.5852113394,539700.0,4304184.056429482,-1097254.4712181566,0.95,0.25,22.0,514,0.0,0.1,0.0,0.0,1050.0,539700.0,13125.0,6746250.0,13125.0,6746250.0,true,514,0.873062795817143,53000.0,1239.904194285078,0.0,2282.3281783085754,2436701.284820641,2614.16268021412,2667229.5852113394,2282.3281783085754,2436701.284820641,-0.0,0.0,-0.0,0.0,331.8345019055446,230528.3003906822,514,53000.0,1239.904194285078,2282.3281783085754,1386278.252423717,1050.0,539700.0,7.90507065065478,785878.3556117394,1960.5407269641778,6902.737141764617,0.0,0.0,275.1041265761093,593360.6279005285,38.77825411763359,136.53176968429972,-2282.3281783085754,-2740403.2591194934,true,true,2.905807144,5786.758460268997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,515,0.906386687657771,666.0,0.0,6936.085087450736,5886.085087450736,1050.0,6925.670545277387,10.414542173349453,3213865.6702987975,2673115.67029879,540750.0,4311109.726974759,-1097244.0566759834,0.95,0.25,22.0,515,0.0,0.1,0.0,0.0,1050.0,540750.0,13125.0,6759375.0,13125.0,6759375.0,true,515,0.9102174234046797,53000.0,1239.904194285078,0.0,5357.617202240118,2442058.902022881,5886.085087450736,2673115.67029879,5357.617202240118,2442058.902022881,-0.0,0.0,-0.0,0.0,528.4678852106181,231056.76827589283,515,53000.0,1239.904194285078,5357.617202240118,1391635.869625957,1050.0,540750.0,15.439591116286953,785893.7952028557,4901.351817593175,11804.088959357792,0.0,0.0,343.880158232957,593704.5080587615,96.94563529769823,233.47740498199795,-5357.617202240118,-2745760.8763217335,true,true,3.79990165,5790.5583619189965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,516,0.906383769110925,666.0,0.0,5248.130938389342,4198.130938389342,1050.0,5240.250861905274,7.8800764840680815,3219113.801237187,2677313.8012371794,541800.0,4316349.977836665,-1097236.1765994993,0.95,0.25,22.0,516,0.0,0.1,0.0,0.0,1050.0,541800.0,13125.0,6772500.0,13125.0,6772500.0,true,516,0.8954648950976511,53000.0,1239.904194285078,0.0,3759.2788803510157,2445818.180903232,4198.130938389342,2677313.8012371794,3759.2788803510157,2445818.180903232,-0.0,0.0,-0.0,0.0,438.8520580383265,231495.62033393115,516,53000.0,1239.904194285078,3759.2788803510157,1395395.148506308,1050.0,541800.0,27.126748581426494,785920.9219514371,3252.863820920695,15056.952780278487,0.0,0.0,414.94872426298184,594119.4567830245,64.33958658591229,297.81699156791024,-3759.2788803510157,-2749520.1552020847,true,true,4.291653628,5794.8500155469965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,517,0.9063809984819006,666.0,0.0,4982.145111739241,3932.145111739241,1050.0,4974.664413373266,7.480698365974836,3224095.946348926,2681245.9463489186,542850.0,4321324.642250038,-1097228.6959011334,0.95,0.25,22.0,517,0.0,0.1,0.0,0.0,1050.0,542850.0,13125.0,6785625.0,13125.0,6785625.0,true,517,0.8931313399286956,53000.0,1239.904194285078,0.0,3511.9220324417392,2449330.102935674,3932.145111739241,2681245.9463489186,3511.9220324417392,2449330.102935674,-0.0,0.0,-0.0,0.0,420.22307929750195,231915.84341322863,517,53000.0,1239.904194285078,3511.9220324417392,1398907.0705387497,1050.0,542850.0,37.14926193135575,785958.0712133684,2955.515140550891,18012.46792082938,0.0,0.0,460.799411982932,594580.2561950074,58.45821797656036,356.2752095444706,-3511.9220324417392,-2753032.0772345266,true,true,4.693996155,5799.544011701996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,518,0.906376883503119,666.0,0.0,7399.554845149503,6349.554845149503,1050.0,7388.444402439069,11.11044271043469,3231495.5011940757,2687595.501194068,543900.0,4328713.086652477,-1097217.585458423,0.95,0.25,22.0,518,0.0,0.1,0.0,0.0,1050.0,543900.0,13125.0,6798750.0,13125.0,6798750.0,true,518,0.911848420979132,53000.0,1239.904194285078,0.0,5789.831559469972,2455119.934495144,6349.554845149503,2687595.501194068,5789.831559469972,2455119.934495144,-0.0,0.0,-0.0,0.0,559.7232856795317,232475.56669890817,518,53000.0,1239.904194285078,5789.831559469972,1404696.9020982196,1050.0,543900.0,51.41692173447613,786009.4881351029,5123.546430813595,23136.014351642974,0.0,0.0,513.527702873695,595093.783897881,101.34050404820515,457.6157135926758,-5789.831559469972,-2758821.9087939966,true,true,5.319862309,5804.863874010996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,519,0.9063704577564939,666.0,0.0,11554.777581106793,10504.777581106793,1050.0,11537.428065219245,17.34951588754774,3243050.2787751826,2698100.278775175,544950.0,4340250.514717696,-1097200.2359425356,0.95,0.25,22.0,519,0.0,0.1,0.0,0.0,1050.0,544950.0,13125.0,6811875.0,13125.0,6811875.0,true,519,0.9267364540611942,53000.0,1239.904194285078,0.0,9735.160326216439,2464855.0948213604,10504.777581106793,2698100.278775175,9735.160326216439,2464855.0948213604,-0.0,0.0,-0.0,0.0,769.6172548903542,233245.18395379852,519,53000.0,1239.904194285078,9735.160326216439,1414432.062424436,1050.0,544950.0,79.48063163120196,786088.9687667341,8886.150851175238,32022.165202818214,0.0,0.0,593.7664064989916,595687.55030438,175.76243691100606,633.3781505036818,-9735.160326216439,-2768557.069120213,true,true,6.258661541,5811.122535551996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,520,0.9063634124235838,666.0,0.0,12668.917639057243,11618.917639057243,1050.0,12649.8952401998,19.022398857443306,3255719.1964142397,2709719.1964142323,546000.0,4352900.409957896,-1097181.2135436782,0.95,0.25,22.0,520,0.0,0.1,0.0,0.0,1050.0,546000.0,13125.0,6825000.0,13125.0,6825000.0,true,520,0.9301961056029934,53000.0,1239.904194285078,0.0,10807.871939172974,2475662.9667605334,11618.917639057243,2709719.1964142323,10807.871939172974,2475662.9667605334,-0.0,0.0,-0.0,0.0,811.0456998842692,234056.2296536828,520,53000.0,1239.904194285078,10807.871939172974,1425239.934363609,1050.0,546000.0,123.51672890266623,786212.4854956368,9802.703623491592,41824.86882630981,0.0,0.0,687.7603164146324,596375.3106207947,193.8912703640817,827.2694208677635,-10807.871939172974,-2779364.941059386,true,true,7.152756046,5818.275291597996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,521,0.9063565514285586,666.0,0.0,12337.44125418001,11287.44125418001,1050.0,12318.916567612172,18.524686567837854,3268056.6376684196,2721006.637668412,547050.0,4365219.326525508,-1097162.6888571102,0.95,0.25,22.0,521,0.0,0.1,0.0,0.0,1050.0,547050.0,13125.0,6838125.0,13125.0,6838125.0,true,521,0.9295952914821396,53000.0,1239.904194285078,0.0,10492.752242766994,2486155.7190033,11287.44125418001,2721006.637668412,10492.752242766994,2486155.7190033,-0.0,0.0,-0.0,0.0,794.6890114130165,234850.9186650958,521,53000.0,1239.904194285078,10492.752242766994,1435732.686606376,1050.0,547050.0,175.08612059157463,786387.5716162284,9359.948185280715,51184.81701159052,0.0,0.0,772.5840887350014,597147.8947095297,185.1338481597025,1012.403269027466,-10492.752242766994,-2789857.6933021527,true,true,7.912736376,5826.188027973996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,522,0.9063505410815617,666.0,0.0,10807.805970000347,9757.805970000347,1050.0,10791.578033108455,16.227936891892412,3278864.44363842,2730764.4436384127,548100.0,4376010.904558617,-1097146.4609202184,0.95,0.25,22.0,522,0.0,0.1,0.0,0.0,1050.0,548100.0,13125.0,6851250.0,13125.0,6851250.0,true,522,0.9240243404751473,53000.0,1239.904194285078,0.0,9016.450225914024,2495172.169229214,9757.805970000347,2730764.4436384127,9016.450225914024,2495172.169229214,-0.0,0.0,-0.0,0.0,741.3557440863224,235592.27440918214,522,53000.0,1239.904194285078,9016.450225914024,1444749.13683229,1050.0,548100.0,226.1310557079917,786613.7026719365,7794.783174468084,58979.60018605861,0.0,0.0,841.3601203918493,597989.2548299215,154.17587534609828,1166.5791443735643,-9016.450225914024,-2798874.1435280666,true,true,8.493897805,5834.681925778997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,523,0.9063449264302311,666.0,0.0,10096.266022506028,9046.266022506028,1050.0,10081.106463913677,15.159558592351393,3288960.7096609264,2739810.709660919,549150.0,4386092.0110225305,-1097131.301361626,0.95,0.25,22.0,523,0.0,0.1,0.0,0.0,1050.0,549150.0,13125.0,6864375.0,13125.0,6864375.0,true,523,0.921455594083024,53000.0,1239.904194285078,0.0,8335.732432001367,2503507.9016612154,9046.266022506028,2739810.709660919,8335.732432001367,2503507.9016612154,-0.0,0.0,-0.0,0.0,710.5335905046613,236302.8079996868,523,53000.0,1239.904194285078,8335.732432001367,1453084.8692642914,1050.0,549150.0,273.459043065588,786887.161715002,7026.90471752183,66006.50490358044,0.0,0.0,896.380945707071,598885.6357756286,138.98772570687754,1305.5668700804417,-8335.732432001367,-2807209.875960068,true,true,8.985649783,5843.667575561996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,524,0.9063398459721517,666.0,0.0,9135.679718427577,8085.6797184275765,1050.0,9121.96248161312,13.71723681445582,3298096.3893793537,2747896.3893793463,550200.0,4395213.973504144,-1097117.5841248115,0.95,0.25,22.0,524,0.0,0.1,0.0,0.0,1050.0,550200.0,13125.0,6877500.0,13125.0,6877500.0,true,524,0.9180103302202602,53000.0,1239.904194285078,0.0,7422.73750836896,2510930.6391695845,8085.6797184275765,2747896.3893793463,7422.73750836896,2510930.6391695845,-0.0,0.0,-0.0,0.0,662.9422100586162,236965.75020974543,524,53000.0,1239.904194285078,7422.73750836896,1460507.6067726603,1050.0,550200.0,317.6051114042043,787204.7668264062,6043.3667950854115,72049.87169866585,0.0,0.0,942.2316334783027,599827.8674091069,119.53396840104135,1425.1008384814832,-7422.73750836896,-2814632.613468437,true,true,9.387992311,5853.055567872996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,525,0.9063341276357643,666.0,0.0,10282.712491873637,9232.712491873637,1050.0,10267.272983627581,15.439508246056512,3308379.1018712274,2757129.10187122,551250.0,4405481.246487771,-1097102.1446165654,0.95,0.25,22.0,525,0.0,0.1,0.0,0.0,1050.0,551250.0,13125.0,6890625.0,13125.0,6890625.0,true,525,0.922127306810127,53000.0,1239.904194285078,0.0,8513.736304683654,2519444.375474268,9232.712491873637,2757129.10187122,8513.736304683654,2519444.375474268,-0.0,0.0,-0.0,0.0,718.9761871899827,237684.7263969354,525,53000.0,1239.904194285078,8513.736304683654,1469021.343077344,1050.0,551250.0,363.7201690860764,787568.4869954924,7025.270938136045,79075.1426368019,0.0,0.0,985.7897868763577,600813.6571959833,138.95541058517554,1564.0562490666587,-8513.736304683654,-2823146.3497731206,true,true,9.835039564,5862.890607436996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,526,0.9063281581645276,666.0,0.0,10734.303177732088,9684.303177732088,1050.0,10718.185605393151,16.11757233893707,3319113.4050489594,2766813.405048952,552300.0,4416199.432093164,-1097086.0270442264,0.95,0.25,22.0,526,0.0,0.1,0.0,0.0,1050.0,552300.0,13125.0,6903750.0,13125.0,6903750.0,true,526,0.923758323265888,53000.0,1239.904194285078,0.0,8945.955665460306,2528390.3311397284,9684.303177732088,2766813.405048952,8945.955665460306,2528390.3311397284,-0.0,0.0,-0.0,0.0,738.3475122717828,238423.0739092072,526,53000.0,1239.904194285078,8945.955665460306,1477967.2987428042,1050.0,552300.0,416.8689602640805,787985.3559557564,7352.027776457926,86427.17041325982,0.0,0.0,1031.6404748014347,601845.2976707848,145.4184539368638,1709.4747030035226,-8945.955665460306,-2832092.305438581,true,true,10.28208682,5873.172694256996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,527,0.906322868369785,666.0,0.0,9512.108906095336,8462.108906095336,1050.0,9497.82646029039,14.282445804947953,3328625.513955055,2775275.5139550474,553350.0,4425697.258553455,-1097071.7445984215,0.95,0.25,22.0,527,0.0,0.1,0.0,0.0,1050.0,553350.0,13125.0,6916875.0,13125.0,6916875.0,true,527,0.9193573666420609,53000.0,1239.904194285078,0.0,7779.702160146139,2536170.0332998745,8462.108906095336,2775275.5139550474,7779.702160146139,2536170.0332998745,-0.0,0.0,-0.0,0.0,682.4067459491971,239105.4806551564,527,53000.0,1239.904194285078,7779.702160146139,1485747.0009029503,1050.0,553350.0,468.92088616152745,788454.2768419179,6116.887028102958,92544.05744136278,0.0,0.0,1072.9060938263121,602918.203764611,120.98815205534211,1830.4628550588648,-7779.702160146139,-2839872.007598727,true,true,10.63972462,5883.812418876996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,528,0.906317885994017,666.0,0.0,8959.30810616932,7909.308106169319,1050.0,8945.855691595492,13.452414573827806,3337584.822061224,2783184.8220612165,554400.0,4434643.114245051,-1097058.2921838476,0.95,0.25,22.0,528,0.0,0.1,0.0,0.0,1050.0,554400.0,13125.0,6930000.0,13125.0,6930000.0,true,528,0.9173805487185731,53000.0,1239.904194285078,0.0,7255.845410421868,2543425.8787102965,7909.308106169319,2783184.8220612165,7255.845410421868,2543425.8787102965,-0.0,0.0,-0.0,0.0,653.4626957474511,239758.94335090384,528,53000.0,1239.904194285078,7255.845410421868,1493002.8463133723,1050.0,554400.0,515.4700182647258,788969.7468601826,5523.823550466953,98067.88099182973,0.0,0.0,1107.2941096803768,604025.4978742914,109.25773200981281,1939.7205870686776,-7255.845410421868,-2847127.853009149,true,true,10.9526577,5894.765076576996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,529,0.9063142508081269,666.0,0.0,6536.791267552439,5486.791267552439,1050.0,6526.976265649208,9.815001903231892,3344121.6133287763,2788671.613328769,555450.0,4441170.0905107,-1097048.4771819443,0.95,0.25,22.0,529,0.0,0.1,0.0,0.0,1050.0,555450.0,13125.0,6943125.0,13125.0,6943125.0,true,529,0.9069454766154713,53000.0,1239.904194285078,0.0,4976.220521239953,2548402.0992315365,5486.791267552439,2788671.613328769,4976.220521239953,2548402.0992315365,-0.0,0.0,-0.0,0.0,510.57074631248634,240269.51409721634,529,53000.0,1239.904194285078,4976.220521239953,1497979.0668346123,1050.0,555450.0,551.4966322278547,789521.2434924105,3228.357042934731,101296.23803476446,0.0,0.0,1132.5119880417333,605158.0098623331,63.854858035634244,2003.5754451043117,-4976.220521239953,-2852104.073530389,true,true,11.1314766,5905.896553176995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,530,0.9063120556978536,666.0,0.0,3947.2472934022626,2897.2472934022626,1050.0,3941.3204956644213,5.926797737841235,3348068.8606221788,2791568.8606221713,556500.0,4445111.411006364,-1097042.5503842065,0.95,0.25,22.0,530,0.0,0.1,0.0,0.0,1050.0,556500.0,13125.0,6956250.0,13125.0,6956250.0,true,530,0.8779956713677174,53000.0,1239.904194285078,0.0,2543.7705824890218,2550945.8698140257,2897.2472934022626,2791568.8606221713,2543.7705824890218,2550945.8698140257,-0.0,0.0,-0.0,0.0,353.4767109132408,240622.99080812957,530,53000.0,1239.904194285078,2543.7705824890218,1500522.8374171013,1050.0,556500.0,568.4125451233863,790089.6560375339,815.25808895598,102111.49612372044,0.0,0.0,1143.97465965121,606301.9845219842,16.125288758445397,2019.700733862757,-2543.7705824890218,-2854647.844112878,true,true,11.17618132,5917.0727344969955,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,531,0.9063103638971031,666.0,0.0,3042.1961095530014,1992.1961095530012,1050.0,3037.6282475266457,4.567862026355858,3351111.0567317316,2793561.056731724,557550.0,4448149.0392538905,-1097037.98252218,0.95,0.25,22.0,531,0.0,0.1,0.0,0.0,1050.0,557550.0,13125.0,6969375.0,13125.0,6969375.0,true,531,0.8624170547408858,53000.0,1239.904194285078,0.0,1718.1039012669503,2552663.9737152928,1992.1961095530012,2793561.056731724,1718.1039012669503,2552663.9737152928,-0.0,0.0,-0.0,0.0,274.0922082860509,240897.08301641562,531,53000.0,1239.904194285078,1718.1039012669503,1502240.9413183683,1050.0,557550.0,571.8367074989714,790661.4927450329,0.0,102111.49612372044,0.0,0.0,1146.2671937679788,607448.2517157522,0.0,2019.700733862757,-1718.1039012669503,-2856365.9480141453,true,true,11.17618132,5928.248915816996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,532,0.9063086720963526,666.0,0.0,3042.1961095530014,1992.1961095530012,1050.0,3037.6282475266457,4.567862026355858,3354153.2528412845,2795553.252841277,558600.0,4451186.667501417,-1097033.4146601537,0.95,0.25,22.0,532,0.0,0.1,0.0,0.0,1050.0,558600.0,13125.0,6982500.0,13125.0,6982500.0,true,532,0.8624170547408858,53000.0,1239.904194285078,0.0,1718.1039012669503,2554382.07761656,1992.1961095530012,2795553.252841277,1718.1039012669503,2554382.07761656,-0.0,0.0,-0.0,0.0,274.0922082860509,241171.17522470167,532,53000.0,1239.904194285078,1718.1039012669503,1503959.0452196354,1050.0,558600.0,571.8367074989714,791233.3294525319,0.0,102111.49612372044,0.0,0.0,1146.2671937679788,608594.5189095201,0.0,2019.700733862757,-1718.1039012669503,-2858084.0519154123,true,true,11.17618132,5939.425097136996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,533,0.9063069802956021,666.0,0.0,3042.1961095530014,1992.1961095530012,1050.0,3037.6282475266457,4.567862026355858,3357195.4489508374,2797545.44895083,559650.0,4454224.295748943,-1097028.8467981273,0.95,0.25,22.0,533,0.0,0.1,0.0,0.0,1050.0,559650.0,13125.0,6995625.0,13125.0,6995625.0,true,533,0.8624170547408858,53000.0,1239.904194285078,0.0,1718.1039012669503,2556100.181517827,1992.1961095530012,2797545.44895083,1718.1039012669503,2556100.181517827,-0.0,0.0,-0.0,0.0,274.0922082860509,241445.26743298772,533,53000.0,1239.904194285078,1718.1039012669503,1505677.1491209024,1050.0,559650.0,571.8367074989714,791805.1661600309,0.0,102111.49612372044,0.0,0.0,1146.2671937679788,609740.7861032881,0.0,2019.700733862757,-1718.1039012669503,-2859802.1558166794,true,true,11.17618132,5950.601278456996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,534,0.9063052884948516,666.0,0.0,3042.1961095530014,1992.1961095530012,1050.0,3037.6282475266457,4.567862026355858,3360237.6450603902,2799537.645060383,560700.0,4457261.92399647,-1097024.278936101,0.95,0.25,22.0,534,0.0,0.1,0.0,0.0,1050.0,560700.0,13125.0,7008750.0,13125.0,7008750.0,true,534,0.8624170547408858,53000.0,1239.904194285078,0.0,1718.1039012669503,2557818.285419094,1992.1961095530012,2799537.645060383,1718.1039012669503,2557818.285419094,-0.0,0.0,-0.0,0.0,274.0922082860509,241719.35964127377,534,53000.0,1239.904194285078,1718.1039012669503,1507395.2530221695,1050.0,560700.0,571.8367074989714,792377.0028675299,0.0,102111.49612372044,0.0,0.0,1146.2671937679788,610887.053297056,0.0,2019.700733862757,-1718.1039012669503,-2861520.2597179464,true,true,11.17618132,5961.777459776996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,535,0.9063035966941011,666.0,0.0,3042.1961095530014,1992.1961095530012,1050.0,3037.6282475266457,4.567862026355858,3363279.841169943,2801529.8411699357,561750.0,4460299.552243996,-1097019.7110740745,0.95,0.25,22.0,535,0.0,0.1,0.0,0.0,1050.0,561750.0,13125.0,7021875.0,13125.0,7021875.0,true,535,0.8624170547408858,53000.0,1239.904194285078,0.0,1718.1039012669503,2559536.389320361,1992.1961095530012,2801529.8411699357,1718.1039012669503,2559536.389320361,-0.0,0.0,-0.0,0.0,274.0922082860509,241993.45184955982,535,53000.0,1239.904194285078,1718.1039012669503,1509113.3569234365,1050.0,561750.0,571.8367074989714,792948.8395750289,0.0,102111.49612372044,0.0,0.0,1146.2671937679788,612033.320490824,0.0,2019.700733862757,-1718.1039012669503,-2863238.3636192135,true,true,11.17618132,5972.953641096996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,536,0.9062988764301496,666.0,0.0,8487.978637539876,7437.978637539877,1050.0,8475.233924870898,12.744712668978794,3371767.819807483,2808967.8198074754,562800.0,4468774.786168868,-1097006.9663614056,0.95,0.25,22.0,536,0.0,0.1,0.0,0.0,1050.0,562800.0,13125.0,7035000.0,13125.0,7035000.0,true,536,0.915701774478989,53000.0,1239.904194285078,0.0,6810.9702369320785,2566347.359557293,7437.978637539877,2808967.8198074754,6810.9702369320785,2566347.359557293,-0.0,0.0,-0.0,0.0,627.0084006077986,242620.4602501676,536,53000.0,1239.904194285078,6810.9702369320785,1515924.3271603687,1050.0,562800.0,592.6708504283539,793541.5104254573,4960.16800427034,107071.66412799078,0.0,0.0,1160.0224000070414,613193.342890831,98.10898222634322,2117.8097160891,-6810.9702369320785,-2870049.3338561454,true,true,11.44440967,5984.398050766996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,537,0.9062961055498757,666.0,0.0,4982.59690845025,3932.596908450251,1050.0,4975.115531710836,7.48137673941479,3376750.416715933,2812900.4167159256,563850.0,4473749.901700579,-1096999.484984666,0.95,0.25,22.0,537,0.0,0.1,0.0,0.0,1050.0,563850.0,13125.0,7048125.0,13125.0,7048125.0,true,537,0.8931352933338932,53000.0,1239.904194285078,0.0,3512.341093392676,2569859.7006506855,3932.596908450251,2812900.4167159256,3512.341093392676,2569859.7006506855,-0.0,0.0,-0.0,0.0,420.25581505757464,243040.7160652252,537,53000.0,1239.904194285078,3512.341093392676,1519436.6682537613,1050.0,563850.0,621.228503506388,794162.7389289637,1679.5298774369903,108751.19400542777,0.0,0.0,1178.362674992458,614371.7055658234,33.2200374568398,2151.02975354594,-3512.341093392676,-2873561.674949538,true,true,11.53381912,5995.931869886996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,538,0.9062933124255919,666.0,0.0,5022.596087276309,3972.596087276309,1050.0,5015.054651709828,7.541435566480945,3381773.0128032095,2816873.012803202,564900.0,4478764.956352289,-1096991.9435490996,0.95,0.25,22.0,538,0.0,0.1,0.0,0.0,1050.0,564900.0,13125.0,7061250.0,13125.0,7061250.0,true,538,0.8934854412053855,53000.0,1239.904194285078,0.0,3549.456767770861,2573409.1574184564,3972.596087276309,2816873.012803202,3549.456767770861,2573409.1574184564,-0.0,0.0,-0.0,0.0,423.13931950544793,243463.85538473065,538,53000.0,1239.904194285078,3549.456767770861,1522986.1250215322,1050.0,564900.0,635.8450530496157,794798.5839820133,1692.6003388168601,110443.79434424463,0.0,0.0,1187.5328129979832,615559.2383788213,33.47856290640209,2184.508316452342,-3549.456767770861,-2877111.131717309,true,true,11.62322858,6007.555098466995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,539,0.9062933008142479,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3381793.892321953,2815843.8923219456,565950.0,4478785.804520403,-1096991.912198471,0.95,0.25,22.0,539,0.0,0.1,0.0,0.0,1050.0,565950.0,13125.0,7074375.0,13125.0,7074375.0,true,539,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2572169.253224171,-1029.1204812566145,2815843.8923219456,-1239.904194285078,2572169.253224171,-0.0,0.0,-0.0,0.0,210.78371302846335,243674.63909775912,539,53000.0,1239.904194285078,-1627.372620184723,1521358.7524013475,1050.0,565950.0,628.5084521807402,795427.092434194,-3372.1302162538504,107071.66412799078,0.0,0.0,1182.9477442516293,616742.1861230729,-66.6986003632419,2117.8097160891,-1239.904194285078,-2878351.035911594,true,true,11.44440967,6018.999508136995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,540,0.9062932892029039,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3381814.7718406967,2814814.7718406892,567000.0,4478806.652688517,-1096991.8808478422,0.95,0.25,22.0,540,0.0,0.1,0.0,0.0,1050.0,567000.0,13125.0,7087500.0,13125.0,7087500.0,true,540,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2570929.349029886,-1029.1204812566145,2814814.7718406892,-1239.904194285078,2570929.349029886,-0.0,0.0,-0.0,0.0,210.78371302846335,243885.4228107876,540,53000.0,1239.904194285078,-1621.1795998259113,1519737.5728015215,1050.0,567000.0,599.7263821159733,796026.81881631,-3319.8489408536884,103751.8151871371,0.0,0.0,1164.6074687533956,617906.7935918262,-65.66450984159188,2052.145206247508,-1239.904194285078,-2879590.940105879,true,true,11.26559077,6030.265098906995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,541,0.9062926672679333,666.0,0.0,1118.3634640082894,68.36346400828943,1050.0,1116.6842395878566,1.679224420432867,3382933.135304705,2814883.1353046973,568050.0,4479923.336928105,-1096990.2016234219,0.95,0.25,22.0,541,0.0,0.1,0.0,0.0,1050.0,568050.0,13125.0,7100625.0,13125.0,7100625.0,true,541,0.8310719803663787,53000.0,1239.904194285078,0.0,56.81495941807475,2570986.163989304,68.36346400828943,2814883.1353046973,56.81495941807475,2570986.163989304,-0.0,0.0,-0.0,0.0,11.548504590214677,243896.9713153778,541,53000.0,1239.904194285078,56.81495941807475,1519794.3877609395,1050.0,568050.0,578.7262327051446,796605.5450490152,-1640.3190634166515,102111.49612372044,0.0,0.0,1150.852262514333,619057.6458543405,-32.444472384751336,2019.7007338627568,-56.81495941807475,-2879647.7550652972,true,true,11.17618132,6041.441280226995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,542,0.9062909754671828,666.0,0.0,3042.1961095530014,1992.1961095530012,1050.0,3037.6282475266457,4.567862026355858,3385975.3314142576,2816875.33141425,569100.0,4482960.965175631,-1096985.6337613955,0.95,0.25,22.0,542,0.0,0.1,0.0,0.0,1050.0,569100.0,13125.0,7113750.0,13125.0,7113750.0,true,542,0.8624170547408858,53000.0,1239.904194285078,0.0,1718.1039012669503,2572704.267890571,1992.1961095530012,2816875.33141425,1718.1039012669503,2572704.267890571,-0.0,0.0,-0.0,0.0,274.0922082860509,244171.06352366385,542,53000.0,1239.904194285078,1718.1039012669503,1521512.4916622066,1050.0,569100.0,571.8367074989714,797177.3817565142,0.0,102111.49612372044,0.0,0.0,1146.2671937679788,620203.9130481085,0.0,2019.7007338627568,-1718.1039012669503,-2881365.8589665643,true,true,11.17618132,6052.617461546995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,543,0.9062892836664324,666.0,0.0,3042.1961095530014,1992.1961095530012,1050.0,3037.6282475266457,4.567862026355858,3389017.5275238105,2818867.527523803,570150.0,4485998.593423158,-1096981.065899369,0.95,0.25,22.0,543,0.0,0.1,0.0,0.0,1050.0,570150.0,13125.0,7126875.0,13125.0,7126875.0,true,543,0.8624170547408858,53000.0,1239.904194285078,0.0,1718.1039012669503,2574422.371791838,1992.1961095530012,2818867.527523803,1718.1039012669503,2574422.371791838,-0.0,0.0,-0.0,0.0,274.0922082860509,244445.1557319499,543,53000.0,1239.904194285078,1718.1039012669503,1523230.5955634736,1050.0,570150.0,571.8367074989714,797749.2184640132,0.0,102111.49612372044,0.0,0.0,1146.2671937679788,621350.1802418764,0.0,2019.7007338627568,-1718.1039012669503,-2883083.9628678313,true,true,11.17618132,6063.7936428669955,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,544,0.9062892720550884,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3389038.407042554,2817838.4070425467,571200.0,4486019.441591272,-1096981.0345487404,0.95,0.25,22.0,544,0.0,0.1,0.0,0.0,1050.0,571200.0,13125.0,7140000.0,13125.0,7140000.0,true,544,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2573182.467597553,-1029.1204812566145,2817838.4070425467,-1239.904194285078,2573182.467597553,-0.0,0.0,-0.0,0.0,210.78371302846335,244655.93944497837,544,53000.0,1239.904194285078,-3254.3092302118184,1519976.2863332618,1050.0,571200.0,551.496631478679,798300.7150954918,-4842.535562209335,97268.9605615111,0.0,0.0,1132.5119875289163,622482.6922294053,-95.78228701007855,1923.9184468526782,-1239.904194285078,-2884323.8670621165,true,true,10.90795297,6074.701595836996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,545,0.9062892604437444,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3389059.2865612977,2816809.2865612903,572250.0,4486040.289759386,-1096981.0031981117,0.95,0.25,22.0,545,0.0,0.1,0.0,0.0,1050.0,572250.0,13125.0,7153125.0,13125.0,7153125.0,true,545,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2571942.563403268,-1029.1204812566145,2816809.2865612903,-1239.904194285078,2571942.563403268,-0.0,0.0,-0.0,0.0,210.78371302846335,244866.72315800685,545,53000.0,1239.904194285078,-8708.929943161324,1511267.3563901004,1050.0,572250.0,490.2784972304616,798790.9935927223,-10088.615841582527,87180.34471992857,0.0,0.0,1088.9538341821433,623571.6460635874,-199.54643299140102,1724.3720138612773,-1239.904194285078,-2885563.7712564017,true,true,10.32679154,6085.028387376996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,546,0.9062892488324004,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3389080.1660800413,2815780.166080034,573300.0,4486061.1379275005,-1096980.971847483,0.95,0.25,22.0,546,0.0,0.1,0.0,0.0,1050.0,573300.0,13125.0,7166250.0,13125.0,7166250.0,true,546,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2570702.6592089827,-1029.1204812566145,2815780.166080034,-1239.904194285078,2570702.6592089827,-0.0,0.0,-0.0,0.0,210.78371302846335,245077.50687103532,546,53000.0,1239.904194285078,-22242.279909603916,1489025.0764804964,1050.0,573300.0,361.18848313811515,799152.1820758604,-23129.47919280233,64050.86552712624,0.0,0.0,983.4972523493354,624555.1433159368,-457.4864522890351,1266.8855615722423,-1239.904194285078,-2886803.675450687,true,true,8.851535607,6093.879922983996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,547,0.9062892372210564,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3389101.045598785,2814751.0455987775,574350.0,4486081.986095615,-1096980.9404968543,0.95,0.25,22.0,547,0.0,0.1,0.0,0.0,1050.0,574350.0,13125.0,7179375.0,13125.0,7179375.0,true,547,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2569462.7550146976,-1029.1204812566145,2814751.0455987775,-1239.904194285078,2569462.7550146976,-0.0,0.0,-0.0,0.0,210.78371302846335,245288.2905840638,547,53000.0,1239.904194285078,-18907.19431278881,1470117.8821677077,1050.0,574350.0,218.81741976061417,799370.9994956211,-19571.097793925037,44479.7677332012,0.0,0.0,832.1899828478593,625387.3332987847,-387.1039214722469,879.7816400999955,-1239.904194285078,-2888043.579644972,true,true,7.376279673,6101.256202656996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,548,0.9062892256097124,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3389121.9251175285,2813721.925117521,575400.0,4486102.834263729,-1096980.9091462255,0.95,0.25,22.0,548,0.0,0.1,0.0,0.0,1050.0,575400.0,13125.0,7192500.0,13125.0,7192500.0,true,548,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2568222.8508204124,-1029.1204812566145,2813721.925117521,-1239.904194285078,2568222.8508204124,-0.0,0.0,-0.0,0.0,210.78371302846335,245499.07429709227,548,53000.0,1239.904194285078,-15528.706906546087,1454589.1752611615,1050.0,575400.0,119.84815853400774,799490.8476541551,-16012.71638781158,28467.05134538962,0.0,0.0,680.8827132438195,626068.2160120285,-316.7213905123323,563.0602495876632,-1239.904194285078,-2889283.483839257,true,true,5.901023738,6107.157226394996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,549,0.9062892139983684,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3389142.804636272,2812692.8046362647,576450.0,4486123.682431843,-1096980.8777955968,0.95,0.25,22.0,549,0.0,0.1,0.0,0.0,1050.0,576450.0,13125.0,7205625.0,13125.0,7205625.0,true,549,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2566982.946626127,-1029.1204812566145,2812692.8046362647,-1239.904194285078,2566982.946626127,-0.0,0.0,-0.0,0.0,210.78371302846335,245709.85801012075,549,53000.0,1239.904194285078,-12114.708912676719,1442474.4663484849,1050.0,576450.0,56.389462796284725,799547.2371169514,-12454.334959989745,16012.716385399875,0.0,0.0,529.5754436397798,626597.7914556683,-246.33885912303964,316.72139046462354,-1239.904194285078,-2890523.3880335423,true,true,4.425767804,6111.582994198996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,550,0.9062892023870244,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3389163.6841550157,2811663.6841550083,577500.0,4486144.530599957,-1096980.8464449681,0.95,0.25,22.0,550,0.0,0.1,0.0,0.0,1050.0,577500.0,13125.0,7218750.0,13125.0,7218750.0,true,550,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2565743.042431842,-1029.1204812566145,2811663.6841550083,-1239.904194285078,2565743.042431842,-0.0,0.0,-0.0,0.0,210.78371302846335,245920.64172314922,550,53000.0,1239.904194285078,-8673.091607311753,1433801.3747411731,1050.0,577500.0,20.55009577243478,799567.7872127239,-8895.95354905222,7116.762836347656,0.0,0.0,378.2681740357401,626976.059629704,-175.95632806770777,140.76506239691577,-1239.904194285078,-2891763.2922278275,true,true,2.950511869,6114.533506067996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,551,0.9062891907756804,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3389184.5636737593,2810634.563673752,578550.0,4486165.3787680715,-1096980.8150943394,0.95,0.25,22.0,551,0.0,0.1,0.0,0.0,1050.0,578550.0,13125.0,7231875.0,13125.0,7231875.0,true,551,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2564503.138237557,-1029.1204812566145,2810634.563673752,-1239.904194285078,2564503.138237557,-0.0,0.0,-0.0,0.0,210.78371302846335,246131.4254361777,551,53000.0,1239.904194285078,-5211.746197709154,1428589.628543464,1050.0,578550.0,4.4388206874476825,799572.2260334113,-5337.57212605447,1779.1907102931864,0.0,0.0,226.96090443170038,627203.0205341356,-105.5737967738325,35.19126562308327,-1239.904194285078,-2893003.1964221126,true,true,1.475255935,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,552,0.9062891791643364,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3389205.443192503,2809605.4431924955,579600.0,4486186.226936186,-1096980.7837437107,0.95,0.25,22.0,552,0.0,0.1,0.0,0.0,1050.0,579600.0,13125.0,7245000.0,13125.0,7245000.0,true,552,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2563263.2340432717,-1029.1204812566145,2809605.4431924955,-1239.904194285078,2563263.2340432717,-0.0,0.0,-0.0,0.0,210.78371302846335,246342.20914920617,552,53000.0,1239.904194285078,-1738.5639403219614,1426851.064603142,1050.0,579600.0,0.1644007663132048,799572.3904341777,-1779.1907102928521,3.3423930290155113e-10,0.0,0.0,75.6536348276607,627278.6741689633,-35.1912656230833,-2.842170943040401e-14,-1239.904194285078,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,553,0.9062885952470858,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3390255.443192503,2809605.4431924955,580650.0,4487234.650359609,-1096979.2071671342,0.95,0.25,22.0,553,0.0,0.1,0.0,0.0,1050.0,580650.0,13125.0,7258125.0,13125.0,7258125.0,true,553,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,553,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,580650.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,554,0.9062880113298353,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3391305.443192503,2809605.4431924955,581700.0,4488283.073783033,-1096977.6305905576,0.95,0.25,22.0,554,0.0,0.1,0.0,0.0,1050.0,581700.0,13125.0,7271250.0,13125.0,7271250.0,true,554,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,554,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,581700.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,555,0.9062874274125847,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3392355.443192503,2809605.4431924955,582750.0,4489331.497206456,-1096976.054013981,0.95,0.25,22.0,555,0.0,0.1,0.0,0.0,1050.0,582750.0,13125.0,7284375.0,13125.0,7284375.0,true,555,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,555,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,582750.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,556,0.9062868434953342,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3393405.443192503,2809605.4431924955,583800.0,4490379.920629879,-1096974.4774374045,0.95,0.25,22.0,556,0.0,0.1,0.0,0.0,1050.0,583800.0,13125.0,7297500.0,13125.0,7297500.0,true,556,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,556,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,583800.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,557,0.9062862595780836,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3394455.443192503,2809605.4431924955,584850.0,4491428.344053303,-1096972.9008608279,0.95,0.25,22.0,557,0.0,0.1,0.0,0.0,1050.0,584850.0,13125.0,7310625.0,13125.0,7310625.0,true,557,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,557,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,584850.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,558,0.9062856756608331,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3395505.443192503,2809605.4431924955,585900.0,4492476.767476726,-1096971.3242842513,0.95,0.25,22.0,558,0.0,0.1,0.0,0.0,1050.0,585900.0,13125.0,7323750.0,13125.0,7323750.0,true,558,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,558,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,585900.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,559,0.9062850917435825,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3396555.443192503,2809605.4431924955,586950.0,4493525.19090015,-1096969.7477076747,0.95,0.25,22.0,559,0.0,0.1,0.0,0.0,1050.0,586950.0,13125.0,7336875.0,13125.0,7336875.0,true,559,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,559,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,586950.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,560,0.906284507826332,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3397605.443192503,2809605.4431924955,588000.0,4494573.614323573,-1096968.1711310982,0.95,0.25,22.0,560,0.0,0.1,0.0,0.0,1050.0,588000.0,13125.0,7350000.0,13125.0,7350000.0,true,560,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,560,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,588000.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,561,0.9062839239090814,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3398655.443192503,2809605.4431924955,589050.0,4495622.037746997,-1096966.5945545216,0.95,0.25,22.0,561,0.0,0.1,0.0,0.0,1050.0,589050.0,13125.0,7363125.0,13125.0,7363125.0,true,561,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,561,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,589050.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,562,0.9062833399918309,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3399705.443192503,2809605.4431924955,590100.0,4496670.46117042,-1096965.017977945,0.95,0.25,22.0,562,0.0,0.1,0.0,0.0,1050.0,590100.0,13125.0,7376250.0,13125.0,7376250.0,true,562,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,562,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,590100.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,563,0.9062827560745803,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3400755.443192503,2809605.4431924955,591150.0,4497718.8845938435,-1096963.4414013685,0.95,0.25,22.0,563,0.0,0.1,0.0,0.0,1050.0,591150.0,13125.0,7389375.0,13125.0,7389375.0,true,563,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,563,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,591150.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,564,0.9062821721573298,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3401805.443192503,2809605.4431924955,592200.0,4498767.308017267,-1096961.864824792,0.95,0.25,22.0,564,0.0,0.1,0.0,0.0,1050.0,592200.0,13125.0,7402500.0,13125.0,7402500.0,true,564,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,564,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,592200.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,565,0.9062815882400792,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3402855.443192503,2809605.4431924955,593250.0,4499815.73144069,-1096960.2882482153,0.95,0.25,22.0,565,0.0,0.1,0.0,0.0,1050.0,593250.0,13125.0,7415625.0,13125.0,7415625.0,true,565,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,565,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,593250.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,566,0.9062810043228287,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3403905.443192503,2809605.4431924955,594300.0,4500864.154864114,-1096958.7116716388,0.95,0.25,22.0,566,0.0,0.1,0.0,0.0,1050.0,594300.0,13125.0,7428750.0,13125.0,7428750.0,true,566,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,566,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,594300.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,567,0.9062804204055781,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3404955.443192503,2809605.4431924955,595350.0,4501912.578287537,-1096957.1350950622,0.95,0.25,22.0,567,0.0,0.1,0.0,0.0,1050.0,595350.0,13125.0,7441875.0,13125.0,7441875.0,true,567,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,567,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,595350.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,568,0.9062798364883276,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3406005.443192503,2809605.4431924955,596400.0,4502961.001710961,-1096955.5585184856,0.95,0.25,22.0,568,0.0,0.1,0.0,0.0,1050.0,596400.0,13125.0,7455000.0,13125.0,7455000.0,true,568,0.83,53000.0,1239.904194285078,0.0,0.0,2563263.2340432717,0.0,2809605.4431924955,0.0,2563263.2340432717,-0.0,0.0,-0.0,0.0,0.0,246342.20914920617,568,53000.0,1239.904194285078,0.0,1426851.064603142,1050.0,596400.0,0.0,799572.3904341777,0.0,3.3423930290155113e-10,0.0,0.0,0.0,627278.6741689633,0.0,-2.842170943040401e-14,0.0,-2894243.100616398,true,true,0.0,6116.008762002996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,569,0.9062780382869018,666.0,0.0,3233.5258038302586,2183.5258038302586,1050.0,3228.6706599806635,4.855143849594983,3409238.9689963334,2811788.968996326,597450.0,4506189.672370941,-1096950.7033746361,0.95,0.25,22.0,569,0.0,0.1,0.0,0.0,1050.0,597450.0,13125.0,7468125.0,13125.0,7468125.0,true,569,0.8656641511605643,53000.0,1239.904194285078,0.0,1890.2000115099095,2565153.4340547817,2183.5258038302586,2811788.968996326,1890.2000115099095,2565153.4340547817,-0.0,0.0,-0.0,0.0,293.32579232034914,246635.53494152654,569,53000.0,1239.904194285078,1890.2000115099095,1428741.264614652,1050.0,597450.0,0.1644007663132048,799572.5548349441,1779.1907102928521,1779.1907102931864,0.0,0.0,75.6536348276607,627354.327803791,35.1912656230833,35.19126562308327,-1890.2000115099095,-2896133.3006279077,true,true,1.475255935,6117.484017937996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,570,0.9062739919659704,666.0,0.0,7276.0942989123205,6226.0942989123205,1050.0,7265.169232397438,10.925066514883364,3416515.0632952456,2818015.063295238,598500.0,4513454.841603339,-1096939.7783081213,0.95,0.25,22.0,570,0.0,0.1,0.0,0.0,1050.0,598500.0,13125.0,7481250.0,13125.0,7481250.0,true,570,0.9114133798035753,53000.0,1239.904194285078,0.0,5674.54564794745,2570827.9797027293,6226.0942989123205,2818015.063295238,5674.54564794745,2570827.9797027293,-0.0,0.0,-0.0,0.0,551.5486509648708,247187.0835924914,570,53000.0,1239.904194285078,5674.54564794745,1434415.8102625993,1050.0,598500.0,4.4388206874476825,799576.9936556316,5337.57212605447,7116.762836347656,0.0,0.0,226.96090443170038,627581.2887082227,105.5737967738325,140.76506239691577,-5674.54564794745,-2901807.8462758553,true,true,2.950511869,6120.434529806997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,571,0.906267718772678,666.0,0.0,11280.45617830062,10230.45617830062,1050.0,11263.51855641128,16.93762188934027,3427795.519473546,2828245.5194735387,599550.0,4524718.36015975,-1096922.8406862319,0.95,0.25,22.0,571,0.0,0.1,0.0,0.0,1050.0,599550.0,13125.0,7494375.0,13125.0,7494375.0,true,571,0.9257385967808608,53000.0,1239.904194285078,0.0,9470.728146928102,2580298.707849657,10230.45617830062,2828245.5194735387,9470.728146928102,2580298.707849657,-0.0,0.0,-0.0,0.0,759.7280313725169,247946.8116238639,571,53000.0,1239.904194285078,9470.728146928102,1443886.5384095274,1050.0,599550.0,20.55009577243478,799597.543751404,8895.95354905222,16012.716385399875,0.0,0.0,378.2681740357401,627959.5568822584,175.95632806770777,316.72139046462354,-9470.728146928102,-2911278.574422783,true,true,4.425767804,6124.860297610997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,572,0.9062597290883808,666.0,0.0,14367.050303230075,13317.050303230075,1050.0,14345.478155627627,21.57214760244756,3442162.5697767762,2841562.569776769,600600.0,4539063.838315378,-1096901.2685386294,0.95,0.25,22.0,572,0.0,0.1,0.0,0.0,1050.0,600600.0,13125.0,7507500.0,13125.0,7507500.0,true,572,0.9317052506516144,53000.0,1239.904194285078,0.0,12407.565690711133,2592706.2735403683,13317.050303230075,2841562.569776769,12407.565690711133,2592706.2735403683,-0.0,0.0,-0.0,0.0,909.4846125189415,248856.29623638286,572,53000.0,1239.904194285078,12407.565690711133,1456294.1041002385,1050.0,600600.0,54.93744588757625,799652.4811972916,11598.232181657557,27610.948567057432,0.0,0.0,524.9903748934256,628484.5472571518,229.40568827257545,546.127078737199,-12407.565690711133,-2923686.1401134944,true,true,5.811614288,6130.671911898997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,573,0.9062542599161675,666.0,0.0,9834.665474023326,8784.665474023326,1050.0,9819.898709047315,14.766764976011,3451997.2352507995,2850347.235250792,601650.0,4548883.7370244255,-1096886.5017736533,0.95,0.25,22.0,573,0.0,0.1,0.0,0.0,1050.0,601650.0,13125.0,7520625.0,13125.0,7520625.0,true,573,0.9205147710473516,53000.0,1239.904194285078,0.0,8086.4143275481565,2600792.6878679167,8784.665474023326,2850347.235250792,8086.4143275481565,2600792.6878679167,-0.0,0.0,-0.0,0.0,698.2511464751697,249554.54738285803,573,53000.0,1239.904194285078,8086.4143275481565,1464380.5184277867,1050.0,601650.0,96.18099459482394,799748.6621918865,7214.78986686642,34825.73843392385,0.0,0.0,632.7394910994105,629117.2867482512,142.7039749875013,688.8310537247003,-8086.4143275481565,-2931772.5544410427,true,true,6.526889892,6137.198801790997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,574,0.9062488586802824,666.0,0.0,9712.502368613163,8662.502368613163,1050.0,9697.919031723353,14.583336889809553,3461709.7376194126,2859009.737619405,602700.0,4558581.656056149,-1096871.9184367636,0.95,0.25,22.0,574,0.0,0.1,0.0,0.0,1050.0,602700.0,13125.0,7533750.0,13125.0,7533750.0,true,574,0.9200760800870116,53000.0,1239.904194285078,0.0,7970.161223058051,2608762.849090975,8662.502368613163,2859009.737619405,7970.161223058051,2608762.849090975,-0.0,0.0,-0.0,0.0,692.3411455551113,250246.88852841314,574,53000.0,1239.904194285078,7970.161223058051,1472350.6796508448,1050.0,602700.0,131.0769408240688,799879.7391327105,6999.130392385943,41824.868826309794,0.0,0.0,701.5155227049765,629818.8022709561,138.4383671430632,827.2694208677635,-7970.161223058051,-2939742.715664101,true,true,7.152756046,6144.351557836997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,575,0.9062443701172194,666.0,0.0,8071.334099865079,7021.334099865079,1050.0,8059.214979595012,12.119120270067686,3469781.0717192777,2866031.07171927,603750.0,4566640.8710357435,-1096859.7993164936,0.95,0.25,22.0,575,0.0,0.1,0.0,0.0,1050.0,603750.0,13125.0,7546875.0,13125.0,7546875.0,true,575,0.9142228841950014,53000.0,1239.904194285078,0.0,6419.064311675367,2615181.91340265,7021.334099865079,2866031.07171927,6419.064311675367,2615181.91340265,-0.0,0.0,-0.0,0.0,602.269788189712,250849.15831660284,575,53000.0,1239.904194285078,6419.064311675367,1478769.74396252,1050.0,603750.0,164.4007661460466,800044.1398988565,5391.486998694666,47216.35582500446,0.0,0.0,756.5363480201985,630575.3386189763,106.64019881445643,933.90961968222,-6419.064311675367,-2946161.779975776,true,true,7.599803299,6151.951361135997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,576,0.9062431571949934,666.0,0.0,2181.0767467479923,1131.0767467479923,1050.0,2177.8018567378604,3.2748900101321206,3471962.1484660255,2867162.148466018,604800.0,4568818.672892481,-1096856.5244264833,0.95,0.25,22.0,576,0.0,0.1,0.0,0.0,1050.0,604800.0,13125.0,7560000.0,13125.0,7560000.0,true,576,0.8480993481437263,53000.0,1239.904194285078,0.0,959.2654516174988,2616141.1788542676,1131.0767467479923,2867162.148466018,959.2654516174988,2616141.1788542676,-0.0,0.0,-0.0,0.0,171.81129513049348,251020.96961173334,576,53000.0,1239.904194285078,959.2654516174988,1479729.0094141376,1050.0,604800.0,179.80375971168442,800223.9436585682,0.0,47216.35582500446,0.0,0.0,779.4616919058144,631354.8003108822,0.0,933.90961968222,-959.2654516174988,-2947121.0454273936,true,true,7.599803299,6159.551164434997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,577,0.9062419442727674,666.0,0.0,2181.0767467479923,1131.0767467479923,1050.0,2177.8018567378604,3.2748900101321206,3474143.2252127733,2868293.225212766,605850.0,4570996.474749219,-1096853.249536473,0.95,0.25,22.0,577,0.0,0.1,0.0,0.0,1050.0,605850.0,13125.0,7573125.0,13125.0,7573125.0,true,577,0.8480993481437263,53000.0,1239.904194285078,0.0,959.2654516174988,2617100.444305885,1131.0767467479923,2868293.225212766,959.2654516174988,2617100.444305885,-0.0,0.0,-0.0,0.0,171.81129513049348,251192.78090686383,577,53000.0,1239.904194285078,959.2654516174988,1480688.274865755,1050.0,605850.0,179.80375971168442,800403.7474182799,0.0,47216.35582500446,0.0,0.0,779.4616919058144,632134.262002788,0.0,933.90961968222,-959.2654516174988,-2948080.310879011,true,true,7.599803299,6167.150967733997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,578,0.9062389700021779,666.0,0.0,5348.333374051887,4298.333374051887,1050.0,5340.302843460218,8.0305305916695,3479491.558586825,2872591.5585868177,606900.0,4576336.777592679,-1096845.2190058813,0.95,0.25,22.0,578,0.0,0.1,0.0,0.0,1050.0,606900.0,13125.0,7586250.0,13125.0,7586250.0,true,578,0.8963471595335831,53000.0,1239.904194285078,0.0,3852.798910559812,2620953.2432164447,4298.333374051887,2872591.5585868177,3852.798910559812,2620953.2432164447,-0.0,0.0,-0.0,0.0,445.53446349207525,251638.3153703559,578,53000.0,1239.904194285078,3852.798910559812,1484541.073776315,1050.0,606900.0,187.8535050680155,800591.6009233479,2818.2773012010007,50034.63312620546,0.0,0.0,790.9243638742632,632925.1863666623,55.74374041653241,989.6533600987524,-3852.798910559812,-2951933.109789571,true,true,7.823326926,6174.974294659997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,579,0.9062369947687943,666.0,0.0,3551.864670353474,2501.864670353474,1050.0,3546.5315402178085,5.333130135665877,3483043.4232571786,2875093.423257171,607950.0,4579883.309132896,-1096839.8858757457,0.95,0.25,22.0,579,0.0,0.1,0.0,0.0,1050.0,607950.0,13125.0,7599375.0,13125.0,7599375.0,true,579,0.8711212743369215,53000.0,1239.904194285078,0.0,2179.4275398568407,2623132.6707563014,2501.864670353474,2875093.423257171,2179.4275398568407,2623132.6707563014,-0.0,0.0,-0.0,0.0,322.4371304966335,251960.75250085254,579,53000.0,1239.904194285078,2179.4275398568407,1486720.5013161718,1050.0,607950.0,199.52164095401235,800791.1225643018,1150.1838853850486,51184.81701159051,0.0,0.0,806.9721045890661,633732.1584712514,22.749908928713644,1012.4032690274661,-2179.4275398568407,-2954112.5373294274,true,true,7.912736376,6182.887031035997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,580,0.906235746445438,666.0,0.0,2244.7350591056866,1194.7350591056863,1050.0,2241.3645860439665,3.3704730617202503,3485288.1583162844,2876288.158316277,609000.0,4582124.6737189405,-1096836.515402684,0.95,0.25,22.0,580,0.0,0.1,0.0,0.0,1050.0,609000.0,13125.0,7612500.0,13125.0,7612500.0,true,580,0.8491414926685364,53000.0,1239.904194285078,0.0,1014.4991114324347,2624147.169867734,1194.7350591056863,2876288.158316277,1014.4991114324347,2624147.169867734,-0.0,0.0,-0.0,0.0,180.23594767325164,252140.98844852578,580,53000.0,1239.904194285078,1014.4991114324347,1487735.0004276042,1050.0,609000.0,202.9419380970144,800994.0645023988,0.0,51184.81701159051,0.0,0.0,811.5571733354203,634543.7156445868,0.0,1012.4032690274661,-1014.4991114324347,-2955127.03644086,true,true,7.912736376,6190.799767411997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,581,0.9062352393523675,666.0,0.0,911.8547595203324,-138.14524047966754,1050.0,910.4856082297614,1.3691512905710697,3486200.013075805,2876150.0130757974,610050.0,4583035.15932717,-1096835.1462513935,0.95,0.25,22.0,581,0.0,0.1,0.0,0.0,1050.0,610050.0,13125.0,7625625.0,13125.0,7625625.0,true,581,0.83,53000.0,1239.904194285078,0.0,-166.4400487706838,2623980.7298189634,-138.14524047966754,2876150.0130757974,-166.4400487706838,2623980.7298189634,-0.0,0.0,-0.0,0.0,28.294808291016267,252169.2832568168,581,53000.0,1239.904194285078,-166.4400487706838,1487568.5603788334,1050.0,610050.0,199.52164095401235,801193.5861433528,-1150.1838853850486,50034.63312620546,0.0,0.0,806.9721045890661,635350.6877491759,-22.749908928713644,989.6533600987524,-166.4400487706838,-2955293.4764896305,true,true,7.823326926,6198.623094337997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,582,0.9062352277410235,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3486220.8925945484,2875120.892594541,611100.0,4583056.007495284,-1096835.1149007648,0.95,0.25,22.0,582,0.0,0.1,0.0,0.0,1050.0,611100.0,13125.0,7638750.0,13125.0,7638750.0,true,582,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2622740.8256246783,-1029.1204812566145,2875120.892594541,-1239.904194285078,2622740.8256246783,-0.0,0.0,-0.0,0.0,210.78371302846335,252380.06696984527,582,53000.0,1239.904194285078,-1895.2431726752545,1485673.3172061583,1050.0,611100.0,187.8535050680155,801381.4396484208,-2818.2773012010007,47216.35582500446,0.0,0.0,790.9243638742632,636141.6121130502,-55.74374041653241,933.90961968222,-1239.904194285078,-2956533.3806839157,true,true,7.599803299,6206.222897636997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,583,0.9062343844304906,666.0,0.0,1516.4410001377444,466.44100013774437,1050.0,1514.1640616990992,2.276938438645262,3487737.3335946864,2875587.333594679,612150.0,4584570.171556983,-1096832.8379623261,0.95,0.25,22.0,583,0.0,0.1,0.0,0.0,1050.0,612150.0,13125.0,7651875.0,13125.0,7651875.0,true,583,0.8373694993730644,53000.0,1239.904194285078,0.0,390.58346677241445,2623131.4090914507,466.44100013774437,2875587.333594679,390.58346677241445,2623131.4090914507,-0.0,0.0,-0.0,0.0,75.85753336532991,252455.9245032106,583,53000.0,1239.904194285078,390.58346677241445,1486063.9006729308,1050.0,612150.0,178.2219175725335,801559.6615659933,-553.8527516186718,46662.503073385786,0.0,0.0,777.1691575326373,636918.7812705828,-10.954856714084526,922.9547629681355,-390.58346677241445,-2956923.964150688,true,true,7.555098574,6213.777996210997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,584,0.906234139512207,666.0,0.0,440.41205762279697,-609.587942377203,1050.0,439.75077825699697,0.6612793657999955,3488177.745652309,2874977.7456523017,613200.0,4585009.92233524,-1096832.1766829602,0.95,0.25,22.0,584,0.0,0.1,0.0,0.0,1050.0,613200.0,13125.0,7665000.0,13125.0,7665000.0,true,584,0.83,53000.0,1239.904194285078,0.0,-734.4433040689194,2622396.965787382,-609.587942377203,2874977.7456523017,-734.4433040689194,2622396.965787382,-0.0,0.0,-0.0,0.0,124.85536169171633,252580.77986490232,584,53000.0,1239.904194285078,-734.4433040689194,1485329.457368862,1050.0,613200.0,171.9873237677608,801731.6488897611,-1641.95285997913,45020.550213406656,0.0,0.0,767.9990199886472,637686.7802905715,-32.47678784619743,890.477975121938,-734.4433040689194,-2957658.407454757,true,true,7.420984398,6221.198980608997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,585,0.9062315667411536,666.0,0.0,4626.356908224171,3576.356908224171,1050.0,4619.410426379991,6.946481844180437,3492804.102560533,2878554.1025605258,614250.0,4589629.33276162,-1096825.230201116,0.95,0.25,22.0,585,0.0,0.1,0.0,0.0,1050.0,614250.0,13125.0,7678125.0,13125.0,7678125.0,true,585,0.8900288766170606,53000.0,1239.904194285078,0.0,3183.0609214084234,2625580.02670879,3576.356908224171,2878554.1025605258,3183.0609214084234,2625580.02670879,-0.0,0.0,-0.0,0.0,393.2959868157477,252974.07585171805,585,53000.0,1239.904194285078,3183.0609214084234,1488512.5182902704,1050.0,614250.0,173.5321108885153,801905.1810006496,2195.8056115978015,47216.35582500446,0.0,0.0,770.2915543618243,638457.0718449333,43.43164456028196,933.90961968222,-3183.0609214084234,-2960841.4683761653,true,true,7.599803299,6228.798783907997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,586,0.906229991351846,666.0,0.0,2832.8650527605137,1782.8650527605137,1050.0,2828.6115016302424,4.253551130271042,3495636.967613294,2880336.9676132863,615300.0,4592457.944263251,-1096820.9766499859,0.95,0.25,22.0,586,0.0,0.1,0.0,0.0,1050.0,615300.0,13125.0,7691250.0,13125.0,7691250.0,true,586,0.858892244662174,53000.0,1239.904194285078,0.0,1531.2889670952227,2627111.3156758854,1782.8650527605137,2880336.9676132863,1531.2889670952227,2627111.3156758854,-0.0,0.0,-0.0,0.0,251.57608566529098,253225.65193738334,586,53000.0,1239.904194285078,1531.2889670952227,1490043.8072573657,1050.0,615300.0,181.3949342257865,802086.5759348754,557.1203194536865,47773.476144458145,0.0,0.0,781.7542262789915,639238.8260712123,11.019487136758256,944.9291068189782,-1531.2889670952227,-2962372.7573432606,true,true,7.644508024,6236.443291931997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,587,0.9062291451281631,666.0,0.0,1521.679426504691,471.6794265046911,1050.0,1519.3946225609902,2.2848039437007372,3497158.6470397986,2880808.647039791,616350.0,4593977.338885811,-1096818.6918460422,0.95,0.25,22.0,587,0.0,0.1,0.0,0.0,1050.0,616350.0,13125.0,7704375.0,13125.0,7704375.0,true,587,0.8374530066776289,53000.0,1239.904194285078,0.0,395.00935391433325,2627506.3250297997,471.6794265046911,2880808.647039791,395.00935391433325,2627506.3250297997,-0.0,0.0,-0.0,0.0,76.67007259035785,253302.3220099737,587,53000.0,1239.904194285078,395.00935391433325,1490438.81661128,1050.0,616350.0,181.3949342257865,802267.9708691012,-557.1203194536865,47216.35582500446,0.0,0.0,781.7542262789915,640020.5802974913,-11.019487136758256,933.90961968222,-395.00935391433325,-2962767.766697175,true,true,7.599803299,6244.043095230997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,588,0.9062291335168191,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3497179.526558542,2879779.5265585347,617400.0,4593998.187053925,-1096818.6604954135,0.95,0.25,22.0,588,0.0,0.1,0.0,0.0,1050.0,617400.0,13125.0,7717500.0,13125.0,7717500.0,true,588,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2626266.4208355146,-1029.1204812566145,2879779.5265585347,-1239.904194285078,2626266.4208355146,-0.0,0.0,-0.0,0.0,210.78371302846335,253513.10572300217,588,53000.0,1239.904194285078,-1295.4135909077438,1489143.4030203721,1050.0,617400.0,173.5321108885153,802441.5029799897,-2195.8056115978015,45020.550213406656,0.0,0.0,770.2915543618243,640790.8718518531,-43.43164456028196,890.477975121938,-1239.904194285078,-2964007.67089146,true,true,7.420984398,6251.464079628997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,589,0.9062283016209449,666.0,0.0,1495.915160867757,445.915160867757,1050.0,1493.6690420075954,2.2461188601617974,3498675.44171941,2880225.4417194026,618450.0,4595491.856095933,-1096816.4143765534,0.95,0.25,22.0,589,0.0,0.1,0.0,0.0,1050.0,618450.0,13125.0,7730625.0,13125.0,7730625.0,true,589,0.8370424513080789,53000.0,1239.904194285078,0.0,373.24991932818364,2626639.670754843,445.915160867757,2880225.4417194026,373.24991932818364,2626639.670754843,-0.0,0.0,-0.0,0.0,72.66524153957334,253585.77096454173,589,53000.0,1239.904194285078,373.24991932818364,1489516.6529397003,1050.0,618450.0,165.8998521109274,802607.4028321006,-540.7824802054585,44479.767733201195,0.0,0.0,758.8288824446572,641549.7007342977,-10.696335021942524,879.7816400999955,-373.24991932818364,-2964380.9208107884,true,true,7.376279673,6258.840359301997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,590,0.9062271133158311,666.0,0.0,2136.8102558432856,1086.8102558432854,1050.0,2133.601832035713,3.208423807572501,3500812.251975253,2881312.251975246,619500.0,4597625.457927969,-1096813.2059527459,0.95,0.25,22.0,590,0.0,0.1,0.0,0.0,1050.0,619500.0,13125.0,7743750.0,13125.0,7743750.0,true,590,0.8473761719669992,53000.0,1239.904194285078,0.0,920.9371142509583,2627560.607869094,1086.8102558432854,2881312.251975246,920.9371142509583,2627560.607869094,-0.0,0.0,-0.0,0.0,165.8731415923271,253751.64410613407,590,53000.0,1239.904194285078,920.9371142509583,1490437.5900539511,1050.0,619500.0,164.4007661794782,802771.8035982801,0.0,44479.767733201195,0.0,0.0,756.5363480714801,642306.2370823693,0.0,879.7816400999955,-920.9371142509583,-2965301.8579250393,true,true,7.376279673,6266.216638974996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,591,0.9062255724324477,666.0,0.0,2770.816499876988,1720.8164998769878,1050.0,2766.6561147420375,4.160385134950433,3503583.06847513,2883033.0684751226,620550.0,4600392.114042711,-1096809.045567611,0.95,0.25,22.0,591,0.0,0.1,0.0,0.0,1050.0,620550.0,13125.0,7756875.0,13125.0,7756875.0,true,591,0.8578529726374148,53000.0,1239.904194285078,0.0,1476.2075497829856,2629036.8154188767,1720.8164998769878,2883033.0684751226,1476.2075497829856,2629036.8154188767,-0.0,0.0,-0.0,0.0,244.60895009400224,253996.25305622807,591,53000.0,1239.904194285078,1476.2075497829856,1491913.797603734,1050.0,620550.0,165.8998521109274,802937.703450391,540.7824802054585,45020.550213406656,0.0,0.0,758.8288824446572,643065.0659648139,10.696335021942524,890.477975121938,-1476.2075497829856,-2966778.065474822,true,true,7.420984398,6273.637623372996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,592,0.9062229996613943,666.0,0.0,4626.356908224171,3576.356908224171,1050.0,4619.410426379991,6.946481844180437,3508209.425383354,2886609.4253833466,621600.0,4605011.524469092,-1096802.0990857668,0.95,0.25,22.0,592,0.0,0.1,0.0,0.0,1050.0,621600.0,13125.0,7770000.0,13125.0,7770000.0,true,592,0.8900288766170606,53000.0,1239.904194285078,0.0,3183.0609214084234,2632219.876340285,3576.356908224171,2886609.4253833466,3183.0609214084234,2632219.876340285,-0.0,0.0,-0.0,0.0,393.2959868157477,254389.5490430438,592,53000.0,1239.904194285078,3183.0609214084234,1495096.8585251425,1050.0,621600.0,173.5321108885153,803111.2355612795,2195.8056115978015,47216.35582500446,0.0,0.0,770.2915543618243,643835.3575191757,43.43164456028196,933.90961968222,-3183.0609214084234,-2969961.1263962304,true,true,7.599803299,6281.237426671996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,593,0.9062196770995545,666.0,0.0,5974.630700317839,4924.630700317839,1050.0,5965.659783350395,8.970916967444202,3514184.0560836717,2891534.0560836643,622650.0,4610977.184252442,-1096793.1281687994,0.95,0.25,22.0,593,0.0,0.1,0.0,0.0,1050.0,622650.0,13125.0,7783125.0,13125.0,7783125.0,true,593,0.9019012310478559,53000.0,1239.904194285078,0.0,4441.530491072724,2636661.4068313576,4924.630700317839,2891534.0560836643,4441.530491072724,2636661.4068313576,-0.0,0.0,-0.0,0.0,483.10020924511537,254872.64925228892,593,53000.0,1239.904194285078,4441.530491072724,1499538.3890162152,1050.0,622650.0,189.4917531797194,803300.7273144592,3391.735459976012,50608.09128498047,0.0,0.0,793.2168982474402,644628.5744174232,67.086379669552,1000.995999351772,-4441.530491072724,-2974402.656887303,true,true,7.868031651,6289.105458322996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,594,0.9062151666784672,666.0,0.0,8110.639199180046,7060.639199180046,1050.0,8098.46106224434,12.178136935705774,3522294.695282852,2898594.6952828444,623700.0,4619075.645314686,-1096780.9500318638,0.95,0.25,22.0,594,0.0,0.1,0.0,0.0,1050.0,623700.0,13125.0,7796250.0,13125.0,7796250.0,true,594,0.9143621945396798,53000.0,1239.904194285078,0.0,6455.981553015154,2643117.388384373,7060.639199180046,2898594.6952828444,6455.981553015154,2643117.388384373,-0.0,0.0,-0.0,0.0,604.657646164892,255477.3068984538,594,53000.0,1239.904194285078,6455.981553015154,1505994.3705692303,1050.0,623700.0,215.2204936962578,803515.9478081554,5308.164022117509,55916.255307097985,0.0,0.0,827.604914101505,645456.1793315248,104.99212309988094,1105.988122451653,-6455.981553015154,-2980858.6384403184,true,true,8.270374179,6297.375832501996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,595,0.9062112207056185,666.0,0.0,7095.648376448294,6045.648376448294,1050.0,7084.99424975693,10.654126691363805,3529390.3436593,2904640.3436592924,624750.0,4626160.639564443,-1096770.2959051724,0.95,0.25,22.0,595,0.0,0.1,0.0,0.0,1050.0,624750.0,13125.0,7809375.0,13125.0,7809375.0,true,595,0.91077828397671,53000.0,1239.904194285078,0.0,5506.24525382816,2648623.6336382013,6045.648376448294,2904640.3436592924,5506.24525382816,2648623.6336382013,-0.0,0.0,-0.0,0.0,539.4031226201341,256016.71002107393,595,53000.0,1239.904194285078,5506.24525382816,1511500.6158230584,1050.0,624750.0,245.1241316644952,803761.07193982,4311.555814014929,60227.811121112914,0.0,0.0,864.2854643287467,646320.4647958535,85.2798438199882,1191.2679662716412,-5506.24525382816,-2986364.8836941468,true,true,8.583307256,6305.959139757996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,596,0.9062059497753927,666.0,0.0,9478.18673205963,8428.18673205963,1050.0,9463.95522044993,14.231511609699144,3538868.5303913597,2913068.5303913523,625800.0,4635624.594784893,-1096756.0643935627,0.95,0.25,22.0,596,0.0,0.1,0.0,0.0,1050.0,625800.0,13125.0,7822500.0,13125.0,7822500.0,true,596,0.9192358154857004,53000.0,1239.904194285078,0.0,7747.491103710594,2656371.124741912,8428.18673205963,2913068.5303913523,7747.491103710594,2656371.124741912,-0.0,0.0,-0.0,0.0,680.6956283490363,256697.40564942296,596,53000.0,1239.904194285078,7747.491103710594,1519248.106926769,1050.0,625800.0,279.8019153063541,804040.8738551263,6437.108705464891,66664.91982657781,0.0,0.0,903.258548877884,647223.7233447314,127.32193406146463,1318.5899003331058,-7747.491103710594,-2994112.3747978574,true,true,9.030354508,6314.989494265996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,597,0.9062012620151586,666.0,0.0,8429.530452945966,7379.530452945966,1050.0,8416.873500313915,12.656952632051,3547298.0608443054,2920448.060844298,626850.0,4644041.468285207,-1096743.4074409306,0.95,0.25,22.0,597,0.0,0.1,0.0,0.0,1050.0,626850.0,13125.0,7835625.0,13125.0,7835625.0,true,597,0.9154940227174857,53000.0,1239.904194285078,0.0,6755.916020133692,2663127.0407620454,7379.530452945966,2920448.060844298,6755.916020133692,2663127.0407620454,-0.0,0.0,-0.0,0.0,623.6144328122746,257321.02008223522,597,53000.0,1239.904194285078,6755.916020133692,1526004.0229469028,1050.0,626850.0,319.9290420457988,804360.8028971722,5384.951872088035,72049.87169866584,0.0,0.0,944.5241678514799,648168.2475125828,106.51093814837742,1425.1008384814832,-6755.916020133692,-3000868.290817991,true,true,9.387992311,6324.377486576996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,598,0.9061993914773174,666.0,0.0,3363.6011459424894,2313.6011459424894,1050.0,3358.5506937714044,5.050452171084819,3550661.661990248,2922761.6619902407,627900.0,4647400.0189789785,-1096738.3569887595,0.95,0.25,22.0,598,0.0,0.1,0.0,0.0,1050.0,627900.0,13125.0,7848750.0,13125.0,7848750.0,true,598,0.8678856852044549,53000.0,1239.904194285078,0.0,2007.9413158361094,2665134.9820778817,2313.6011459424894,2922761.6619902407,2007.9413158361094,2665134.9820778817,-0.0,0.0,-0.0,0.0,305.65983010638,257626.6799123416,598,53000.0,1239.904194285078,2007.9413158361094,1528011.9642627388,1050.0,627900.0,341.35660067922026,804702.1594978514,687.823033731903,72737.69473239774,0.0,0.0,965.1569773639187,649133.4044899467,13.604704061067437,1438.7055425425506,-2007.9413158361094,-3002876.232133827,true,true,9.432697036,6333.810183612995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,599,0.9061975130946059,666.0,0.0,3377.7077918383966,2327.7077918383966,1050.0,3372.636158517318,5.071633321078673,3554039.3697820865,2925089.369782079,628950.0,4650772.655137496,-1096733.2853554385,0.95,0.25,22.0,599,0.0,0.1,0.0,0.0,1050.0,628950.0,13125.0,7861875.0,13125.0,7861875.0,true,599,0.868127295668592,53000.0,1239.904194285078,0.0,2020.7466704353774,2667155.728748317,2327.7077918383966,2925089.369782079,2020.7466704353774,2667155.728748317,-0.0,0.0,-0.0,0.0,306.9611214030192,257933.64103374464,599,53000.0,1239.904194285078,2020.7466704353774,1530032.7109331742,1050.0,628950.0,346.24468827445764,805048.4041861258,691.0906015669061,73428.78533396464,0.0,0.0,969.7420461102729,650103.1465360569,13.669334483740611,1452.3748770262912,-2020.7466704353774,-3004896.9788042624,true,true,9.477401761,6343.287585373995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,600,0.9061943374899439,666.0,0.0,5710.372303239731,4660.372303239731,1050.0,5701.798170652284,8.574132587447044,3559749.742085326,2929749.7420853185,630000.0,4656474.453308148,-1096724.711222851,0.95,0.25,22.0,600,0.0,0.1,0.0,0.0,1050.0,630000.0,13125.0,7875000.0,13125.0,7875000.0,true,600,0.8995493872621984,53000.0,1239.904194285078,0.0,4192.23504979302,2671347.96379811,4660.372303239731,2929749.7420853185,4192.23504979302,2671347.96379811,-0.0,0.0,-0.0,0.0,468.13725344671093,258401.77828719135,600,53000.0,1239.904194285078,4192.23504979302,1534224.9459829673,1050.0,630000.0,358.66857273425046,805407.0727588601,2797.038116193793,76225.82345015844,0.0,0.0,981.2047180787216,651084.3512541356,55.32364278625499,1507.6985198125462,-4192.23504979302,-3009089.2138540554,true,true,9.656220663,6352.943806036995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,601,0.9061911074767199,666.0,0.0,5808.209779479341,4758.209779479341,1050.0,5799.488743774416,8.721035704923935,3565557.9518648055,2934507.951864798,631050.0,4662273.942051923,-1096715.990187146,0.95,0.25,22.0,601,0.0,0.1,0.0,0.0,1050.0,631050.0,13125.0,7888125.0,13125.0,7888125.0,true,601,0.900418688779002,53000.0,1239.904194285078,0.0,4284.381010574212,2675632.344808684,4758.209779479341,2934507.951864798,4284.381010574212,2675632.344808684,-0.0,0.0,-0.0,0.0,473.8287689051285,258875.6070560965,601,53000.0,1239.904194285078,4284.381010574212,1538509.3269935416,1050.0,631050.0,379.15910145867383,805786.2318603187,2849.3191866434427,79075.14263680187,0.0,0.0,999.5449932179833,652083.8962473536,56.35772925411249,1564.0562490666587,-4284.381010574212,-3013373.5948646297,true,true,9.835039564,6362.778845600995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,602,0.9061878227089989,666.0,0.0,5906.669315950856,4856.669315950856,1050.0,5897.800443104083,8.868872846773057,3571464.6211807565,2939364.621180749,632100.0,4668171.742495027,-1096707.1213142993,0.95,0.25,22.0,602,0.0,0.1,0.0,0.0,1050.0,632100.0,13125.0,7901250.0,13125.0,7901250.0,true,602,0.901295215250178,53000.0,1239.904194285078,0.0,4377.292816518861,2680009.637625203,4856.669315950856,2939364.621180749,4377.292816518861,2680009.637625203,-0.0,0.0,-0.0,0.0,479.3764994319945,259354.98355552848,602,53000.0,1239.904194285078,4377.292816518861,1542886.6198100604,1050.0,632100.0,400.4155433347589,806186.6474036535,2901.60019072529,81976.74282752717,0.0,0.0,1017.8852680495551,653101.7815154032,57.391814409257556,1621.4480634759161,-4377.292816518861,-3017750.8876811485,true,true,10.01385846,6372.792704060995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,603,0.9061858401207447,666.0,0.0,3565.0901988326373,2515.0901988326373,1050.0,3559.737210546102,5.352988286535491,3575029.711379589,2941879.7113795816,633150.0,4671731.479705573,-1096701.7683260127,0.95,0.25,22.0,603,0.0,0.1,0.0,0.0,1050.0,633150.0,13125.0,7914375.0,13125.0,7914375.0,true,603,0.8713494819195026,53000.0,1239.904194285078,0.0,2191.5225417336374,2682201.1601669365,2515.0901988326373,2941879.7113795816,2191.5225417336374,2682201.1601669365,-0.0,0.0,-0.0,0.0,323.5676570989999,259678.55121262747,603,53000.0,1239.904194285078,2191.5225417336374,1545078.142351794,1050.0,633150.0,414.0960045854914,806600.743408239,733.5690655779337,82710.3118931051,0.0,0.0,1029.3479399667222,654131.1294553699,14.509531603490181,1635.9575950794062,-2191.5225417336374,-3019942.410222882,true,true,10.05856319,6382.851267250995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,604,0.9061843166205422,666.0,0.0,2739.5580640667495,1689.5580640667497,1050.0,2735.444613520103,4.113450546646771,3577769.269443656,2943569.2694436484,634200.0,4674466.924319093,-1096697.654875466,0.95,0.25,22.0,604,0.0,0.1,0.0,0.0,1050.0,634200.0,13125.0,7927500.0,13125.0,7927500.0,true,604,0.8573303666907872,53000.0,1239.904194285078,0.0,1448.509434611723,2683649.669601548,1689.5580640667497,2943569.2694436484,1448.509434611723,2683649.669601548,-0.0,0.0,-0.0,0.0,241.04862945502668,259919.5998420825,604,53000.0,1239.904194285078,1448.509434611723,1546526.6517864058,1050.0,634200.0,416.8689600154152,807017.6123682543,0.0,82710.3118931051,0.0,0.0,1031.6404745963077,655162.7699299662,0.0,1635.9575950794062,-1448.509434611723,-3021390.9196574935,true,true,10.05856319,6392.909830440995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,605,0.9061827931203398,666.0,0.0,2739.5580640667495,1689.5580640667497,1050.0,2735.444613520103,4.113450546646771,3580508.8275077227,2945258.827507715,635250.0,4677202.368932613,-1096693.5414249192,0.95,0.25,22.0,605,0.0,0.1,0.0,0.0,1050.0,635250.0,13125.0,7940625.0,13125.0,7940625.0,true,605,0.8573303666907872,53000.0,1239.904194285078,0.0,1448.509434611723,2685098.1790361595,1689.5580640667497,2945258.827507715,1448.509434611723,2685098.1790361595,-0.0,0.0,-0.0,0.0,241.04862945502668,260160.64847153754,605,53000.0,1239.904194285078,1448.509434611723,1547975.1612210176,1050.0,635250.0,416.8689600154152,807434.4813282697,0.0,82710.3118931051,0.0,0.0,1031.6404745963077,656194.4104045625,0.0,1635.9575950794062,-1448.509434611723,-3022839.429092105,true,true,10.05856319,6402.968393630996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,606,0.9061803481551788,666.0,0.0,4396.536352582012,3346.5363525820126,1050.0,4389.934946647204,6.601405934807826,3584905.3638603045,2948605.363860297,636300.0,4681592.30387926,-1096686.9400189843,0.95,0.25,22.0,606,0.0,0.1,0.0,0.0,1050.0,636300.0,13125.0,7953750.0,13125.0,7953750.0,true,606,0.8859402097780446,53000.0,1239.904194285078,0.0,2964.8311182363605,2688063.010154396,3346.5363525820126,2948605.363860297,2964.8311182363605,2688063.010154396,-0.0,0.0,-0.0,0.0,381.7052343456521,260542.3537058832,606,53000.0,1239.904194285078,2964.8311182363605,1550939.992339254,1050.0,636300.0,422.45195272271053,807856.9332809924,1476.940670934394,84187.25256403949,0.0,0.0,1036.225543342662,657230.6359479051,29.212951236594385,1665.1705463160006,-2964.8311182363605,-3025804.2602103413,true,true,10.14797264,6413.116366270996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,607,0.9061742017233714,666.0,0.0,11052.513676174993,10002.513676174993,1050.0,11035.91831029485,16.59536588014263,3595957.8775364794,2958607.877536472,637350.0,4692628.222189555,-1096670.3446531042,0.95,0.25,22.0,607,0.0,0.1,0.0,0.0,1050.0,637350.0,13125.0,7966875.0,13125.0,7966875.0,true,607,0.9249110781448672,53000.0,1239.904194285078,0.0,9251.435708389792,2697314.4458627854,10002.513676174993,2958607.877536472,9251.435708389792,2697314.4458627854,-0.0,0.0,-0.0,0.0,751.0779677852006,261293.4316736684,607,53000.0,1239.904194285078,9251.435708389792,1560191.4280476437,1050.0,637350.0,456.9997462521047,808313.9330272445,7580.75742477349,91768.00998881298,0.0,0.0,1063.735955820787,658294.3719037259,149.94258154341074,1815.1131278594114,-9251.435708389792,-3035055.695918731,true,true,10.59501989,6423.711386160996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,608,0.906165843543722,666.0,0.0,15029.67864557747,13979.67864557747,1050.0,15007.111560524052,22.567085053419625,3610987.5561820567,2972587.556182049,638400.0,4707635.333750079,-1096647.777568051,0.95,0.25,22.0,608,0.0,0.1,0.0,0.0,1050.0,638400.0,13125.0,7980000.0,13125.0,7980000.0,true,608,0.9322954631868701,53000.0,1239.904194285078,0.0,13033.190978082244,2710347.636840868,13979.67864557747,2972587.556182049,13033.190978082244,2710347.636840868,-0.0,0.0,-0.0,0.0,946.4876674952266,262239.91934116365,608,53000.0,1239.904194285078,13033.190978082244,1573224.6190257259,1050.0,638400.0,531.6446935646047,808845.5777208091,11162.011974429024,102930.021963242,0.0,0.0,1118.7567812898537,659413.1286850157,220.77752879876073,2035.8906566581722,-13033.190978082244,-3048088.8868968133,true,true,11.22088605,6434.932272210996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,609,0.906159585621247,666.0,0.0,11252.996194558176,10202.996194558176,1050.0,11236.099803875657,16.896390682519783,3622240.552376615,2982790.5523766074,639450.0,4718871.433553955,-1096630.8811773683,0.95,0.25,22.0,609,0.0,0.1,0.0,0.0,1050.0,639450.0,13125.0,7993125.0,13125.0,7993125.0,true,609,0.9256388280769997,53000.0,1239.904194285078,0.0,9444.289440404918,2719791.926281273,10202.996194558176,2982790.5523766074,9444.289440404918,2719791.926281273,-0.0,0.0,-0.0,0.0,758.7067541532579,262998.6260953169,609,53000.0,1239.904194285078,9444.289440404918,1582668.9084661307,1050.0,639450.0,610.4143269659912,809455.9920477752,7513.772381002606,110443.79434424461,0.0,0.0,1171.4850726421523,660584.6137576578,148.6176597941699,2184.508316452342,-9444.289440404918,-3057533.1763372184,true,true,11.62322858,6446.555500790996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,610,0.9061552037290683,666.0,0.0,7879.5185156885655,6829.5185156885655,1050.0,7867.687406806151,11.831108882415263,3630120.0708923033,2989620.070892296,640500.0,4726739.120960761,-1096619.050068486,0.95,0.25,22.0,610,0.0,0.1,0.0,0.0,1050.0,640500.0,13125.0,8006250.0,13125.0,8006250.0,true,610,0.9135436345937643,53000.0,1239.904194285078,0.0,6239.063167347543,2726030.9894486205,6829.5185156885655,2989620.070892296,6239.063167347543,2726030.9894486205,-0.0,0.0,-0.0,0.0,590.4553483410227,263589.0814436579,610,53000.0,1239.904194285078,6239.063167347543,1588907.9716334783,1050.0,640500.0,661.9724691954185,810117.9645169706,4288.682715863149,114732.47706010776,0.0,0.0,1203.5805538666314,661788.1943115244,84.82742842234404,2269.335744874686,-6239.063167347543,-3063772.239504566,true,true,11.8467522,6458.402252990996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,611,0.9061507360244809,666.0,0.0,8033.826389005831,6983.826389005831,1050.0,8021.763586619936,12.06280238589464,3638153.897281309,2996603.8972813017,641550.0,4734760.884547381,-1096606.9872661,0.95,0.25,22.0,611,0.0,0.1,0.0,0.0,1050.0,641550.0,13125.0,8019375.0,13125.0,8019375.0,true,611,0.9140899839697116,53000.0,1239.904194285078,0.0,6383.845751973588,2732414.8352005943,6983.826389005831,2996603.8972813017,6383.845751973588,2732414.8352005943,-0.0,0.0,-0.0,0.0,599.9806370322422,264189.0620806902,611,53000.0,1239.904194285078,6383.845751973588,1595291.8173854519,1050.0,641550.0,700.5245561215828,810818.4890730921,4370.372105433257,119102.84916554102,0.0,0.0,1226.505897598402,663014.7002091228,86.44319282034706,2355.778937695033,-6383.845751973588,-3070156.0852565398,true,true,12.07027583,6470.472528820997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,612,0.9061507244131369,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3638174.7768000527,2995574.7768000453,642600.0,4734781.732715495,-1096606.9559154713,0.95,0.25,22.0,612,0.0,0.1,0.0,0.0,1050.0,642600.0,13125.0,8032500.0,13125.0,8032500.0,true,612,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2731174.931006309,-1029.1204812566145,2995574.7768000453,-1239.904194285078,2731174.931006309,-0.0,0.0,-0.0,0.0,210.78371302846335,264399.84579371865,612,53000.0,1239.904194285078,-6060.023086360609,1589231.7942990912,1050.0,642600.0,684.9290412505444,811503.4181143426,-7807.8534898097305,111294.99567573129,0.0,0.0,1217.335760105694,664232.0359692286,-154.4343979071167,2201.3445397879163,-1239.904194285078,-3071395.989450825,true,true,11.6679333,6482.140462120997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,613,0.9061507128017929,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3638195.6563187963,2994545.656318789,643650.0,4734802.580883609,-1096606.9245648426,0.95,0.25,22.0,613,0.0,0.1,0.0,0.0,1050.0,643650.0,13125.0,8045625.0,13125.0,8045625.0,true,613,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2729935.026812024,-1029.1204812566145,2994545.656318789,-1239.904194285078,2729935.026812024,-0.0,0.0,-0.0,0.0,210.78371302846335,264610.6295067471,613,53000.0,1239.904194285078,-25229.872892419775,1564001.9214066714,1050.0,643650.0,534.9197033792086,812038.3378177218,-26364.371341146933,84930.62433458435,0.0,0.0,1121.0493159194393,665353.085285148,-521.470570571489,1679.8739692164272,-1239.904194285078,-3072635.89364511,true,true,10.19267737,6492.3331394909965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,614,0.9061507011904489,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3638216.53583754,2993516.5358375325,644700.0,4734823.429051723,-1096606.893214214,0.95,0.25,22.0,614,0.0,0.1,0.0,0.0,1050.0,644700.0,13125.0,8058750.0,13125.0,8058750.0,true,614,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2728695.122617739,-1029.1204812566145,2993516.5358375325,-1239.904194285078,2728695.122617739,-0.0,0.0,-0.0,0.0,210.78371302846335,264821.4132197756,614,53000.0,1239.904194285078,-21941.09138048861,1542060.8300261828,1050.0,644700.0,346.24468849417815,812384.5825062159,-22805.990072958542,62124.63426162581,0.0,0.0,969.7420463153998,666322.8273314635,-451.088042339645,1228.7859268767822,-1239.904194285078,-3073875.7978393952,true,true,8.717421431,6501.050560921996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,615,0.9061506895791049,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3638237.4153562835,2992487.415356276,645750.0,4734844.2772198375,-1096606.8618635852,0.95,0.25,22.0,615,0.0,0.1,0.0,0.0,1050.0,645750.0,13125.0,8071875.0,13125.0,8071875.0,true,615,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2727455.2184234536,-1029.1204812566145,2992487.415356276,-1239.904194285078,2727455.2184234536,-0.0,0.0,-0.0,0.0,210.78371302846335,265032.1969328041,615,53000.0,1239.904194285078,-18601.733979566165,1523459.0960466166,1050.0,645750.0,208.14532734015125,812592.727833556,-19247.608573871774,42877.02568775404,0.0,0.0,818.4347765062332,667141.2621079697,-380.7055095407768,848.0804173360054,-1239.904194285078,-3075115.7020336804,true,true,7.242165497,6508.292726418997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,616,0.9061506779677609,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3638258.294875027,2991458.2948750197,646800.0,4734865.125387952,-1096606.8305129565,0.95,0.25,22.0,616,0.0,0.1,0.0,0.0,1050.0,646800.0,13125.0,8085000.0,13125.0,8085000.0,true,616,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2726215.3142291685,-1029.1204812566145,2991458.2948750197,-1239.904194285078,2726215.3142291685,-0.0,0.0,-0.0,0.0,210.78371302846335,265242.98064583255,616,53000.0,1239.904194285078,-15219.692255705746,1508239.4037909107,1050.0,646800.0,112.7303835076444,812705.4582170637,-15689.227167539058,27187.79852021498,0.0,0.0,667.1275069021935,667808.3896148719,-310.32297857652543,537.75743875948,-1239.904194285078,-3076355.6062279656,true,true,5.766909562,6514.059635980997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,617,0.906150666356417,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3638279.1743937708,2990429.1743937633,647850.0,4734885.973556066,-1096606.7991623278,0.95,0.25,22.0,617,0.0,0.1,0.0,0.0,1050.0,647850.0,13125.0,8098125.0,13125.0,8098125.0,true,617,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2724975.4100348833,-1029.1204812566145,2990429.1743937633,-1239.904194285078,2724975.4100348833,-0.0,0.0,-0.0,0.0,210.78371302846335,265453.764358861,617,53000.0,1239.904194285078,-11802.857329827997,1496436.5464610828,1050.0,647850.0,52.10862000192692,812757.5668370656,-12130.845739936509,15056.95278027847,0.0,0.0,515.8202372981539,668324.2098521701,-239.94044719156997,297.81699156791,-1239.904194285078,-3077595.5104222507,true,true,4.291653628,6518.351289608997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,618,0.906150654745073,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3638300.0539125144,2989400.053912507,648900.0,4734906.82172418,-1096606.767811699,0.95,0.25,22.0,618,0.0,0.1,0.0,0.0,1050.0,648900.0,13125.0,8111250.0,13125.0,8111250.0,true,618,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2723735.505840598,-1029.1204812566145,2989400.053912507,-1239.904194285078,2723735.505840598,-0.0,0.0,-0.0,0.0,210.78371302846335,265664.5480718895,618,53000.0,1239.904194285078,-8359.120477169488,1488077.4259839132,1050.0,648900.0,18.388800047988507,812775.9556371137,-8572.464328779692,6484.488451498779,0.0,0.0,364.51296769411414,668688.7228198642,-169.55791613190087,128.25907543600914,-1239.904194285078,-3078835.414616536,true,true,2.816397693,6521.167687301997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,619,0.906150643133729,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3638320.933431258,2988370.9334312505,649950.0,4734927.669892294,-1096606.7364610704,0.95,0.25,22.0,619,0.0,0.1,0.0,0.0,1050.0,649950.0,13125.0,8124375.0,13125.0,8124375.0,true,619,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2722495.601646313,-1029.1204812566145,2988370.9334312505,-1239.904194285078,2722495.601646313,-0.0,0.0,-0.0,0.0,210.78371302846335,265875.331784918,619,53000.0,1239.904194285078,-4896.372905882692,1483181.0530780305,1050.0,649950.0,3.679686870818984,812779.6353239844,-5014.082906001223,1470.405545497556,0.0,0.0,213.2056980900745,668901.9285179542,-99.17538484236277,29.083690593646367,-1239.904194285078,-3080075.318810821,true,true,1.341141759,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,620,0.906150631522385,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3638341.8129500016,2987341.812949994,651000.0,4734948.5180604085,-1096606.7051104417,0.95,0.25,22.0,620,0.0,0.1,0.0,0.0,1050.0,651000.0,13125.0,8137500.0,13125.0,8137500.0,true,620,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2721255.697452028,-1029.1204812566145,2987341.812949994,-1239.904194285078,2721255.697452028,-0.0,0.0,-0.0,0.0,210.78371302846335,266086.11549794645,620,53000.0,1239.904194285078,-1430.589687705043,1481750.4633903254,1050.0,651000.0,0.12351672898555459,812779.7588407134,-1470.4055454972297,3.26281224261038e-10,0.0,0.0,68.77603165684775,668970.7045496111,-29.083690593646644,-2.7711166694643907e-13,-1239.904194285078,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,621,0.9061500476051344,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3639391.8129500016,2987341.812949994,652050.0,4735996.941483832,-1096605.128533865,0.95,0.25,22.0,621,0.0,0.1,0.0,0.0,1050.0,652050.0,13125.0,8150625.0,13125.0,8150625.0,true,621,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,621,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,652050.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,622,0.9061494636878838,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3640441.8129500016,2987341.812949994,653100.0,4737045.364907255,-1096603.5519572885,0.95,0.25,22.0,622,0.0,0.1,0.0,0.0,1050.0,653100.0,13125.0,8163750.0,13125.0,8163750.0,true,622,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,622,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,653100.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,623,0.9061488797706333,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3641491.8129500016,2987341.812949994,654150.0,4738093.788330679,-1096601.975380712,0.95,0.25,22.0,623,0.0,0.1,0.0,0.0,1050.0,654150.0,13125.0,8176875.0,13125.0,8176875.0,true,623,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,623,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,654150.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,624,0.9061482958533827,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3642541.8129500016,2987341.812949994,655200.0,4739142.211754102,-1096600.3988041354,0.95,0.25,22.0,624,0.0,0.1,0.0,0.0,1050.0,655200.0,13125.0,8190000.0,13125.0,8190000.0,true,624,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,624,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,655200.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,625,0.9061477119361322,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3643591.8129500016,2987341.812949994,656250.0,4740190.635177526,-1096598.8222275588,0.95,0.25,22.0,625,0.0,0.1,0.0,0.0,1050.0,656250.0,13125.0,8203125.0,13125.0,8203125.0,true,625,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,625,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,656250.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,626,0.9061471280188816,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3644641.8129500016,2987341.812949994,657300.0,4741239.058600949,-1096597.2456509823,0.95,0.25,22.0,626,0.0,0.1,0.0,0.0,1050.0,657300.0,13125.0,8216250.0,13125.0,8216250.0,true,626,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,626,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,657300.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,627,0.9061465441016311,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3645691.8129500016,2987341.812949994,658350.0,4742287.482024373,-1096595.6690744057,0.95,0.25,22.0,627,0.0,0.1,0.0,0.0,1050.0,658350.0,13125.0,8229375.0,13125.0,8229375.0,true,627,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,627,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,658350.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,628,0.9061459601843805,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3646741.8129500016,2987341.812949994,659400.0,4743335.905447796,-1096594.092497829,0.95,0.25,22.0,628,0.0,0.1,0.0,0.0,1050.0,659400.0,13125.0,8242500.0,13125.0,8242500.0,true,628,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,628,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,659400.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,629,0.90614537626713,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3647791.8129500016,2987341.812949994,660450.0,4744384.328871219,-1096592.5159212525,0.95,0.25,22.0,629,0.0,0.1,0.0,0.0,1050.0,660450.0,13125.0,8255625.0,13125.0,8255625.0,true,629,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,629,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,660450.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,630,0.9061447923498794,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3648841.8129500016,2987341.812949994,661500.0,4745432.752294643,-1096590.939344676,0.95,0.25,22.0,630,0.0,0.1,0.0,0.0,1050.0,661500.0,13125.0,8268750.0,13125.0,8268750.0,true,630,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,630,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,661500.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,631,0.9061442084326289,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3649891.8129500016,2987341.812949994,662550.0,4746481.175718066,-1096589.3627680994,0.95,0.25,22.0,631,0.0,0.1,0.0,0.0,1050.0,662550.0,13125.0,8281875.0,13125.0,8281875.0,true,631,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,631,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,662550.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,632,0.9061436245153783,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3650941.8129500016,2987341.812949994,663600.0,4747529.59914149,-1096587.7861915228,0.95,0.25,22.0,632,0.0,0.1,0.0,0.0,1050.0,663600.0,13125.0,8295000.0,13125.0,8295000.0,true,632,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,632,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,663600.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,633,0.9061430405981278,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3651991.8129500016,2987341.812949994,664650.0,4748578.022564913,-1096586.2096149463,0.95,0.25,22.0,633,0.0,0.1,0.0,0.0,1050.0,664650.0,13125.0,8308125.0,13125.0,8308125.0,true,633,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,633,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,664650.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,634,0.9061424566808772,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3653041.8129500016,2987341.812949994,665700.0,4749626.445988337,-1096584.6330383697,0.95,0.25,22.0,634,0.0,0.1,0.0,0.0,1050.0,665700.0,13125.0,8321250.0,13125.0,8321250.0,true,634,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,634,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,665700.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,635,0.9061418727636267,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3654091.8129500016,2987341.812949994,666750.0,4750674.86941176,-1096583.0564617931,0.95,0.25,22.0,635,0.0,0.1,0.0,0.0,1050.0,666750.0,13125.0,8334375.0,13125.0,8334375.0,true,635,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,635,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,666750.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,636,0.9061412888463761,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3655141.8129500016,2987341.812949994,667800.0,4751723.292835183,-1096581.4798852166,0.95,0.25,22.0,636,0.0,0.1,0.0,0.0,1050.0,667800.0,13125.0,8347500.0,13125.0,8347500.0,true,636,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,636,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,667800.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,637,0.9061407049291256,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3656191.8129500016,2987341.812949994,668850.0,4752771.716258607,-1096579.90330864,0.95,0.25,22.0,637,0.0,0.1,0.0,0.0,1050.0,668850.0,13125.0,8360625.0,13125.0,8360625.0,true,637,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,637,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,668850.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,638,0.906140121011875,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3657241.8129500016,2987341.812949994,669900.0,4753820.13968203,-1096578.3267320634,0.95,0.25,22.0,638,0.0,0.1,0.0,0.0,1050.0,669900.0,13125.0,8373750.0,13125.0,8373750.0,true,638,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,638,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,669900.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,639,0.9061395370946245,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3658291.8129500016,2987341.812949994,670950.0,4754868.563105454,-1096576.7501554869,0.95,0.25,22.0,639,0.0,0.1,0.0,0.0,1050.0,670950.0,13125.0,8386875.0,13125.0,8386875.0,true,639,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,639,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,670950.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,640,0.9061389531773739,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3659341.8129500016,2987341.812949994,672000.0,4755916.986528877,-1096575.1735789103,0.95,0.25,22.0,640,0.0,0.1,0.0,0.0,1050.0,672000.0,13125.0,8400000.0,13125.0,8400000.0,true,640,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,640,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,672000.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,641,0.9061383692601234,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3660391.8129500016,2987341.812949994,673050.0,4756965.409952301,-1096573.5970023337,0.95,0.25,22.0,641,0.0,0.1,0.0,0.0,1050.0,673050.0,13125.0,8413125.0,13125.0,8413125.0,true,641,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,641,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,673050.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,642,0.9061377853428728,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3661441.8129500016,2987341.812949994,674100.0,4758013.833375724,-1096572.0204257572,0.95,0.25,22.0,642,0.0,0.1,0.0,0.0,1050.0,674100.0,13125.0,8426250.0,13125.0,8426250.0,true,642,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,642,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,674100.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,643,0.9061372014256223,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3662491.8129500016,2987341.812949994,675150.0,4759062.256799147,-1096570.4438491806,0.95,0.25,22.0,643,0.0,0.1,0.0,0.0,1050.0,675150.0,13125.0,8439375.0,13125.0,8439375.0,true,643,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,643,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,675150.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,644,0.9061366175083717,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3663541.8129500016,2987341.812949994,676200.0,4760110.680222571,-1096568.867272604,0.95,0.25,22.0,644,0.0,0.1,0.0,0.0,1050.0,676200.0,13125.0,8452500.0,13125.0,8452500.0,true,644,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,644,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,676200.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,645,0.9061360335911212,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3664591.8129500016,2987341.812949994,677250.0,4761159.103645994,-1096567.2906960275,0.95,0.25,22.0,645,0.0,0.1,0.0,0.0,1050.0,677250.0,13125.0,8465625.0,13125.0,8465625.0,true,645,0.83,53000.0,1239.904194285078,0.0,0.0,2721255.697452028,0.0,2987341.812949994,0.0,2721255.697452028,-0.0,0.0,-0.0,0.0,0.0,266086.11549794645,645,53000.0,1239.904194285078,0.0,1481750.4633903254,1050.0,677250.0,0.0,812779.7588407134,0.0,3.26281224261038e-10,0.0,0.0,0.0,668970.7045496111,0.0,-2.7711166694643907e-13,0.0,-3081315.223005106,true,true,0.0,6522.5088290609965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,646,0.9061349800100369,666.0,0.0,1894.549505743984,844.5495057439839,1050.0,1891.7048368164403,2.8446689275435193,3666486.3624557457,2988186.3624557382,678300.0,4763050.808482811,-1096564.4460270999,0.95,0.25,22.0,646,0.0,0.1,0.0,0.0,1050.0,678300.0,13125.0,8478750.0,13125.0,8478750.0,true,646,0.8434401310529319,53000.0,1239.904194285078,0.0,712.3269458053946,2721968.0243978333,844.5495057439839,2988186.3624557382,712.3269458053946,2721968.0243978333,-0.0,0.0,-0.0,0.0,132.22255993858926,266218.33805788506,646,53000.0,1239.904194285078,712.3269458053946,1482462.790336131,1050.0,678300.0,0.0365975493290532,812779.7954382628,653.5135757765464,653.5135757768727,0.0,0.0,45.85068777123183,669016.5552373823,12.92608470828739,12.926084708287114,-712.3269458053946,-3082027.5499509117,true,true,0.894094506,6523.402923566997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,647,0.9061325982003966,666.0,0.0,4282.970095173919,3232.9700951739187,1050.0,4276.5392091451295,6.430886028789668,3670769.3325509196,2991419.332550912,679350.0,4767327.347691956,-1096558.015141071,0.95,0.25,22.0,647,0.0,0.1,0.0,0.0,1050.0,679350.0,13125.0,8491875.0,13125.0,8491875.0,true,647,0.8839185316890719,53000.0,1239.904194285078,0.0,2857.6821795208093,2724825.706577354,3232.9700951739187,2991419.332550912,2857.6821795208093,2724825.706577354,-0.0,0.0,-0.0,0.0,375.2879156531094,266593.62597353815,647,53000.0,1239.904194285078,2857.6821795208093,1485320.4725156517,1050.0,679350.0,1.2563252474128799,812781.0517635102,2654.898899947645,3308.4124757245177,0.0,0.0,149.0147352308626,669165.5699726131,52.512219094888884,65.438303803176,-2857.6821795208093,-3084885.2321304325,true,true,2.011712638,6525.414636204997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,648,0.9061277351055614,666.0,0.0,8744.81713261045,7694.817132610449,1050.0,8731.686776555478,13.130356054970644,3679514.14968353,2999114.1496835225,680400.0,4776059.034468511,-1096544.884785016,0.95,0.25,22.0,648,0.0,0.1,0.0,0.0,1050.0,680400.0,13125.0,8505000.0,13125.0,8505000.0,true,648,0.916615815397519,53000.0,1239.904194285078,0.0,7053.191080342526,2731878.8976576966,7694.817132610449,2999114.1496835225,7053.191080342526,2731878.8976576966,-0.0,0.0,-0.0,0.0,641.6260522679231,267235.25202580605,648,53000.0,1239.904194285078,7053.191080342526,1492373.6635959942,1050.0,680400.0,8.512896474233346,812789.5646599844,6631.5290095566015,9939.941485281119,0.0,0.0,281.98172974692227,669447.55170236,131.1674445647685,196.6057483679445,-7053.191080342526,-3091938.423210775,true,true,3.486968573,6528.901604777997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,649,0.9061225289906857,666.0,0.0,9361.635769603596,8311.635769603596,1050.0,9347.579259439026,14.056510164569964,3688875.7854531338,3007425.7854531263,681450.0,4785406.6137279505,-1096530.8282748514,0.95,0.25,22.0,649,0.0,0.1,0.0,0.0,1050.0,681450.0,13125.0,8518125.0,13125.0,8518125.0,true,649,0.9188184306956257,53000.0,1239.904194285078,0.0,7636.884134340806,2739515.7817920377,8311.635769603596,3007425.7854531263,7636.884134340806,2739515.7817920377,-0.0,0.0,-0.0,0.0,674.7516352627899,267910.00366106885,649,53000.0,1239.904194285078,7636.884134340806,1500010.547730335,1050.0,681450.0,26.679613450933186,812816.2442734353,7057.946616193935,16997.888101475055,0.0,0.0,412.6561898898048,669860.2078922498,139.60171480613232,336.2074631740768,-7636.884134340806,-3099575.307345116,true,true,4.55988198,6533.461486757997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,650,0.9061163703037188,666.0,0.0,11074.550903765348,10024.550903765348,1050.0,11057.92244895489,16.628454810458482,3699950.3363568992,3017450.336356892,682500.0,4796464.536176905,-1096514.199820041,0.95,0.25,22.0,650,0.0,0.1,0.0,0.0,1050.0,682500.0,13125.0,8531250.0,13125.0,8531250.0,true,650,0.9249910171193926,53000.0,1239.904194285078,0.0,9272.619536639035,2748788.401328677,10024.550903765348,3017450.336356892,9272.619536639035,2748788.401328677,-0.0,0.0,-0.0,0.0,751.9313671263135,268661.93502819515,650,53000.0,1239.904194285078,9272.619536639035,1509283.167266974,1050.0,682500.0,53.5105714790961,812869.7548449144,8529.985938591823,25527.874040066876,0.0,0.0,520.4053060957897,670380.6131983456,168.71772047232704,504.92518364640387,-9272.619536639035,-3108847.9268817552,true,true,5.588090661,6539.049577418997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,651,0.9061113529128743,666.0,0.0,9022.272216809786,7972.272216809787,1050.0,9008.725261529291,13.546955280495174,3708972.608573709,3025422.6085737017,683550.0,4805473.261438434,-1096500.6528647605,0.95,0.25,22.0,651,0.0,0.1,0.0,0.0,1050.0,683550.0,13125.0,8544375.0,13125.0,8544375.0,true,651,0.9176052795321205,53000.0,1239.904194285078,0.0,7315.399076011902,2756103.800404689,7972.272216809787,3025422.6085737017,7315.399076011902,2756103.800404689,-0.0,0.0,-0.0,0.0,656.8731407978848,269318.80816899304,651,53000.0,1239.904194285078,7315.399076011902,1516598.566342986,1050.0,683550.0,85.1333335626886,812954.8881784771,6494.291162751319,32022.165202818192,0.0,0.0,607.5216128406175,670988.1348111862,128.4529668572777,633.3781505036816,-7315.399076011902,-3116163.325957767,true,true,6.258661541,6545.308238959997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,652,0.9061064428458259,666.0,0.0,8829.282566497535,7779.282566497536,1050.0,8816.025385466759,13.25718103077708,3717801.8911402067,3033201.8911401993,684600.0,4814289.2868239,-1096487.3956837298,0.95,0.25,22.0,652,0.0,0.1,0.0,0.0,1050.0,684600.0,13125.0,8557500.0,13125.0,8557500.0,true,652,0.9169168111856025,53000.0,1239.904194285078,0.0,7132.954964184671,2763236.7553688735,7779.282566497536,3033201.8911401993,7132.954964184671,2763236.7553688735,-0.0,0.0,-0.0,0.0,646.3276023128656,269965.1357713059,652,53000.0,1239.904194285078,7132.954964184671,1523731.5213071706,1050.0,684600.0,115.07073275088482,813069.958911228,6223.08301431716,38245.248217135355,0.0,0.0,671.7125756998295,671659.847386886,123.08864141679673,756.4667919204783,-7132.954964184671,-3123296.280921952,true,true,6.839822969,6552.148061928997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,653,0.9060981419093356,666.0,0.0,14926.743996824647,13876.743996824647,1050.0,14904.331468300887,22.41252852376073,3732728.6351370313,3047078.635137024,685650.0,4829193.618292201,-1096464.983155206,0.95,0.25,22.0,653,0.0,0.1,0.0,0.0,1050.0,685650.0,13125.0,8570625.0,13125.0,8570625.0,true,653,0.9322037287707903,53000.0,1239.904194285078,0.0,12935.952497037615,2776172.707865911,13876.743996824647,3047078.635137024,12935.952497037615,2776172.707865911,-0.0,0.0,-0.0,0.0,940.7914997870321,270905.9272710929,653,53000.0,1239.904194285078,12935.952497037615,1536667.4738042082,1050.0,685650.0,161.42974051539727,813231.3886517434,11789.384909070099,50034.63312620545,0.0,0.0,751.9512792738443,672411.7986661599,233.1865681782738,989.653360098752,-12935.952497037615,-3136232.2334189895,true,true,7.823326926,6559.971388854997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,654,0.9060891771766376,666.0,0.0,16120.38233738718,15070.38233738718,1050.0,16096.177559102814,24.204778284365137,3748849.0174744185,3062149.017474411,686700.0,4845289.795851304,-1096440.7783769218,0.95,0.25,22.0,654,0.0,0.1,0.0,0.0,1050.0,686700.0,13125.0,8583750.0,13125.0,8583750.0,true,654,0.9332685986845795,53000.0,1239.904194285078,0.0,14064.714605654171,2790237.422471565,15070.38233738718,3062149.017474411,14064.714605654171,2790237.422471565,-0.0,0.0,-0.0,0.0,1005.6677317330086,271911.5950028259,654,53000.0,1239.904194285078,14064.714605654171,1550732.1884098623,1050.0,686700.0,233.60586730446855,813464.9945190479,12728.810665587464,62763.44379179292,0.0,0.0,850.5302579871209,673262.328924147,251.76781477511972,1241.4211748738717,-14064.714605654171,-3150296.9480246436,true,true,8.762126157,6568.733515011997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,655,0.9060821914763032,666.0,0.0,12561.686341359253,11511.686341359253,1050.0,12542.82495045631,18.86139090294182,3761410.703815778,3073660.7038157703,687750.0,4857832.620801761,-1096421.916986019,0.95,0.25,22.0,655,0.0,0.1,0.0,0.0,1050.0,687750.0,13125.0,8596875.0,13125.0,8596875.0,true,655,0.9301009723199439,53000.0,1239.904194285078,0.0,10707.030659140459,2800944.4531307057,11511.686341359253,3073660.7038157703,10707.030659140459,2800944.4531307057,-0.0,0.0,-0.0,0.0,804.655682218794,272716.2506850447,655,53000.0,1239.904194285078,10707.030659140459,1561439.219069003,1050.0,687750.0,306.1541270987998,813771.1486461468,9286.427906872912,72049.87169866583,0.0,0.0,930.7689615611358,674193.0978857081,183.67966360761108,1425.1008384814827,-10707.030659140459,-3161003.978683784,true,true,9.387992311,6578.121507322997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,656,0.9060756154255973,666.0,0.0,11825.054379277915,10775.054379277915,1050.0,11807.299042372093,17.755336905822695,3773235.7581950556,3084435.758195048,688800.0,4869639.919844133,-1096404.161649113,0.95,0.25,22.0,656,0.0,0.1,0.0,0.0,1050.0,688800.0,13125.0,8610000.0,13125.0,8610000.0,true,656,0.9277217049811641,53000.0,1239.904194285078,0.0,9996.251820008467,2810940.704950714,10775.054379277915,3084435.758195048,9996.251820008467,2810940.704950714,-0.0,0.0,-0.0,0.0,778.8025592694485,273495.05324431416,656,53000.0,1239.904194285078,9996.251820008467,1571435.4708890114,1050.0,688800.0,368.818976219657,814139.9676223664,8469.53593057396,80519.40762923978,0.0,0.0,990.3748556227118,675183.4727413309,167.52205759213808,1592.6228960736207,-9996.251820008467,-3171000.2305037924,true,true,9.924449014,6588.045956336997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,657,0.9060691449221346,666.0,0.0,11635.2593265654,10585.2593265654,1050.0,11617.788967216202,17.470359349197295,3784871.017521621,3095021.0175216137,689850.0,4881257.708811349,-1096386.691289764,0.95,0.25,22.0,657,0.0,0.1,0.0,0.0,1050.0,689850.0,13125.0,8623125.0,13125.0,8623125.0,true,657,0.9270296185500344,53000.0,1239.904194285078,0.0,9812.848915759116,2820753.553866473,10585.2593265654,3095021.0175216137,9812.848915759116,2820753.553866473,-0.0,0.0,-0.0,0.0,772.4104108062838,274267.46365512046,657,53000.0,1239.904194285078,9812.848915759116,1581248.3198047704,1050.0,689850.0,430.91955960839607,814570.8871819748,8177.08857564347,88696.49620488325,0.0,0.0,1043.1031464109114,676226.5758877418,161.73763409633835,1754.360530169959,-9812.848915759116,-3180813.0794195514,true,true,10.41620099,6598.462157326997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,658,0.906061896060627,666.0,0.0,13034.902763069289,11984.902763069289,1050.0,13015.330836998615,19.571926070674607,3797905.9202846903,3107005.920284683,690900.0,4894273.0396483475,-1096367.1193636933,0.95,0.25,22.0,658,0.0,0.1,0.0,0.0,1050.0,690900.0,13125.0,8636250.0,13125.0,8636250.0,true,658,0.9305209462832109,53000.0,1239.904194285078,0.0,11152.203060203505,2831905.7569266767,11984.902763069289,3107005.920284683,11152.203060203505,2831905.7569266767,-0.0,0.0,-0.0,0.0,832.6997028657843,275100.16335798625,658,53000.0,1239.904194285078,11152.203060203505,1592400.5228649739,1050.0,690900.0,499.62677880025166,815070.5139607751,9371.384786946452,98067.8809918297,0.0,0.0,1095.831437558083,677322.4073252998,185.36005689871783,1939.7205870686769,-11152.203060203505,-3191965.282479755,true,true,10.9526577,6609.414815026997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,659,0.9060562763435338,666.0,0.0,10105.375276968944,9055.375276968944,1050.0,10090.20204081734,15.173236151605021,3808011.295561659,3116061.2955616517,691950.0,4904363.241689165,-1096351.9461275416,0.95,0.25,22.0,659,0.0,0.1,0.0,0.0,1050.0,691950.0,13125.0,8649375.0,13125.0,8649375.0,true,659,0.9214883893546257,53000.0,1239.904194285078,0.0,8344.42317897581,2840250.1801056527,9055.375276968944,3116061.2955616517,8344.42317897581,2840250.1801056527,-0.0,0.0,-0.0,0.0,710.9520979931331,275811.11545597936,659,53000.0,1239.904194285078,8344.42317897581,1600744.9460439496,1050.0,691950.0,565.0020793773876,815635.5160401525,6508.995171229929,104576.87616305963,0.0,0.0,1141.6821255344416,678464.0894508342,128.7438028340515,2068.4643899027283,-8344.42317897581,-3200309.705658731,true,true,11.3102955,6620.725110526997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,660,0.9060530286819912,666.0,0.0,5839.94498583143,4789.94498583143,1050.0,5831.176299666518,8.768686164912058,3813851.240547491,3120851.2405474833,693000.0,4910194.417988831,-1096343.1774413767,0.95,0.25,22.0,660,0.0,0.1,0.0,0.0,1050.0,693000.0,13125.0,8662500.0,13125.0,8662500.0,true,660,0.9007010221191794,53000.0,1239.904194285078,0.0,4314.308344633007,2844564.4884502855,4789.94498583143,3120851.2405474833,4314.308344633007,2844564.4884502855,-0.0,0.0,-0.0,0.0,475.6366411984227,276286.7520971778,660,53000.0,1239.904194285078,4314.308344633007,1605059.2543885827,1050.0,693000.0,603.2750501325331,816238.791090285,2494.7879649311217,107071.66412799075,0.0,0.0,1166.9000033829811,679630.9894542171,49.345326186371345,2117.8097160890998,-4314.308344633007,-3204624.014003364,true,true,11.44440967,6632.169520196997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,661,0.9060492345995216,666.0,0.0,6822.51909698135,5772.51909698135,1050.0,6812.27507431321,10.244022668140165,3820673.759644472,3126623.7596444646,694050.0,4917006.693063145,-1096332.9334187086,0.95,0.25,22.0,661,0.0,0.1,0.0,0.0,1050.0,694050.0,13125.0,8675625.0,13125.0,8675625.0,true,661,0.9095309906891459,53000.0,1239.904194285078,0.0,5250.285013049462,2849814.773463335,5772.51909698135,3126623.7596444646,5250.285013049462,2849814.773463335,-0.0,0.0,-0.0,0.0,522.2340839318886,276808.9861811097,661,53000.0,1239.904194285078,5250.285013049462,1610309.539401632,1050.0,694050.0,628.5084521807402,816867.2995424658,3372.1302162538504,110443.7943442446,0.0,0.0,1182.9477442516293,680813.9371984687,66.6986003632419,2184.5083164523417,-5250.285013049462,-3209874.2990164133,true,true,11.62322858,6643.792748776997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,662,0.9060469406653762,666.0,0.0,4124.952380279436,3074.952380279436,1050.0,4118.758758086824,6.193622192611765,3824798.7120247516,3129698.712024744,695100.0,4921125.451821231,-1096326.739796516,0.95,0.25,22.0,662,0.0,0.1,0.0,0.0,1050.0,695100.0,13125.0,8688750.0,13125.0,8688750.0,true,662,0.8811208420885672,53000.0,1239.904194285078,0.0,2709.404630694061,2852524.178094029,3074.952380279436,3129698.712024744,2709.404630694061,2852524.178094029,-0.0,0.0,-0.0,0.0,365.5477495853752,277174.53393069503,662,53000.0,1239.904194285078,2709.404630694061,1613018.944032326,1050.0,695100.0,646.9566594978878,817514.2562019638,851.201331486676,111294.99567573128,0.0,0.0,1194.4104163739228,682008.3476148426,16.8362233355744,2201.344539787916,-2709.404630694061,-3212583.7036471074,true,true,11.6679333,6655.460682076997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,663,0.9060446375805715,666.0,0.0,4141.407095783656,3091.407095783656,1050.0,4135.188766811008,6.2183289726481314,3828940.1191205354,3132790.119120528,696150.0,4925260.640588042,-1096320.5214675434,0.95,0.25,22.0,663,0.0,0.1,0.0,0.0,1050.0,696150.0,13125.0,8701875.0,13125.0,8701875.0,true,663,0.8814113450247897,53000.0,1239.904194285078,0.0,2724.801286313851,2855248.9793803426,3091.407095783656,3132790.119120528,2724.801286313851,2855248.9793803426,-0.0,0.0,-0.0,0.0,366.6058094698051,277541.13974016486,663,53000.0,1239.904194285078,2724.801286313851,1615743.74531864,1050.0,696150.0,654.4358535695924,818168.6920555333,854.4690900924087,112149.46476582368,0.0,0.0,1198.9954851202774,683207.3430999628,16.900857531572424,2218.2453973194883,-2724.801286313851,-3215308.504933421,true,true,11.71263803,6667.1733201069965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,664,0.9060428583105529,666.0,0.0,3199.483347487643,2149.483347487643,1050.0,3194.6793184373614,4.804029050281747,3832139.602468023,3134939.6024680156,697200.0,4928455.31990648,-1096315.7174384932,0.95,0.25,22.0,664,0.0,0.1,0.0,0.0,1050.0,697200.0,13125.0,8715000.0,13125.0,8715000.0,true,664,0.8650846224553865,53000.0,1239.904194285078,0.0,1859.4849901354883,2857108.464370478,2149.483347487643,3134939.6024680156,1859.4849901354883,2857108.464370478,-0.0,0.0,-0.0,0.0,289.9983573521549,277831.138097517,664,53000.0,1239.904194285078,1859.4849901354883,1617603.2303087756,1050.0,697200.0,658.1969703856254,818826.8890259189,0.0,112149.46476582368,0.0,0.0,1201.2880197498628,684408.6311197127,0.0,2218.2453973194883,-1859.4849901354883,-3217167.9899235563,true,true,11.71263803,6678.885958136996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,665,0.9060400203415958,666.0,0.0,5103.23577867641,4053.23577867641,1050.0,5095.573262492211,7.662516184198814,3837242.8382466994,3138992.838246692,698250.0,4933550.893168972,-1096308.054922309,0.95,0.25,22.0,665,0.0,0.1,0.0,0.0,1050.0,698250.0,13125.0,8728125.0,13125.0,8728125.0,true,665,0.8941921864444288,53000.0,1239.904194285078,0.0,3624.371763109446,2860732.836133587,4053.23577867641,3138992.838246692,3624.371763109446,2860732.836133587,-0.0,0.0,-0.0,0.0,428.8640155669641,278260.00211308396,665,53000.0,1239.904194285078,3624.371763109446,1621227.602071885,1050.0,698250.0,665.7623791362201,819492.6514050551,1718.7406929191668,113868.20545874284,0.0,0.0,1205.873088496217,685614.504208209,33.99560255784211,2252.2409998773305,-3624.371763109446,-3220792.3616866656,true,true,11.80204748,6690.688005616996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,666,0.9060376896366203,666.0,0.0,4191.073686931726,3141.0736869317257,1050.0,4184.780783497895,6.2929034338314205,3841433.911933631,3142133.9119336237,699300.0,4937735.67395247,-1096301.7620188752,0.95,0.25,22.0,666,0.0,0.1,0.0,0.0,1050.0,699300.0,13125.0,8741250.0,13125.0,8741250.0,true,666,0.882289356248532,53000.0,1239.904194285078,0.0,2771.335881172195,2863504.1720147594,3141.0736869317257,3142133.9119336237,2771.335881172195,2863504.1720147594,-0.0,0.0,-0.0,0.0,369.7378057595306,278629.7399188435,666,53000.0,1239.904194285078,2771.335881172195,1623998.9379530572,1050.0,699300.0,677.2188434506029,820169.8702485057,864.2716013648975,114732.47706010775,0.0,0.0,1212.7506913593397,686827.2548995684,17.0947449973551,2269.3357448746856,-2771.335881172195,-3223563.697567838,true,true,11.8467522,6702.534757816996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,667,0.9060358877955069,666.0,0.0,3240.0706901387784,2190.0706901387784,1050.0,3235.205719132564,4.864971006214382,3844673.98262377,3144323.9826237625,700350.0,4940970.8796716025,-1096296.897047869,0.95,0.25,22.0,667,0.0,0.1,0.0,0.0,1050.0,700350.0,13125.0,8754375.0,13125.0,8754375.0,true,667,0.8657756583704279,53000.0,1239.904194285078,0.0,1896.1098936326782,2865400.281908392,2190.0706901387784,3144323.9826237625,1896.1098936326782,2865400.281908392,-0.0,0.0,-0.0,0.0,293.9607965061002,278923.7007153496,667,53000.0,1239.904194285078,1896.1098936326782,1625895.0478466898,1050.0,700350.0,681.0666681565701,820850.9369166623,0.0,114732.47706010775,0.0,0.0,1215.043225476108,688042.2981250444,0.0,2269.3357448746856,-1896.1098936326782,-3225459.8074614704,true,true,11.8467522,6714.381510016996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,668,0.9060358761841629,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3844694.8621425135,3143294.862142506,701400.0,4940991.727839717,-1096296.8656972402,0.95,0.25,22.0,668,0.0,0.1,0.0,0.0,1050.0,701400.0,13125.0,8767500.0,13125.0,8767500.0,true,668,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2864160.377714107,-1029.1204812566145,3143294.862142506,-1239.904194285078,2864160.377714107,-0.0,0.0,-0.0,0.0,210.78371302846335,279134.48442837805,668,53000.0,1239.904194285078,-2507.9571212234428,1623387.0907254664,1050.0,701400.0,661.9724691954185,821512.9093858576,-4288.682715863149,110443.7943442446,0.0,0.0,1203.5805538666314,689245.878678911,-84.82742842234404,2184.5083164523417,-1239.904194285078,-3226699.7116557555,true,true,11.62322858,6726.004738596996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,669,0.9060358645728189,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3844715.741661257,3142265.7416612497,702450.0,4941012.576007831,-1096296.8343466115,0.95,0.25,22.0,669,0.0,0.1,0.0,0.0,1050.0,702450.0,13125.0,8780625.0,13125.0,8780625.0,true,669,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2862920.4735198217,-1029.1204812566145,3142265.7416612497,-1239.904194285078,2862920.4735198217,-0.0,0.0,-0.0,0.0,210.78371302846335,279345.26814140653,669,53000.0,1239.904194285078,-2484.6887607521408,1620902.4019647143,1050.0,702450.0,624.8614107545912,822137.7707966123,-4206.993710027233,106236.80063421736,0.0,0.0,1180.6552101348605,690426.5338890458,-83.21167161435982,2101.296644837982,-1239.904194285078,-3227939.6158500407,true,true,11.39970495,6737.404443546996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,670,0.9060358529614749,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3844736.6211800007,3141236.6211799933,703500.0,4941033.424175945,-1096296.8029959828,0.95,0.25,22.0,670,0.0,0.1,0.0,0.0,1050.0,703500.0,13125.0,8793750.0,13125.0,8793750.0,true,670,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2861680.5693255365,-1029.1204812566145,3141236.6211799933,-1239.904194285078,2861680.5693255365,-0.0,0.0,-0.0,0.0,210.78371302846335,279556.051854435,670,53000.0,1239.904194285078,-13875.894566375157,1607026.5073983392,1050.0,703500.0,541.510016178596,822679.2808127909,-15241.570356890548,90995.23027732682,0.0,0.0,1125.6343846657935,691552.1682737116,-301.46861032899795,1799.828034508984,-1239.904194285078,-3229179.520044326,true,true,10.55031517,6747.954758716996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,671,0.9060358413501309,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3844757.5006987443,3140207.500698737,704550.0,4941054.272344059,-1096296.771645354,0.95,0.25,22.0,671,0.0,0.1,0.0,0.0,1050.0,704550.0,13125.0,8806875.0,13125.0,8806875.0,true,671,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2860440.6651312513,-1029.1204812566145,3140207.500698737,-1239.904194285078,2860440.6651312513,-0.0,0.0,-0.0,0.0,210.78371302846335,279766.8355674635,671,53000.0,1239.904194285078,-15045.872183180716,1591980.6352151586,1050.0,704550.0,416.86896013974774,823096.1497729305,-16174.46102108153,74820.76925624529,0.0,0.0,1031.640474698871,692583.8087484104,-319.92059693780516,1479.907437571179,-1239.904194285078,-3230419.424238611,true,true,9.566811212,6757.5215699289965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,672,0.9060358297387869,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3844778.380217488,3139178.3802174805,705600.0,4941075.1205121735,-1096296.7402947254,0.95,0.25,22.0,672,0.0,0.1,0.0,0.0,1050.0,705600.0,13125.0,8820000.0,13125.0,8820000.0,true,672,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2859200.760936966,-1029.1204812566145,3139178.3802174805,-1239.904194285078,2859200.760936966,-0.0,0.0,-0.0,0.0,210.78371302846335,279977.61928049196,672,53000.0,1239.904194285078,-18073.122016870966,1573907.5131982877,1050.0,705600.0,290.5900265495552,823386.7397994801,-18904.513949147327,55916.25530709796,0.0,0.0,914.7212208463327,693498.5299692567,-373.9193151195263,1105.9881224516525,-1239.904194285078,-3231659.328432896,true,true,8.270374179,6765.791944107997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,673,0.9060358181274429,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3844799.2597362315,3138149.259736224,706650.0,4941095.968680288,-1096296.7089440967,0.95,0.25,22.0,673,0.0,0.1,0.0,0.0,1050.0,706650.0,13125.0,8833125.0,13125.0,8833125.0,true,673,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2857960.856742681,-1029.1204812566145,3138149.259736224,-1239.904194285078,2857960.856742681,-0.0,0.0,-0.0,0.0,210.78371302846335,280188.40299352043,673,53000.0,1239.904194285078,-11216.282594295715,1562691.230603992,1050.0,706650.0,194.46358972839582,823581.2033892084,-11974.00249825434,43942.25280884362,0.0,0.0,800.0945014182531,694298.624470675,-236.83818718802385,869.1499352636287,-1239.904194285078,-3232899.2326271813,true,true,7.331574947,6773.123519054997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,674,0.9060358065160989,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3844820.139254975,3137120.1392549677,707700.0,4941116.816848402,-1096296.677593468,0.95,0.25,22.0,674,0.0,0.1,0.0,0.0,1050.0,707700.0,13125.0,8846250.0,13125.0,8846250.0,true,674,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2856720.952548396,-1029.1204812566145,3137120.1392549677,-1239.904194285078,2856720.952548396,-0.0,0.0,-0.0,0.0,210.78371302846335,280399.1867065489,674,53000.0,1239.904194285078,-8938.304915603336,1553752.9256883888,1050.0,707700.0,134.97006460574337,823716.1734538141,-9591.945497986151,34350.307310857475,0.0,0.0,708.3931258757896,695007.0175965508,-189.72260809871673,679.427327164912,-1239.904194285078,-3234139.1368214665,true,true,6.482185167,6779.605704221997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,675,0.9060357949047549,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3844841.0187737187,3136091.0187737113,708750.0,4941137.665016516,-1096296.6462428393,0.95,0.25,22.0,675,0.0,0.1,0.0,0.0,1050.0,708750.0,13125.0,8859375.0,13125.0,8859375.0,true,675,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2855481.0483541107,-1029.1204812566145,3136091.0187737113,-1239.904194285078,2855481.0483541107,-0.0,0.0,-0.0,0.0,210.78371302846335,280609.9704195774,675,53000.0,1239.904194285078,-11931.016854393683,1541821.908833995,1050.0,708750.0,81.33613653907534,823797.5095903532,-12366.110628517099,21984.196682340378,0.0,0.0,598.3514752966275,695605.3690718474,-244.59383771228704,434.8334894526249,-1239.904194285078,-3235379.0410157517,true,true,5.185748134,6784.7914523559975,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,676,0.906035783293411,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3844861.8982924623,3135061.898292455,709800.0,4941158.51318463,-1096296.6148922106,0.95,0.25,22.0,676,0.0,0.1,0.0,0.0,1050.0,709800.0,13125.0,8872500.0,13125.0,8872500.0,true,676,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2854241.1441598255,-1029.1204812566145,3135061.898292455,-1239.904194285078,2854241.1441598255,-0.0,0.0,-0.0,0.0,210.78371302846335,280820.75413260586,676,53000.0,1239.904194285078,-9304.671956733782,1532517.2368772612,1050.0,709800.0,38.269265887349945,823835.7788562406,-9618.086051703287,12366.110630637091,0.0,0.0,465.38448078056786,696070.753552628,-190.2396516984123,244.59383775421261,-1239.904194285078,-3236618.945210037,true,true,3.8893111,6788.680763455997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,677,0.906035771682067,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3844882.777811206,3134032.7778111985,710850.0,4941179.3613527445,-1096296.5835415819,0.95,0.25,22.0,677,0.0,0.1,0.0,0.0,1050.0,710850.0,13125.0,8885625.0,13125.0,8885625.0,true,677,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2853001.2399655404,-1029.1204812566145,3134032.7778111985,-1239.904194285078,2853001.2399655404,-0.0,0.0,-0.0,0.0,210.78371302846335,281031.53784563433,677,53000.0,1239.904194285078,-6659.582913710078,1525857.6539635512,1050.0,710850.0,13.946525468228778,823849.7253817088,-6870.061460051759,5496.049170585332,0.0,0.0,332.4174862645082,696403.1710388925,-135.88546539105667,108.70837236315595,-1239.904194285078,-3237858.849404322,true,true,2.592874067,6791.273637522997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,678,0.906035760070723,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3844903.6573299496,3133003.657329942,711900.0,4941200.209520859,-1096296.5521909532,0.95,0.25,22.0,678,0.0,0.1,0.0,0.0,1050.0,711900.0,13125.0,8898750.0,13125.0,8898750.0,true,678,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2851761.335771255,-1029.1204812566145,3133003.657329942,-1239.904194285078,2851761.335771255,-0.0,0.0,-0.0,0.0,210.78371302846335,281242.3215586628,678,53000.0,1239.904194285078,-3346.9006990568882,1522510.7532644942,1050.0,711900.0,3.679686870818984,823853.4050685796,-3494.6638460484555,2001.3853245368764,0.0,0.0,213.2056980900745,696616.3767369825,-69.12223796932625,39.586134393829695,-1239.904194285078,-3239098.753598607,true,true,1.564665385,6792.838302907997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,679,0.906035748459379,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3844924.536848693,3131974.5368486857,712950.0,4941221.057688973,-1096296.5208403245,0.95,0.25,22.0,679,0.0,0.1,0.0,0.0,1050.0,712950.0,13125.0,8911875.0,13125.0,8911875.0,true,679,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2850521.43157697,-1029.1204812566145,3131974.5368486857,-1239.904194285078,2850521.43157697,-0.0,0.0,-0.0,0.0,210.78371302846335,281453.1052716913,679,53000.0,1239.904194285078,-1247.681292442071,1521263.071972052,1050.0,712950.0,0.7611146582383251,823854.1661832378,-1347.8717487600134,653.513575776863,0.0,0.0,126.0893913452467,696742.4661283278,-26.660049685542685,12.92608470828701,-1239.904194285078,-3240338.6577928923,true,true,0.894094506,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,680,0.9060354509721537,666.0,0.0,534.9415286136535,-515.0584713863465,1050.0,534.1383131052246,0.8032155084289092,3845459.478377307,3131459.4783772994,714000.0,4941755.196002078,-1096295.717624816,0.95,0.25,22.0,680,0.0,0.1,0.0,0.0,1050.0,714000.0,13125.0,8925000.0,13125.0,8925000.0,true,680,0.83,53000.0,1239.904194285078,0.0,-620.5523751642729,2849900.8792018057,-515.0584713863465,3131459.4783772994,-620.5523751642729,2849900.8792018057,-0.0,0.0,-0.0,0.0,105.49390377792645,281558.5991754692,680,53000.0,1239.904194285078,-620.5523751642729,1520642.5195968878,1050.0,714000.0,0.0365975493290532,823854.2027807871,-653.5135757765464,3.1661784305470064e-10,0.0,0.0,45.85068777123183,696788.316816099,-12.92608470828739,-3.801403636316536e-13,-620.5523751642729,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,681,0.9060348670549031,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3846509.478377307,3131459.4783772994,715050.0,4942803.619425502,-1096294.1410482395,0.95,0.25,22.0,681,0.0,0.1,0.0,0.0,1050.0,715050.0,13125.0,8938125.0,13125.0,8938125.0,true,681,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,681,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,715050.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,682,0.9060342831376526,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3847559.478377307,3131459.4783772994,716100.0,4943852.042848925,-1096292.564471663,0.95,0.25,22.0,682,0.0,0.1,0.0,0.0,1050.0,716100.0,13125.0,8951250.0,13125.0,8951250.0,true,682,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,682,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,716100.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,683,0.906033699220402,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3848609.478377307,3131459.4783772994,717150.0,4944900.466272349,-1096290.9878950864,0.95,0.25,22.0,683,0.0,0.1,0.0,0.0,1050.0,717150.0,13125.0,8964375.0,13125.0,8964375.0,true,683,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,683,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,717150.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,684,0.9060331153031514,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3849659.478377307,3131459.4783772994,718200.0,4945948.889695772,-1096289.4113185098,0.95,0.25,22.0,684,0.0,0.1,0.0,0.0,1050.0,718200.0,13125.0,8977500.0,13125.0,8977500.0,true,684,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,684,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,718200.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,685,0.9060325313859009,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3850709.478377307,3131459.4783772994,719250.0,4946997.313119195,-1096287.8347419333,0.95,0.25,22.0,685,0.0,0.1,0.0,0.0,1050.0,719250.0,13125.0,8990625.0,13125.0,8990625.0,true,685,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,685,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,719250.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,686,0.9060319474686503,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3851759.478377307,3131459.4783772994,720300.0,4948045.736542619,-1096286.2581653567,0.95,0.25,22.0,686,0.0,0.1,0.0,0.0,1050.0,720300.0,13125.0,9003750.0,13125.0,9003750.0,true,686,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,686,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,720300.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,687,0.9060313635513998,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3852809.478377307,3131459.4783772994,721350.0,4949094.159966042,-1096284.6815887801,0.95,0.25,22.0,687,0.0,0.1,0.0,0.0,1050.0,721350.0,13125.0,9016875.0,13125.0,9016875.0,true,687,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,687,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,721350.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,688,0.9060307796341492,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3853859.478377307,3131459.4783772994,722400.0,4950142.583389466,-1096283.1050122036,0.95,0.25,22.0,688,0.0,0.1,0.0,0.0,1050.0,722400.0,13125.0,9030000.0,13125.0,9030000.0,true,688,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,688,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,722400.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,689,0.9060301957168987,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3854909.478377307,3131459.4783772994,723450.0,4951191.006812889,-1096281.528435627,0.95,0.25,22.0,689,0.0,0.1,0.0,0.0,1050.0,723450.0,13125.0,9043125.0,13125.0,9043125.0,true,689,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,689,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,723450.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,690,0.9060296117996481,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3855959.478377307,3131459.4783772994,724500.0,4952239.430236313,-1096279.9518590504,0.95,0.25,22.0,690,0.0,0.1,0.0,0.0,1050.0,724500.0,13125.0,9056250.0,13125.0,9056250.0,true,690,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,690,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,724500.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,691,0.9060290278823976,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3857009.478377307,3131459.4783772994,725550.0,4953287.853659736,-1096278.3752824739,0.95,0.25,22.0,691,0.0,0.1,0.0,0.0,1050.0,725550.0,13125.0,9069375.0,13125.0,9069375.0,true,691,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,691,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,725550.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,692,0.906028443965147,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3858059.478377307,3131459.4783772994,726600.0,4954336.277083159,-1096276.7987058973,0.95,0.25,22.0,692,0.0,0.1,0.0,0.0,1050.0,726600.0,13125.0,9082500.0,13125.0,9082500.0,true,692,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,692,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,726600.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,693,0.9060278600478965,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,3859109.478377307,3131459.4783772994,727650.0,4955384.700506583,-1096275.2221293207,0.95,0.25,22.0,693,0.0,0.1,0.0,0.0,1050.0,727650.0,13125.0,9095625.0,13125.0,9095625.0,true,693,0.83,53000.0,1239.904194285078,0.0,0.0,2849900.8792018057,0.0,3131459.4783772994,0.0,2849900.8792018057,-0.0,0.0,-0.0,0.0,0.0,281558.5991754692,693,53000.0,1239.904194285078,0.0,1520642.5195968878,1050.0,727650.0,0.0,823854.2027807871,0.0,3.1661784305470064e-10,0.0,0.0,0.0,696788.316816099,0.0,-3.801403636316536e-13,0.0,-3240959.2101680567,true,true,0.0,6793.732397413997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,694,0.90602703776455,666.0,0.0,1478.6299136870643,428.6299136870643,1050.0,1476.4097486514981,2.2201650355661626,3860588.108290994,3131888.1082909866,728700.0,4956861.110255234,-1096273.0019642853,0.95,0.25,22.0,694,0.0,0.1,0.0,0.0,1050.0,728700.0,13125.0,9108750.0,13125.0,9108750.0,true,694,0.8367672352418467,53000.0,1239.904194285078,0.0,358.66346781787615,2850259.5426696236,428.6299136870643,3131888.1082909866,358.66346781787615,2850259.5426696236,-0.0,0.0,-0.0,0.0,69.96644586918814,281628.5656213384,694,53000.0,1239.904194285078,358.66346781787615,1521001.1830647057,1050.0,728700.0,0.012552959407831086,823854.2153337465,320.2216519258495,320.22165192616615,0.0,0.0,32.09548142960594,696820.4122975286,6.333781503012812,6.333781503012432,-358.66346781787615,-3241317.8736358746,true,true,0.625866154,6794.358263567997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,695,0.906025421911763,666.0,0.0,2905.6264814456517,1855.626481445652,1050.0,2901.2636789209587,4.362802524693171,3863493.7347724396,3133743.734772432,729750.0,4959762.373934155,-1096268.6391617607,0.95,0.25,22.0,695,0.0,0.1,0.0,0.0,1050.0,729750.0,13125.0,9121875.0,13125.0,9121875.0,true,695,0.8601141625880145,53000.0,1239.904194285078,0.0,1596.0506171647708,2851855.5932867886,1855.626481445652,3133743.734772432,1596.0506171647708,2851855.5932867886,-0.0,0.0,-0.0,0.0,259.5758642808812,281888.14148561924,695,53000.0,1239.904194285078,1596.0506171647708,1522597.2336818704,1050.0,729750.0,0.4749584204309714,823854.6902921669,1458.9690583670026,1779.1907102931686,0.0,0.0,107.74911625726664,696928.1614137859,28.857484120070488,35.19126562308292,-1596.0506171647708,-3242913.9242530395,true,true,1.475255935,6795.833519502997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,696,0.90602380995962,666.0,0.0,2898.612343753327,1848.6123437533272,1050.0,2894.2600729669107,4.3522707864164065,3866392.347116193,3135592.3471161854,730800.0,4962656.634007122,-1096264.2868909743,0.95,0.25,22.0,696,0.0,0.1,0.0,0.0,1050.0,730800.0,13125.0,9135000.0,13125.0,9135000.0,true,696,0.8599962193719272,53000.0,1239.904194285078,0.0,1589.799626712139,2853445.392913501,1848.6123437533272,3135592.3471161854,1589.799626712139,2853445.392913501,-0.0,0.0,-0.0,0.0,258.8127170411883,282146.9542026604,696,53000.0,1239.904194285078,1589.799626712139,1524187.0333085826,1050.0,730800.0,2.0884986232980642,823856.7787907902,1383.814995822421,3163.0057061155894,0.0,0.0,176.5251479141144,697104.6865617,27.370984352305356,62.562249975388276,-1589.799626712139,-3244503.7238797517,true,true,1.967007913,6797.800527415997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,697,0.9060207069818458,666.0,0.0,5579.774633556462,4529.774633556462,1050.0,5571.396593566136,8.378039990325018,3871972.1217497494,3140122.121749742,731850.0,4968228.030600688,-1096255.908850984,0.95,0.25,22.0,697,0.0,0.1,0.0,0.0,1050.0,731850.0,13125.0,9148125.0,13125.0,9148125.0,true,697,0.8983916185343059,53000.0,1239.904194285078,0.0,4069.5115646364325,2857514.9044781374,4529.774633556462,3140122.121749742,4069.5115646364325,2857514.9044781374,-0.0,0.0,-0.0,0.0,460.2630689200291,282607.2172715804,697,53000.0,1239.904194285078,4069.5115646364325,1528256.544873219,1050.0,731850.0,5.9243609612036305,823862.7031517514,3739.7314356490015,6902.737141764591,0.0,0.0,249.88624831731633,697354.5728100173,73.96951970891111,136.53176968429938,-4069.5115646364325,-3248573.2354443884,true,true,2.905807144,6800.706334559997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,698,0.90601561625372,666.0,0.0,9154.147315810875,8104.147315810874,1050.0,9140.40234987122,13.744965939655968,3881126.2690655603,3148226.269065553,732900.0,4977368.43295056,-1096242.1638850444,0.95,0.25,22.0,698,0.0,0.1,0.0,0.0,1050.0,732900.0,13125.0,9161250.0,13125.0,9161250.0,true,698,0.9180763236763441,53000.0,1239.904194285078,0.0,7440.2257742311585,2864955.1302523687,8104.147315810874,3148226.269065553,7440.2257742311585,2864955.1302523687,-0.0,0.0,-0.0,0.0,663.9215415797153,283271.1388131601,698,53000.0,1239.904194285078,7440.2257742311585,1535696.7706474501,1050.0,732900.0,17.703574987383405,823880.4067267388,6925.6101176327575,13828.34725939735,0.0,0.0,359.92789894776,697714.500708965,136.98418266325783,273.51595234755723,-7440.2257742311585,-3256013.4612186197,true,true,4.112834727,6804.819169286997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,699,0.9060103837303377,666.0,0.0,9409.123545941886,8359.123545941886,1050.0,9394.99573280984,14.127813132044874,3890535.392611502,3156585.3926114948,733950.0,4986763.428683369,-1096228.0360719124,0.95,0.25,22.0,699,0.0,0.1,0.0,0.0,1050.0,733950.0,13125.0,9174375.0,13125.0,9174375.0,true,699,0.918988445093703,53000.0,1239.904194285078,0.0,7681.937949831295,2872637.0682022,8359.123545941886,3156585.3926114948,7681.937949831295,2872637.0682022,-0.0,0.0,-0.0,0.0,677.1855961105912,283948.3244092707,699,53000.0,1239.904194285078,7681.937949831295,1543378.7085972815,1050.0,733950.0,39.411557751080295,823919.8182844899,7033.439855896294,20861.787115293642,0.0,0.0,469.96954957820367,698184.4702585432,139.11698660571713,412.63293895327433,-7681.937949831295,-3263695.399168451,true,true,5.051633958,6809.870803244997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,700,0.9060039617856269,666.0,0.0,11547.940978860202,10497.940978860202,1050.0,11530.601728141193,17.339250719009314,3902083.333590362,3167083.333590355,735000.0,4998294.030411511,-1096210.6968211934,0.95,0.25,22.0,700,0.0,0.1,0.0,0.0,1050.0,735000.0,13125.0,9187500.0,13125.0,9187500.0,true,700,0.9267115594550436,53000.0,1239.904194285078,0.0,9728.563255586545,2882365.6314577865,10497.940978860202,3167083.333590355,9728.563255586545,2882365.6314577865,-0.0,0.0,-0.0,0.0,769.3777232736575,284717.70213254436,700,53000.0,1239.904194285078,9728.563255586545,1553107.2718528681,1050.0,735000.0,69.77776584664147,823989.5960503366,8913.925166224393,29775.712281518034,0.0,0.0,568.5485282401986,698753.0187867833,176.31179527531177,588.9447342285861,-9728.563255586545,-3273423.9624240375,true,true,6.035137914,6815.905941158997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,701,0.9059997838638877,666.0,0.0,7512.738871392468,6462.738871392468,1050.0,7501.458482696684,11.280388695784486,3909596.0724617545,3173546.072461747,736050.0,5005795.488894207,-1096199.4164324976,0.95,0.25,22.0,701,0.0,0.1,0.0,0.0,1050.0,736050.0,13125.0,9200625.0,13125.0,9200625.0,true,701,0.9122476155677928,53000.0,1239.904194285078,0.0,5895.618125465067,2888261.249583252,6462.738871392468,3173546.072461747,5895.618125465067,2888261.249583252,-0.0,0.0,-0.0,0.0,567.120745927401,285284.82287847175,701,53000.0,1239.904194285078,5895.618125465067,1559002.8899783331,1050.0,736050.0,101.50349054657555,824091.0995408832,5050.0261524058005,34825.738433923834,0.0,0.0,644.2021630165776,699397.2209497999,99.88631949611383,688.8310537246999,-5895.618125465067,-3279319.5805495027,true,true,6.526889892,6822.432831050997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,702,0.9059931230122741,666.0,0.0,11977.54337151471,10927.54337151471,1050.0,11959.559072158081,17.984299356628693,3921573.6158332694,3184473.615833262,737100.0,5017755.047966366,-1096181.432133141,0.95,0.25,22.0,702,0.0,0.1,0.0,0.0,1050.0,737100.0,13125.0,9213750.0,13125.0,9213750.0,true,702,0.9282785042098016,53000.0,1239.904194285078,0.0,10143.803615597408,2898405.0531988493,10927.54337151471,3184473.615833262,10143.803615597408,2898405.0531988493,-0.0,0.0,-0.0,0.0,783.7397559173023,286068.56263438903,702,53000.0,1239.904194285078,10143.803615597408,1569146.6935939305,1050.0,737100.0,136.2846988897195,824227.3842397729,9116.514374919792,43942.25280884362,0.0,0.0,710.6856602489665,700107.9066100488,180.3188815389287,869.1499352636287,-10143.803615597408,-3289463.3841651003,true,true,7.331574947,6829.7644059979975,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,703,0.9059909067251064,666.0,0.0,3985.32758492226,2935.32758492226,1050.0,3979.343609569524,5.983975352736127,3925558.9434181917,3187408.9434181843,738150.0,5021734.391575935,-1096175.4481577883,0.95,0.25,22.0,703,0.0,0.1,0.0,0.0,1050.0,738150.0,13125.0,9226875.0,13125.0,9226875.0,true,703,0.8786634941957943,53000.0,1239.904194285078,0.0,2579.165192377095,2900984.2183912266,2935.32758492226,3187408.9434181843,2579.165192377095,2900984.2183912266,-0.0,0.0,-0.0,0.0,356.16239254516495,286424.7250269342,703,53000.0,1239.904194285078,2579.165192377095,1571725.8587863075,1050.0,738150.0,165.89985207729285,824393.2840918502,1622.347452603501,45564.60026144712,0.0,0.0,758.8288823933756,700866.7354924423,32.089005302925386,901.238940566554,-2579.165192377095,-3292042.5493574776,true,true,7.465689123,6837.230095120997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,704,0.9059904048571954,666.0,0.0,902.4588775360407,-147.54112246395928,1050.0,901.1038341763771,1.3550433596637248,3926461.4022957277,3187261.4022957203,739200.0,5022635.495410112,-1096174.0931144287,0.95,0.25,22.0,704,0.0,0.1,0.0,0.0,1050.0,739200.0,13125.0,9240000.0,13125.0,9240000.0,true,704,0.83,53000.0,1239.904194285078,0.0,-177.76038851079431,2900806.458002716,-147.54112246395928,3187261.4022957203,-177.76038851079431,2900806.458002716,-0.0,0.0,-0.0,0.0,30.21926604683503,286454.944292981,704,53000.0,1239.904194285078,-177.76038851079431,1571548.0983977967,1050.0,739200.0,167.40802338387357,824560.692115234,-1084.8325282459432,44479.76773320118,0.0,0.0,761.1214168178343,701627.8569092602,-21.457300466558962,879.781640099995,-177.76038851079431,-3292220.3097459883,true,true,7.376279673,6844.606374793997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,705,0.9059892165520815,666.0,0.0,2136.8102558432856,1086.8102558432854,1050.0,2133.601832035713,3.208423807572501,3928598.212551571,3188348.2125515635,740250.0,5024769.097242148,-1096170.8846906212,0.95,0.25,22.0,705,0.0,0.1,0.0,0.0,1050.0,740250.0,13125.0,9253125.0,13125.0,9253125.0,true,705,0.8473761719669992,53000.0,1239.904194285078,0.0,920.9371142509583,2901727.3951169667,1086.8102558432854,3188348.2125515635,920.9371142509583,2901727.3951169667,-0.0,0.0,-0.0,0.0,165.8731415923271,286620.8174345733,705,53000.0,1239.904194285078,920.9371142509583,1572469.0355120476,1050.0,740250.0,164.4007661794782,824725.0928814134,0.0,44479.76773320118,0.0,0.0,756.5363480714801,702384.3932573317,0.0,879.781640099995,-920.9371142509583,-3293141.246860239,true,true,7.376279673,6851.982654466997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,706,0.9059821670234751,666.0,0.0,12676.462340010632,11626.462340010632,1050.0,12657.42861277338,19.033727237253203,3941274.6748915818,3199974.6748915743,741300.0,5037426.525854921,-1096151.850963384,0.95,0.25,22.0,706,0.0,0.1,0.0,0.0,1050.0,741300.0,13125.0,9266250.0,13125.0,9266250.0,true,706,0.93020279983095,53000.0,1239.904194285078,0.0,10814.967820806989,2912542.3629377736,11626.462340010632,3199974.6748915743,10814.967820806989,2912542.3629377736,-0.0,0.0,-0.0,0.0,811.494519203643,287432.311953777,706,53000.0,1239.904194285078,10814.967820806989,1583284.0033328545,1050.0,741300.0,191.13949839230932,824916.2323798058,9637.69145557049,54117.45918877167,0.0,0.0,795.5094326718989,703179.9026900036,190.62743417229032,1070.4090742722854,-10814.967820806989,-3303956.214681046,true,true,8.136260003,6860.1189144699965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,707,0.9059771422627506,666.0,0.0,9035.524734781946,7985.524734781946,1050.0,9021.957880825817,13.566853956129048,3950310.199626364,3207960.1996263564,742350.0,5046448.483735747,-1096138.2841094278,0.95,0.25,22.0,707,0.0,0.1,0.0,0.0,1050.0,742350.0,13125.0,9279375.0,13125.0,9279375.0,true,707,0.917652594300854,53000.0,1239.904194285078,0.0,7327.9374897262915,2919870.3004274997,7985.524734781946,3207960.1996263564,7327.9374897262915,2919870.3004274997,-0.0,0.0,-0.0,0.0,657.5872450556544,288089.89919883263,707,53000.0,1239.904194285078,7327.9374897262915,1590611.9408225808,1050.0,742350.0,239.31880422778127,825155.5511840335,6110.351932341221,60227.811121112885,0.0,0.0,857.4078611579339,704037.3105511615,120.85889199935531,1191.2679662716407,-7327.9374897262915,-3311284.152170772,true,true,8.583307256,6868.702221725996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,708,0.9059722683033976,666.0,0.0,8764.353708480901,7714.353708480901,1050.0,8751.194018227927,13.159690252974327,3959074.5533348448,3215674.5533348373,743400.0,5055199.677753975,-1096125.1244191749,0.95,0.25,22.0,708,0.0,0.1,0.0,0.0,1050.0,743400.0,13125.0,9292500.0,13125.0,9292500.0,true,708,0.9166854171599169,53000.0,1239.904194285078,0.0,7071.635547377967,2926941.935974878,7714.353708480901,3215674.5533348373,7071.635547377967,2926941.935974878,-0.0,0.0,-0.0,0.0,642.7181611029346,288732.61735993554,708,53000.0,1239.904194285078,7071.635547377967,1597683.5763699587,1050.0,743400.0,277.67684659694606,825433.2280306305,5778.693782467513,66006.5049035804,0.0,0.0,900.9660145047068,704938.2765656662,114.29890380880072,1305.5668700804415,-7071.635547377967,-3318355.7877181503,true,true,8.985649783,6877.687871508996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,709,0.9059651174312916,666.0,0.0,12858.698220933577,11808.698220933577,1050.0,12839.39086624749,19.307354686086452,3971933.2515557786,3227483.251555771,744450.0,5068039.068620223,-1096105.8170644888,0.95,0.25,22.0,709,0.0,0.1,0.0,0.0,1050.0,744450.0,13125.0,9305625.0,13125.0,9305625.0,true,709,0.9303645225302096,53000.0,1239.904194285078,0.0,10986.393882022203,2937928.3298569,11808.698220933577,3227483.251555771,10986.393882022203,2937928.3298569,-0.0,0.0,-0.0,0.0,822.3043389113736,289554.9216988469,709,53000.0,1239.904194285078,10986.393882022203,1608669.970251981,1050.0,744450.0,329.3381255727985,825762.5661562033,9515.157657809988,75521.66256139039,0.0,0.0,953.6943053954699,705891.9708710617,188.20379324394648,1493.770663324388,-10986.393882022203,-3329342.1816001725,true,true,9.611515937,6887.299387445996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,710,0.9059592737674086,666.0,0.0,10508.076394456108,9458.076394456108,1050.0,10492.29850197194,15.77789248416833,3982441.3279502345,3236941.327950227,745500.0,5078531.367122195,-1096090.0391720047,0.95,0.25,22.0,710,0.0,0.1,0.0,0.0,1050.0,745500.0,13125.0,9318750.0,13125.0,9318750.0,true,710,0.9229405362231661,53000.0,1239.904194285078,0.0,8729.24209913899,2946657.571956039,9458.076394456108,3236941.327950227,8729.24209913899,2946657.571956039,-0.0,0.0,-0.0,0.0,728.8342953171177,290283.75599416404,710,53000.0,1239.904194285078,8729.24209913899,1617399.2123511198,1050.0,745500.0,389.6907049585884,826152.2568611619,7188.649331714692,82710.31189310508,0.0,0.0,1008.7151307106918,706900.6860017724,142.18693175501815,1635.957595079406,-8729.24209913899,-3338071.4236993114,true,true,10.05856319,6897.3579506359965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,711,0.9059577502672062,666.0,0.0,2739.5580640667495,1689.5580640667497,1050.0,2735.444613520103,4.113450546646771,3985180.8860143013,3238630.886014294,746550.0,5081266.811735715,-1096085.925721458,0.95,0.25,22.0,711,0.0,0.1,0.0,0.0,1050.0,746550.0,13125.0,9331875.0,13125.0,9331875.0,true,711,0.8573303666907872,53000.0,1239.904194285078,0.0,1448.509434611723,2948106.0813906505,1689.5580640667497,3238630.886014294,1448.509434611723,2948106.0813906505,-0.0,0.0,-0.0,0.0,241.04862945502668,290524.8046236191,711,53000.0,1239.904194285078,1448.509434611723,1618847.7217857316,1050.0,746550.0,416.8689600154152,826569.1258211773,0.0,82710.31189310508,0.0,0.0,1031.6404745963077,707932.3264763687,0.0,1635.957595079406,-1448.509434611723,-3339519.933133923,true,true,10.05856319,6907.416513825997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,712,0.9059577386558622,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,3985201.765533045,3237601.7655330375,747600.0,5081287.659903829,-1096085.8943708292,0.95,0.25,22.0,712,0.0,0.1,0.0,0.0,1050.0,747600.0,13125.0,9345000.0,13125.0,9345000.0,true,712,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2946866.1771963653,-1029.1204812566145,3237601.7655330375,-1239.904194285078,2946866.1771963653,-0.0,0.0,-0.0,0.0,210.78371302846335,290735.58833664755,712,53000.0,1239.904194285078,-1543.9995696428539,1617303.7222160888,1050.0,747600.0,405.85097502722357,826974.9767962045,-2914.6705440017913,79795.64134910329,0.0,0.0,1022.4703370523176,708954.7968134211,-57.650337720603794,1578.3072573588022,-1239.904194285078,-3340759.837328208,true,true,9.879744289,6917.296258114997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,713,0.9059535480987164,666.0,0.0,7535.459859531804,6485.459859531804,1050.0,7524.145355238213,11.314504293591297,3992737.225392577,3244087.2253925693,748650.0,5088811.805259068,-1096074.5798665357,0.95,0.25,22.0,713,0.0,0.1,0.0,0.0,1050.0,748650.0,13125.0,9358125.0,13125.0,9358125.0,true,713,0.9123277935231301,53000.0,1239.904194285078,0.0,5916.86528362948,2952783.0424799947,6485.459859531804,3244087.2253925693,5916.86528362948,2952783.0424799947,-0.0,0.0,-0.0,0.0,568.5945759023243,291304.1829125499,713,53000.0,1239.904194285078,5916.86528362948,1623220.5874997182,1050.0,748650.0,411.3353739374239,827386.3121701418,4391.611214936185,84187.25256403947,0.0,0.0,1027.055405798672,709981.8522192198,86.86328895719818,1665.1705463160004,-5916.86528362948,-3346676.7026118375,true,true,10.14797264,6927.444230754997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,714,0.905949249745899,666.0,0.0,7729.298036278925,6679.298036278925,1050.0,7717.692483671899,11.605552607025412,4000466.523428856,3250766.5234288485,749700.0,5096529.4977427395,-1096062.9743139287,0.95,0.25,22.0,714,0.0,0.1,0.0,0.0,1050.0,749700.0,13125.0,9371250.0,13125.0,9371250.0,true,714,0.9130123842460103,53000.0,1239.904194285078,0.0,6098.281825192716,2958881.3243051874,6679.298036278925,3250766.5234288485,6098.281825192716,2958881.3243051874,-0.0,0.0,-0.0,0.0,581.0162110862093,291885.19912363606,714,53000.0,1239.904194285078,6098.281825192716,1629318.869324911,1050.0,749700.0,445.2823821669109,827831.5945523088,4509.243640843767,88696.49620488324,0.0,0.0,1054.5658183280784,711036.4180375478,89.18998385395878,1754.360530169959,-6098.281825192716,-3352774.9844370303,true,true,10.41620099,6937.860431744997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,715,0.9059467247621108,666.0,0.0,4540.425847828012,3490.4258478280112,1050.0,4533.608391600042,6.817456227969988,4005006.949276684,3254256.9492766764,750750.0,5101063.106134339,-1096056.1568577008,0.95,0.25,22.0,715,0.0,0.1,0.0,0.0,1050.0,750750.0,13125.0,9384375.0,13125.0,9384375.0,true,715,0.8885150145867323,53000.0,1239.904194285078,0.0,3101.295773096813,2961982.6200782843,3490.4258478280112,3254256.9492766764,3101.295773096813,2961982.6200782843,-0.0,0.0,-0.0,0.0,389.1300747311984,292274.32919836725,715,53000.0,1239.904194285078,3101.295773096813,1632420.1650980078,1050.0,750750.0,468.92088548913694,828300.5154377979,1529.2217562948033,90225.71796117804,0.0,0.0,1072.9060933134951,712109.3241308613,30.24703799937777,1784.607568169337,-3101.295773096813,-3355876.280210127,true,true,10.50561044,6948.366042184997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,716,0.9059467131507668,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4005027.8287954275,3253227.82879542,751800.0,5101083.954302453,-1096056.125507072,0.95,0.25,22.0,716,0.0,0.1,0.0,0.0,1050.0,751800.0,13125.0,9397500.0,13125.0,9397500.0,true,716,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2960742.715883999,-1029.1204812566145,3253227.82879542,-1239.904194285078,2960742.715883999,-0.0,0.0,-0.0,0.0,210.78371302846335,292485.1129113957,716,53000.0,1239.904194285078,-6164.207840667906,1626255.95725734,1050.0,751800.0,445.2823821669109,828745.7978199648,-7515.4060680729635,82710.31189310508,0.0,0.0,1054.5658183280784,713163.8899491894,-148.64997308993094,1635.957595079406,-1239.904194285078,-3357116.1844044123,true,true,10.05856319,6958.424605374998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,717,0.9059467015394228,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4005048.708314171,3252198.7083141636,752850.0,5101104.802470568,-1096056.0941564434,0.95,0.25,22.0,717,0.0,0.1,0.0,0.0,1050.0,752850.0,13125.0,9410625.0,13125.0,9410625.0,true,717,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2959502.811689714,-1029.1204812566145,3252198.7083141636,-1239.904194285078,2959502.811689714,-0.0,0.0,-0.0,0.0,210.78371302846335,292695.8966244242,717,53000.0,1239.904194285078,-5209.386122827725,1621046.5711345123,1050.0,752850.0,392.3537302506514,829138.1515502154,-6484.4884429466665,76225.82345015842,0.0,0.0,1011.0076651351505,714174.8976143246,-128.25907526686024,1507.6985198125458,-1239.904194285078,-3358356.0885986974,true,true,9.656220663,6968.080826037997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,718,0.9059466899280788,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4005069.5878329147,3251169.587832907,753900.0,5101125.650638682,-1096056.0628058147,0.95,0.25,22.0,718,0.0,0.1,0.0,0.0,1050.0,753900.0,13125.0,9423750.0,13125.0,9423750.0,true,718,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2958262.907495429,-1029.1204812566145,3251169.587832907,-1239.904194285078,2958262.907495429,-0.0,0.0,-0.0,0.0,210.78371302846335,292906.6803374527,718,53000.0,1239.904194285078,-6409.191600440365,1614637.379534072,1050.0,753900.0,341.35660067922026,829479.5081508947,-7566.05343259447,68659.77001756395,0.0,0.0,965.1569773639187,715140.0545916884,-149.651745889033,1358.0467739235128,-1239.904194285078,-3359595.9927929826,true,true,9.164468684,6977.245294721997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,719,0.9059466783167348,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4005090.4673516583,3250140.467351651,754950.0,5101146.498806796,-1096056.031455186,0.95,0.25,22.0,719,0.0,0.1,0.0,0.0,1050.0,754950.0,13125.0,9436875.0,13125.0,9436875.0,true,719,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2957023.0033011436,-1029.1204812566145,3250140.467351651,-1239.904194285078,2957023.0033011436,-0.0,0.0,-0.0,0.0,210.78371302846335,293117.46405048115,719,53000.0,1239.904194285078,-14892.516251953577,1599744.8632821185,1050.0,754950.0,261.06232773024135,829740.5704786249,-15725.17040597657,52934.59961158738,0.0,0.0,882.6257393654452,716022.6803310539,-311.0339130726928,1047.0128608508198,-1239.904194285078,-3360835.896987268,true,true,8.046850552,6985.292145273997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,720,0.9059466667053908,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4005111.346870402,3249111.3468703944,756000.0,5101167.34697491,-1096056.0001045573,0.95,0.25,22.0,720,0.0,0.1,0.0,0.0,1050.0,756000.0,13125.0,9450000.0,13125.0,9450000.0,true,720,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2955783.0991068585,-1029.1204812566145,3249111.3468703944,-1239.904194285078,2955783.0991068585,-0.0,0.0,-0.0,0.0,210.78371302846335,293328.24776350963,720,53000.0,1239.904194285078,-15573.444478361116,1584171.4188037573,1050.0,756000.0,164.4007661460466,829904.9712447709,-16174.460996083992,36760.13861550338,0.0,0.0,756.5363480201985,716779.2166790741,-319.92059644336985,727.09226440745,-1239.904194285078,-3362075.801181553,true,true,6.705708793,6991.997854066997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,721,0.9059466550940468,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4005132.2263891455,3248082.226389138,757050.0,5101188.195143024,-1096055.9687539286,0.95,0.25,22.0,721,0.0,0.1,0.0,0.0,1050.0,757050.0,13125.0,9463125.0,13125.0,9463125.0,true,721,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2954543.1949125733,-1029.1204812566145,3248082.226389138,-1239.904194285078,2954543.1949125733,-0.0,0.0,-0.0,0.0,210.78371302846335,293539.0314765381,721,53000.0,1239.904194285078,-12786.375131279943,1571385.0436724774,1050.0,757050.0,90.04369536332969,829995.0149401342,-13233.649896318466,23526.48871918492,0.0,0.0,618.9842847577846,717398.2009638319,-261.7532150825906,465.3390493248594,-1239.904194285078,-3363315.705375838,true,true,5.364567035,6997.362421101997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,722,0.9059466434827028,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4005153.105907889,3247053.1059078816,758100.0,5101209.043311139,-1096055.9374032998,0.95,0.25,22.0,722,0.0,0.1,0.0,0.0,1050.0,758100.0,13125.0,9476250.0,13125.0,9476250.0,true,722,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2953303.290718288,-1029.1204812566145,3247053.1059078816,-1239.904194285078,2953303.290718288,-0.0,0.0,-0.0,0.0,210.78371302846335,293749.8151895666,722,53000.0,1239.904194285078,-9972.626190889656,1561412.4174815877,1050.0,758100.0,42.36623801496837,830037.3811781493,-10292.838816287842,13233.649902897077,0.0,0.0,481.4322214953709,717879.6331853272,-203.58583411215483,261.75321521270456,-1239.904194285078,-3364555.6095701233,true,true,4.023425276,7001.385846377997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,723,0.9059466318713588,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4005173.9854266327,3246023.9854266252,759150.0,5101229.891479253,-1096055.9060526711,0.95,0.25,22.0,723,0.0,0.1,0.0,0.0,1050.0,759150.0,13125.0,9489375.0,13125.0,9489375.0,true,723,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2952063.386524003,-1029.1204812566145,3246023.9854266252,-1239.904194285078,2952063.386524003,-0.0,0.0,-0.0,0.0,210.78371302846335,293960.59890259505,723,53000.0,1239.904194285078,-6726.387310840796,1554686.0301707468,1050.0,759150.0,16.065445802922,830053.4466239521,-6953.384442403186,6280.265460493892,0.0,0.0,348.46522697931124,718228.0984123065,-137.53354121984395,124.2196739928606,-1239.904194285078,-3365795.5137644084,true,true,2.771692968,7004.157539345997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,724,0.9059466202600148,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4005194.8649453763,3244994.864945369,760200.0,5101250.739647367,-1096055.8747020424,0.95,0.25,22.0,724,0.0,0.1,0.0,0.0,1050.0,760200.0,13125.0,9502500.0,13125.0,9502500.0,true,724,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2950823.482329718,-1029.1204812566145,3244994.864945369,-1239.904194285078,2950823.482329718,-0.0,0.0,-0.0,0.0,210.78371302846335,294171.38261562353,724,53000.0,1239.904194285078,-2779.7289789904203,1551906.3011917565,1050.0,760200.0,5.604196448972666,830059.050820401,-2971.8529847693885,3308.412475724503,0.0,0.0,245.30117951968046,718473.3995918263,-58.781370189684864,65.43830380317574,-1239.904194285078,-3367035.4179586936,true,true,2.011712638,7006.169251983997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,725,0.9059466086486708,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4005215.74446412,3243965.7444641124,761250.0,5101271.587815481,-1096055.8433514137,0.95,0.25,22.0,725,0.0,0.1,0.0,0.0,1050.0,761250.0,13125.0,9515625.0,13125.0,9515625.0,true,725,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,2949583.5781354327,-1029.1204812566145,3243965.7444641124,-1239.904194285078,2949583.5781354327,-0.0,0.0,-0.0,0.0,210.78371302846335,294382.166328652,725,53000.0,1239.904194285078,-1700.4915154304772,1550205.809676326,1050.0,761250.0,1.9299488895358696,830060.9807692906,-1838.006930226962,1470.4055454975412,0.0,0.0,171.94007911647853,718645.3396709427,-36.35461320952963,29.08369059364611,-1239.904194285078,-3368275.3221529787,true,true,1.341141759,7007.510393742997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,726,0.9059463234674552,666.0,0.0,512.8128619101072,-537.1871380898928,1050.0,512.0428726279599,0.7699892821473082,4005728.55732603,3243428.5573260225,762300.0,5101783.630688109,-1096055.0733621316,0.95,0.25,22.0,726,0.0,0.1,0.0,0.0,1050.0,762300.0,13125.0,9528750.0,13125.0,9528750.0,true,726,0.83,53000.0,1239.904194285078,0.0,-647.213419385413,2948936.3647160474,-537.1871380898928,3243428.5573260225,-647.213419385413,2948936.3647160474,-0.0,0.0,-0.0,0.0,110.02628129552022,294492.1926099475,726,53000.0,1239.904194285078,-647.213419385413,1549558.5962569406,1050.0,762300.0,0.6068376892664822,830061.5876069799,-749.9068286640684,720.4987168334728,0.0,0.0,116.91925380125666,718762.258924744,-14.832682211867818,14.251008381778293,-647.213419385413,-3368922.535572364,true,true,0.938799231,7008.449192973997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,727,0.9059460319153957,666.0,0.0,524.2689133727315,-525.7310866272685,1050.0,523.4817228121118,0.7871905606197169,4006252.826239403,3242902.8262393954,763350.0,5102307.112410922,-1096054.286171571,0.95,0.25,22.0,727,0.0,0.1,0.0,0.0,1050.0,763350.0,13125.0,9541875.0,13125.0,9541875.0,true,727,0.83,53000.0,1239.904194285078,0.0,-633.410947743697,2948302.9537683036,-525.7310866272685,3242902.8262393954,-633.410947743697,2948302.9537683036,-0.0,0.0,-0.0,0.0,107.67986111642847,294599.872471064,727,53000.0,1239.904194285078,-633.410947743697,1548925.1853091968,1050.0,763350.0,0.08040481570990754,830061.6680117956,-679.6541185298578,40.844598303615044,0.0,0.0,59.605894061576016,718821.8648188056,-13.443128091125157,0.8078802906531362,-633.410947743697,-3369555.946520108,true,true,0.223523626,7008.672716599997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,728,0.9059454326427814,666.0,0.0,1077.6120150199497,27.61201501994978,1050.0,1075.993978961361,1.618036058588513,4007330.438254423,3242930.4382544155,764400.0,5103383.106389883,-1096052.6681355124,0.95,0.25,22.0,728,0.0,0.1,0.0,0.0,1050.0,764400.0,13125.0,9555000.0,13125.0,9555000.0,true,728,0.8304326399722258,53000.0,1239.904194285078,0.0,22.929918527969647,2948325.8836868317,27.61201501994978,3242930.4382544155,22.929918527969647,2948325.8836868317,-0.0,0.0,-0.0,0.0,4.682096491980133,294604.55456755596,728,53000.0,1239.904194285078,22.929918527969647,1548948.115227725,1050.0,764400.0,0.004574693635432254,830061.6725864892,0.0,40.844598303615044,0.0,0.0,22.925343834334214,718844.7901626399,0.0,0.8078802906531362,-22.929918527969647,-3369578.876438636,true,true,0.223523626,7008.896240225998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,729,0.9059437213783699,666.0,0.0,3077.195664826493,2027.195664826493,1050.0,3072.575250915342,4.620413911150891,4010407.6339192493,3244957.633919242,765450.0,5106455.681640798,-1096048.0477216013,0.95,0.25,22.0,729,0.0,0.1,0.0,0.0,1050.0,765450.0,13125.0,9568125.0,13125.0,9568125.0,true,729,0.8630092178319673,53000.0,1239.904194285078,0.0,1749.4885450942666,2950075.372231926,2027.195664826493,3244957.633919242,1749.4885450942666,2950075.372231926,-0.0,0.0,-0.0,0.0,277.7071197322264,294882.2616872882,729,53000.0,1239.904194285078,1749.4885450942666,1550697.603772819,1050.0,765450.0,0.23172195780826432,830061.904308447,1632.150154281285,1672.9947525849002,0.0,0.0,84.82377232036902,718929.6139349603,32.28289653480428,33.09077682545742,-1749.4885450942666,-3371328.36498373,true,true,1.430551209,7010.326791434998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,730,0.9059397434977664,666.0,0.0,7153.024901125276,6103.024901125276,1050.0,7142.284623495959,10.740277629317232,4017560.6588203744,3251060.658820367,766500.0,5113597.966264294,-1096037.307443972,0.95,0.25,22.0,730,0.0,0.1,0.0,0.0,1050.0,766500.0,13125.0,9581250.0,13125.0,9581250.0,true,730,0.9109801298757048,53000.0,1239.904194285078,0.0,5559.734417061764,2955635.1066489876,6103.024901125276,3251060.658820367,5559.734417061764,2955635.1066489876,-0.0,0.0,-0.0,0.0,543.2904840635119,295425.5521713517,730,53000.0,1239.904194285078,5559.734417061764,1556257.3381898808,1050.0,766500.0,4.1751993891720165,830066.0795078363,5229.742389179686,6902.737141764586,0.0,0.0,222.37583563406454,719151.9897705944,103.44099285884181,136.53176968429923,-5559.734417061764,-3376888.099400792,true,true,2.905807144,7013.2325985789985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,731,0.9059339146819562,666.0,0.0,10481.376590023465,9431.376590023465,1050.0,10465.638787335742,15.73780268772292,4028042.0354103977,3260492.0354103902,767550.0,5124063.60505163,-1096021.5696412842,0.95,0.25,22.0,731,0.0,0.1,0.0,0.0,1050.0,767550.0,13125.0,9594375.0,13125.0,9594375.0,true,731,0.9228441146378739,53000.0,1239.904194285078,0.0,8703.690379036574,2964338.797028024,9431.376590023465,3260492.0354103902,8703.690379036574,2964338.797028024,-0.0,0.0,-0.0,0.0,727.6862109868907,296153.23838233855,731,53000.0,1239.904194285078,8703.690379036574,1564961.0285689174,1050.0,767550.0,19.091482147342692,830085.1709899836,8154.21563851387,15056.952780278456,0.0,0.0,369.09803649175,719521.0878070862,161.28522188361052,297.8169915679098,-8703.690379036574,-3385591.7897798284,true,true,4.291653628,7017.524252206998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,732,0.9059266174581175,666.0,0.0,13121.867906616311,12071.867906616311,1050.0,13102.165402252023,19.702504364288757,4041163.903317014,3272563.903317007,768600.0,5137165.770453882,-1096001.8671369199,0.95,0.25,22.0,732,0.0,0.1,0.0,0.0,1050.0,768600.0,13125.0,9607500.0,13125.0,9607500.0,true,732,0.930598168074657,53000.0,1239.904194285078,0.0,11234.058159136384,2975572.8551871604,12071.867906616311,3272563.903317007,11234.058159136384,2975572.8551871604,-0.0,0.0,-0.0,0.0,837.809747479927,296991.04812981846,732,53000.0,1239.904194285078,11234.058159136384,1576195.0867280539,1050.0,768600.0,49.37860751531949,830134.549597499,10470.921259788407,25527.87404006686,0.0,0.0,506.6500997541638,720027.7379068404,207.1081920784939,504.92518364640364,-11234.058159136384,-3396825.8479389646,true,true,5.588090661,7023.112342867998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,733,0.905921600067273,666.0,0.0,9022.272216809786,7972.272216809787,1050.0,9008.725261529291,13.546955280495174,4050186.175533824,3280536.1755338167,769650.0,5146174.495715411,-1095988.3201816394,0.95,0.25,22.0,733,0.0,0.1,0.0,0.0,1050.0,769650.0,13125.0,9620625.0,13125.0,9620625.0,true,733,0.9176052795321205,53000.0,1239.904194285078,0.0,7315.399076011902,2982888.2542631724,7972.272216809787,3280536.1755338167,7315.399076011902,2982888.2542631724,-0.0,0.0,-0.0,0.0,656.8731407978848,297647.92127061635,733,53000.0,1239.904194285078,7315.399076011902,1583510.4858040658,1050.0,769650.0,85.1333335626886,830219.6829310616,6494.291162751319,32022.165202818178,0.0,0.0,607.5216128406175,720635.259519681,128.4529668572777,633.3781505036814,-7315.399076011902,-3404141.2470149766,true,true,6.258661541,7029.3710044089985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,734,0.9059145547343628,666.0,0.0,12668.917639057243,11618.917639057243,1050.0,12649.8952401998,19.022398857443306,4062855.0931728813,3292155.093172874,770700.0,5158824.390955611,-1095969.297782782,0.95,0.25,22.0,734,0.0,0.1,0.0,0.0,1050.0,770700.0,13125.0,9633750.0,13125.0,9633750.0,true,734,0.9301961056029934,53000.0,1239.904194285078,0.0,10807.871939172974,2993696.1262023454,11618.917639057243,3292155.093172874,10807.871939172974,2993696.1262023454,-0.0,0.0,-0.0,0.0,811.0456998842692,298458.9669705006,734,53000.0,1239.904194285078,10807.871939172974,1594318.3577432388,1050.0,770700.0,123.51672890266623,830343.1996599643,9802.703623491592,41824.86882630977,0.0,0.0,687.7603164146324,721323.0198360956,193.8912703640817,827.2694208677631,-10807.871939172974,-3414949.1189541495,true,true,7.152756046,7036.523760454998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,735,0.9059066350917421,666.0,0.0,14241.101360561519,13191.101360561519,1050.0,14219.7183254856,21.383035075918198,4077096.1945334426,3305346.194533435,771750.0,5173044.109281097,-1095947.9147477061,0.95,0.25,22.0,735,0.0,0.1,0.0,0.0,1050.0,771750.0,13125.0,9646875.0,13125.0,9646875.0,true,735,0.9315931506385643,53000.0,1239.904194285078,0.0,12288.739676878158,3005984.8658792237,13191.101360561519,3305346.194533435,12288.739676878158,3005984.8658792237,-0.0,0.0,-0.0,0.0,902.3616836833608,299361.32865418395,735,53000.0,1239.904194285078,12288.739676878158,1606607.097420117,1050.0,771750.0,179.80375971168442,830523.003419676,11109.730785277603,52934.59961158737,0.0,0.0,779.4616919058144,722102.4815280015,219.74343998305687,1047.0128608508198,-12288.739676878158,-3427237.858631028,true,true,8.046850552,7044.570611006999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,736,0.9058994002810072,666.0,0.0,13009.63666333661,11959.63666333661,1050.0,12990.102674352622,19.533988983988905,4090105.8311967794,3317305.831196772,772800.0,5186034.21195545,-1095928.380758722,0.95,0.25,22.0,736,0.0,0.1,0.0,0.0,1050.0,772800.0,13125.0,9660000.0,13125.0,9660000.0,true,736,0.9304985133351541,53000.0,1239.904194285078,0.0,11128.42413526332,3017113.290014487,11959.63666333661,3317305.831196772,11128.42413526332,3017113.290014487,-0.0,0.0,-0.0,0.0,831.2125280732907,300192.54118225724,736,53000.0,1239.904194285078,11128.42413526332,1617735.5215553802,1050.0,772800.0,243.17871113045263,830766.1821308064,9828.844180205528,62763.4437917929,0.0,0.0,861.992929904288,722964.4744579057,194.4083140230517,1241.4211748738715,-11128.42413526332,-3438366.2827662914,true,true,8.762126157,7053.332737163999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,737,0.9058903147501676,666.0,0.0,16337.601555967245,15287.601555967245,1050.0,16313.070622700026,24.530933267218085,4106443.4327527466,3332593.432752739,773850.0,5202347.28257815,-1095903.8498254549,0.95,0.25,22.0,737,0.0,0.1,0.0,0.0,1050.0,773850.0,13125.0,9673125.0,13125.0,9673125.0,true,737,0.9334626462291797,53000.0,1239.904194285078,0.0,14270.40500293051,3031383.695017418,15287.601555967245,3332593.432752739,14270.40500293051,3031383.695017418,-0.0,0.0,-0.0,0.0,1017.1965530367343,301209.737735294,737,53000.0,1239.904194285078,14270.40500293051,1632005.9265583106,1050.0,773850.0,317.60511140420454,831083.7872422106,12758.218769597488,75521.66256139039,0.0,0.0,942.2316334783029,723906.706091384,252.3494884505162,1493.7706633243877,-14270.40500293051,-3452636.687769222,true,true,9.611515937,7062.944253100999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,738,0.9058817892040504,666.0,0.0,15330.637027949459,14280.637027949459,1050.0,15307.618053433018,23.01897451644063,4121774.069780696,3346874.0697806887,774900.0,5217654.900631582,-1095880.8308509383,0.95,0.25,22.0,738,0.0,0.1,0.0,0.0,1050.0,774900.0,13125.0,9686250.0,13125.0,9686250.0,true,738,0.9325637781329528,53000.0,1239.904194285078,0.0,13317.60482092989,3044701.299838348,14280.637027949459,3346874.0697806887,13317.60482092989,3044701.299838348,-0.0,0.0,-0.0,0.0,963.0322070195689,302172.76994231355,738,53000.0,1239.904194285078,13317.60482092989,1645323.5313792406,1050.0,774900.0,405.8509749050918,831489.6382171157,11658.682158538155,87180.34471992854,0.0,0.0,1022.4703369497544,724929.1764283339,230.6013505368892,1724.3720138612769,-13317.60482092989,-3465954.292590152,true,true,10.32679154,7073.271044640999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,739,0.9058736345723281,666.0,0.0,14663.658763065085,13613.658763065085,1050.0,14641.641257414836,22.017505650247873,4136437.728543761,3360487.7285437537,775950.0,5232296.541888997,-1095858.8133452882,0.95,0.25,22.0,739,0.0,0.1,0.0,0.0,1050.0,775950.0,13125.0,9699375.0,13125.0,9699375.0,true,739,0.9319693516327962,53000.0,1239.904194285078,0.0,12687.512730763901,3057388.8125691116,13613.658763065085,3360487.7285437537,12687.512730763901,3057388.8125691116,-0.0,0.0,-0.0,0.0,926.1460323011834,303098.91597461473,739,53000.0,1239.904194285078,12687.512730763901,1658011.0441100046,1050.0,775950.0,493.3815168436227,831983.0197339592,10887.53627190115,98067.88099182969,0.0,0.0,1091.2463688117286,726020.4227971456,215.34857320739994,1939.7205870686769,-12687.512730763901,-3478641.8053209158,true,true,10.9526577,7084.223702340999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,740,0.9058670284246778,666.0,0.0,11879.174704609968,10829.174704609968,1050.0,11861.338105954397,17.836598655570523,4148316.903248371,3371316.9032483636,777000.0,5244157.879994951,-1095840.9767466325,0.95,0.25,22.0,740,0.0,0.1,0.0,0.0,1050.0,777000.0,13125.0,9712500.0,13125.0,9712500.0,true,740,0.9279192437837895,53000.0,1239.904194285078,0.0,10048.599602704224,3067437.412171816,10829.174704609968,3371316.9032483636,10048.599602704224,3067437.412171816,-0.0,0.0,-0.0,0.0,780.5751019057443,303879.49107652047,740,53000.0,1239.904194285078,10048.599602704224,1668059.6437127087,1050.0,777000.0,571.8367082664563,832554.8564422256,8168.919642387668,106236.80063421736,0.0,0.0,1146.2671942807958,727166.6899914263,161.57605776930492,2101.2966448379816,-10048.599602704224,-3488690.40492362,true,true,11.39970495,7095.623407290999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,741,0.9058601638101499,666.0,0.0,12343.949844070325,11293.949844070325,1050.0,12325.415384844993,18.534459225330817,4160660.8530924413,3382610.853092434,778050.0,5256483.295379796,-1095822.4422874071,0.95,0.25,22.0,741,0.0,0.1,0.0,0.0,1050.0,778050.0,13125.0,9725625.0,13125.0,9725625.0,true,741,0.9296191393742672,53000.0,1239.904194285078,0.0,10499.071934180794,3077936.484105997,11293.949844070325,3382610.853092434,10499.071934180794,3077936.484105997,-0.0,0.0,-0.0,0.0,794.8779098895302,304674.36898641,741,53000.0,1239.904194285078,10499.071934180794,1678558.7156468895,1050.0,778050.0,643.2385265093718,833198.094968735,8495.67642589038,114732.47706010775,0.0,0.0,1192.1178817443374,728358.8078731706,168.03910003670387,2269.3357448746856,-10499.071934180794,-3499189.476857801,true,true,11.8467522,7107.470159490999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,742,0.9058551605080972,666.0,0.0,8996.93775100548,7946.93775100548,1050.0,8983.42883546343,13.50891554205027,4169657.7908434467,3390557.7908434393,779100.0,5265466.72421526,-1095808.933371865,0.95,0.25,22.0,742,0.0,0.1,0.0,0.0,1050.0,779100.0,13125.0,9738750.0,13125.0,9738750.0,true,742,0.9175148427974915,53000.0,1239.904194285078,0.0,7291.433341335244,3085227.917447332,7946.93775100548,3390557.7908434393,7291.433341335244,3085227.917447332,-0.0,0.0,-0.0,0.0,655.5044096702359,305329.8733960802,742,53000.0,1239.904194285078,7291.433341335244,1685850.1489882248,1050.0,779100.0,704.4600776941179,833902.5550464292,5254.24911161558,119986.72617172333,0.0,0.0,1228.7984317151706,729587.6063048857,103.92572031037544,2373.261465185061,-7291.433341335244,-3506480.910199136,true,true,12.11498055,7119.585140040999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,743,0.9058505888160987,666.0,0.0,8220.81655165974,7170.81655165974,1050.0,8208.472983263855,12.343568395885496,4177878.6073951065,3397728.607395099,780150.0,5273675.197198523,-1095796.5898034691,0.95,0.25,22.0,743,0.0,0.1,0.0,0.0,1050.0,780150.0,13125.0,9751875.0,13125.0,9751875.0,true,743,0.9147529261258197,53000.0,1239.904194285078,0.0,6559.525423342207,3091787.442870674,7170.81655165974,3397728.607395099,6559.525423342207,3091787.442870674,-0.0,0.0,-0.0,0.0,611.2911283175326,305941.16452439775,743,53000.0,1239.904194285078,6559.525423342207,1692409.674411567,1050.0,780150.0,748.7278650449392,834651.2829114741,4468.399142676803,124455.12531440014,0.0,0.0,1254.0163100765271,730841.6226149623,88.38210554393808,2461.643570728999,-6559.525423342207,-3513040.4356224784,true,true,12.33850418,7131.923644220999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,744,0.9058470396671945,666.0,0.0,6382.079559643233,5332.079559643233,1050.0,6372.496857601726,9.582702041506355,4184260.6869547497,3403060.6869547423,781200.0,5280047.694056125,-1095787.0071014275,0.95,0.25,22.0,744,0.0,0.1,0.0,0.0,1050.0,781200.0,13125.0,9765000.0,13125.0,9765000.0,true,744,0.9055516355283213,53000.0,1239.904194285078,0.0,4828.47336600206,3096615.9162366763,5332.079559643233,3403060.6869547423,4828.47336600206,3096615.9162366763,-0.0,0.0,-0.0,0.0,503.60619364117247,306444.77071803896,744,53000.0,1239.904194285078,4828.47336600206,1697238.147777569,1050.0,781200.0,782.0616090213192,835433.3445204954,2720.250342166121,127175.37565656626,0.0,0.0,1272.3565855747609,732113.9792005371,53.80482923985916,2515.448399968858,-4828.47336600206,-3517868.9089884805,true,true,12.47261836,7144.396262580999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,745,0.9058428913665976,666.0,0.0,7459.47413338832,6409.47413338832,1050.0,7448.273721776626,11.200411611694175,4191720.161088138,3409470.1610881304,782250.0,5287495.967777902,-1095775.8066898158,0.95,0.25,22.0,745,0.0,0.1,0.0,0.0,1050.0,782250.0,13125.0,9778125.0,13125.0,9778125.0,true,745,0.9120597098814754,53000.0,1239.904194285078,0.0,5845.823118590973,3102461.739355267,6409.47413338832,3409470.1610881304,5845.823118590973,3102461.739355267,-0.0,0.0,-0.0,0.0,563.6510147973477,307008.4217328363,745,53000.0,1239.904194285078,5845.823118590973,1703083.97089616,1050.0,782250.0,812.027925148302,836245.3724456436,3672.746271422135,130848.1219279884,0.0,0.0,1288.4043264434088,733402.3835269805,72.64459557712665,2588.0929955459846,-5845.823118590973,-3523714.732107071,true,true,12.65143726,7157.0476998409995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,746,0.9058392474531771,666.0,0.0,6552.485112632993,5502.485112632993,1050.0,6542.646546397808,9.838566235184674,4198272.6462007705,3414972.6462007635,783300.0,5294038.6143243,-1095765.9681235806,0.95,0.25,22.0,746,0.0,0.1,0.0,0.0,1050.0,783300.0,13125.0,9791250.0,13125.0,9791250.0,true,746,0.9070871066032622,53000.0,1239.904194285078,0.0,4991.233299945787,3107452.972655213,5502.485112632993,3414972.6462007635,4991.233299945787,3107452.972655213,-0.0,0.0,-0.0,0.0,511.25181268720644,307519.6735455235,746,53000.0,1239.904194285078,4991.233299945787,1708075.2041961057,1050.0,783300.0,842.7501077804774,837088.1225534241,2788.8690613125236,133636.99098930092,0.0,0.0,1304.45206679924,734706.8355937798,55.16206405354582,2643.2550595995303,-4991.233299945787,-3528705.965407017,true,true,12.78555143,7169.833251270999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,747,0.9058372794886881,666.0,0.0,3538.793744217317,2488.793744217317,1050.0,3533.4802400968706,5.313504120446422,4201811.439944988,3417461.4399449807,784350.0,5297572.094564397,-1095760.6546194602,0.95,0.25,22.0,747,0.0,0.1,0.0,0.0,1050.0,784350.0,13125.0,9804375.0,13125.0,9804375.0,true,747,0.8708958518480022,53000.0,1239.904194285078,0.0,2167.4801479441194,3109620.4528031573,2488.793744217317,3417461.4399449807,2167.4801479441194,3109620.4528031573,-0.0,0.0,-0.0,0.0,321.3135962731976,307840.9871417967,747,53000.0,1239.904194285078,2167.4801479441194,1710242.6843440498,1050.0,784350.0,856.1504782817566,837944.2730317059,0.0,133636.99098930092,0.0,0.0,1311.3296696623627,736018.1652634422,0.0,2643.2550595995303,-2167.4801479441194,-3530873.4455549615,true,true,12.78555143,7182.618802700999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,748,0.9058370172086465,666.0,0.0,471.6319708473277,-578.3680291526723,1050.0,470.9238147349443,0.708156112383375,4202283.071915835,3416883.071915828,785400.0,5298043.018379132,-1095759.9464633479,0.95,0.25,22.0,748,0.0,0.1,0.0,0.0,1050.0,785400.0,13125.0,9817500.0,13125.0,9817500.0,true,748,0.83,53000.0,1239.904194285078,0.0,-696.8289507863523,3108923.623852371,-578.3680291526723,3416883.071915828,-696.8289507863523,3108923.623852371,-0.0,0.0,-0.0,0.0,118.46092163367996,307959.4480634304,748,53000.0,1239.904194285078,-696.8289507863523,1709545.8553932635,1050.0,785400.0,842.7501077804774,838787.0231394863,-2788.8690613125236,130848.1219279884,0.0,0.0,1304.45206679924,737322.6173302415,-55.16206405354582,2588.0929955459846,-696.8289507863523,-3531570.274505748,true,true,12.65143726,7195.270239961,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,749,0.9058356639402951,666.0,0.0,2433.4471493673473,1383.4471493673475,1050.0,2429.793324818748,3.6538245485996206,4204716.519065202,3418266.5190651957,786450.0,5300472.811703951,-1095756.2926387992,0.95,0.25,22.0,749,0.0,0.1,0.0,0.0,1050.0,786450.0,13125.0,9830625.0,13125.0,9830625.0,true,749,0.8522459864241171,53000.0,1239.904194285078,0.0,1179.037280478208,3110102.661132849,1383.4471493673475,3418266.5190651957,1179.037280478208,3110102.661132849,-0.0,0.0,-0.0,0.0,204.4098688891395,308163.8579323195,749,53000.0,1239.904194285078,1179.037280478208,1710724.8926737418,1050.0,786450.0,825.1014704065443,839612.1246098928,-923.0880226681132,129925.03390532028,0.0,0.0,1295.2819293065315,738617.899259548,-18.258096566754702,2569.83489897923,-1179.037280478208,-3532749.311786226,true,true,12.60673253,7207.876972491,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,750,0.9058349282220515,666.0,0.0,1322.9685458501149,272.968545850115,1050.0,1320.9821065920817,1.9864392580332055,4206039.487611053,3418539.4876110456,787500.0,5301793.793810544,-1095754.306199541,0.95,0.25,22.0,750,0.0,0.1,0.0,0.0,1050.0,787500.0,13125.0,9843750.0,13125.0,9843750.0,true,750,0.8342969210821704,53000.0,1239.904194285078,0.0,227.73681735502817,3110330.3979502036,272.968545850115,3418539.4876110456,227.73681735502817,3110330.3979502036,-0.0,0.0,-0.0,0.0,45.23172849508683,308209.0896608146,750,53000.0,1239.904194285078,227.73681735502817,1710952.6294910968,1050.0,787500.0,812.0279241786799,840424.1525340715,-1836.3731349801374,128088.66077034014,0.0,0.0,1288.4043259305918,739906.3035854787,-36.32229777410603,2533.5126012051237,-227.73681735502817,-3532977.048603581,true,true,12.51732308,7220.394295571,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,751,0.9058349166107075,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4206060.367129796,3417510.367129789,788550.0,5301814.641978658,-1095754.2748489124,0.95,0.25,22.0,751,0.0,0.1,0.0,0.0,1050.0,788550.0,13125.0,9856875.0,13125.0,9856875.0,true,751,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3109090.4937559185,-1029.1204812566145,3417510.367129789,-1239.904194285078,3109090.4937559185,-0.0,0.0,-0.0,0.0,210.78371302846335,308419.8733738431,751,53000.0,1239.904194285078,-2569.0070217279253,1708383.6224693689,1050.0,788550.0,782.061608075701,841206.2141421472,-4533.750500839236,123554.9102695009,0.0,0.0,1272.3565850619436,741178.6601705407,-89.67471402633319,2443.8378871787904,-1239.904194285078,-3534216.952797866,true,true,12.29379945,7232.688095021,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,752,0.9058349049993635,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4206081.24664854,3416481.246648533,789600.0,5301835.490146772,-1095754.2434982837,0.95,0.25,22.0,752,0.0,0.1,0.0,0.0,1050.0,789600.0,13125.0,9870000.0,13125.0,9870000.0,true,752,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3107850.5895616333,-1029.1204812566145,3416481.246648533,-1239.904194285078,3107850.5895616333,-0.0,0.0,-0.0,0.0,210.78371302846335,308630.65708687156,752,53000.0,1239.904194285078,-4355.574344092822,1704028.048125276,1050.0,789600.0,732.4222113364481,841938.6363534837,-6210.0126108994,117344.8976586015,0.0,0.0,1244.8461725838188,742423.5063431246,-122.83011711368854,2321.007770065102,-1239.904194285078,-3535456.856992151,true,true,11.98086638,7244.668961401,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,753,0.9058348933880195,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4206102.126167283,3415452.1261672764,790650.0,5301856.338314886,-1095754.212147655,0.95,0.25,22.0,753,0.0,0.1,0.0,0.0,1050.0,790650.0,13125.0,9883125.0,13125.0,9883125.0,true,753,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3106610.685367348,-1029.1204812566145,3415452.1261672764,-1239.904194285078,3106610.685367348,-0.0,0.0,-0.0,0.0,210.78371302846335,308841.44079990004,753,53000.0,1239.904194285078,-9474.376810921383,1694553.6713143548,1050.0,790650.0,654.4358535695924,842593.0722070532,-11108.097024384133,106236.80063421738,0.0,0.0,1198.9954851202774,743622.5018282448,-219.7111252271207,2101.296644837981,-1239.904194285078,-3536696.7611864363,true,true,11.39970495,7256.0686663510005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,754,0.9058348817766755,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4206123.005686027,3414423.00568602,791700.0,5301877.186483,-1095754.1807970263,0.95,0.25,22.0,754,0.0,0.1,0.0,0.0,1050.0,791700.0,13125.0,9896250.0,13125.0,9896250.0,true,754,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3105370.781173063,-1029.1204812566145,3414423.00568602,-1239.904194285078,3105370.781173063,-0.0,0.0,-0.0,0.0,210.78371302846335,309052.2245129285,754,53000.0,1239.904194285078,-14666.221765060998,1679887.4495492938,1050.0,791700.0,538.2081346107577,843131.280341664,-16011.082673039318,90225.71796117806,0.0,0.0,1123.341850036208,744745.843678281,-316.689076668645,1784.6075681693362,-1239.904194285078,-3537936.6653807214,true,true,10.50561044,7266.574276791001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,755,0.9058348701653315,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4206143.885204771,3413393.8852047636,792750.0,5301898.034651115,-1095754.1494463976,0.95,0.25,22.0,755,0.0,0.1,0.0,0.0,1050.0,792750.0,13125.0,9909375.0,13125.0,9909375.0,true,755,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3104130.876978778,-1029.1204812566145,3413393.8852047636,-1239.904194285078,3104130.876978778,-0.0,0.0,-0.0,0.0,210.78371302846335,309263.008225957,755,53000.0,1239.904194285078,-13546.382870361225,1666341.0666789326,1050.0,792750.0,416.86895982891633,843548.1493014928,-14704.055399787656,75521.6625613904,0.0,0.0,1031.6404744424626,745777.4841527235,-290.8369048449491,1493.770663324387,-1239.904194285078,-3539176.5695750066,true,true,9.611515937,7276.185792728001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,756,0.9058348585539875,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4206164.764723514,3412364.764723507,793800.0,5301918.882819229,-1095754.1180957688,0.95,0.25,22.0,756,0.0,0.1,0.0,0.0,1050.0,793800.0,13125.0,9922500.0,13125.0,9922500.0,true,756,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3102890.9727844927,-1029.1204812566145,3412364.764723507,-1239.904194285078,3102890.9727844927,-0.0,0.0,-0.0,0.0,210.78371302846335,309473.79193898547,756,53000.0,1239.904194285078,-15636.879995294727,1650704.186683638,1050.0,793800.0,303.8974718512377,843852.046773344,-16542.062375331818,58979.60018605858,0.0,0.0,928.4764271366769,746705.9605798601,-327.191518950824,1166.579144373563,-1239.904194285078,-3540416.473769292,true,true,8.493897805,7284.679690533001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,757,0.9058348469426435,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4206185.644242258,3411335.644242251,794850.0,5301939.730987343,-1095754.0867451401,0.95,0.25,22.0,757,0.0,0.1,0.0,0.0,1050.0,794850.0,13125.0,9935625.0,13125.0,9935625.0,true,757,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3101651.0685902075,-1029.1204812566145,3411335.644242251,-1239.904194285078,3101651.0685902075,-0.0,0.0,-0.0,0.0,210.78371302846335,309684.57565201394,757,53000.0,1239.904194285078,-13768.11360141414,1636936.0730822238,1050.0,794850.0,204.6666479569444,844056.713421301,-14499.832452857394,44479.76773320119,0.0,0.0,813.849707759879,747519.81028762,-286.7975042735688,879.7816400999941,-1239.904194285078,-3541656.377963577,true,true,7.376279673,7292.055970206001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,758,0.9058348353312995,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4206206.523761001,3410306.5237609944,795900.0,5301960.579155457,-1095754.0553945114,0.95,0.25,22.0,758,0.0,0.1,0.0,0.0,1050.0,795900.0,13125.0,9948750.0,13125.0,9948750.0,true,758,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3100411.1643959223,-1029.1204812566145,3410306.5237609944,-1239.904194285078,3100411.1643959223,-0.0,0.0,-0.0,0.0,210.78371302846335,309895.3593650424,758,53000.0,1239.904194285078,-7508.997738408805,1629427.075343815,1050.0,795900.0,141.62859986879886,844198.3420211698,-8208.130512177368,36271.63722102382,0.0,0.0,719.8557978442383,748239.6660854643,-162.35162394447497,717.4300161555191,-1239.904194285078,-3542896.282157862,true,true,6.661004068,7298.716974274001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,759,0.9058348237199555,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4206227.403279745,3409277.403279738,796950.0,5301981.427323571,-1095754.0240438827,0.95,0.25,22.0,759,0.0,0.1,0.0,0.0,1050.0,796950.0,13125.0,9961875.0,13125.0,9961875.0,true,759,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3099171.260201637,-1029.1204812566145,3409277.403279738,-1239.904194285078,3099171.260201637,-0.0,0.0,-0.0,0.0,210.78371302846335,310106.1430780709,759,53000.0,1239.904194285078,-10234.008372978136,1619193.0669708368,1050.0,796950.0,94.10521818615572,844292.447239356,-10743.76318095695,25527.87404006687,0.0,0.0,628.1544223017746,748867.8205077661,-212.50483250911637,504.92518364640273,-1239.904194285078,-3544136.1863521473,true,true,5.588090661,7304.305064935001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,760,0.9058348121086115,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4206248.282798489,3408248.2827984816,798000.0,5302002.275491686,-1095753.992693254,0.95,0.25,22.0,760,0.0,0.1,0.0,0.0,1050.0,798000.0,13125.0,9975000.0,13125.0,9975000.0,true,760,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3097931.356007352,-1029.1204812566145,3408248.2827984816,-1239.904194285078,3097931.356007352,-0.0,0.0,-0.0,0.0,210.78371302846335,310316.92679109937,760,53000.0,1239.904194285078,-10761.03199373431,1608432.0349771024,1050.0,798000.0,48.050107320019386,844340.4973466761,-11091.759159407446,14436.114880659423,0.0,0.0,502.06503095652795,749369.8855387226,-219.3879726034127,285.53721104299007,-1239.904194285078,-3545376.0905464324,true,true,4.202244177,7308.507309112,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,761,0.9058348004972675,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4206269.162317232,3407219.1623172252,799050.0,5302023.1236598,-1095753.9613426253,0.95,0.25,22.0,761,0.0,0.1,0.0,0.0,1050.0,799050.0,13125.0,9988125.0,13125.0,9988125.0,true,761,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3096691.451813067,-1029.1204812566145,3407219.1623172252,-1239.904194285078,3096691.451813067,-0.0,0.0,-0.0,0.0,210.78371302846335,310527.71050412784,761,53000.0,1239.904194285078,-7942.164152476603,1600489.8708246257,1050.0,799050.0,17.367440215753042,844357.8647868918,-8155.849420165527,6280.265460493896,0.0,0.0,357.63536452330123,749727.5209032459,-161.31753705013034,124.21967399285973,-1239.904194285078,-3546615.9947407176,true,true,2.771692968,7311.27900208,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,762,0.9058347888859235,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4206290.041835976,3406190.041835969,800100.0,5302043.971827914,-1095753.9299919966,0.95,0.25,22.0,762,0.0,0.1,0.0,0.0,1050.0,800100.0,13125.0,10001250.0,13125.0,10001250.0,true,762,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3095451.5476187817,-1029.1204812566145,3406190.041835969,-1239.904194285078,3095451.5476187817,-0.0,0.0,-0.0,0.0,210.78371302846335,310738.4942171563,762,53000.0,1239.904194285078,-4690.520475618734,1595799.350349007,1050.0,800100.0,3.5622590599336847,844361.4270459518,-4809.85991499635,1470.405545497546,0.0,0.0,210.9131637168974,749938.4340669628,-95.1359833992145,29.08369059364523,-1239.904194285078,-3547855.8989350027,true,true,1.341141759,7312.620143839,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,763,0.9058346762510049,666.0,0.0,202.54011069773696,-847.459889302263,1050.0,202.23599641741004,0.3041142803269324,4206492.581946674,3405342.5819466664,801150.0,5302246.207824332,-1095753.6258777163,0.95,0.25,22.0,763,0.0,0.1,0.0,0.0,1050.0,801150.0,13125.0,10014375.0,13125.0,10014375.0,true,763,0.83,53000.0,1239.904194285078,0.0,-1021.0360112075458,3094430.5116075743,-847.459889302263,3405342.5819466664,-1021.0360112075458,3094430.5116075743,-0.0,0.0,-0.0,0.0,173.57612190528278,310912.0703390616,763,53000.0,1239.904194285078,-1021.0360112075458,1594778.3143377993,1050.0,801150.0,0.4168689600154153,844361.8439149118,-1102.8041596711141,367.60138582643185,0.0,0.0,103.16404745963078,750041.5981144224,-21.81276795607787,7.2709226375673595,-1021.0360112075458,-3548876.93494621,true,true,0.670570879,7313.290714717999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,764,0.9058340462422794,666.0,0.0,1132.8816901727328,82.88169017273265,1050.0,1131.1806666139148,1.701023558817917,4207625.463636846,3405425.4636368393,802200.0,5303377.388490946,-1095751.9248541575,0.95,0.25,22.0,764,0.0,0.1,0.0,0.0,1050.0,802200.0,13125.0,10027500.0,13125.0,10027500.0,true,764,0.8312999914780052,53000.0,1239.904194285078,0.0,68.89954833427531,3094499.4111559084,82.88169017273265,3405425.4636368393,68.89954833427531,3094499.4111559084,-0.0,0.0,-0.0,0.0,13.982141838457338,310926.0524809001,764,53000.0,1239.904194285078,68.89954833427531,1594847.2138861336,1050.0,802200.0,0.12351672870925999,844361.9674316406,0.0,367.60138582643185,0.0,0.0,68.77603160556605,750110.374146028,0.0,7.2709226375673595,-68.89954833427531,-3548945.834494544,true,true,0.670570879,7313.961285596999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,765,0.9058335949498826,666.0,0.0,811.5139879815263,-238.4860120184738,1050.0,810.2954985100826,1.218489471443733,4208436.977624828,3405186.977624821,803250.0,5304187.683989456,-1095750.7063646861,0.95,0.25,22.0,765,0.0,0.1,0.0,0.0,1050.0,803250.0,13125.0,10040625.0,13125.0,10040625.0,true,765,0.83,53000.0,1239.904194285078,0.0,-287.3325446005708,3094212.078611308,-238.4860120184738,3405186.977624821,-287.3325446005708,3094212.078611308,-0.0,0.0,-0.0,0.0,48.84653258209704,310974.89901348215,765,53000.0,1239.904194285078,-287.3325446005708,1594559.881341533,1050.0,803250.0,0.03659754920625561,844362.0040291898,-326.7567875228121,40.84459830361976,0.0,0.0,45.85068771995013,750156.224833748,-6.463042346915106,0.8078802906522533,-287.3325446005708,-3549233.167039145,true,true,0.223523626,7314.184809222999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,766,0.9058330249671581,666.0,0.0,1024.9429350827288,-25.05706491727115,1050.0,1023.4039817267487,1.5389533559800732,4209461.920559911,3405161.9205599036,804300.0,5305211.087971183,-1095749.1674113302,0.95,0.25,22.0,766,0.0,0.1,0.0,0.0,1050.0,804300.0,13125.0,10053750.0,13125.0,10053750.0,true,766,0.83,53000.0,1239.904194285078,0.0,-30.189234840085724,3094181.8893764676,-25.05706491727115,3405161.9205599036,-30.189234840085724,3094181.8893764676,-0.0,0.0,-0.0,0.0,5.132169922814576,310980.03118340496,766,53000.0,1239.904194285078,-30.189234840085724,1594529.692106693,1050.0,804300.0,0.0005718367044290318,844362.0046010265,-40.84459830330359,3.161702011311718e-10,0.0,0.0,11.462671917167107,750167.6875056651,-0.8078802906536671,-1.4137579995576743e-12,-30.189234840085724,-3549263.356273985,true,true,0.0,7314.184809222999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,767,0.9058314263835809,666.0,0.0,2874.5729885335404,1824.5729885335406,1050.0,2870.256812875082,4.31617565845877,4212336.4935484445,3406986.493548437,805350.0,5308081.344784058,-1095744.8512356717,0.95,0.25,22.0,767,0.0,0.1,0.0,0.0,1050.0,805350.0,13125.0,10066875.0,13125.0,10066875.0,true,767,0.8595922412165417,53000.0,1239.904194285078,0.0,1568.3887844767096,3095750.278160944,1824.5729885335406,3406986.493548437,1568.3887844767096,3095750.278160944,-0.0,0.0,-0.0,0.0,256.18420405683105,311236.2153874618,767,53000.0,1239.904194285078,1568.3887844767096,1596098.0808911698,1050.0,805350.0,0.12351672898555459,844362.1281177555,1470.4055454972297,1470.405545497546,0.0,0.0,68.77603165684775,750236.463537322,29.083690593646644,29.08369059364523,-1568.3887844767096,-3550831.7450584616,true,true,1.341141759,7315.525950981999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,768,0.9058275855601612,666.0,0.0,6906.568673360027,5856.568673360027,1050.0,6896.198450126753,10.370223233273313,4219243.062221805,3412843.062221797,806400.0,5314977.543234184,-1095734.4810124384,0.95,0.25,22.0,768,0.0,0.1,0.0,0.0,1050.0,806400.0,13125.0,10080000.0,13125.0,10080000.0,true,768,0.9101137497200169,53000.0,1239.904194285078,0.0,5330.143675804479,3101080.4218367487,5856.568673360027,3412843.062221797,5330.143675804479,3101080.4218367487,-0.0,0.0,-0.0,0.0,526.4249975555476,311762.6403850174,768,53000.0,1239.904194285078,5330.143675804479,1601428.2245669742,1050.0,806400.0,3.679686870818984,844365.8078046263,5014.082906001223,6484.488451498769,0.0,0.0,213.2056980900745,750449.669235412,99.17538484236277,128.259075436008,-5330.143675804479,-3556161.888734266,true,true,2.816397693,7318.342348674999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,769,0.905821512361375,666.0,0.0,10920.82605739813,9870.82605739813,1050.0,10904.42842067531,16.397636722820014,4230163.888279202,3422713.8882791954,807450.0,5325881.971654859,-1095718.0833757157,0.95,0.25,22.0,769,0.0,0.1,0.0,0.0,1050.0,807450.0,13125.0,10093125.0,13125.0,10093125.0,true,769,0.924433675519448,53000.0,1239.904194285078,0.0,9124.924012653695,3110205.3458494022,9870.82605739813,3422713.8882791954,9124.924012653695,3110205.3458494022,-0.0,0.0,-0.0,0.0,745.9020447444345,312508.54242976184,769,53000.0,1239.904194285078,9124.924012653695,1610553.148579628,1050.0,807450.0,18.388800047988507,844384.1966046743,8572.464328779692,15056.952780278461,0.0,0.0,364.51296769411414,750814.1822031061,169.55791613190087,297.8169915679089,-9124.924012653695,-3565286.8127469197,true,true,4.291653628,7322.634002302999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,770,0.9058132097984498,666.0,0.0,14929.66865206491,13879.66865206491,1050.0,14907.251732166913,22.41691989799536,4245093.5569312675,3436593.5569312605,808500.0,5340789.223387026,-1095695.6664558176,0.95,0.25,22.0,770,0.0,0.1,0.0,0.0,1050.0,808500.0,13125.0,10106250.0,13125.0,10106250.0,true,770,0.9322063349475738,53000.0,1239.904194285078,0.0,12938.71504442816,3123144.0608938304,13879.66865206491,3436593.5569312605,12938.71504442816,3123144.0608938304,-0.0,0.0,-0.0,0.0,940.9536076367494,313449.4960373986,770,53000.0,1239.904194285078,12938.71504442816,1623491.863624056,1050.0,808500.0,52.10862000192692,844436.3052246763,12130.845739936509,27187.798520214972,0.0,0.0,515.8202372981539,751330.0024404043,239.94044719156997,537.7574387594789,-12938.71504442816,-3578225.527791348,true,true,5.766909562,7328.400911864999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,771,0.9058039114176318,666.0,0.0,16720.3483868294,15670.348386829397,1050.0,16695.242758620945,25.10562820845255,4261813.905318097,3452263.9053180898,809550.0,5357484.466145647,-1095670.5608276092,0.95,0.25,22.0,771,0.0,0.1,0.0,0.0,1050.0,809550.0,13125.0,10119375.0,13125.0,10119375.0,true,771,0.9338047603011306,53000.0,1239.904194285078,0.0,14633.045919198434,3137777.106813029,15670.348386829397,3452263.9053180898,14633.045919198434,3137777.106813029,-0.0,0.0,-0.0,0.0,1037.3024676309633,314486.7985050295,771,53000.0,1239.904194285078,14633.045919198434,1638124.9095432546,1050.0,809550.0,108.14531444367759,844544.4505391199,13597.983727831608,40785.782248046584,0.0,0.0,657.9573693582036,751987.9598097624,268.9595075649431,806.716946324422,-14633.045919198434,-3592858.5737105464,true,true,7.063346596,7335.464258460999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,772,0.905797124131303,666.0,0.0,12204.898276556769,11154.898276556769,1050.0,12186.572603468845,18.325673087923075,4274018.803594654,3463418.8035946465,810600.0,5369671.038749116,-1095652.2351545212,0.95,0.25,22.0,772,0.0,0.1,0.0,0.0,1050.0,810600.0,13125.0,10132500.0,13125.0,10132500.0,true,772,0.9291099115119095,53000.0,1239.904194285078,0.0,10364.12655065601,3148141.2333636847,11154.898276556769,3463418.8035946465,10364.12655065601,3148141.2333636847,-0.0,0.0,-0.0,0.0,790.7717259007586,315277.5702309303,772,53000.0,1239.904194285078,10364.12655065601,1648489.0360939107,1050.0,810600.0,168.9253074805204,844713.3758466004,9248.850878158868,50034.63312620545,0.0,0.0,763.413951242293,752751.3737610048,182.93641377432903,989.653360098751,-10364.12655065601,-3603222.700261202,true,true,7.823326926,7343.287585386999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,773,0.9057926362876831,666.0,0.0,8070.040397115856,7020.040397115856,1050.0,8057.923219342409,12.117177773447231,4282088.84399177,3470438.8439917625,811650.0,5377728.961968458,-1095640.1179767477,0.95,0.25,22.0,773,0.0,0.1,0.0,0.0,1050.0,811650.0,13125.0,10145625.0,13125.0,10145625.0,true,773,0.9142182996037778,53000.0,1239.904194285078,0.0,6417.849395001086,3154559.082758686,7020.040397115856,3470438.8439917625,6417.849395001086,3154559.082758686,-0.0,0.0,-0.0,0.0,602.1910021147696,315879.7612330451,773,53000.0,1239.904194285078,6417.849395001086,1654906.8854889118,1050.0,811650.0,211.66320273771908,844925.0390493381,5278.755897934032,55313.389024139484,0.0,0.0,823.0198453038691,753574.3936063086,104.41044902546595,1094.063809124217,-6417.849395001086,-3609640.5496562035,true,true,8.225669453,7351.513254839999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,774,0.9057871802767888,666.0,0.0,9810.998790141559,8760.998790141559,1050.0,9796.267560726932,14.731229414626965,4291899.842781912,3479199.842781904,812700.0,5387525.229529185,-1095625.386747333,0.95,0.25,22.0,774,0.0,0.1,0.0,0.0,1050.0,812700.0,13125.0,10158750.0,13125.0,10158750.0,true,774,0.9204297506874843,53000.0,1239.904194285078,0.0,8063.883932183347,3162622.9666908695,8760.998790141559,3479199.842781904,8063.883932183347,3162622.9666908695,-0.0,0.0,-0.0,0.0,697.1148579582123,316576.8760910033,774,53000.0,1239.904194285078,8063.883932183347,1662970.769421095,1050.0,812700.0,249.04604392063794,845174.0850932588,6811.245237486325,62124.63426162581,0.0,0.0,868.8705330238192,754443.2641393325,134.7221177525642,1228.785926876781,-8063.883932183347,-3617704.433588387,true,true,8.717421431,7360.230676270999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,775,0.9057810311723395,666.0,0.0,11057.31962065228,10007.31962065228,1050.0,11040.71703863929,16.602582012991412,4302957.162402564,3489207.1624025563,813750.0,5398565.946567824,-1095608.78416532,0.95,0.25,22.0,775,0.0,0.1,0.0,0.0,1050.0,813750.0,13125.0,10171875.0,13125.0,10171875.0,true,775,0.9249285102973563,53000.0,1239.904194285078,0.0,9256.05522879942,3171879.021919669,10007.31962065228,3489207.1624025563,9256.05522879942,3171879.021919669,-0.0,0.0,-0.0,0.0,751.2643918528611,317328.14048285614,775,53000.0,1239.904194285078,9256.05522879942,1672226.8246498944,1050.0,813750.0,297.194095450846,845471.2791887096,7881.373727724429,70006.00798935024,0.0,0.0,921.598823965864,755364.8629632983,155.88858165828006,1384.6745085350612,-9256.05522879942,-3626960.4888171866,true,true,9.253878135,7369.484554405999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,776,0.9057741181698591,666.0,0.0,12430.961060319076,11380.961060319076,1050.0,12412.2959536219,18.66510669717579,4315388.123462883,3500588.1234628754,814800.0,5410978.242521446,-1095590.1190586227,0.95,0.25,22.0,776,0.0,0.1,0.0,0.0,1050.0,814800.0,13125.0,10185000.0,13125.0,10185000.0,true,776,0.9299380716291297,53000.0,1239.904194285078,0.0,10583.588981719337,3182462.6109013883,11380.961060319076,3500588.1234628754,10583.588981719337,3182462.6109013883,-0.0,0.0,-0.0,0.0,797.3720785997393,318125.5125614559,776,53000.0,1239.904194285078,10583.588981719337,1682810.4136316136,1050.0,814800.0,356.1604100305612,845827.4395987401,9069.134647451634,79075.14263680187,0.0,0.0,978.9121837055446,756343.7751470039,179.3817405315961,1564.0562490666573,-10583.588981719337,-3637544.077798906,true,true,9.835039564,7379.319593969999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,777,0.9057672555441857,666.0,0.0,12340.373485972024,11290.373485972024,1050.0,12321.844396653749,18.529089318276313,4327728.496948855,3511878.4969488475,815850.0,5423300.0869181,-1095571.5899693044,0.95,0.25,22.0,777,0.0,0.1,0.0,0.0,1050.0,815850.0,13125.0,10198125.0,13125.0,10198125.0,true,777,0.9296060352166398,53000.0,1239.904194285078,0.0,10495.599332409525,3192958.210233798,11290.373485972024,3511878.4969488475,10495.599332409525,3192958.210233798,-0.0,0.0,-0.0,0.0,794.7741535624991,318920.2867150184,777,53000.0,1239.904194285078,10495.599332409525,1693306.012964023,1050.0,815850.0,422.4519529735909,846249.8915517137,8861.64412647349,87936.78676327536,0.0,0.0,1036.2255435477887,757380.0006905517,175.2777094146552,1739.3339584813125,-10495.599332409525,-3648039.677131315,true,true,10.37149627,7389.691090239999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,778,0.905757113906307,666.0,0.0,18236.693233592512,17186.693233592512,1050.0,18209.31081131985,27.38242227266143,4345965.190182447,3529065.19018244,816900.0,5441509.397729419,-1095544.2075470318,0.95,0.25,22.0,778,0.0,0.1,0.0,0.0,1050.0,816900.0,13125.0,10211250.0,13125.0,10211250.0,true,778,0.9351625968639916,53000.0,1239.904194285078,0.0,16072.352675831167,3209030.5629096287,17186.693233592512,3529065.19018244,16072.352675831167,3209030.5629096287,-0.0,0.0,-0.0,0.0,1114.3405577613448,320034.6272727797,778,53000.0,1239.904194285078,16072.352675831167,1709378.3656398542,1050.0,816900.0,512.2749649538765,846762.1665166676,14174.709360445057,102111.49612372043,0.0,0.0,1105.0015750507912,758485.0022656025,280.3667753814432,2019.7007338627557,-16072.352675831167,-3664112.029807146,true,true,11.17618132,7400.867271559999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,779,0.9057477902463971,666.0,0.0,16765.80524993315,15715.80524993315,1050.0,16740.631368176495,25.17388175665638,4362730.995432381,3544780.995432373,817950.0,5458250.029097595,-1095519.0336652752,0.95,0.25,22.0,779,0.0,0.1,0.0,0.0,1050.0,817950.0,13125.0,10224375.0,13125.0,10224375.0,true,779,0.9338454080820393,53000.0,1239.904194285078,0.0,14676.132566961678,3223706.69547659,15715.80524993315,3544780.995432373,14676.132566961678,3223706.69547659,-0.0,0.0,-0.0,0.0,1039.6726829714717,321074.29995575116,779,53000.0,1239.904194285078,14676.132566961678,1724054.498206816,1050.0,817950.0,624.8614099403665,847387.027926608,12620.98093638734,114732.47706010776,0.0,0.0,1180.6552096220435,759665.6574752245,249.63501101192915,2269.3357448746847,-14676.132566961678,-3678788.1623741076,true,true,11.8467522,7412.714023759999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,780,0.9057406577812243,666.0,0.0,12825.598873760995,11775.598873760995,1050.0,12806.341217794386,19.2576559666081,4375556.594306141,3556556.594306134,819000.0,5471056.37031539,-1095499.7760093086,0.95,0.25,22.0,780,0.0,0.1,0.0,0.0,1050.0,819000.0,13125.0,10237500.0,13125.0,10237500.0,true,780,0.9303351447955421,53000.0,1239.904194285078,0.0,10955.253483274659,3234661.9489598647,11775.598873760995,3556556.594306134,10955.253483274659,3234661.9489598647,-0.0,0.0,-0.0,0.0,820.3453904863363,321894.6453462375,780,53000.0,1239.904194285078,10955.253483274659,1735009.7516900906,1050.0,819000.0,720.3495623695209,848107.3774889775,8822.433209393152,123554.91026950092,0.0,0.0,1237.968569207879,760903.6260444324,174.5021423041054,2443.83788717879,-10955.253483274659,-3689743.415857382,true,true,12.29379945,7425.007823209999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,781,0.9057360161399474,666.0,0.0,8346.599344034143,7296.599344034143,1050.0,8334.066912586644,12.532431447498713,4383903.193650175,3563853.1936501684,820050.0,5479390.4372279765,-1095487.2435778612,0.95,0.25,22.0,781,0.0,0.1,0.0,0.0,1050.0,820050.0,13125.0,10250625.0,13125.0,10250625.0,true,781,0.9151994090868046,53000.0,1239.904194285078,0.0,6677.843408003214,3241339.7923678677,7296.599344034143,3563853.1936501684,6677.843408003214,3241339.7923678677,-0.0,0.0,-0.0,0.0,618.7559360309288,322513.40128226846,781,53000.0,1239.904194285078,6677.843408003214,1741687.5950980939,1050.0,820050.0,782.061608075701,848889.4390970533,4533.750500839236,128088.66077034015,0.0,0.0,1272.3565850619436,762175.9826294944,89.67471402633319,2533.5126012051232,-6677.843408003214,-3696421.259265385,true,true,12.51732308,7437.525146289999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,782,0.905732413016139,666.0,0.0,6479.137232117093,5429.137232117093,1050.0,6469.408797834635,9.728434282458098,4390382.330882292,3569282.3308822853,821100.0,5485859.8460258115,-1095477.5151435789,0.95,0.25,22.0,782,0.0,0.1,0.0,0.0,1050.0,821100.0,13125.0,10263750.0,13125.0,10263750.0,true,782,0.9064255539936737,53000.0,1239.904194285078,0.0,4921.1087233294165,3246260.901091197,5429.137232117093,3569282.3308822853,4921.1087233294165,3246260.901091197,-0.0,0.0,-0.0,0.0,508.0285087876764,323021.42979105614,782,53000.0,1239.904194285078,4921.1087233294165,1746608.7038214232,1050.0,821100.0,816.3703107801272,849705.8094078334,2759.4611576482507,130848.12192798841,0.0,0.0,1290.6968605601774,763466.6794900546,54.580394340860735,2588.092995545984,-4921.1087233294165,-3701342.3679887145,true,true,12.65143726,7450.176583549999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,783,0.905727061276654,666.0,0.0,9623.497941935651,8573.497941935651,1050.0,9609.04824532614,14.44969660951299,4400005.828824228,3577855.8288242207,822150.0,5495468.894271137,-1095463.0654469694,0.95,0.25,22.0,783,0.0,0.1,0.0,0.0,1050.0,822150.0,13125.0,10276875.0,13125.0,10276875.0,true,783,0.9197567260290238,53000.0,1239.904194285078,0.0,7885.532397691309,3254146.433488888,8573.497941935651,3577855.8288242207,7885.532397691309,3254146.433488888,-0.0,0.0,-0.0,0.0,687.9655442443427,323709.3953353005,783,53000.0,1239.904194285078,7885.532397691309,1754494.2362191146,1050.0,822150.0,856.1504792861916,850561.9598871196,5607.1464421840265,136455.26837017245,0.0,0.0,1311.3296701751794,764778.0091602298,110.90580604591132,2698.9988015918957,-7885.532397691309,-3709227.9003864056,true,true,12.91966561,7463.096249159999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,784,0.9057250683948893,666.0,0.0,3583.599989270112,2533.599989270112,1050.0,3578.219208505442,5.380780764669838,4403589.428813498,3580389.428813491,823200.0,5499047.113479642,-1095457.6846662047,0.95,0.25,22.0,784,0.0,0.1,0.0,0.0,1050.0,823200.0,13125.0,10290000.0,13125.0,10290000.0,true,784,0.8716690707212539,53000.0,1239.904194285078,0.0,2208.4607482264573,3256354.8942371146,2533.599989270112,3580389.428813491,2208.4607482264573,3256354.8942371146,-0.0,0.0,-0.0,0.0,325.1392410436547,324034.53457634413,784,53000.0,1239.904194285078,2208.4607482264573,1756702.696967341,1050.0,823200.0,883.3758718122151,851445.3357589318,0.0,136455.26837017245,0.0,0.0,1325.084876414242,766103.0940366441,0.0,2698.9988015918957,-2208.4607482264573,-3711436.361134632,true,true,12.91966561,7476.01591477,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,785,0.9057230755131246,666.0,0.0,3583.599989270112,2533.599989270112,1050.0,3578.219208505442,5.380780764669838,4407173.028802767,3582923.0288027613,824250.0,5502625.332688147,-1095452.30388544,0.95,0.25,22.0,785,0.0,0.1,0.0,0.0,1050.0,824250.0,13125.0,10303125.0,13125.0,10303125.0,true,785,0.8716690707212539,53000.0,1239.904194285078,0.0,2208.4607482264573,3258563.354985341,2533.599989270112,3582923.0288027613,2208.4607482264573,3258563.354985341,-0.0,0.0,-0.0,0.0,325.1392410436547,324359.6738173878,785,53000.0,1239.904194285078,2208.4607482264573,1758911.1577155674,1050.0,824250.0,883.3758718122151,852328.711630744,0.0,136455.26837017245,0.0,0.0,1325.084876414242,767428.1789130584,0.0,2698.9988015918957,-2208.4607482264573,-3713644.8218828584,true,true,12.91966561,7488.93558038,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,786,0.9057216833960559,666.0,0.0,2503.304913090625,1453.3049130906252,1050.0,2499.5461970049037,3.7587160857216593,4409676.333715858,3584376.333715852,825300.0,5505124.878885152,-1095448.5451693544,0.95,0.25,22.0,786,0.0,0.1,0.0,0.0,1050.0,825300.0,13125.0,10316250.0,13125.0,10316250.0,true,786,0.8534009780031766,53000.0,1239.904194285078,0.0,1240.251834168361,3259803.6068195095,1453.3049130906252,3584376.333715852,1240.251834168361,3259803.6068195095,-0.0,0.0,-0.0,0.0,213.05307892226415,324572.72689631005,786,53000.0,1239.904194285078,1240.251834168361,1760151.4095497357,1050.0,825300.0,878.7988034009026,853207.510434145,-942.6934318710272,135512.5749383014,0.0,0.0,1322.7923417846566,768750.971254843,-18.645879146171005,2680.3529224457247,-1240.251834168361,-3714885.073717027,true,true,12.87496088,7501.81054126,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,787,0.9057214178501687,666.0,0.0,477.50461437458364,-572.4953856254164,1050.0,476.7876404791263,0.7169738954573328,4410153.838330233,3583803.8383302265,826350.0,5505601.666525631,-1095447.828195459,0.95,0.25,22.0,787,0.0,0.1,0.0,0.0,1050.0,826350.0,13125.0,10329375.0,13125.0,10329375.0,true,787,0.83,53000.0,1239.904194285078,0.0,-689.7534766571282,3259113.8533428526,-572.4953856254164,3583803.8383302265,-689.7534766571282,3259113.8533428526,-0.0,0.0,-0.0,0.0,117.25809103171184,324689.98498734174,787,53000.0,1239.904194285078,-689.7534766571282,1759461.6560730785,1050.0,826350.0,860.6486332178192,854068.1590673628,-2808.4744675917627,132704.10047070964,0.0,0.0,1313.6222042919483,770064.593459135,-55.549846575132946,2624.803075870592,-689.7534766571282,-3715574.827193684,true,true,12.74084671,7514.55138797,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,788,0.9057206688430629,666.0,0.0,1346.8645776733192,296.8645776733193,1050.0,1344.8422584876234,2.0223191856956744,4411500.702907906,3584100.7029079,827400.0,5506946.508784119,-1095445.8058762732,0.95,0.25,22.0,788,0.0,0.1,0.0,0.0,1050.0,827400.0,13125.0,10342500.0,13125.0,10342500.0,true,788,0.834675198116666,53000.0,1239.904194285078,0.0,247.78550018329815,3259361.638843036,296.8645776733193,3584100.7029079,247.78550018329815,3259361.638843036,-0.0,0.0,-0.0,0.0,49.07907749002112,324739.06406483176,788,53000.0,1239.904194285078,247.78550018329815,1759709.4415732617,1050.0,827400.0,838.3145905466713,854906.4736579094,-1855.978542721237,130848.12192798841,0.0,0.0,1302.1595326824713,771366.7529918175,-36.710080324607375,2588.092995545984,-247.78550018329815,-3715822.612693867,true,true,12.65143726,7527.202825230001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,789,0.9057187254955558,666.0,0.0,3494.527487395646,2444.527487395646,1050.0,3489.280449126283,5.2470382693628315,4414995.230395301,3586545.2303952957,828450.0,5510435.789233245,-1095440.5588380038,0.95,0.25,22.0,789,0.0,0.1,0.0,0.0,1050.0,828450.0,13125.0,10355625.0,13125.0,10355625.0,true,789,0.8701332974196321,53000.0,1239.904194285078,0.0,2127.0647632405016,3261488.7036062763,2444.527487395646,3586545.2303952957,2127.0647632405016,3261488.7036062763,-0.0,0.0,-0.0,0.0,317.4627241551443,325056.5267889869,789,53000.0,1239.904194285078,2127.0647632405016,1761836.5063365023,1050.0,828450.0,829.4902993043847,855735.9639572138,0.0,130848.12192798841,0.0,0.0,1297.5744639361171,772664.3274557537,0.0,2588.092995545984,-2127.0647632405016,-3717949.6774571077,true,true,12.65143726,7539.854262490001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,790,0.9057167821480486,666.0,0.0,3494.527487395646,2444.527487395646,1050.0,3489.280449126283,5.2470382693628315,4418489.757882697,3588989.7578826915,829500.0,5513925.069682371,-1095435.3117997344,0.95,0.25,22.0,790,0.0,0.1,0.0,0.0,1050.0,829500.0,13125.0,10368750.0,13125.0,10368750.0,true,790,0.8701332974196321,53000.0,1239.904194285078,0.0,2127.0647632405016,3263615.768369517,2444.527487395646,3588989.7578826915,2127.0647632405016,3263615.768369517,-0.0,0.0,-0.0,0.0,317.4627241551443,325373.9895131421,790,53000.0,1239.904194285078,2127.0647632405016,1763963.5710997428,1050.0,829500.0,829.4902993043847,856565.4542565182,0.0,130848.12192798841,0.0,0.0,1297.5744639361171,773961.9019196898,0.0,2588.092995545984,-2127.0647632405016,-3720076.742220348,true,true,12.65143726,7552.505699750001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,791,0.9057154288796972,666.0,0.0,2433.4471493673473,1383.4471493673475,1050.0,2429.793324818748,3.6538245485996206,4420923.205032064,3590373.205032059,830550.0,5516354.86300719,-1095431.6579751857,0.95,0.25,22.0,791,0.0,0.1,0.0,0.0,1050.0,830550.0,13125.0,10381875.0,13125.0,10381875.0,true,791,0.8522459864241171,53000.0,1239.904194285078,0.0,1179.037280478208,3264794.805649995,1383.4471493673475,3590373.205032059,1179.037280478208,3264794.805649995,-0.0,0.0,-0.0,0.0,204.4098688891395,325578.39938203123,791,53000.0,1239.904194285078,1179.037280478208,1765142.608380221,1050.0,830550.0,825.1014704065443,857390.5557269247,-923.0880226681132,129925.03390532029,0.0,0.0,1295.2819293065315,775257.1838489964,-18.258096566754702,2569.8348989792294,-1179.037280478208,-3721255.7795008263,true,true,12.60673253,7565.1124322800015,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,792,0.9057154172683533,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4420944.084550807,3589344.0845508026,831600.0,5516375.711175304,-1095431.626624557,0.95,0.25,22.0,792,0.0,0.1,0.0,0.0,1050.0,831600.0,13125.0,10395000.0,13125.0,10395000.0,true,792,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3263554.9014557097,-1029.1204812566145,3589344.0845508026,-1239.904194285078,3263554.9014557097,-0.0,0.0,-0.0,0.0,210.78371302846335,325789.1830950597,792,53000.0,1239.904194285078,-3504.0533668267635,1761638.5550133942,1050.0,831600.0,794.8123639057269,858185.3680908304,-5469.908590920142,124455.12531440015,0.0,0.0,1279.2341884378834,776536.4180374343,-108.19132825023111,2461.6435707289984,-1239.904194285078,-3722495.6836951114,true,true,12.33850418,7577.450936460002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,793,0.9057141076596792,666.0,0.0,2354.9383176958754,1304.9383176958756,1050.0,2351.402374275912,3.5359434199637767,4423299.022868503,3590649.0228684987,832650.0,5518727.11354958,-1095428.090681137,0.95,0.25,22.0,793,0.0,0.1,0.0,0.0,1050.0,832650.0,13125.0,10408125.0,13125.0,10408125.0,true,793,0.8509516880034662,53000.0,1239.904194285078,0.0,1110.4394641837089,3264665.3409198932,1304.9383176958756,3590649.0228684987,1110.4394641837089,3264665.3409198932,-0.0,0.0,-0.0,0.0,194.49885351216676,325983.6819485719,793,53000.0,1239.904194285078,1110.4394641837089,1762748.994477578,1050.0,832650.0,765.2737450639127,858950.6418358943,-900.2150448992311,123554.91026950092,0.0,0.0,1263.1864475692355,777799.6044850036,-17.805683550208116,2443.8378871787904,-1110.4394641837089,-3723606.123159295,true,true,12.29379945,7589.7447359100015,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,794,0.9057122285041337,666.0,0.0,3379.097502005294,2329.097502005294,1050.0,3374.0237820323127,5.073719972980921,4426678.120370508,3592978.120370504,833700.0,5522101.137331612,-1095423.016961164,0.95,0.25,22.0,794,0.0,0.1,0.0,0.0,1050.0,833700.0,13125.0,10421250.0,13125.0,10421250.0,true,794,0.8681511050990437,53000.0,1239.904194285078,0.0,2022.008570249318,3266687.3494901424,2329.097502005294,3592978.120370504,2022.008570249318,3266687.3494901424,-0.0,0.0,-0.0,0.0,307.08893175597586,326290.77088032785,794,53000.0,1239.904194285078,2022.008570249318,1764771.0030478274,1050.0,833700.0,761.1146573096681,859711.756493204,0.0,123554.91026950092,0.0,0.0,1260.89391293965,779060.4983979433,0.0,2443.8378871787904,-2022.008570249318,-3725628.131729544,true,true,12.29379945,7602.038535360001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,795,0.9057103493485882,666.0,0.0,3379.097502005294,2329.097502005294,1050.0,3374.0237820323127,5.073719972980921,4430057.217872513,3595307.2178725093,834750.0,5525475.161113645,-1095417.943241191,0.95,0.25,22.0,795,0.0,0.1,0.0,0.0,1050.0,834750.0,13125.0,10434375.0,13125.0,10434375.0,true,795,0.8681511050990437,53000.0,1239.904194285078,0.0,2022.008570249318,3268709.3580603916,2329.097502005294,3595307.2178725093,2022.008570249318,3268709.3580603916,-0.0,0.0,-0.0,0.0,307.08893175597586,326597.8598120838,795,53000.0,1239.904194285078,2022.008570249318,1766793.0116180768,1050.0,834750.0,761.1146573096681,860472.8711505138,0.0,123554.91026950092,0.0,0.0,1260.89391293965,780321.392310883,0.0,2443.8378871787904,-2022.008570249318,-3727650.1402997933,true,true,12.29379945,7614.332334810001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,796,0.9057084701930427,666.0,0.0,3379.097502005294,2329.097502005294,1050.0,3374.0237820323127,5.073719972980921,4433436.315374519,3597636.3153745146,835800.0,5528849.1848956775,-1095412.8695212181,0.95,0.25,22.0,796,0.0,0.1,0.0,0.0,1050.0,835800.0,13125.0,10447500.0,13125.0,10447500.0,true,796,0.8681511050990437,53000.0,1239.904194285078,0.0,2022.008570249318,3270731.366630641,2329.097502005294,3597636.3153745146,2022.008570249318,3270731.366630641,-0.0,0.0,-0.0,0.0,307.08893175597586,326904.9487438398,796,53000.0,1239.904194285078,2022.008570249318,1768815.0201883262,1050.0,835800.0,761.1146573096681,861233.9858078235,0.0,123554.91026950092,0.0,0.0,1260.89391293965,781582.2862238227,0.0,2443.8378871787904,-2022.008570249318,-3729672.1488700425,true,true,12.29379945,7626.626134260001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,797,0.9057065910374972,666.0,0.0,3379.097502005294,2329.097502005294,1050.0,3374.0237820323127,5.073719972980921,4436815.412876524,3599965.41287652,836850.0,5532223.20867771,-1095407.7958012451,0.95,0.25,22.0,797,0.0,0.1,0.0,0.0,1050.0,836850.0,13125.0,10460625.0,13125.0,10460625.0,true,797,0.8681511050990437,53000.0,1239.904194285078,0.0,2022.008570249318,3272753.37520089,2329.097502005294,3599965.41287652,2022.008570249318,3272753.37520089,-0.0,0.0,-0.0,0.0,307.08893175597586,327212.0376755958,797,53000.0,1239.904194285078,2022.008570249318,1770837.0287585757,1050.0,836850.0,761.1146573096681,861995.1004651332,0.0,123554.91026950092,0.0,0.0,1260.89391293965,782843.1801367624,0.0,2443.8378871787904,-2022.008570249318,-3731694.1574402917,true,true,12.29379945,7638.919933710001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,798,0.9057047118819517,666.0,0.0,3379.097502005294,2329.097502005294,1050.0,3374.0237820323127,5.073719972980921,4440194.510378529,3602294.510378525,837900.0,5535597.232459743,-1095402.7220812722,0.95,0.25,22.0,798,0.0,0.1,0.0,0.0,1050.0,837900.0,13125.0,10473750.0,13125.0,10473750.0,true,798,0.8681511050990437,53000.0,1239.904194285078,0.0,2022.008570249318,3274775.383771139,2329.097502005294,3602294.510378525,2022.008570249318,3274775.383771139,-0.0,0.0,-0.0,0.0,307.08893175597586,327519.12660735176,798,53000.0,1239.904194285078,2022.008570249318,1772859.037328825,1050.0,837900.0,761.1146573096681,862756.2151224429,0.0,123554.91026950092,0.0,0.0,1260.89391293965,784104.0740497021,0.0,2443.8378871787904,-2022.008570249318,-3733716.166010541,true,true,12.29379945,7651.213733160001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,799,0.9057022777122659,666.0,0.0,4377.123929038164,3327.1239290381636,1050.0,4370.551670886454,6.572258151708954,4444571.634307567,3605621.6343075633,838950.0,5539967.784130629,-1095396.1498231206,0.95,0.25,22.0,799,0.0,0.1,0.0,0.0,1050.0,838950.0,13125.0,10486875.0,13125.0,10486875.0,true,799,0.8855939796430677,53000.0,1239.904194285078,0.0,2946.480921082587,3277721.864692222,3327.1239290381636,3605621.6343075633,2946.480921082587,3277721.864692222,-0.0,0.0,-0.0,0.0,380.64300795557665,327899.76961530733,799,53000.0,1239.904194285078,2946.480921082587,1775805.5182499078,1050.0,838950.0,765.2737450639127,863521.4888675069,900.2150448992311,124455.12531440015,0.0,0.0,1263.1864475692355,785367.2604972714,17.805683550208116,2461.6435707289984,-2946.480921082587,-3736662.6469316236,true,true,12.33850418,7663.552237340001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,800,0.9056981767123594,666.0,0.0,7374.4180318512135,6324.4180318512135,1050.0,7363.3453321036895,11.072699747524345,4451946.052339418,3611946.0523394146,840000.0,5547331.129462733,-1095385.077123373,0.95,0.25,22.0,800,0.0,0.1,0.0,0.0,1050.0,840000.0,13125.0,10500000.0,13125.0,10500000.0,true,800,0.91175981206081,53000.0,1239.904194285078,0.0,5766.35019611466,3283488.2148883366,6324.4180318512135,3611946.0523394146,5766.35019611466,3283488.2148883366,-0.0,0.0,-0.0,0.0,558.0678357365532,328457.8374510439,800,53000.0,1239.904194285078,5766.35019611466,1781571.8684460225,1050.0,840000.0,786.2965900070004,864307.7854575139,3633.5354559400052,128088.66077034015,0.0,0.0,1274.6491196915292,786641.909616963,71.86903047612508,2533.5126012051232,-5766.35019611466,-3742428.9971277383,true,true,12.51732308,7676.069560420001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,801,0.9056934469202632,666.0,0.0,8505.112147404758,7455.112147404759,1050.0,8492.34170874499,12.770438659766903,4460451.164486823,3619401.1644868194,841050.0,5555823.471171478,-1095372.3066847133,0.95,0.25,22.0,801,0.0,0.1,0.0,0.0,1050.0,841050.0,13125.0,10513125.0,13125.0,10513125.0,true,801,0.9157626927348983,53000.0,1239.904194285078,0.0,6827.113574748032,3290315.3284630845,7455.112147404759,3619401.1644868194,6827.113574748032,3290315.3284630845,-0.0,0.0,-0.0,0.0,627.9985726567265,329085.8360237006,801,53000.0,1239.904194285078,6827.113574748032,1788398.9820207704,1050.0,841050.0,825.1014704065443,865132.8869279204,4615.439700369488,132704.10047070964,0.0,0.0,1295.2819293065315,787937.1915462696,91.29047466546811,2624.8030758705913,-6827.113574748032,-3749256.1107024862,true,true,12.74084671,7688.810407130001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,802,0.9056828349160877,666.0,0.0,19082.505908433362,18032.505908433362,1050.0,19053.853497159438,28.652411273923967,4479533.670395256,3637433.6703952528,842100.0,5574877.3246686375,-1095343.6542734394,0.95,0.25,22.0,802,0.0,0.1,0.0,0.0,1050.0,842100.0,13125.0,10526250.0,13125.0,10526250.0,true,802,0.9359217111184668,53000.0,1239.904194285078,0.0,16877.013785574814,3307192.342248659,18032.505908433362,3637433.6703952528,16877.013785574814,3307192.342248659,-0.0,0.0,-0.0,0.0,1155.492122858548,330241.3281465591,802,53000.0,1239.904194285078,16877.013785574814,1805275.9958063453,1050.0,842100.0,915.8611057842331,866048.7480337046,14336.454079013622,147040.55454972325,0.0,0.0,1341.1326172828901,789278.3241635525,283.5659834940698,2908.369059364661,-16877.013785574814,-3766133.124488061,true,true,13.41141759,7702.221824720002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,803,0.9056747318262887,666.0,0.0,14570.976076538584,13520.976076538584,1050.0,14549.097734081319,21.87834245726514,4494104.646471795,3650954.6464717914,843150.0,5589426.422402719,-1095321.775930982,0.95,0.25,22.0,803,0.0,0.1,0.0,0.0,1050.0,843150.0,13125.0,10539375.0,13125.0,10539375.0,true,803,0.9318868106345582,53000.0,1239.904194285078,0.0,12600.019272631704,3319792.3615212906,13520.976076538584,3650954.6464717914,12600.019272631704,3319792.3615212906,-0.0,0.0,-0.0,0.0,920.9568039068799,331162.284950466,803,53000.0,1239.904194285078,12600.019272631704,1817876.015078977,1050.0,843150.0,1038.3685426895306,867087.1165763941,9966.081962616583,157006.63651233984,0.0,0.0,1398.4459768687257,790676.7701404212,197.12279045686537,3105.4918498215266,-12600.019272631704,-3778733.1437606923,true,true,13.85846484,7716.080289560002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,804,0.9056663433816089,666.0,0.0,15084.101223138132,14034.101223138132,1050.0,15061.452422502789,22.64880063534254,4509188.747694933,3664988.7476949296,844200.0,5604487.8748252215,-1095299.1271303468,0.95,0.25,22.0,804,0.0,0.1,0.0,0.0,1050.0,844200.0,13125.0,10552500.0,13125.0,10552500.0,true,804,0.9323439713860514,53000.0,1239.904194285078,0.0,13084.609669214447,3332876.971190505,14034.101223138132,3664988.7476949296,13084.609669214447,3332876.971190505,-0.0,0.0,-0.0,0.0,949.4915539236845,332111.7765043897,804,53000.0,1239.904194285078,13084.609669214447,1830960.6247481913,1050.0,844200.0,1143.8884260386078,868231.0050024326,10292.838746119307,167299.47525845916,0.0,0.0,1444.2966643322675,792121.0668047535,203.5858327242658,3309.0776825457924,-13084.609669214447,-3791817.753429907,true,true,14.30551209,7730.385801650002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,805,0.9056576657945267,666.0,0.0,15604.037091175032,14554.037091175032,1050.0,15580.607606053149,23.429485121884433,4524792.784786108,3679542.7847861047,845250.0,5620068.482431275,-1095275.6976452249,0.95,0.25,22.0,805,0.0,0.1,0.0,0.0,1050.0,845250.0,13125.0,10565625.0,13125.0,10565625.0,true,805,0.9328076577833118,53000.0,1239.904194285078,0.0,13576.117250310426,3346453.0884408155,14554.037091175032,3679542.7847861047,13576.117250310426,3346453.0884408155,-0.0,0.0,-0.0,0.0,977.9198408646062,333089.6963452543,805,53000.0,1239.904194285078,13576.117250310426,1844536.7419985018,1050.0,845250.0,1256.3252474128797,869487.3302498455,10619.595770826383,177919.07102928555,0.0,0.0,1490.147352308626,793611.2141570621,210.04887976253607,3519.1265623083286,-13576.117250310426,-3805393.870680217,true,true,14.75255935,7745.138361000002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,806,0.9056553013663017,666.0,0.0,4251.714834238725,3201.7148342387254,1050.0,4245.33087803116,6.383956207565654,4529044.499620346,3682744.4996203436,846300.0,5624313.813309306,-1095269.3136890172,0.95,0.25,22.0,806,0.0,0.1,0.0,0.0,1050.0,846300.0,13125.0,10578750.0,13125.0,10578750.0,true,806,0.8833637514539406,53000.0,1239.904194285078,0.0,2828.278827058852,3349281.3672678745,3201.7148342387254,3682744.4996203436,2828.278827058852,3349281.3672678745,-0.0,0.0,-0.0,0.0,373.4360071798733,333463.1323524342,806,53000.0,1239.904194285078,2828.278827058852,1847365.0208255607,1050.0,846300.0,1315.2061305056382,870802.5363803512,0.0,177919.07102928555,0.0,0.0,1513.072696553214,795124.2868536153,0.0,3519.1265623083286,-2828.278827058852,-3808222.1495072762,true,true,14.75255935,7759.8909203500025,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,807,0.9056489905081507,666.0,0.0,11348.185127004364,10298.185127004364,1050.0,11331.14580999685,17.03931700751406,4540392.68474735,3693042.684747348,847350.0,5635644.959119303,-1095252.2743720098,0.95,0.25,22.0,807,0.0,0.1,0.0,0.0,1050.0,847350.0,13125.0,10591875.0,13125.0,10591875.0,true,807,0.9259847642530703,53000.0,1239.904194285078,0.0,9535.962527063612,3358817.329794938,10298.185127004364,3693042.684747348,9535.962527063612,3358817.329794938,-0.0,0.0,-0.0,0.0,762.2225999407528,334225.35495237494,807,53000.0,1239.904194285078,9535.962527063612,1856900.9833526243,1050.0,847350.0,1351.4024606611774,872153.9388410123,6528.600578240063,184447.6716075256,0.0,0.0,1526.8279027922763,796651.1147564076,129.13158537009463,3648.2581476784235,-9535.962527063612,-3817758.11203434,true,true,15.0207877,7774.911708050003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,808,0.9056438834253662,666.0,0.0,9183.556263263421,8133.556263263422,1050.0,9169.767139745007,13.789123518413545,4549576.241010614,3701176.2410106114,848400.0,5644814.726259048,-1095238.4852484914,0.95,0.25,22.0,808,0.0,0.1,0.0,0.0,1050.0,848400.0,13125.0,10605000.0,13125.0,10605000.0,true,808,0.9181814353365814,53000.0,1239.904194285078,0.0,7468.08036419405,3366285.4101591324,8133.556263263422,3701176.2410106114,7468.08036419405,3366285.4101591324,-0.0,0.0,-0.0,0.0,665.4758990693717,334890.83085144433,808,53000.0,1239.904194285078,7468.08036419405,1864369.0637168183,1050.0,848400.0,1413.1950434425346,873567.1338844548,4417.751742193926,188865.42334971952,0.0,0.0,1549.7532465240472,798200.8680029316,87.38033203354311,3735.6384797119667,-7468.08036419405,-3825226.192398534,true,true,15.1996066,7790.111314650003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,809,0.9056393841294433,666.0,0.0,8090.633928412537,7040.633928412537,1050.0,8078.485829420926,12.148098991610416,4557666.874939026,3708216.874939024,849450.0,5652893.212088469,-1095226.3371494997,0.95,0.25,22.0,809,0.0,0.1,0.0,0.0,1050.0,849450.0,13125.0,10618125.0,13125.0,10618125.0,true,809,0.9142912839014662,53000.0,1239.904194285078,0.0,6437.190233888522,3372722.600393021,7040.633928412537,3708216.874939024,6437.190233888522,3372722.600393021,-0.0,0.0,-0.0,0.0,603.443694524015,335494.27454596834,809,53000.0,1239.904194285078,6437.190233888522,1870806.253950707,1050.0,849450.0,1457.5522374647473,875024.6861219195,3347.6231435600675,192213.0464932796,0.0,0.0,1565.800986879878,799766.6689898114,66.2138659838288,3801.8523456957955,-6437.190233888522,-3831663.3826324227,true,true,15.33372077,7805.445035420003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,810,0.9056375801994861,666.0,0.0,3243.826848985383,2193.826848985383,1050.0,3238.9562381010205,4.870610884362437,4560910.701788012,3710410.701788009,850500.0,5656132.168326571,-1095221.4665386153,0.95,0.25,22.0,810,0.0,0.1,0.0,0.0,1050.0,850500.0,13125.0,10631250.0,13125.0,10631250.0,true,810,0.8658396661611485,53000.0,1239.904194285078,0.0,1899.5023065408684,3374622.102699562,2193.826848985383,3710410.701788009,1899.5023065408684,3374622.102699562,-0.0,0.0,-0.0,0.0,294.3245424445147,335788.5990884128,810,53000.0,1239.904194285078,1899.5023065408684,1872705.7562572479,1050.0,850500.0,1470.39403379856,876495.0801557181,-1119.141865452912,191093.90462782668,0.0,0.0,1570.3860556262323,801337.0550454376,-22.135917431011887,3779.7164282647836,-1899.5023065408684,-3833562.8849389637,true,true,15.28901605,7820.734051470003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,811,0.905636507307942,666.0,0.0,1929.2735748012858,879.2735748012858,1050.0,1926.3767676319144,2.8968071693713,4562839.975362813,3711289.9753628103,851550.0,5658058.545094202,-1095218.569731446,0.95,0.25,22.0,811,0.0,0.1,0.0,0.0,1050.0,851550.0,13125.0,10644375.0,13125.0,10644375.0,true,811,0.844002050952464,53000.0,1239.904194285078,0.0,742.10870048059,3375364.2114000428,879.2735748012858,3711289.9753628103,742.10870048059,3375364.2114000428,-0.0,0.0,-0.0,0.0,137.16487432069584,335925.7639627335,811,53000.0,1239.904194285078,742.10870048059,1873447.8649577284,1050.0,851550.0,1451.1594743774526,877946.2396300955,-2228.4812781071555,188865.42334971952,0.0,0.0,1563.5084527631097,802900.5634982007,-44.077948552816906,3735.6384797119667,-742.10870048059,-3834304.9936394445,true,true,15.1996066,7835.933658070003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,812,0.9056340432305049,666.0,0.0,4430.90404747462,3380.90404747462,1050.0,4424.251038394327,6.653009080292222,4567270.879410287,3714670.879410285,852600.0,5662482.796132596,-1095211.9167223657,0.95,0.25,22.0,812,0.0,0.1,0.0,0.0,1050.0,852600.0,13125.0,10657500.0,13125.0,10657500.0,true,812,0.8865538389109066,53000.0,1239.904194285078,0.0,2997.353462278046,3378361.5648623207,3380.90404747462,3714670.879410285,2997.353462278046,3378361.5648623207,-0.0,0.0,-0.0,0.0,383.5505851965736,336309.3145479301,812,53000.0,1239.904194285078,2997.353462278046,1876445.2184200066,1050.0,852600.0,1438.4300782612909,879384.6697083568,0.0,188865.42334971952,0.0,0.0,1558.9233840167553,804459.4868822175,0.0,3735.6384797119667,-2997.353462278046,-3837302.3471017224,true,true,15.1996066,7851.133264670003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,813,0.9056322652201046,666.0,0.0,3197.2183017837324,2147.2183017837324,1050.0,3192.417673702976,4.800628080756355,4570468.097712071,3716818.097712069,853650.0,5665675.2138062995,-1095207.116094285,0.95,0.25,22.0,813,0.0,0.1,0.0,0.0,1050.0,853650.0,13125.0,10670625.0,13125.0,10670625.0,true,813,0.8650460905178567,53000.0,1239.904194285078,0.0,1857.4427974464093,3380219.0076597673,2147.2183017837324,3716818.097712069,1857.4427974464093,3380219.0076597673,-0.0,0.0,-0.0,0.0,289.7755043373231,336599.0900522674,813,53000.0,1239.904194285078,1857.4427974464093,1878302.661217453,1050.0,853650.0,1432.0933903444643,880816.7630987013,-1109.3394111923362,187756.08393852718,0.0,0.0,1556.6308493871697,806016.1177316046,-21.942031092888573,3713.696448619078,-1857.4427974464093,-3839159.789899169,true,true,15.15490187,7866.288166540003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,814,0.9056318749128304,666.0,0.0,701.8505406035231,-348.14945939647686,1050.0,700.7967109629773,1.0538296405458305,4571169.948252674,3716469.9482526723,854700.0,5666376.010517263,-1095206.0622646443,0.95,0.25,22.0,814,0.0,0.1,0.0,0.0,1050.0,854700.0,13125.0,10683750.0,13125.0,10683750.0,true,814,0.83,53000.0,1239.904194285078,0.0,-419.45717999575527,3379799.5504797716,-348.14945939647686,3716469.9482526723,-419.45717999575527,3379799.5504797716,-0.0,0.0,-0.0,0.0,71.30772059927841,336670.3977728667,814,53000.0,1239.904194285078,-419.45717999575527,1877883.2040374572,1050.0,854700.0,1406.9327400520265,882223.6958387533,-3308.412331001589,184447.67160752558,0.0,0.0,1547.4607118944616,807563.578443499,-65.43830094065454,3648.2581476784235,-419.45717999575527,-3839579.2470791647,true,true,15.0207877,7881.308954240003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,815,0.9056318633014864,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4571190.827771418,3715440.827771416,855750.0,5666396.858685377,-1095206.0309140156,0.95,0.25,22.0,815,0.0,0.1,0.0,0.0,1050.0,855750.0,13125.0,10696875.0,13125.0,10696875.0,true,815,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3378559.6462854864,-1029.1204812566145,3715440.827771416,-1239.904194285078,3378559.6462854864,-0.0,0.0,-0.0,0.0,210.78371302846335,336881.1814858952,815,53000.0,1239.904194285078,-2669.821315215935,1875213.3827222413,1050.0,855750.0,1357.4990032213575,883581.1948419746,-5448.669522421909,178999.00208510368,0.0,0.0,1529.1204369090449,809092.6988804081,-107.7712329244278,3540.4869147539957,-1239.904194285078,-3840819.15127345,true,true,14.79726407,7896.106218310003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,816,0.9056301608533313,666.0,0.0,3061.3422725218043,2011.3422725218045,1050.0,3056.7456625030027,4.596610018801508,4574252.17004394,3717452.170043938,856800.0,5669453.60434788,-1095201.4343039969,0.95,0.25,22.0,816,0.0,0.1,0.0,0.0,1050.0,856800.0,13125.0,10710000.0,13125.0,10710000.0,true,816,0.8627408910255239,53000.0,1239.904194285078,0.0,1735.2672243527636,3380294.913509839,2011.3422725218045,3717452.170043938,1735.2672243527636,3380294.913509839,-0.0,0.0,-0.0,0.0,276.0750481690409,337157.25653406425,816,53000.0,1239.904194285078,1735.2672243527636,1876948.6499465941,1050.0,856800.0,1321.1934019466028,884902.3882439212,-1079.9310558181548,177919.07102928552,0.0,0.0,1515.3652306699826,810608.064111078,-21.36035244566682,3519.126562308329,-1735.2672243527636,-3842554.4184978027,true,true,14.75255935,7910.858777660003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,817,0.9056301492419873,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4574273.049562683,3716423.0495626815,857850.0,5669474.452515994,-1095201.4029533681,0.95,0.25,22.0,817,0.0,0.1,0.0,0.0,1050.0,857850.0,13125.0,10723125.0,13125.0,10723125.0,true,817,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3379055.009315554,-1029.1204812566145,3716423.0495626815,-1239.904194285078,3379055.009315554,-0.0,0.0,-0.0,0.0,210.78371302846335,337368.0402470927,817,53000.0,1239.904194285078,-2669.3238238223958,1874279.3261227717,1050.0,857850.0,1285.540957125884,886187.929201047,-5350.642485178363,172568.42854410716,0.0,0.0,1501.61002443092,812109.674135509,-105.83232020083679,3413.294242107492,-1239.904194285078,-3843794.322692088,true,true,14.52903572,7925.3878133800035,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,818,0.9056301376306433,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4574293.929081427,3715393.929081425,858900.0,5669495.300684108,-1095201.3716027394,0.95,0.25,22.0,818,0.0,0.1,0.0,0.0,1050.0,858900.0,13125.0,10736250.0,13125.0,10736250.0,true,818,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3377815.105121269,-1029.1204812566145,3715393.929081425,-1239.904194285078,3377815.105121269,-0.0,0.0,-0.0,0.0,210.78371302846335,337578.8239601212,818,53000.0,1239.904194285078,-2666.9295946771717,1871612.3965280945,1050.0,858900.0,1227.5555703462148,887415.4847713932,-5268.953285648019,167299.47525845913,0.0,0.0,1478.6846801863321,813588.3588156953,-104.21655956169928,3309.077682545793,-1239.904194285078,-3845034.226886373,true,true,14.30551209,7939.693325470003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,819,0.9056285231146544,666.0,0.0,2903.222651172007,1853.2226511720069,1050.0,2898.863458002079,4.359193169927938,4577197.151732599,3717247.151732597,859950.0,5672394.16414211,-1095197.0124095695,0.95,0.25,22.0,819,0.0,0.1,0.0,0.0,1050.0,859950.0,13125.0,10749375.0,13125.0,10749375.0,true,819,0.8600737383703024,53000.0,1239.904194285078,0.0,1593.9081336260308,3379409.013254895,1853.2226511720069,3717247.151732597,1593.9081336260308,3379409.013254895,-0.0,0.0,-0.0,0.0,259.31451754597606,337838.1384776672,819,53000.0,1239.904194285078,1593.9081336260308,1873206.3046617205,1050.0,859950.0,1193.6158908347595,888609.100662228,-1043.9878132874587,166255.48744517166,0.0,0.0,1464.9294739472698,815053.2882896425,-20.649417868539672,3288.428264677253,-1593.9081336260308,-3846628.135019999,true,true,14.26080737,7953.954132840004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,820,0.905628191594141,666.0,0.0,596.1401870797251,-453.85981292027486,1050.0,595.2450816937195,0.8951053860055933,4577793.291919679,3716793.2919196766,861000.0,5672989.409223804,-1095196.1173041835,0.95,0.25,22.0,820,0.0,0.1,0.0,0.0,1050.0,861000.0,13125.0,10762500.0,13125.0,10762500.0,true,820,0.83,53000.0,1239.904194285078,0.0,-546.8190517111746,3378862.1942031835,-453.85981292027486,3716793.2919196766,-546.8190517111746,3378862.1942031835,-0.0,0.0,-0.0,0.0,92.95923879089969,337931.0977164581,820,53000.0,1239.904194285078,-546.8190517111746,1872659.4856100094,1050.0,861000.0,1171.3405913081367,889780.441253536,-3112.358499180617,163143.12894599105,0.0,0.0,1455.7593364545612,816509.0476260971,-61.56048029325549,3226.867784383998,-546.8190517111746,-3847174.9540717104,true,true,14.12669319,7968.080826030004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,821,0.9056266078630345,666.0,0.0,2847.8652757468844,1797.8652757468847,1050.0,2843.5892017592764,4.276073987607934,4580641.1571954265,3718591.1571954233,862050.0,5675832.998425564,-1095191.841230196,0.95,0.25,22.0,821,0.0,0.1,0.0,0.0,1050.0,862050.0,13125.0,10775625.0,13125.0,10775625.0,true,821,0.8591438664990482,53000.0,1239.904194285078,0.0,1544.624924449556,3380406.8191276332,1797.8652757468847,3718591.1571954233,1544.624924449556,3380406.8191276332,-0.0,0.0,-0.0,0.0,253.24035129732874,338184.3380677554,821,53000.0,1239.904194285078,1544.624924449556,1874204.110534459,1050.0,862050.0,1149.3441651036044,890929.7854186397,-1030.9175434091444,162112.21140258192,0.0,0.0,1446.589198961853,817955.636825059,-20.390896206757116,3206.4768881772407,-1544.624924449556,-3848719.57899616,true,true,14.08198847,7982.162814500004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,822,0.9056265962516905,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4580662.03671417,3717562.036714167,863100.0,5675853.846593678,-1095191.8098795672,0.95,0.25,22.0,822,0.0,0.1,0.0,0.0,1050.0,863100.0,13125.0,10788750.0,13125.0,10788750.0,true,822,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3379166.914933348,-1029.1204812566145,3717562.036714167,-1239.904194285078,3379166.914933348,-0.0,0.0,-0.0,0.0,210.78371302846335,338395.12178078387,822,53000.0,1239.904194285078,-6792.6027115408915,1867411.507822918,1050.0,863100.0,1095.5616421486131,892025.3470607883,-9131.21848930904,152980.99291327287,0.0,0.0,1423.6638552300822,819379.300680289,-180.60971961054724,3025.867168566693,-1239.904194285078,-3849959.483190445,true,true,13.67964594,7995.842460440004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,823,0.9056265846403465,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4580682.916232914,3716532.9162329105,864150.0,5675874.694761792,-1095191.7785289385,0.95,0.25,22.0,823,0.0,0.1,0.0,0.0,1050.0,864150.0,13125.0,10801875.0,13125.0,10801875.0,true,823,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3377927.010739063,-1029.1204812566145,3716532.9162329105,-1239.904194285078,3377927.010739063,-0.0,0.0,-0.0,0.0,210.78371302846335,338605.90549381234,823,53000.0,1239.904194285078,-3650.5853584542074,1863760.9224644639,1050.0,864150.0,1018.0752749214362,893043.4223357098,-5940.43836354963,147040.55454972325,0.0,0.0,1389.2758393760175,820768.5765196651,-117.49810920203164,2908.3690593646616,-1239.904194285078,-3851199.3873847304,true,true,13.41141759,8009.253878030005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,824,0.9056251178165365,666.0,0.0,2637.6425750409207,1587.642575040921,1050.0,2633.6821507540726,3.9604242868482293,4583320.558807954,3718120.5588079514,865200.0,5678508.376912546,-1095187.8181046518,0.95,0.25,22.0,824,0.0,0.1,0.0,0.0,1050.0,865200.0,13125.0,10815000.0,13125.0,10815000.0,true,824,0.8556308678163091,53000.0,1239.904194285078,0.0,1358.435994264383,3379285.446733327,1587.642575040921,3718120.5588079514,1358.435994264383,3379285.446733327,-0.0,0.0,-0.0,0.0,229.20658077653798,338835.1120745889,824,53000.0,1239.904194285078,1358.435994264383,1865119.3584587283,1050.0,865200.0,983.2013920812159,894026.623727791,-978.6366824418752,146061.9178672814,0.0,0.0,1373.2280985073694,822141.8046181725,-19.356813882327103,2889.0122454823345,-1358.435994264383,-3852557.8233789946,true,true,13.36671286,8022.620590890005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,825,0.9056230396845518,666.0,0.0,3736.8969348263427,2686.8969348263427,1050.0,3731.2859784677444,5.610956358598112,4587057.45574278,3720807.455742778,866250.0,5682239.6628910145,-1095182.2071482933,0.95,0.25,22.0,825,0.0,0.1,0.0,0.0,1050.0,866250.0,13125.0,10828125.0,13125.0,10828125.0,true,825,0.8743249237284579,53000.0,1239.904194285078,0.0,2349.2209576082696,3381634.6676909355,2686.8969348263427,3720807.455742778,2349.2209576082696,3381634.6676909355,-0.0,0.0,-0.0,0.0,337.67597721807306,339172.788051807,825,53000.0,1239.904194285078,2349.2209576082696,1867468.5794163365,1050.0,866250.0,978.2853937304856,895004.9091215215,0.0,146061.9178672814,0.0,0.0,1370.9355638777838,823512.7401820503,0.0,2889.0122454823345,-2349.2209576082696,-3854907.044336603,true,true,13.36671286,8035.987303750005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,826,0.9056209615525671,666.0,0.0,3736.8969348263427,2686.8969348263427,1050.0,3731.2859784677444,5.610956358598112,4590794.352677606,3723494.352677604,867300.0,5685970.948869483,-1095176.5961919348,0.95,0.25,22.0,826,0.0,0.1,0.0,0.0,1050.0,867300.0,13125.0,10841250.0,13125.0,10841250.0,true,826,0.8743249237284579,53000.0,1239.904194285078,0.0,2349.2209576082696,3383983.888648544,2686.8969348263427,3723494.352677604,2349.2209576082696,3383983.888648544,-0.0,0.0,-0.0,0.0,337.67597721807306,339510.46402902505,826,53000.0,1239.904194285078,2349.2209576082696,1869817.8003739447,1050.0,867300.0,978.2853937304856,895983.194515252,0.0,146061.9178672814,0.0,0.0,1370.9355638777838,824883.6757459281,0.0,2889.0122454823345,-2349.2209576082696,-3857256.2652942115,true,true,13.36671286,8049.354016610005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,827,0.9056188834205824,666.0,0.0,3736.8969348263427,2686.8969348263427,1050.0,3731.2859784677444,5.610956358598112,4594531.249612432,3726181.2496124306,868350.0,5689702.234847951,-1095170.9852355763,0.95,0.25,22.0,827,0.0,0.1,0.0,0.0,1050.0,868350.0,13125.0,10854375.0,13125.0,10854375.0,true,827,0.8743249237284579,53000.0,1239.904194285078,0.0,2349.2209576082696,3386333.1096061524,2686.8969348263427,3726181.2496124306,2349.2209576082696,3386333.1096061524,-0.0,0.0,-0.0,0.0,337.67597721807306,339848.14000624313,827,53000.0,1239.904194285078,2349.2209576082696,1872167.0213315529,1050.0,868350.0,978.2853937304856,896961.4799089825,0.0,146061.9178672814,0.0,0.0,1370.9355638777838,826254.6113098059,0.0,2889.0122454823345,-2349.2209576082696,-3859605.48625182,true,true,13.36671286,8062.720729470005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,828,0.9056185978145807,666.0,0.0,513.576712400579,-536.423287599421,1050.0,512.8055761957734,0.7711362048056742,4595044.826324833,3725644.826324831,869400.0,5690215.040424147,-1095170.2140993716,0.95,0.25,22.0,828,0.0,0.1,0.0,0.0,1050.0,869400.0,13125.0,10867500.0,13125.0,10867500.0,true,828,0.83,53000.0,1239.904194285078,0.0,-646.2931175896639,3385686.8164885626,-536.423287599421,3725644.826324831,-646.2931175896639,3385686.8164885626,-0.0,0.0,-0.0,0.0,109.86982999024292,339958.0098362334,828,53000.0,1239.904194285078,-646.2931175896639,1871520.7282139633,1050.0,869400.0,963.6357750852009,897925.1156840677,-2916.3042032239796,143145.6136640574,0.0,0.0,1364.057961014661,827618.6692708206,-57.68265046554631,2831.329595016788,-646.2931175896639,-3860251.7793694097,true,true,13.23259869,8075.953328160004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,829,0.9056171586836564,666.0,0.0,2587.8452279351623,1537.845227935162,1050.0,2583.9595744397643,3.8856534953981416,4597632.671552768,3727182.6715527666,870450.0,5692798.999998586,-1095166.3284458763,0.95,0.25,22.0,829,0.0,0.1,0.0,0.0,1050.0,870450.0,13125.0,10880625.0,13125.0,10880625.0,true,829,0.854802916722777,53000.0,1239.904194285078,0.0,1314.5545863071802,3387001.3710748698,1537.845227935162,3727182.6715527666,1314.5545863071802,3387001.3710748698,-0.0,0.0,-0.0,0.0,223.2906416279818,340181.30047786137,829,53000.0,1239.904194285078,1314.5545863071802,1872835.2828002705,1050.0,870450.0,944.3314645878538,898869.4471486555,-965.5664096399094,142180.0472544175,0.0,0.0,1354.8878235219527,828973.5570943425,-19.098292162716852,2812.231302854071,-1314.5545863071802,-3861566.333955717,true,true,13.18789396,8089.141222120004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,830,0.9056151150589763,666.0,0.0,3674.8458998917026,2624.8458998917026,1050.0,3669.328113255229,5.517786636474028,4601307.51745266,3729807.517452658,871500.0,5696468.328111841,-1095160.8106592398,0.95,0.25,22.0,830,0.0,0.1,0.0,0.0,1050.0,871500.0,13125.0,10893750.0,13125.0,10893750.0,true,830,0.8732479490302032,53000.0,1239.904194285078,0.0,2292.141298600767,3389293.5123734707,2624.8458998917026,3729807.517452658,2292.141298600767,3389293.5123734707,-0.0,0.0,-0.0,0.0,332.70460129093544,340514.0050791523,830,53000.0,1239.904194285078,2292.141298600767,1875127.4240988712,1050.0,871500.0,939.5460097084001,899808.993158364,0.0,142180.0472544175,0.0,0.0,1352.595288892367,830326.1523832349,0.0,2812.231302854071,-2292.141298600767,-3863858.4752543177,true,true,13.18789396,8102.3291160800045,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,831,0.9056143191432808,666.0,0.0,1431.2156035561932,381.21560355619323,1050.0,1429.0666311784812,2.148972377712002,4602738.7330562165,3730188.733056214,872550.0,5697897.39474302,-1095158.6616868621,0.95,0.25,22.0,831,0.0,0.1,0.0,0.0,1050.0,872550.0,13125.0,10906875.0,13125.0,10906875.0,true,831,0.8360132318635058,53000.0,1239.904194285078,0.0,318.7012887658101,3389612.2136622365,381.21560355619323,3730188.733056214,318.7012887658101,3389612.2136622365,-0.0,0.0,-0.0,0.0,62.51431479038314,340576.51939394267,831,53000.0,1239.904194285078,318.7012887658101,1875446.125387637,1050.0,872550.0,930.0236568196723,900739.0168151837,-1921.3298994217866,140258.71735499572,0.0,0.0,1348.0102201460131,831674.162603381,-38.00268877808864,2774.2286140759825,-318.7012887658101,-3864177.1765430835,true,true,13.09848451,8115.427600590005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,832,0.9056143075319368,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4602759.61257496,3729159.612574958,873600.0,5697918.242911134,-1095158.6303362334,0.95,0.25,22.0,832,0.0,0.1,0.0,0.0,1050.0,873600.0,13125.0,10920000.0,13125.0,10920000.0,true,832,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3388372.3094679513,-1029.1204812566145,3729159.612574958,-1239.904194285078,3388372.3094679513,-0.0,0.0,-0.0,0.0,210.78371302846335,340787.30310697114,832,53000.0,1239.904194285078,-1642.5807151312893,1873803.5446725057,1050.0,873600.0,901.8430682691279,901640.8598834528,-3803.4489848232806,136455.26837017245,0.0,0.0,1334.2550139069506,833008.417617288,-75.22981248408696,2698.9988015918957,-1239.904194285078,-3865417.0807373687,true,true,12.91966561,8128.347266200005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,833,0.9056142959205928,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4602780.492093704,3728130.4920937014,874650.0,5697939.091079248,-1095158.5989856047,0.95,0.25,22.0,833,0.0,0.1,0.0,0.0,1050.0,874650.0,13125.0,10933125.0,13125.0,10933125.0,true,833,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3387132.405273666,-1029.1204812566145,3728130.4920937014,-1239.904194285078,3387132.405273666,-0.0,0.0,-0.0,0.0,210.78371302846335,340998.0868199996,833,53000.0,1239.904194285078,-4498.693207220636,1869304.851465285,1050.0,874650.0,851.6680246985762,902492.5279081514,-6530.23446485214,129925.0339053203,0.0,0.0,1309.037135545594,834317.4547528336,-129.16390261266602,2569.83489897923,-1239.904194285078,-3866656.984931654,true,true,12.60673253,8140.953998730005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,834,0.9056142843092488,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4602801.371612447,3727101.371612445,875700.0,5697959.939247362,-1095158.567634976,0.95,0.25,22.0,834,0.0,0.1,0.0,0.0,1050.0,875700.0,13125.0,10946250.0,13125.0,10946250.0,true,834,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3385892.501079381,-1029.1204812566145,3727101.371612445,-1239.904194285078,3385892.501079381,-0.0,0.0,-0.0,0.0,210.78371302846335,341208.8705330281,834,53000.0,1239.904194285078,-2576.12705692843,1866728.7244083567,1050.0,875700.0,799.0932117219346,903291.6211198734,-4566.425977454943,125358.60792786536,0.0,0.0,1281.5267230674692,835598.9814759011,-90.32101426289123,2479.5138847163385,-1239.904194285078,-3867896.889125939,true,true,12.38320891,8153.337207640005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,835,0.9056142726979048,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4602822.251131191,3726072.2511311886,876750.0,5697980.7874154765,-1095158.5362843473,0.95,0.25,22.0,835,0.0,0.1,0.0,0.0,1050.0,876750.0,13125.0,10959375.0,13125.0,10959375.0,true,835,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3384652.596885096,-1029.1204812566145,3726072.2511311886,-1239.904194285078,3384652.596885096,-0.0,0.0,-0.0,0.0,210.78371302846335,341419.65424605657,835,53000.0,1239.904194285078,-4376.7495327927945,1862351.974875564,1050.0,876750.0,748.7278659634928,904040.3489858368,-6255.758762324325,119102.84916554103,0.0,0.0,1254.0163105893441,836852.9977864905,-123.73494702130634,2355.7789376950323,-1239.904194285078,-3869136.793320224,true,true,12.07027583,8165.407483470005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,836,0.9056142610865608,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4602843.1306499345,3725043.130649932,877800.0,5698001.635583591,-1095158.5049337186,0.95,0.25,22.0,836,0.0,0.1,0.0,0.0,1050.0,877800.0,13125.0,10972500.0,13125.0,10972500.0,true,836,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3383412.6926908107,-1029.1204812566145,3725043.130649932,-1239.904194285078,3383412.6926908107,-0.0,0.0,-0.0,0.0,210.78371302846335,341630.43795908504,836,53000.0,1239.904194285078,-11254.97780111864,1851096.9970744452,1050.0,877800.0,661.9724691954185,904702.3214550322,-12866.048531323639,106236.80063421739,0.0,0.0,1203.5805538666314,838056.578340357,-254.48229285705094,2101.296644837981,-1239.904194285078,-3870376.6975145093,true,true,11.39970495,8176.807188420005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,837,0.9056142494752168,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4602864.010168678,3724014.010168676,878850.0,5698022.483751705,-1095158.47358309,0.95,0.25,22.0,837,0.0,0.1,0.0,0.0,1050.0,878850.0,13125.0,10985625.0,13125.0,10985625.0,true,837,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3382172.7884965255,-1029.1204812566145,3724014.010168676,-1239.904194285078,3382172.7884965255,-0.0,0.0,-0.0,0.0,210.78371302846335,341841.2216721135,837,53000.0,1239.904194285078,-13082.22186954672,1838014.7752048986,1050.0,878850.0,544.8253740536853,905247.1468290859,-14468.790645404397,91768.00998881299,0.0,0.0,1127.926918782562,839184.5052591396,-286.1835169785708,1815.1131278594103,-1239.904194285078,-3871616.6017087945,true,true,10.59501989,8187.402208310005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,838,0.9056142378638729,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4602884.889687422,3722984.8896874194,879900.0,5698043.331919819,-1095158.4422324612,0.95,0.25,22.0,838,0.0,0.1,0.0,0.0,1050.0,879900.0,13125.0,10998750.0,13125.0,10998750.0,true,838,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3380932.8843022403,-1029.1204812566145,3722984.8896874194,-1239.904194285078,3380932.8843022403,-0.0,0.0,-0.0,0.0,210.78371302846335,342052.005385142,838,53000.0,1239.904194285078,-11459.608985918516,1826555.16621898,1050.0,879900.0,436.6270297280791,905683.7738588139,-12692.867352011108,79075.14263680189,0.0,0.0,1047.6882151572656,840232.1934742968,-251.05687879275285,1564.0562490666575,-1239.904194285078,-3872856.5059030796,true,true,9.835039564,8197.237247874005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,839,0.9056142262525289,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4602905.769206165,3721955.769206163,880950.0,5698064.180087933,-1095158.4108818325,0.95,0.25,22.0,839,0.0,0.1,0.0,0.0,1050.0,880950.0,13125.0,11011875.0,13125.0,11011875.0,true,839,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3379692.980107955,-1029.1204812566145,3721955.769206163,-1239.904194285078,3379692.980107955,-0.0,0.0,-0.0,0.0,210.78371302846335,342262.78909817047,839,53000.0,1239.904194285078,-9295.87576125854,1817259.2904577213,1050.0,880950.0,351.1792182146088,906034.9530770285,-10415.372619237913,68659.77001756398,0.0,0.0,974.3271149079087,841206.5205892047,-206.0094751431455,1358.046773923512,-1239.904194285078,-3874096.410097365,true,true,9.164468684,8206.401716558006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,840,0.9056142146411849,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4602926.648724909,3720926.6487249066,882000.0,5698085.0282560475,-1095158.3795312038,0.95,0.25,22.0,840,0.0,0.1,0.0,0.0,1050.0,882000.0,13125.0,11025000.0,13125.0,11025000.0,true,840,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3378453.07591367,-1029.1204812566145,3720926.6487249066,-1239.904194285078,3378453.07591367,-0.0,0.0,-0.0,0.0,210.78371302846335,342473.57281119894,840,53000.0,1239.904194285078,-7402.359433324552,1809856.9310243968,1050.0,882000.0,286.24211872968255,906321.1951957581,-8431.958896451059,60227.811121112914,0.0,0.0,910.1361520486968,842116.6567412534,-166.7788076518721,1191.26796627164,-1239.904194285078,-3875336.31429165,true,true,8.583307256,8214.985023814006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,841,0.9056128866054248,666.0,0.0,2388.073903743636,1338.0739037436358,1050.0,2384.4882071914685,3.585696552167622,4605314.722628652,3722264.7226286503,883050.0,5700469.516463239,-1095154.7938346516,0.95,0.25,22.0,841,0.0,0.1,0.0,0.0,1050.0,883050.0,13125.0,11038125.0,13125.0,11038125.0,true,841,0.8514974822664945,53000.0,1239.904194285078,0.0,1139.3665601242055,3379592.4424737943,1338.0739037436358,3722264.7226286503,1139.3665601242055,3379592.4424737943,-0.0,0.0,-0.0,0.0,198.70734361943028,342672.2801548184,841,53000.0,1239.904194285078,1139.3665601242055,1810996.297584521,1050.0,883050.0,259.0333550806557,906580.2285508388,0.0,60227.811121112914,0.0,0.0,880.3332050435497,842996.989946297,0.0,1191.26796627164,-1139.3665601242055,-3876475.6808517743,true,true,8.583307256,8223.568331070006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,842,0.9056080126460718,666.0,0.0,8764.353708480901,7714.353708480901,1050.0,8751.194018227927,13.159690252974327,4614079.076337133,3729979.076337131,884100.0,5709220.710481467,-1095141.6341443986,0.95,0.25,22.0,842,0.0,0.1,0.0,0.0,1050.0,884100.0,13125.0,11051250.0,13125.0,11051250.0,true,842,0.9166854171599169,53000.0,1239.904194285078,0.0,7071.635547377967,3386664.0780211724,7714.353708480901,3729979.076337131,7071.635547377967,3386664.0780211724,-0.0,0.0,-0.0,0.0,642.7181611029346,343314.9983159213,842,53000.0,1239.904194285078,7071.635547377967,1818067.9331318988,1050.0,884100.0,277.67684659694606,906857.9053974358,5778.693782467513,66006.50490358043,0.0,0.0,900.9660145047068,843897.9559608017,114.29890380880072,1305.5668700804408,-7071.635547377967,-3883547.3163991524,true,true,8.985649783,8232.553980853007,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,843,0.9056033460766979,666.0,0.0,8391.425048166293,7341.425048166294,1050.0,8378.825310856733,12.599737309558998,4622470.501385299,3737320.5013852976,885150.0,5717599.535792324,-1095129.034407089,0.95,0.25,22.0,843,0.0,0.1,0.0,0.0,1050.0,885150.0,13125.0,11064375.0,13125.0,11064375.0,true,843,0.9153586293182342,53000.0,1239.904194285078,0.0,6720.03676933205,3393384.1147905043,7341.425048166294,3737320.5013852976,6720.03676933205,3393384.1147905043,-0.0,0.0,-0.0,0.0,621.3882788342435,343936.3865947555,843,53000.0,1239.904194285078,6720.03676933205,1824787.969901231,1050.0,885150.0,315.29246190543097,907173.1978593412,5358.811313912282,71365.31621749271,0.0,0.0,939.939099053844,844837.8950598555,105.99389446049375,1411.5607645409345,-6720.03676933205,-3890267.3531684843,true,true,9.343287585,8241.897268438006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,844,0.9055997903305321,666.0,0.0,6393.942755346029,5343.942755346029,1050.0,6384.342240698363,9.60051464766671,4628864.444140645,3742664.444140644,886200.0,5723983.878033022,-1095119.4338924414,0.95,0.25,22.0,844,0.0,0.1,0.0,0.0,1050.0,886200.0,13125.0,11077500.0,13125.0,11077500.0,true,844,0.9056583626996941,53000.0,1239.904194285078,0.0,4839.786446167577,3398223.901236672,5343.942755346029,3742664.444140644,4839.786446167577,3398223.901236672,-0.0,0.0,-0.0,0.0,504.1563091784519,344440.54290393397,844,53000.0,1239.904194285078,4839.786446167577,1829627.7563473985,1050.0,886200.0,346.24468827445764,907519.4425476156,3455.4530387526024,74820.76925624532,0.0,0.0,969.7420461102729,845807.6371059658,68.34667303024365,1479.9074375711782,-4839.786446167577,-3895107.139614652,true,true,9.566811212,8251.464079650006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,845,0.9055957244085134,666.0,0.0,7311.340973946973,6261.340973946973,1050.0,7300.362984496602,10.97798945037083,4636175.785114592,3748925.785114591,887250.0,5731284.241017519,-1095108.4559029911,0.95,0.25,22.0,845,0.0,0.1,0.0,0.0,1050.0,887250.0,13125.0,11090625.0,13125.0,11090625.0,true,845,0.9115375370954972,53000.0,1239.904194285078,0.0,5707.447330306745,3403931.3485669787,6261.340973946973,3748925.785114591,5707.447330306745,3403931.3485669787,-0.0,0.0,-0.0,0.0,553.8936436402273,344994.4365475742,845,53000.0,1239.904194285078,5707.447330306745,1835335.2036777053,1050.0,887250.0,373.9652138343442,907893.4077614499,4254.3733805565735,79075.14263680189,0.0,0.0,994.9599244203476,846802.5970303861,84.14881149547949,1564.0562490666578,-5707.447330306745,-3900814.5869449587,true,true,9.835039564,8261.299119214007,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,846,0.9055915517298376,666.0,0.0,7503.310794867515,6453.310794867515,1050.0,7492.044562442789,11.266232424725999,4643679.0959094595,3755379.0959094586,888300.0,5738776.285579962,-1095097.1896705665,0.95,0.25,22.0,846,0.0,0.1,0.0,0.0,1050.0,888300.0,13125.0,11103750.0,13125.0,11103750.0,true,846,0.9122143498533652,53000.0,1239.904194285078,0.0,5886.802711141774,3409818.1512781205,6453.310794867515,3755379.0959094586,5886.802711141774,3409818.1512781205,-0.0,0.0,-0.0,0.0,566.508083725741,345560.94463129994,846,53000.0,1239.904194285078,5886.802711141774,1841222.006388847,1050.0,888300.0,405.85097533255373,908299.2587367825,4372.005890447125,83447.14852724901,0.0,0.0,1022.4703373087261,847825.0673676948,86.4755080533695,1650.5317571200274,-5886.802711141774,-3906701.3896561004,true,true,10.10326792,8271.402387134007,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,847,0.9055872714059627,666.0,0.0,7696.878391847302,6646.878391847302,1050.0,7685.321517385069,11.556874462233186,4651375.9743013065,3762025.974301306,889350.0,5746461.607097346,-1095085.6327961043,0.95,0.25,22.0,847,0.0,0.1,0.0,0.0,1050.0,889350.0,13125.0,11116875.0,13125.0,11116875.0,true,847,0.9128978141696951,53000.0,1239.904194285078,0.0,6067.92075496918,3415886.0720330896,6646.878391847302,3762025.974301306,6067.92075496918,3415886.0720330896,-0.0,0.0,-0.0,0.0,578.9576368781218,346139.90226817806,847,53000.0,1239.904194285078,6067.92075496918,1847289.9271438161,1050.0,889350.0,439.49956748698776,908738.7583042695,4489.638236026365,87936.78676327538,0.0,0.0,1049.9807500945415,848875.0481177893,88.8022013612857,1739.333958481313,-6067.92075496918,-3912769.3104110695,true,true,10.37149627,8281.773883404006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,848,0.9055819379336089,666.0,0.0,9590.649986692351,8540.649986692351,1050.0,9576.249611336958,14.40037535539392,4660966.624287999,3770566.6242879983,890400.0,5756037.856708683,-1095071.2324207488,0.95,0.25,22.0,848,0.0,0.1,0.0,0.0,1050.0,890400.0,13125.0,11130000.0,13125.0,11130000.0,true,848,0.9196389212862068,53000.0,1239.904194285078,0.0,7854.314140844811,3423740.386173934,8540.649986692351,3770566.6242879983,7854.314140844811,3423740.386173934,-0.0,0.0,-0.0,0.0,686.3358458475404,346826.2381140256,848,53000.0,1239.904194285078,7854.314140844811,1855144.241284661,1050.0,890400.0,481.0475572442743,909219.8058615138,6169.16811346339,94105.95487673876,0.0,0.0,1082.0762313190207,849957.1243491083,122.02223881812587,1861.356197299439,-7854.314140844811,-3920623.624551914,true,true,10.72913407,8292.503017474006,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,849,0.9055754601814536,666.0,0.0,11648.293925598797,10598.293925598797,1050.0,11630.803994779579,17.489930819217413,4672614.918213598,3781164.918213597,891450.0,5767668.660703463,-1095053.7424899295,0.95,0.25,22.0,849,0.0,0.1,0.0,0.0,1050.0,891450.0,13125.0,11143125.0,13125.0,11143125.0,true,849,0.9270771161063848,53000.0,1239.904194285078,0.0,9825.435768191948,3433565.8219421264,10598.293925598797,3781164.918213597,9825.435768191948,3433565.8219421264,-0.0,0.0,-0.0,0.0,772.8581574068485,347599.09627143247,849,53000.0,1239.904194285078,9825.435768191948,1864969.677052853,1050.0,891450.0,538.2081346107577,909758.0139961246,8005.5412469816665,102111.49612372043,0.0,0.0,1123.341850036208,851080.4661991445,158.34453656331732,2019.7007338627564,-9825.435768191948,-3930449.0603201063,true,true,11.17618132,8303.679198794005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,850,0.9055687250835872,666.0,0.0,12111.052983324256,11061.052983324256,1050.0,12092.86821908503,18.18476423922561,4684725.9711969225,3792225.971196921,892500.0,5779761.528922548,-1095035.5577256903,0.95,0.25,22.0,850,0.0,0.1,0.0,0.0,1050.0,892500.0,13125.0,11156250.0,13125.0,11156250.0,true,850,0.9287665510580861,53000.0,1239.904194285078,0.0,10273.136030392823,3443838.957972519,11061.052983324256,3792225.971196921,10273.136030392823,3443838.957972519,-0.0,0.0,-0.0,0.0,787.9169529314331,348387.0132243639,850,53000.0,1239.904194285078,10273.136030392823,1875242.8130832457,1050.0,892500.0,606.8376892664821,910364.8516853912,8332.29822052419,110443.79434424461,0.0,0.0,1169.1925380125667,852249.658737157,164.8075825895851,2184.5083164523417,-10273.136030392823,-3940722.196350499,true,true,11.62322858,8315.302427374005,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,851,0.9055638168477704,666.0,0.0,8825.989645765145,7775.989645765144,1050.0,8812.737409059791,13.25223670535307,4693551.960842688,3800001.9608426862,893550.0,5788574.2663316075,-1095022.305488985,0.95,0.25,22.0,851,0.0,0.1,0.0,0.0,1050.0,893550.0,13125.0,11169375.0,13125.0,11169375.0,true,851,0.9169050730342019,53000.0,1239.904194285078,0.0,7129.844354063487,3450968.8023265824,7775.989645765144,3800001.9608426862,7129.844354063487,3450968.8023265824,-0.0,0.0,-0.0,0.0,646.1452917016568,349033.15851606557,851,53000.0,1239.904194285078,7129.844354063487,1882372.6574373092,1050.0,893550.0,665.7623791362201,911030.6140645273,5156.222078757523,115600.01642300213,0.0,0.0,1205.873088496217,853455.5318256533,101.98680767352708,2286.4951241258686,-7129.844354063487,-3947852.0407045623,true,true,11.89145693,8327.193884304004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,852,0.9055620074195156,666.0,0.0,3253.7138876902545,2203.7138876902545,1050.0,3248.8284314024313,4.885456287823205,4696805.674730378,3802205.6747303763,894600.0,5791823.09476301,-1095017.4200326973,0.95,0.25,22.0,852,0.0,0.1,0.0,0.0,1050.0,894600.0,13125.0,11182500.0,13125.0,11182500.0,true,852,0.866008194038809,53000.0,1239.904194285078,0.0,1908.4342840568802,3452877.2366106394,2203.7138876902545,3802205.6747303763,1908.4342840568802,3452877.2366106394,-0.0,0.0,-0.0,0.0,295.27960363337434,349328.43811969896,852,53000.0,1239.904194285078,1908.4342840568802,1884281.091721366,1050.0,894600.0,688.8059893216006,911719.4200538489,0.0,115600.01642300213,0.0,0.0,1219.6282947352795,854675.1601203886,0.0,2286.4951241258686,-1908.4342840568802,-3949760.4749886193,true,true,11.89145693,8339.085341234004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,853,0.9055591241247962,666.0,0.0,5184.740564373385,4134.740564373385,1050.0,5176.9556686310825,7.784895742302379,4701990.4152947515,3806340.4152947497,895650.0,5797000.050431641,-1095009.635136955,0.95,0.25,22.0,853,0.0,0.1,0.0,0.0,1050.0,895650.0,13125.0,11195625.0,13125.0,11195625.0,true,853,0.8949076506069101,53000.0,1239.904194285078,0.0,3700.2109643324757,3456577.4475749717,4134.740564373385,3806340.4152947497,3700.2109643324757,3456577.4475749717,-0.0,0.0,-0.0,0.0,434.5296000409089,349762.9677197399,853,53000.0,1239.904194285078,3700.2109643324757,1887981.3026856985,1050.0,895650.0,696.603719312231,912416.0237731611,1744.8812355993773,117344.8976586015,0.0,0.0,1224.2133634816335,855899.3734838703,34.512645939233806,2321.0077700651022,-3700.2109643324757,-3953460.6859529517,true,true,11.98086638,8351.066207614003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,854,0.9055562179849828,666.0,0.0,5225.820612633835,4175.820612633835,1050.0,5217.974035137388,7.846577496447199,4707216.235907385,3810516.2359073837,896700.0,5802218.024466778,-1095001.7885594585,0.95,0.25,22.0,854,0.0,0.1,0.0,0.0,1050.0,896700.0,13125.0,11208750.0,13125.0,11208750.0,true,854,0.8952686930400214,53000.0,1239.904194285078,0.0,3738.4814622422746,3460315.929037214,4175.820612633835,3810516.2359073837,3738.4814622422746,3460315.929037214,-0.0,0.0,-0.0,0.0,437.33915039156,350200.30687013146,854,53000.0,1239.904194285078,3738.4814622422746,1891719.7841479408,1050.0,896700.0,712.3752866984971,913128.3990598596,1757.9515069395056,119102.849165541,0.0,0.0,1233.383500974342,857132.7569848447,34.77116762993021,2355.7789376950323,-3738.4814622422746,-3957199.1674151937,true,true,12.07027583,8363.136483444003,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,855,0.9055532888776238,666.0,0.0,5267.120852936636,4217.120852936636,1050.0,5259.212263067362,7.908589869274228,4712483.356760322,3814733.3567603203,897750.0,5807477.236729845,-1094993.8799695892,0.95,0.25,22.0,855,0.0,0.1,0.0,0.0,1050.0,897750.0,13125.0,11221875.0,13125.0,11221875.0,true,855,0.8956319644710123,53000.0,1239.904194285078,0.0,3776.98823392731,3464092.917271141,4217.120852936636,3814733.3567603203,3776.98823392731,3464092.917271141,-0.0,0.0,-0.0,0.0,440.13261900932594,350640.4394891408,855,53000.0,1239.904194285078,3776.98823392731,1895496.7723818682,1050.0,897750.0,728.383127860046,913856.7821877196,1771.0217782795878,120873.87094382058,0.0,0.0,1242.5536384670502,858375.3106233118,35.02968932062587,2390.808627015658,-3776.98823392731,-3960976.155649121,true,true,12.15968528,8375.296168724002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,856,0.9055481512408711,666.0,0.0,9238.498408647043,8188.498408647042,1050.0,9224.62678941484,13.871619232202768,4721721.855168969,3822921.8551689675,898800.0,5816701.863519261,-1094980.008350357,0.95,0.25,22.0,856,0.0,0.1,0.0,0.0,1050.0,898800.0,13125.0,11235000.0,13125.0,11235000.0,true,856,0.9183778706893448,53000.0,1239.904194285078,0.0,7520.135732676359,3471613.0530038173,8188.498408647042,3822921.8551689675,7520.135732676359,3471613.0530038173,-0.0,0.0,-0.0,0.0,668.3626759706831,351308.8021651115,856,53000.0,1239.904194285078,7520.135732676359,1903016.9081145446,1050.0,898800.0,761.1146582383251,914617.896845958,5391.486962879511,126265.3579067001,0.0,0.0,1260.893913452467,859636.2045367643,106.64019810605566,2497.448825121714,-7520.135732676359,-3968496.2913817973,true,true,12.42791363,8387.724082354001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,857,0.9055445751630192,666.0,0.0,6430.503193204813,5380.503193204813,1050.0,6420.847783004806,9.655410200007227,4728152.358362175,3828302.3583621723,899850.0,5823122.7113022655,-1094970.352940157,0.95,0.25,22.0,857,0.0,0.1,0.0,0.0,1050.0,899850.0,13125.0,11248125.0,13125.0,11248125.0,true,857,0.9059874367593105,53000.0,1239.904194285078,0.0,4874.668296486914,3476487.7213003044,5380.503193204813,3828302.3583621723,4874.668296486914,3476487.7213003044,-0.0,0.0,-0.0,0.0,505.834896717899,351814.63706182945,857,53000.0,1239.904194285078,4874.668296486914,1907891.5764110314,1050.0,899850.0,799.0932117219346,915416.9900576799,2739.8557499071508,129005.21365660724,0.0,0.0,1281.5267230674692,860917.7312598318,54.19261179035939,2551.6414369120735,-4874.668296486914,-3973370.9596782844,true,true,12.56202781,8400.286110164001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,858,0.9055387001109332,666.0,0.0,10564.518661178292,9514.518661178292,1050.0,10548.656020545892,15.862640632399838,4738716.877023353,3837816.8770233504,900900.0,5833671.367322812,-1094954.4902995247,0.95,0.25,22.0,858,0.0,0.1,0.0,0.0,1050.0,900900.0,13125.0,11261250.0,13125.0,11261250.0,true,858,0.9231444337426699,53000.0,1239.904194285078,0.0,8783.2749418075,3485270.996242112,9514.518661178292,3837816.8770233504,8783.2749418075,3485270.996242112,-0.0,0.0,-0.0,0.0,731.243719370792,352545.88078120025,858,53000.0,1239.904194285078,8783.2749418075,1916674.851352839,1050.0,900900.0,842.7501077804774,916259.7401654604,6507.361281694131,135512.57493830138,0.0,0.0,1304.45206679924,862222.1833266311,128.71148553365165,2680.352922445725,-8783.2749418075,-3982154.234620092,true,true,12.87496088,8413.161071044002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,859,0.9055361391383193,666.0,0.0,4605.140954271156,3555.1409542711563,1050.0,4598.226328213692,6.914626057464199,4743322.017977624,3841372.0179776214,901950.0,5838269.593651026,-1094947.5756734672,0.95,0.25,22.0,859,0.0,0.1,0.0,0.0,1050.0,901950.0,13125.0,11274375.0,13125.0,11274375.0,true,859,0.889677933135901,53000.0,1239.904194285078,0.0,3162.9304562027573,3488433.926698315,3555.1409542711563,3841372.0179776214,3162.9304562027573,3488433.926698315,-0.0,0.0,-0.0,0.0,392.2104980683989,352938.0912792687,859,53000.0,1239.904194285078,3162.9304562027573,1919837.7818090417,1050.0,901950.0,878.7988034009026,917138.5389688613,942.6934318710272,136455.26837017242,0.0,0.0,1322.7923417846566,863544.9756684158,18.645879146171005,2698.998801591896,-3162.9304562027573,-3985317.165076295,true,true,12.91966561,8426.080736654001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,860,0.905533568204765,666.0,0.0,4623.052717353983,3573.052717353983,1050.0,4616.111196757355,6.941520596627602,4747945.070694978,3844945.0706949756,903000.0,5842885.704847783,-1094940.6341528706,0.95,0.25,22.0,860,0.0,0.1,0.0,0.0,1050.0,903000.0,13125.0,11287500.0,13125.0,11287500.0,true,860,0.8900001651757228,53000.0,1239.904194285078,0.0,3180.01750862661,3491613.9442069414,3573.052717353983,3844945.0706949756,3180.01750862661,3491613.9442069414,-0.0,0.0,-0.0,0.0,393.0352087273732,353331.126487996,860,53000.0,1239.904194285078,3180.01750862661,1923017.7993176684,1050.0,903000.0,887.968804235326,918026.5077730967,945.9607884695542,137401.22915864197,0.0,0.0,1327.3774105310106,864872.3530789468,18.71050539071915,2717.709306982615,-3180.01750862661,-3988497.1825849214,true,true,12.96437033,8439.045106984002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,861,0.9055309869175925,666.0,0.0,4641.670593712548,3591.6705937125485,1050.0,4634.701118346613,6.969475365934756,4752586.741288691,3848536.741288688,904050.0,5847520.405966129,-1094933.6646775047,0.95,0.25,22.0,861,0.0,0.1,0.0,0.0,1050.0,904050.0,13125.0,11300625.0,13125.0,11300625.0,true,861,0.8901619675713912,53000.0,1239.904194285078,0.0,3197.168562567469,3494811.1127695087,3591.6705937125485,3848536.741288688,3197.168562567469,3494811.1127695087,-0.0,0.0,-0.0,0.0,394.5020311450794,353725.6285191411,861,53000.0,1239.904194285078,3197.168562567469,1926214.967880236,1050.0,904050.0,897.20237501206,918923.7101481088,949.2285682720682,138350.45772691403,0.0,0.0,1331.962479277365,866204.3155582242,18.77514000597632,2736.4844469885916,-3197.168562567469,-3991694.3511474887,true,true,13.00907506,8452.054182044001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,862,0.9055295815548868,666.0,0.0,2527.1232173010185,1477.1232173010183,1050.0,2523.328737995762,3.7944793052567847,4755113.864505992,3850013.864505989,905100.0,5850043.734704125,-1094929.8701981995,0.95,0.25,22.0,862,0.0,0.1,0.0,0.0,1050.0,905100.0,13125.0,11313750.0,13125.0,11313750.0,true,862,0.8537954933209694,53000.0,1239.904194285078,0.0,1261.1611460113804,3496072.27391552,1477.1232173010183,3850013.864505989,1261.1611460113804,3496072.27391552,-0.0,0.0,-0.0,0.0,215.96207128963783,353941.5905904308,862,53000.0,1239.904194285078,1261.1611460113804,1927476.1290262474,1050.0,905100.0,897.20237501206,919820.9125231209,-949.2285682720682,137401.22915864197,0.0,0.0,1331.962479277365,867536.2780375016,-18.77514000597632,2717.709306982615,-1261.1611460113804,-3992955.5122935,true,true,12.96437033,8465.018552374002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,863,0.9055295699435428,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4755134.744024736,3848984.7440247326,906150.0,5850064.582872239,-1094929.8388475708,0.95,0.25,22.0,863,0.0,0.1,0.0,0.0,1050.0,906150.0,13125.0,11326875.0,13125.0,11326875.0,true,863,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3494832.369721235,-1029.1204812566145,3848984.7440247326,-1239.904194285078,3494832.369721235,-0.0,0.0,-0.0,0.0,210.78371302846335,354152.37430345925,863,53000.0,1239.904194285078,-6401.378211861085,1921074.7508143864,1050.0,906150.0,851.6680246985762,920672.5805478195,-8396.015502034714,129005.21365660726,0.0,0.0,1309.037135545594,868845.3151730472,-166.0678700705418,2551.6414369120735,-1239.904194285078,-3994195.416487785,true,true,12.56202781,8477.580580184002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,864,0.9055295583321988,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4755155.6235434795,3847955.623543476,907200.0,5850085.431040353,-1094929.807496942,0.95,0.25,22.0,864,0.0,0.1,0.0,0.0,1050.0,907200.0,13125.0,11340000.0,13125.0,11340000.0,true,864,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3493592.4655269496,-1029.1204812566145,3847955.623543476,-1239.904194285078,3493592.4655269496,-0.0,0.0,-0.0,0.0,210.78371302846335,354363.1580164877,864,53000.0,1239.904194285078,-3497.1612271411086,1917577.5895872454,1050.0,907200.0,786.2965900070004,921458.8771378265,-5450.303387106355,123554.9102695009,0.0,0.0,1274.6491196915292,870119.9642927388,-107.80354973328258,2443.837887178791,-1239.904194285078,-3995435.32068207,true,true,12.29379945,8489.874379634002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,865,0.9055295467208548,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4755176.503062223,3846926.50306222,908250.0,5850106.279208467,-1094929.7761463134,0.95,0.25,22.0,865,0.0,0.1,0.0,0.0,1050.0,908250.0,13125.0,11353125.0,13125.0,11353125.0,true,865,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3492352.5613326645,-1029.1204812566145,3846926.50306222,-1239.904194285078,3492352.5613326645,-0.0,0.0,-0.0,0.0,210.78371302846335,354573.9417295162,865,53000.0,1239.904194285078,-2550.1436924189506,1915027.4458948264,1050.0,908250.0,740.5451196945293,922199.4222575211,-4452.061103959894,119102.84916554102,0.0,0.0,1249.431241330173,871369.395534069,-88.05894948375833,2355.7789376950327,-1239.904194285078,-3996675.2248763554,true,true,12.07027583,8501.944655464002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,866,0.9055295351095108,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4755197.382580967,3845897.3825809634,909300.0,5850127.127376582,-1094929.7447956847,0.95,0.25,22.0,866,0.0,0.1,0.0,0.0,1050.0,909300.0,13125.0,11366250.0,13125.0,11366250.0,true,866,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3491112.6571383793,-1029.1204812566145,3845897.3825809634,-1239.904194285078,3491112.6571383793,-0.0,0.0,-0.0,0.0,210.78371302846335,354784.7254425447,866,53000.0,1239.904194285078,-8672.560649569568,1906354.8852452568,1050.0,909300.0,673.3855379630368,922872.8077954841,-10351.655160113267,108751.19400542775,0.0,0.0,1210.4581567297541,872579.8536907987,-204.7491841490932,2151.0297535459395,-1239.904194285078,-3997915.1290706405,true,true,11.53381912,8513.478474584002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,867,0.9055295234981668,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4755218.26209971,3844868.262099707,910350.0,5850147.975544696,-1094929.713445056,0.95,0.25,22.0,867,0.0,0.1,0.0,0.0,1050.0,910350.0,13125.0,11379375.0,13125.0,11379375.0,true,867,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3489872.752944094,-1029.1204812566145,3844868.262099707,-1239.904194285078,3489872.752944094,-0.0,0.0,-0.0,0.0,210.78371302846335,354995.50915557315,867,53000.0,1239.904194285078,-5006.693050521145,1901348.1921947356,1050.0,910350.0,599.7263821159733,923472.5341776,-6639.69788170733,102111.49612372043,0.0,0.0,1164.6074687533956,873744.4611595521,-131.32901968318302,2019.7007338627564,-1239.904194285078,-3999155.0332649257,true,true,11.17618132,8524.654655904002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,868,0.9055295118868228,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4755239.141618454,3843839.1416184506,911400.0,5850168.82371281,-1094929.6820944273,0.95,0.25,22.0,868,0.0,0.1,0.0,0.0,1050.0,911400.0,13125.0,11392500.0,13125.0,11392500.0,true,868,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3488632.848749809,-1029.1204812566145,3843839.1416184506,-1239.904194285078,3488632.848749809,-0.0,0.0,-0.0,0.0,210.78371302846335,355206.2928686016,868,53000.0,1239.904194285078,-2433.9381705953283,1898914.2540241403,1050.0,911400.0,554.8525859309602,924027.386763531,-4043.615131890711,98067.88099182972,0.0,0.0,1134.8045221585019,874879.2656817106,-79.98014679407964,1939.7205870686767,-1239.904194285078,-4000394.937459211,true,true,10.9526577,8535.607313604001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,869,0.9055263656722189,666.0,0.0,5657.523100747367,4607.523100747367,1050.0,5649.028321316815,8.494779430551601,4760896.664719202,3848446.664719198,912450.0,5855817.852034126,-1094921.1873149967,0.95,0.25,22.0,869,0.0,0.1,0.0,0.0,1050.0,912450.0,13125.0,11405625.0,13125.0,11405625.0,true,869,0.8990805115706957,53000.0,1239.904194285078,0.0,4142.534226493741,3492775.382976303,4607.523100747367,3848446.664719198,4142.534226493741,3492775.382976303,-0.0,0.0,-0.0,0.0,464.9888742536259,355671.28174285527,869,53000.0,1239.904194285078,4142.534226493741,1903056.788250634,1050.0,912450.0,548.154237167416,924575.5410006985,2416.366339814153,100484.24733164387,0.0,0.0,1130.2194534121477,876009.4851351227,47.79419610002397,1987.5147831687007,-4142.534226493741,-4004537.471685705,true,true,11.08677187,8546.694085474,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,870,0.9055231816155058,666.0,0.0,5725.570781461669,4675.570781461669,1050.0,5716.973828336351,8.596953125317821,4766622.2355006635,3853122.23550066,913500.0,5861534.825862463,-1094912.5903618715,0.95,0.25,22.0,870,0.0,0.1,0.0,0.0,1050.0,913500.0,13125.0,11418750.0,13125.0,11418750.0,true,870,0.899684318017568,53000.0,1239.904194285078,0.0,4206.537709862209,3496981.920686165,4675.570781461669,3853122.23550066,4206.537709862209,3496981.920686165,-0.0,0.0,-0.0,0.0,469.0330715994596,356140.3148144547,870,53000.0,1239.904194285078,4206.537709862209,1907263.3259604962,1050.0,913500.0,568.4125451233866,925143.9535458218,2445.7746315981417,102930.021963242,0.0,0.0,1143.9746596512102,877153.4597947738,48.37587348947089,2035.8906566581716,-4206.537709862209,-4008744.009395567,true,true,11.22088605,8557.914971524,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,871,0.9055194601290659,666.0,0.0,6691.976916219778,5641.976916219778,1050.0,6681.928902832061,10.048013387717385,4773314.212416884,3858764.2124168794,914550.0,5868216.7547652945,-1094902.5423484838,0.95,0.25,22.0,871,0.0,0.1,0.0,0.0,1050.0,914550.0,13125.0,11431875.0,13125.0,11431875.0,true,871,0.9083479048197115,53000.0,1239.904194285078,0.0,5124.877910889412,3502106.798597054,5641.976916219778,3858764.2124168794,5124.877910889412,3502106.798597054,-0.0,0.0,-0.0,0.0,517.0990053303658,356657.41381978506,871,53000.0,1239.904194285078,5124.877910889412,1912388.2038713857,1050.0,914550.0,592.6708512143691,925736.6243970362,3306.778670975374,106236.80063421738,0.0,0.0,1160.0224005198584,878313.4821952936,65.40598817981007,2101.2966448379816,-5124.877910889412,-4013868.887306456,true,true,11.39970495,8569.314676474,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,872,0.9055167003264413,666.0,0.0,4962.677079581594,3912.6770795815937,1050.0,4955.225612495135,7.451467086458849,4778276.889496465,3862676.889496461,915600.0,5873171.98037779,-1094895.0908813972,0.95,0.25,22.0,872,0.0,0.1,0.0,0.0,1050.0,915600.0,13125.0,11445000.0,13125.0,11445000.0,true,872,0.8929610199599736,53000.0,1239.904194285078,0.0,3493.8681157571905,3505600.666712811,3912.6770795815937,3862676.889496461,3493.8681157571905,3505600.666712811,-0.0,0.0,-0.0,0.0,418.80896382440324,357076.22278360947,872,53000.0,1239.904194285078,3493.8681157571905,1915882.0719871428,1050.0,915600.0,614.0049898744647,926350.6293869106,1672.9947424978564,107909.79537671524,0.0,0.0,1173.7776067589207,879487.2598020525,33.090776625948706,2134.3874214639304,-3493.8681157571905,-4017362.755422213,true,true,11.4891144,8580.803790873999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,873,0.9055123695592606,666.0,0.0,7787.585544325581,6737.585544325581,1050.0,7775.892472937705,11.693071387876248,4786064.475040791,3869414.4750407864,916650.0,5880947.872850727,-1094883.3978100093,0.95,0.25,22.0,873,0.0,0.1,0.0,0.0,1050.0,916650.0,13125.0,11458125.0,13125.0,11458125.0,true,873,0.9132184429433456,53000.0,1239.904194285078,0.0,6152.887379986601,3511753.554092798,6737.585544325581,3869414.4750407864,6152.887379986601,3511753.554092798,-0.0,0.0,-0.0,0.0,584.69816433898,357660.92094794847,873,53000.0,1239.904194285078,6152.887379986601,1922034.9593671295,1050.0,916650.0,639.534667395014,926990.1640543056,4239.669389108461,112149.4647658237,0.0,0.0,1189.8253476275688,880677.08514968,83.85797585555794,2218.2453973194883,-6152.887379986601,-4023515.6428022,true,true,11.71263803,8592.516428903999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,874,0.9055068952816452,666.0,0.0,9843.846007994762,8793.846007994762,1050.0,9829.065458433208,14.780549561553697,4795908.321048785,3878208.3210487813,917700.0,5890776.93830916,-1094868.6172604477,0.95,0.25,22.0,874,0.0,0.1,0.0,0.0,1050.0,917700.0,13125.0,11471250.0,13125.0,11471250.0,true,874,0.9205477554897435,53000.0,1239.904194285078,0.0,8095.155204782019,3519848.7092975797,8793.846007994762,3878208.3210487813,8095.155204782019,3519848.7092975797,-0.0,0.0,-0.0,0.0,698.690803212743,358359.6117511612,874,53000.0,1239.904194285078,8095.155204782019,1930130.1145719115,1050.0,917700.0,684.9290412505444,927675.0930955561,6072.774764021028,118222.23952984472,0.0,0.0,1217.335760105694,881894.4209097858,120.11563940475209,2338.3610367242404,-8095.155204782019,-4031610.7980069816,true,true,12.0255711,8604.542000004,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,875,0.9055018153961887,666.0,0.0,9134.650027827622,8084.650027827623,1050.0,9120.934337095148,13.715690732473906,4805042.971076612,3886292.971076609,918750.0,5899897.872646255,-1094854.9015697152,0.95,0.25,22.0,875,0.0,0.1,0.0,0.0,1050.0,918750.0,13125.0,11484375.0,13125.0,11484375.0,true,875,0.9180066509281986,53000.0,1239.904194285078,0.0,7421.762495972603,3527270.4717935524,8084.650027827623,3886292.971076609,7421.762495972603,3527270.4717935524,-0.0,0.0,-0.0,0.0,662.8875318550199,359022.49928301625,875,53000.0,1239.904194285078,7421.762495972603,1937551.8770678842,1050.0,918750.0,736.4761991612756,928411.5692947174,5332.670739656189,123554.9102695009,0.0,0.0,1247.1387067005876,883141.5596164864,105.47685045455052,2443.837887178791,-7421.762495972603,-4039032.5605029543,true,true,12.29379945,8616.835799454,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,876,0.9054982796680843,666.0,0.0,6357.946277384022,5307.946277384022,1050.0,6348.399811502064,9.54646588195799,4811400.917353996,3891600.9173539933,919800.0,5906246.272457757,-1094845.3551038334,0.95,0.25,22.0,876,0.0,0.1,0.0,0.0,1050.0,919800.0,13125.0,11497500.0,13125.0,11497500.0,true,876,0.9053345982109507,53000.0,1239.904194285078,0.0,4805.467410360776,3532075.9392039133,5307.946277384022,3891600.9173539933,4805.467410360776,3532075.9392039133,-0.0,0.0,-0.0,0.0,502.4788670232465,359524.9781500395,876,53000.0,1239.904194285078,4805.467410360776,1942357.344478245,1050.0,919800.0,773.6373189030593,929185.2066136205,2710.447637199204,126265.35790670011,0.0,0.0,1267.7715163155897,884409.3311328021,53.610937942923194,2497.448825121714,-4805.467410360776,-4043838.027913315,true,true,12.42791363,8629.263713084,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,877,0.9054930257099981,666.0,0.0,9447.667430540185,8397.667430540185,1050.0,9433.481743707542,14.18568683264292,4820848.584784537,3899998.5847845334,920850.0,5915679.754201464,-1094831.1694170008,0.95,0.25,22.0,877,0.0,0.1,0.0,0.0,1050.0,920850.0,13125.0,11510625.0,13125.0,11510625.0,true,877,0.9191264850881964,53000.0,1239.904194285078,0.0,7718.518548372025,3539794.4577522855,8397.667430540185,3899998.5847845334,7718.518548372025,3539794.4577522855,-0.0,0.0,-0.0,0.0,679.1488821681596,360204.1270322077,877,53000.0,1239.904194285078,7718.518548372025,1950075.8630266169,1050.0,920850.0,812.0279241786799,929997.2345377991,5509.119404940435,131774.47731164054,0.0,0.0,1288.4043259305918,885697.7354587327,108.96689332231846,2606.4157184440323,-7718.518548372025,-4051556.5464616874,true,true,12.69614198,8641.959855064,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,878,0.9054876543206292,666.0,0.0,9658.832363213072,8608.832363213072,1050.0,9644.329611916957,14.502751296115724,4830507.41714775,3908607.4171477463,921900.0,5925324.083813381,-1094816.6666657047,0.95,0.25,22.0,878,0.0,0.1,0.0,0.0,1050.0,921900.0,13125.0,11523750.0,13125.0,11523750.0,true,878,0.9198834818448728,53000.0,1239.904194285078,0.0,7919.122688891266,3547713.580441177,8608.832363213072,3908607.4171477463,7919.122688891266,3547713.580441177,-0.0,0.0,-0.0,0.0,689.7096743218062,360893.8367065295,878,53000.0,1239.904194285078,7919.122688891266,1957994.9857155082,1050.0,921900.0,865.1625149425377,930862.3970527417,5626.751847001428,137401.22915864197,0.0,0.0,1315.9147384087169,887013.6501971415,111.29358853858274,2717.709306982615,-7919.122688891266,-4059475.669150579,true,true,12.96437033,8654.924225394001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,879,0.9054844886456057,666.0,0.0,5692.516827218909,4642.516827218909,1050.0,5683.969504655518,8.547322563391756,4836199.933974969,3913249.933974965,922950.0,5931008.053318037,-1094808.1193431413,0.95,0.25,22.0,879,0.0,0.1,0.0,0.0,1050.0,922950.0,13125.0,11536875.0,13125.0,11536875.0,true,879,0.8993909196087896,53000.0,1239.904194285078,0.0,4175.437478531695,3551889.0179197085,4642.516827218909,3913249.933974965,4175.437478531695,3551889.0179197085,-0.0,0.0,-0.0,0.0,467.0793486872144,361360.9160552167,879,53000.0,1239.904194285078,4175.437478531695,1962170.4231940398,1050.0,922950.0,901.8430672292656,931764.240119971,1901.72449168071,139302.95365032268,0.0,0.0,1334.2550133941336,888347.9052105356,37.61490622758619,2755.3242132102014,-4175.437478531695,-4063651.1066291104,true,true,13.05377978,8667.978005174002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,880,0.9054830766040449,666.0,0.0,2539.1331346821976,1489.1331346821976,1050.0,2535.32062246796,3.812512214237534,4838739.067109652,3914739.067109647,924000.0,5933543.373940505,-1094804.306830927,0.95,0.25,22.0,880,0.0,0.1,0.0,0.0,1050.0,924000.0,13125.0,11550000.0,13125.0,11550000.0,true,880,0.8539945583718842,53000.0,1239.904194285078,0.0,1271.7115937098629,3553160.7295134184,1489.1331346821976,3914739.067109647,1271.7115937098629,3553160.7295134184,-0.0,0.0,-0.0,0.0,217.4215409723347,361578.337596189,880,53000.0,1239.904194285078,1271.7115937098629,1963442.1347877497,1050.0,924000.0,906.4997353163952,932670.7398552874,-952.4959234086417,138350.45772691406,0.0,0.0,1336.5475480237192,889684.4527585594,-18.83976622160987,2736.4844469885916,-1271.7115937098629,-4064922.8182228203,true,true,13.00907506,8680.987080234001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,881,0.9054816712413393,666.0,0.0,2527.1232173010185,1477.1232173010183,1050.0,2523.328737995762,3.7944793052567847,4841266.190326953,3916216.190326948,925050.0,5936066.702678501,-1094800.5123516219,0.95,0.25,22.0,881,0.0,0.1,0.0,0.0,1050.0,925050.0,13125.0,11563125.0,13125.0,11563125.0,true,881,0.8537954933209694,53000.0,1239.904194285078,0.0,1261.1611460113804,3554421.8906594296,1477.1232173010183,3916216.190326948,1261.1611460113804,3554421.8906594296,-0.0,0.0,-0.0,0.0,215.96207128963783,361794.29966747866,881,53000.0,1239.904194285078,1261.1611460113804,1964703.2959337612,1050.0,925050.0,897.20237501206,933567.9422302995,-949.2285682720682,137401.229158642,0.0,0.0,1331.962479277365,891016.4152378368,-18.77514000597632,2717.709306982615,-1261.1611460113804,-4066183.9793688315,true,true,12.96437033,8693.951450564002,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,882,0.90548027251992,666.0,0.0,2515.180856030735,1465.180856030735,1050.0,2511.404308198857,3.7765478318779806,4843781.371182984,3917681.371182979,926100.0,5938578.1069867,-1094796.73580379,0.95,0.25,22.0,882,0.0,0.1,0.0,0.0,1050.0,926100.0,13125.0,11576250.0,13125.0,11576250.0,true,882,0.8535976400170955,53000.0,1239.904194285078,0.0,1250.674920906063,3555672.5655803354,1465.180856030735,3917681.371182979,1250.674920906063,3555672.5655803354,-0.0,0.0,-0.0,0.0,214.50593512467185,362008.8056026033,882,53000.0,1239.904194285078,1250.674920906063,1965953.9708546672,1050.0,926100.0,887.968804235326,934455.9110345348,-945.9607884695542,136455.26837017245,0.0,0.0,1327.3774105310106,892343.7926483678,-18.71050539071915,2698.998801591896,-1250.674920906063,-4067434.6542897373,true,true,12.91966561,8706.871116174001,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,883,0.905480260908576,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4843802.250701727,3916652.2507017227,927150.0,5938598.955154814,-1094796.7044531612,0.95,0.25,22.0,883,0.0,0.1,0.0,0.0,1050.0,927150.0,13125.0,11589375.0,13125.0,11589375.0,true,883,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3554432.6613860503,-1029.1204812566145,3916652.2507017227,-1239.904194285078,3554432.6613860503,-0.0,0.0,-0.0,0.0,210.78371302846335,362219.5893156318,883,53000.0,1239.904194285078,-1644.2863703085513,1964309.6844843586,1050.0,927150.0,865.162515954009,935321.0735504888,-3751.16789946279,132704.10047070964,0.0,0.0,1315.9147389215339,893659.7073872894,-74.19572572130396,2624.8030758705922,-1239.904194285078,-4068674.5584840225,true,true,12.74084671,8719.611962884,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,884,0.905480249297232,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4843823.130220471,3915623.1302204663,928200.0,5938619.803322928,-1094796.6731025325,0.95,0.25,22.0,884,0.0,0.1,0.0,0.0,1050.0,928200.0,13125.0,11602500.0,13125.0,11602500.0,true,884,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3553192.757191765,-1029.1204812566145,3915623.1302204663,-1239.904194285078,3553192.757191765,-0.0,0.0,-0.0,0.0,210.78371302846335,362430.37302866025,884,53000.0,1239.904194285078,-1644.9836898203862,1962664.7007945383,1050.0,928200.0,829.4902993043847,936150.5638497932,-3698.886814102369,129005.21365660727,0.0,0.0,1297.5744639361171,894957.2818512255,-73.16163895851871,2551.6414369120735,-1239.904194285078,-4069914.4626783077,true,true,12.56202781,8732.173990694,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,885,0.9054789086847208,666.0,0.0,2410.6894176728274,1360.6894176728272,1050.0,2407.069763892538,3.6196537802895308,4846233.819638144,3916983.819638139,929250.0,5941026.87308682,-1094793.0534487523,0.95,0.25,22.0,885,0.0,0.1,0.0,0.0,1050.0,929250.0,13125.0,11615625.0,13125.0,11615625.0,true,885,0.8518703968727065,53000.0,1239.904194285078,0.0,1159.1310342534432,3554351.8882260188,1360.6894176728272,3916983.819638139,1159.1310342534432,3554351.8882260188,-0.0,0.0,-0.0,0.0,201.55838341938397,362631.93141207966,885,53000.0,1239.904194285078,1159.1310342534432,1963823.8318287916,1050.0,929250.0,807.7009644136879,936958.2648142069,-916.5528862671188,128088.66077034015,0.0,0.0,1286.1117918138234,896243.3936430394,-18.128835706949392,2533.512601205124,-1159.1310342534432,-4071073.5937125613,true,true,12.51732308,8744.691313774,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,886,0.90547698965583,666.0,0.0,3450.7977514461527,2400.7977514461527,1050.0,3445.6163734409784,5.181378005174404,4849684.6173895905,3919384.6173895854,930300.0,5944472.489460262,-1094787.8720707472,0.95,0.25,22.0,886,0.0,0.1,0.0,0.0,1050.0,930300.0,13125.0,11628750.0,13125.0,11628750.0,true,886,0.8693812954582156,53000.0,1239.904194285078,0.0,2087.2086592854275,3556439.096885304,2400.7977514461527,3919384.6173895854,2087.2086592854275,3556439.096885304,-0.0,0.0,-0.0,0.0,313.58909216072516,362945.5205042404,886,53000.0,1239.904194285078,2087.2086592854275,1965911.040488077,1050.0,930300.0,803.3894021011896,937761.654216308,0.0,128088.66077034015,0.0,0.0,1283.8192571842378,897527.2129002237,0.0,2533.512601205124,-2087.2086592854275,-4073160.8023718465,true,true,12.51732308,8757.208636853999,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,887,0.905476978044486,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4849705.496908334,3918355.496908329,931350.0,5944493.337628376,-1094787.8407201185,0.95,0.25,22.0,887,0.0,0.1,0.0,0.0,1050.0,931350.0,13125.0,11641875.0,13125.0,11641875.0,true,887,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3555199.192691019,-1029.1204812566145,3918355.496908329,-1239.904194285078,3555199.192691019,-0.0,0.0,-0.0,0.0,210.78371302846335,363156.3042172689,887,53000.0,1239.904194285078,-1644.4587767176008,1964266.5817113596,1050.0,931350.0,786.2965900070004,938547.950806315,-3633.5354559400052,124455.12531440015,0.0,0.0,1274.6491196915292,898801.8620199153,-71.86903047612508,2461.6435707289993,-1239.904194285078,-4074400.7065661317,true,true,12.33850418,8769.547141033998,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,888,0.905476966433142,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4849726.376427078,3917326.3764270726,932400.0,5944514.18579649,-1094787.8093694898,0.95,0.25,22.0,888,0.0,0.1,0.0,0.0,1050.0,932400.0,13125.0,11655000.0,13125.0,11655000.0,true,888,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3553959.2884967336,-1029.1204812566145,3917326.3764270726,-1239.904194285078,3553959.2884967336,-0.0,0.0,-0.0,0.0,210.78371302846335,363367.08793029736,888,53000.0,1239.904194285078,-1642.938723913137,1962623.6429874464,1050.0,932400.0,752.8417456736288,939300.7925519887,-3581.254370579538,120873.87094382061,0.0,0.0,1256.3088447061127,900058.1708646214,-70.83494371334058,2390.8086270156587,-1239.904194285078,-4075640.610760417,true,true,12.15968528,8781.706826313997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,889,0.905476954821798,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4849747.255945821,3916297.255945816,933450.0,5944535.033964604,-1094787.778018861,0.95,0.25,22.0,889,0.0,0.1,0.0,0.0,1050.0,933450.0,13125.0,11668125.0,13125.0,11668125.0,true,889,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3552719.3843024485,-1029.1204812566145,3916297.255945816,-1239.904194285078,3552719.3843024485,-0.0,0.0,-0.0,0.0,210.78371302846335,363577.87164332584,889,53000.0,1239.904194285078,-3432.4092360354216,1959191.233751411,1050.0,933450.0,712.3752866984971,940013.1678386872,-5273.8545208184705,115600.01642300215,0.0,0.0,1233.383500974342,901291.5543655958,-104.31350288978989,2286.4951241258686,-1239.904194285078,-4076880.514954702,true,true,11.89145693,8793.598283243997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,890,0.9054730093681567,666.0,0.0,7094.7147378725285,6044.7147378725285,1050.0,7084.062013040888,10.652724831640434,4856841.970683694,3922341.9706836888,934500.0,5951619.095977645,-1094777.1252940295,0.95,0.25,22.0,890,0.0,0.1,0.0,0.0,1050.0,934500.0,13125.0,11681250.0,13125.0,11681250.0,true,890,0.9107750002524987,53000.0,1239.904194285078,0.0,5505.375066912135,3558224.7593693607,6044.7147378725285,3922341.9706836888,5505.375066912135,3558224.7593693607,-0.0,0.0,-0.0,0.0,539.339670960394,364117.2113142862,890,53000.0,1239.904194285078,5505.375066912135,1964696.6088183231,1050.0,934500.0,704.4600785760994,940717.6279172633,3502.832742538883,119102.84916554103,0.0,0.0,1228.7984322279879,902520.3527978238,69.28381356916401,2355.7789376950327,-5505.375066912135,-4082385.8900216143,true,true,12.07027583,8805.668559073996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,891,0.9054684550851155,666.0,0.0,8189.511764509791,7139.511764509791,1050.0,8177.215200298815,12.296564210975662,4865031.4824482035,3929481.4824481984,935550.0,5959796.311177944,-1094764.8287298186,0.95,0.25,22.0,891,0.0,0.1,0.0,0.0,1050.0,935550.0,13125.0,11694375.0,13125.0,11694375.0,true,891,0.9146418732621447,53000.0,1239.904194285078,0.0,6530.096414468356,3564754.855783829,7139.511764509791,3929481.4824481984,6530.096414468356,3564754.855783829,-0.0,0.0,-0.0,0.0,609.415350041435,364726.62666432763,891,53000.0,1239.904194285078,6530.096414468356,1971226.7052327914,1050.0,935550.0,740.5451196945293,941458.1730369579,4452.061103959894,123554.91026950092,0.0,0.0,1249.431241330173,903769.7840391541,88.05894948375833,2443.837887178791,-6530.096414468356,-4088915.9864360825,true,true,12.29379945,8817.962358523997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,892,0.9054649193570111,666.0,0.0,6357.946277384022,5307.946277384022,1050.0,6348.399811502064,9.54646588195799,4871389.428725587,3934789.4287255825,936600.0,5966144.710989445,-1094755.2822639367,0.95,0.25,22.0,892,0.0,0.1,0.0,0.0,1050.0,936600.0,13125.0,11707500.0,13125.0,11707500.0,true,892,0.9053345982109507,53000.0,1239.904194285078,0.0,4805.467410360776,3569560.32319419,5307.946277384022,3934789.4287255825,4805.467410360776,3569560.32319419,-0.0,0.0,-0.0,0.0,502.4788670232465,365229.1055313509,892,53000.0,1239.904194285078,4805.467410360776,1976032.172643152,1050.0,936600.0,773.6373189030593,942231.810355861,2710.447637199204,126265.35790670013,0.0,0.0,1267.7715163155897,905037.5555554697,53.610937942923194,2497.448825121714,-4805.467410360776,-4093721.4538464434,true,true,12.42791363,8830.390272153996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,893,0.9054618971405047,666.0,0.0,5434.54972182963,4384.54972182963,1050.0,5426.389737262318,8.159984567311756,4876823.978447417,3939173.978447412,937650.0,5971571.100726708,-1094747.1222793695,0.95,0.25,22.0,893,0.0,0.1,0.0,0.0,1050.0,937650.0,13125.0,11720625.0,13125.0,11720625.0,true,893,0.8971076716232741,53000.0,1239.904194285078,0.0,3933.413192067053,3573493.7363862568,4384.54972182963,3939173.978447412,3933.413192067053,3573493.7363862568,-0.0,0.0,-0.0,0.0,451.13652976257663,365680.2420611135,893,53000.0,1239.904194285078,3933.413192067053,1979965.5858352191,1050.0,937650.0,794.8123639057272,943026.6227197667,1823.302863640032,128088.66077034015,0.0,0.0,1279.2341884378836,906316.7897439076,36.06377608341,2533.512601205124,-3933.413192067053,-4097654.8670385103,true,true,12.51732308,8842.907595233995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,894,0.9054611700832466,666.0,0.0,1307.3943616684937,257.3943616684937,1050.0,1305.4313070713938,1.9630545970998405,4878131.372809085,3939431.3728090804,938700.0,5972876.53203378,-1094745.1592247724,0.95,0.25,22.0,894,0.0,0.1,0.0,0.0,1050.0,938700.0,13125.0,11733750.0,13125.0,11733750.0,true,894,0.8340505643890598,53000.0,1239.904194285078,0.0,214.67991262016892,3573708.416298877,257.3943616684937,3939431.3728090804,214.67991262016892,3573708.416298877,-0.0,0.0,-0.0,0.0,42.71444904832475,365722.9565101618,894,53000.0,1239.904194285078,214.67991262016892,1980180.2657478394,1050.0,938700.0,794.8123639057272,943821.4350836724,-1823.302863640032,126265.35790670013,0.0,0.0,1279.2341884378836,907596.0239323456,-36.06377608341,2497.448825121714,-214.67991262016892,-4097869.5469511305,true,true,12.42791363,8855.335508863995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,895,0.9054581478667402,666.0,0.0,5434.54972182963,4384.54972182963,1050.0,5426.389737262318,8.159984567311756,4883565.922530915,3943815.92253091,939750.0,5978302.921771042,-1094736.9992402052,0.95,0.25,22.0,895,0.0,0.1,0.0,0.0,1050.0,939750.0,13125.0,11746875.0,13125.0,11746875.0,true,895,0.8971076716232741,53000.0,1239.904194285078,0.0,3933.413192067053,3577641.829490944,4384.54972182963,3943815.92253091,3933.413192067053,3577641.829490944,-0.0,0.0,-0.0,0.0,451.13652976257663,366174.0930399244,895,53000.0,1239.904194285078,3933.413192067053,1984113.6789399064,1050.0,939750.0,794.8123639057272,944616.2474475781,1823.302863640032,128088.66077034015,0.0,0.0,1279.2341884378836,908875.2581207835,36.06377608341,2533.512601205124,-3933.413192067053,-4101802.9601431973,true,true,12.51732308,8867.852831943994,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,896,0.9054562288378494,666.0,0.0,3450.7977514461527,2400.7977514461527,1050.0,3445.6163734409784,5.181378005174404,4887016.720282361,3946216.7202823563,940800.0,5981748.538144483,-1094731.8178622,0.95,0.25,22.0,896,0.0,0.1,0.0,0.0,1050.0,940800.0,13125.0,11760000.0,13125.0,11760000.0,true,896,0.8693812954582156,53000.0,1239.904194285078,0.0,2087.2086592854275,3579729.038150229,2400.7977514461527,3946216.7202823563,2087.2086592854275,3579729.038150229,-0.0,0.0,-0.0,0.0,313.58909216072516,366487.68213208514,896,53000.0,1239.904194285078,2087.2086592854275,1986200.8875991919,1050.0,940800.0,803.3894021011896,945419.6368496793,0.0,128088.66077034015,0.0,0.0,1283.8192571842378,910159.0773779678,0.0,2533.512601205124,-2087.2086592854275,-4103890.1688024825,true,true,12.51732308,8880.370155023993,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,897,0.9054543098089586,666.0,0.0,3450.7977514461527,2400.7977514461527,1050.0,3445.6163734409784,5.181378005174404,4890467.518033807,3948617.5180338025,941850.0,5985194.154517924,-1094726.636484195,0.95,0.25,22.0,897,0.0,0.1,0.0,0.0,1050.0,941850.0,13125.0,11773125.0,13125.0,11773125.0,true,897,0.8693812954582156,53000.0,1239.904194285078,0.0,2087.2086592854275,3581816.2468095142,2400.7977514461527,3948617.5180338025,2087.2086592854275,3581816.2468095142,-0.0,0.0,-0.0,0.0,313.58909216072516,366801.2712242459,897,53000.0,1239.904194285078,2087.2086592854275,1988288.0962584773,1050.0,941850.0,803.3894021011896,946223.0262517805,0.0,128088.66077034015,0.0,0.0,1283.8192571842378,911442.896635152,0.0,2533.512601205124,-2087.2086592854275,-4105977.3774617678,true,true,12.51732308,8892.887478103992,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,898,0.905454056637648,666.0,0.0,455.2526506359924,-594.7473493640076,1050.0,454.5690880974999,0.683562538492481,4890922.770684443,3948022.7706844383,942900.0,5985648.723606022,-1094725.9529216564,0.95,0.25,22.0,898,0.0,0.1,0.0,0.0,1050.0,942900.0,13125.0,11786250.0,13125.0,11786250.0,true,898,0.83,53000.0,1239.904194285078,0.0,-716.5630715229007,3581099.6837379914,-594.7473493640076,3948022.7706844383,-716.5630715229007,3581099.6837379914,-0.0,0.0,-0.0,0.0,121.8157221588931,366923.0869464048,898,53000.0,1239.904194285078,-716.5630715229007,1987571.5331869544,1050.0,942900.0,790.5468331195754,947013.5730849,-2730.052842474806,125358.60792786535,0.0,0.0,1276.941654321115,912719.8382894732,-53.99871648878519,2479.513884716339,-716.5630715229007,-4106693.9405332906,true,true,12.38320891,8905.270687013992,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,899,0.9054538076383616,666.0,0.0,447.75051675980717,-602.2494832401928,1050.0,447.07821868659425,0.6722980732129237,4891370.521201204,3947420.521201198,943950.0,5986095.8018247085,-1094725.2806235831,0.95,0.25,22.0,899,0.0,0.1,0.0,0.0,1050.0,943950.0,13125.0,11799375.0,13125.0,11799375.0,true,899,0.83,53000.0,1239.904194285078,0.0,-725.601787036377,3580374.081950955,-602.2494832401928,3947420.521201198,-725.601787036377,3580374.081950955,-0.0,0.0,-0.0,0.0,123.35230379618417,367046.4392502009,899,53000.0,1239.904194285078,-725.601787036377,1986845.9313999182,1050.0,943950.0,765.2737459959495,947778.846830896,-2700.644934425021,122657.96299344033,0.0,0.0,1263.1864480820525,913983.0247375553,-53.41704668935819,2426.0968380269805,-725.601787036377,-4107419.542320327,true,true,12.24909473,8917.519781743991,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,900,0.9054537960270176,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4891391.400719947,3946391.4007199416,945000.0,5986116.649992823,-1094725.2492729544,0.95,0.25,22.0,900,0.0,0.1,0.0,0.0,1050.0,945000.0,13125.0,11812500.0,13125.0,11812500.0,true,900,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3579134.17775667,-1029.1204812566145,3946391.4007199416,-1239.904194285078,3579134.17775667,-0.0,0.0,-0.0,0.0,210.78371302846335,367257.2229632294,900,53000.0,1239.904194285078,-2546.190880978072,1984299.7405189401,1050.0,945000.0,732.4222113364481,948511.2690422324,-4435.723463595598,118222.23952984474,0.0,0.0,1244.8461725838188,915227.8709101392,-87.73580130274033,2338.3610367242404,-1239.904194285078,-4108659.446514612,true,true,12.0255711,8929.545352843992,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,901,0.9054535569315941,666.0,0.0,429.94139045159045,-620.0586095484095,1050.0,429.2958328082697,0.6455576433207064,4891821.342110399,3945771.342110393,946050.0,5986545.945825631,-1094724.603715311,0.95,0.25,22.0,901,0.0,0.1,0.0,0.0,1050.0,946050.0,13125.0,11825625.0,13125.0,11825625.0,true,901,0.83,53000.0,1239.904194285078,0.0,-747.0585657209754,3578387.119190949,-620.0586095484095,3945771.342110393,-747.0585657209754,3578387.119190949,-0.0,0.0,-0.0,0.0,126.99995617256582,367384.22291940195,901,53000.0,1239.904194285078,-747.0585657209754,1983552.6819532192,1050.0,946050.0,700.5245561215831,949211.793598354,-2622.223106842589,115600.01642300215,0.0,0.0,1226.5058975984023,916454.3768077376,-51.865912598371835,2286.4951241258686,-747.0585657209754,-4109406.505080333,true,true,11.89145693,8941.436809773992,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,902,0.9054523066450731,666.0,0.0,2248.2652220565756,1198.2652220565756,1050.0,2244.889448449884,3.375773606691555,4894069.607332456,3946969.60733245,947100.0,5988790.835274081,-1094721.2279417044,0.95,0.25,22.0,902,0.0,0.1,0.0,0.0,1050.0,947100.0,13125.0,11838750.0,13125.0,11838750.0,true,902,0.8491993596077486,53000.0,1239.904194285078,0.0,1017.5660592106807,3579404.68525016,1198.2652220565756,3946969.60733245,1017.5660592106807,3579404.68525016,-0.0,0.0,-0.0,0.0,180.69916284589488,367564.92208224785,902,53000.0,1239.904194285078,1017.5660592106807,1984570.2480124298,1050.0,947100.0,684.9290412505444,949896.7226396045,-867.5393628943746,114732.47706010778,0.0,0.0,1217.335760105694,917671.7125678434,-17.159379251183047,2269.3357448746856,-1017.5660592106807,-4110424.071139544,true,true,11.8467522,8953.28356197399,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,903,0.9054505048039597,666.0,0.0,3240.0706901387784,2190.0706901387784,1050.0,3235.205719132564,4.864971006214382,4897309.678022595,3949159.6780225886,948150.0,5992026.040993214,-1094716.3629706982,0.95,0.25,22.0,903,0.0,0.1,0.0,0.0,1050.0,948150.0,13125.0,11851875.0,13125.0,11851875.0,true,903,0.8657756583704279,53000.0,1239.904194285078,0.0,1896.1098936326782,3581300.7951437924,2190.0706901387784,3949159.6780225886,1896.1098936326782,3581300.7951437924,-0.0,0.0,-0.0,0.0,293.9607965061002,367858.88287875394,903,53000.0,1239.904194285078,1896.1098936326782,1986466.3579060624,1050.0,948150.0,681.0666681565701,950577.789307761,0.0,114732.47706010778,0.0,0.0,1215.043225476108,918886.7557933194,0.0,2269.3357448746856,-1896.1098936326782,-4112320.1810331764,true,true,11.8467522,8965.13031417399,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,904,0.9054487029628463,666.0,0.0,3240.0706901387784,2190.0706901387784,1050.0,3235.205719132564,4.864971006214382,4900549.748712734,3951349.7487127273,949200.0,5995261.246712347,-1094711.4979996919,0.95,0.25,22.0,904,0.0,0.1,0.0,0.0,1050.0,949200.0,13125.0,11865000.0,13125.0,11865000.0,true,904,0.8657756583704279,53000.0,1239.904194285078,0.0,1896.1098936326782,3583196.905037425,2190.0706901387784,3951349.7487127273,1896.1098936326782,3583196.905037425,-0.0,0.0,-0.0,0.0,293.9607965061002,368152.84367526,904,53000.0,1239.904194285078,1896.1098936326782,1988362.467799695,1050.0,949200.0,681.0666681565701,951258.8559759175,0.0,114732.47706010778,0.0,0.0,1215.043225476108,920101.7990187955,0.0,2269.3357448746856,-1896.1098936326782,-4114216.290926809,true,true,11.8467522,8976.97706637399,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,905,0.9054480359022378,666.0,0.0,1199.5083862242109,149.5083862242108,1050.0,1197.7073225812317,1.8010636429792957,4901749.257098959,3951499.2570989514,950250.0,5996458.954034928,-1094709.6969360488,0.95,0.25,22.0,905,0.0,0.1,0.0,0.0,1050.0,950250.0,13125.0,11878125.0,13125.0,11878125.0,true,905,0.8323479811970897,53000.0,1239.904194285078,0.0,124.44300344575663,3583321.348040871,149.5083862242108,3951499.2570989514,124.44300344575663,3583321.348040871,-0.0,0.0,-0.0,0.0,25.065382778454165,368177.9090580385,905,53000.0,1239.904194285078,124.44300344575663,1988486.9108031408,1050.0,950250.0,673.3855379630363,951932.2415138806,-1725.2758278583008,113007.20123224947,0.0,0.0,1210.458156729754,921312.2571755252,-34.124863388732834,2235.2108814859525,-124.44300344575663,-4114340.733930255,true,true,11.75734275,8988.734409123988,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,906,0.9054468027250705,666.0,0.0,2217.4991821807043,1167.499182180704,1050.0,2214.1696038290816,3.329578351622679,4903966.756281139,3952666.756281132,951300.0,5998673.1236387575,-1094706.367357697,0.95,0.25,22.0,906,0.0,0.1,0.0,0.0,1050.0,951300.0,13125.0,11891250.0,13125.0,11891250.0,true,906,0.8486953032541475,53000.0,1239.904194285078,0.0,990.8510724698219,3584312.1991133406,1167.499182180704,3952666.756281132,990.8510724698219,3584312.1991133406,-0.0,0.0,-0.0,0.0,176.64810971088218,368354.5571677494,906,53000.0,1239.904194285078,990.8510724698219,1989477.7618756106,1050.0,951300.0,661.9724691954185,952594.2139830759,-857.7364664257635,112149.46476582371,0.0,0.0,1203.5805538666314,922515.8377293918,-16.96548416646438,2218.2453973194883,-990.8510724698219,-4115331.5850027245,true,true,11.71263803,9000.447047153988,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,907,0.9054450234550518,666.0,0.0,3199.483347487643,2149.483347487643,1050.0,3194.6793184373614,4.804029050281747,4907166.239628627,3954816.2396286195,952350.0,6001867.802957195,-1094701.5633286468,0.95,0.25,22.0,907,0.0,0.1,0.0,0.0,1050.0,952350.0,13125.0,11904375.0,13125.0,11904375.0,true,907,0.8650846224553865,53000.0,1239.904194285078,0.0,1859.4849901354883,3586171.684103476,2149.483347487643,3954816.2396286195,1859.4849901354883,3586171.684103476,-0.0,0.0,-0.0,0.0,289.9983573521549,368644.55552510155,907,53000.0,1239.904194285078,1859.4849901354883,1991337.246865746,1050.0,952350.0,658.1969703856254,953252.4109534615,0.0,112149.46476582371,0.0,0.0,1201.2880197498628,923717.1257491417,0.0,2218.2453973194883,-1859.4849901354883,-4117191.06999286,true,true,11.71263803,9012.159685183988,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,908,0.9054447916005088,666.0,0.0,416.9208391418106,-633.0791608581894,1050.0,416.2948318758319,0.6260072659786946,4907583.160467769,3954183.160467761,953400.0,6002284.097789071,-1094700.937321381,0.95,0.25,22.0,908,0.0,0.1,0.0,0.0,1050.0,953400.0,13125.0,11917500.0,13125.0,11917500.0,true,908,0.83,53000.0,1239.904194285078,0.0,-762.7459769375777,3585408.9381265384,-633.0791608581894,3954183.160467761,-762.7459769375777,3585408.9381265384,-0.0,0.0,-0.0,0.0,129.66681607938824,368774.22234118095,908,53000.0,1239.904194285078,-762.7459769375777,1990574.5008888086,1050.0,953400.0,646.9566594978879,953899.3676129595,-2553.6043752704754,109595.86039055324,0.0,0.0,1194.410416373923,924911.5361655155,-50.5086775389132,2167.736719780575,-762.7459769375777,-4117953.8159697973,true,true,11.57852385,9023.738209033987,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,909,0.905444562451091,666.0,0.0,412.0564832460344,-637.9435167539656,1050.0,411.43777981773707,0.6187034282973489,4907995.216951015,3953545.216951007,954450.0,6002695.535568888,-1094700.3186179528,0.95,0.25,22.0,909,0.0,0.1,0.0,0.0,1050.0,954450.0,13125.0,11930625.0,13125.0,11930625.0,true,909,0.83,53000.0,1239.904194285078,0.0,-768.6066466915248,3584640.331479847,-637.9435167539656,3953545.216951007,-768.6066466915248,3584640.331479847,-0.0,0.0,-0.0,0.0,130.66312993755923,368904.8854711185,909,53000.0,1239.904194285078,-768.6066466915248,1989805.8942421172,1050.0,954450.0,624.8614099403666,954524.2290228999,-2524.1962625624597,107071.66412799078,0.0,0.0,1180.6552096220437,926092.1913751375,-49.92700369147552,2117.8097160890998,-768.6066466915248,-4118722.4226164888,true,true,11.44440967,9035.182618703988,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,910,0.9054428274741936,666.0,0.0,3119.8354568496084,2069.8354568496084,1050.0,3115.151019226711,4.68443762289731,4911115.052407865,3955615.0524078566,955500.0,6005810.686588115,-1094695.63418033,0.95,0.25,22.0,910,0.0,0.1,0.0,0.0,1050.0,955500.0,13125.0,11943750.0,13125.0,11943750.0,true,910,0.8637317470814302,53000.0,1239.904194285078,0.0,1787.7825953158026,3586428.114075163,2069.8354568496084,3955615.0524078566,1787.7825953158026,3586428.114075163,-0.0,0.0,-0.0,0.0,282.05286153380575,369186.9383326523,910,53000.0,1239.904194285078,1787.7825953158026,1991593.676837433,1050.0,955500.0,614.0049890696986,955138.2340119695,0.0,107071.66412799078,0.0,0.0,1173.777606246104,927265.9689813836,0.0,2117.8097160890998,-1787.7825953158026,-4120510.2052118047,true,true,11.44440967,9046.627028373989,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,911,0.9054395413246841,666.0,0.0,5909.154048009482,4859.154048009482,1050.0,5900.281444333792,8.872603675689913,4917024.206455875,3960474.206455866,956550.0,6011710.968032449,-1094686.7615766544,0.95,0.25,22.0,911,0.0,0.1,0.0,0.0,1050.0,956550.0,13125.0,11956875.0,13125.0,11956875.0,true,911,0.9013173574133618,53000.0,1239.904194285078,0.0,4379.639885816346,3590807.753960979,4859.154048009482,3960474.206455866,4379.639885816346,3590807.753960979,-0.0,0.0,-0.0,0.0,479.51416219313614,369666.45249484543,911,53000.0,1239.904194285078,4379.639885816346,1995973.3167232492,1050.0,956550.0,624.8614099403666,955763.0954219099,2524.1962625624597,109595.86039055324,0.0,0.0,1180.6552096220437,928446.6241910056,49.92700369147552,2167.736719780575,-4379.639885816346,-4124889.845097621,true,true,11.57852385,9058.205552223988,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,912,0.9054383304746411,666.0,0.0,2177.3505473662244,1127.3505473662246,1050.0,2174.0812522500587,3.269295116165502,4919201.557003241,3961601.557003232,957600.0,6013885.049284698,-1094683.4922815382,0.95,0.25,22.0,912,0.0,0.1,0.0,0.0,1050.0,957600.0,13125.0,11970000.0,13125.0,11970000.0,true,912,0.8480384261106304,53000.0,1239.904194285078,0.0,956.0365838634108,3591763.7905448424,1127.3505473662246,3961601.557003232,956.0365838634108,3591763.7905448424,-0.0,0.0,-0.0,0.0,171.31396350281386,369837.76645834825,912,53000.0,1239.904194285078,956.0365838634108,1996929.3533071126,1050.0,957600.0,632.169656855118,956395.2650787651,-844.6663851254691,108751.19400542777,0.0,0.0,1185.2402783683976,929631.864469374,-16.70696623463572,2151.0297535459395,-956.0365838634108,-4125845.881681484,true,true,11.53381912,9069.739371343989,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,913,0.9054381021745105,666.0,0.0,410.52929477260204,-639.470705227398,1050.0,409.9128844200906,0.6164103525114145,4919612.086298014,3960962.0862980047,958650.0,6014294.962169118,-1094682.8758711857,0.95,0.25,22.0,913,0.0,0.1,0.0,0.0,1050.0,958650.0,13125.0,11983125.0,13125.0,11983125.0,true,913,0.83,53000.0,1239.904194285078,0.0,-770.446632804094,3590993.3439120385,-639.470705227398,3960962.0862980047,-770.446632804094,3590993.3439120385,-0.0,0.0,-0.0,0.0,130.975927576696,369968.74238592497,913,53000.0,1239.904194285078,-770.446632804094,1996158.9066743085,1050.0,958650.0,617.6097062385463,957012.8747850036,-2514.393371210372,106236.80063421739,0.0,0.0,1176.0701408756895,930807.9346102496,-49.73310870795773,2101.2966448379816,-770.446632804094,-4126616.328314288,true,true,11.39970495,9081.139076293988,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,914,0.9054380905631665,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4919632.965816758,3959932.9658167483,959700.0,6014315.810337232,-1094682.844520557,0.95,0.25,22.0,914,0.0,0.1,0.0,0.0,1050.0,959700.0,13125.0,11996250.0,13125.0,11996250.0,true,914,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3589753.4397177533,-1029.1204812566145,3959932.9658167483,-1239.904194285078,3589753.4397177533,-0.0,0.0,-0.0,0.0,210.78371302846335,370179.52609895344,914,53000.0,1239.904194285078,-5788.606790862181,1990370.2998834462,1050.0,959700.0,575.2745947228524,957588.1493797265,-7366.731823309957,98870.06881090744,0.0,0.0,1148.5597283975644,931956.4943386471,-145.70929067264024,1955.5873541653414,-1239.904194285078,-4127856.232508573,true,true,10.99736242,9092.136438713987,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,915,0.9054380789518225,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4919653.845335501,3958903.845335492,960750.0,6014336.658505347,-1094682.8131699283,0.95,0.25,22.0,915,0.0,0.1,0.0,0.0,1050.0,960750.0,13125.0,12009375.0,13125.0,12009375.0,true,915,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3588513.535523468,-1029.1204812566145,3958903.845335492,-1239.904194285078,3588513.535523468,-0.0,0.0,-0.0,0.0,210.78371302846335,370390.3098119819,915,53000.0,1239.904194285078,-7203.5284536442705,1983166.7714298018,1050.0,960750.0,509.0931416598888,958097.2425213864,-8644.35084972936,90225.71796117807,0.0,0.0,1102.7090404212058,933059.2033790683,-170.97978599600475,1784.6075681693367,-1239.904194285078,-4129096.1367028584,true,true,10.50561044,9102.642049153987,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,916,0.9054380673404785,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4919674.724854245,3957874.7248542355,961800.0,6014357.506673461,-1094682.7818192996,0.95,0.25,22.0,916,0.0,0.1,0.0,0.0,1050.0,961800.0,13125.0,12022500.0,13125.0,12022500.0,true,916,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3587273.631329183,-1029.1204812566145,3957874.7248542355,-1239.904194285078,3587273.631329183,-0.0,0.0,-0.0,0.0,210.78371302846335,370601.0935250104,916,53000.0,1239.904194285078,-8413.979759148646,1974752.7916706533,1050.0,961800.0,436.6270297280791,958533.8695511144,-9706.310331938274,80519.4076292398,0.0,0.0,1047.6882151572656,934106.8915942255,-191.98467209571612,1592.6228960736205,-1239.904194285078,-4130336.0408971435,true,true,9.924449014,9112.566498167987,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,917,0.9054380557291345,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,4919695.604372988,3956845.604372979,962850.0,6014378.354841575,-1094682.7504686709,0.95,0.25,22.0,917,0.0,0.1,0.0,0.0,1050.0,962850.0,13125.0,12035625.0,13125.0,12035625.0,true,917,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3586033.727134898,-1029.1204812566145,3956845.604372979,-1239.904194285078,3586033.727134898,-0.0,0.0,-0.0,0.0,210.78371302846335,370811.87723803887,917,53000.0,1239.904194285078,-2989.977634759045,1971762.814035894,1050.0,962850.0,384.40085861905004,958918.2704097334,-4293.584179081357,76225.82345015844,0.0,0.0,1004.1300619643376,935111.0216561899,-84.92437626107504,1507.6985198125456,-1239.904194285078,-4131575.9450914287,true,true,9.656220663,9122.222718830988,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,918,0.9054365884275355,666.0,0.0,2638.5017352314176,1588.5017352314176,1050.0,2634.540020914253,3.9617143171642906,4922334.10610822,3958434.1061082105,963900.0,6017012.894862489,-1094678.7887543538,0.95,0.25,22.0,918,0.0,0.1,0.0,0.0,1050.0,963900.0,13125.0,12048750.0,13125.0,12048750.0,true,918,0.8556451666405838,53000.0,1239.904194285078,0.0,1359.1938319509427,3587392.9209668487,1588.5017352314176,3958434.1061082105,1359.1938319509427,3587392.9209668487,-0.0,0.0,-0.0,0.0,229.30790328047487,371041.18514131935,918,53000.0,1239.904194285078,1359.1938319509427,1973122.007867845,1050.0,963900.0,368.81897627694923,959287.0893860103,0.0,76225.82345015844,0.0,0.0,990.3748556739934,936101.3965118639,0.0,1507.6985198125456,-1359.1938319509427,-4132935.1389233796,true,true,9.656220663,9131.878939493989,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,919,0.9054346704577334,666.0,0.0,3448.8932981082908,2398.8932981082908,1050.0,3443.7147796426625,5.1785184656280645,4925782.999406328,3960832.9994063186,964950.0,6020456.609642131,-1094673.610235888,0.95,0.25,22.0,919,0.0,0.1,0.0,0.0,1050.0,964950.0,13125.0,12061875.0,13125.0,12061875.0,true,919,0.8693485749068695,53000.0,1239.904194285078,0.0,2085.4744700640827,3589478.395436913,2398.8932981082908,3960832.9994063186,2085.4744700640827,3589478.395436913,-0.0,0.0,-0.0,0.0,313.4188280442081,371354.60396936355,919,53000.0,1239.904194285078,2085.4744700640827,1975207.482337909,1050.0,964950.0,371.3861525286555,959658.475538539,707.4284408882539,76933.25189104669,0.0,0.0,992.6673900471706,937094.0639019111,13.9924866000025,1521.691006412548,-2085.4744700640827,-4135020.6133934436,true,true,9.700925388,9141.57986488199,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,920,0.9054292190258606,666.0,0.0,9802.76479361434,8752.76479361434,1050.0,9788.045927557861,14.718866056477989,4935585.764199942,3969585.764199933,966000.0,6030244.655569689,-1094658.8913698315,0.95,0.25,22.0,920,0.0,0.1,0.0,0.0,1050.0,966000.0,13125.0,12075000.0,13125.0,12075000.0,true,920,0.9204001745035126,53000.0,1239.904194285078,0.0,8056.046243430841,3597534.441680344,8752.76479361434,3969585.764199933,8056.046243430841,3597534.441680344,-0.0,0.0,-0.0,0.0,696.7185501834992,372051.3225195471,920,53000.0,1239.904194285078,8056.046243430841,1983263.5285813399,1050.0,966000.0,397.7161223831338,960056.1916609221,6513.896636202315,83447.14852724901,0.0,0.0,1015.5927341379133,938109.656636049,128.8407507074795,1650.5317571200274,-8056.046243430841,-4143076.6596368747,true,true,10.10326792,9151.683132801989,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,921,0.9054240163061724,666.0,0.0,9355.530543366716,8305.530543366716,1050.0,9341.483200208508,14.047343158208283,4944941.294743309,3977891.2947433,967050.0,6039586.138769898,-1094644.8440266734,0.95,0.25,22.0,921,0.0,0.1,0.0,0.0,1050.0,967050.0,13125.0,12088125.0,13125.0,12088125.0,true,921,0.9187965775002612,53000.0,1239.904194285078,0.0,7631.093037569224,3605165.5347179133,8305.530543366716,3977891.2947433,7631.093037569224,3605165.5347179133,-0.0,0.0,-0.0,0.0,674.4375057974921,372725.76002534456,921,53000.0,1239.904194285078,7631.093037569224,1990894.621618909,1050.0,967050.0,445.28238281651016,960501.4740437387,6012.324857382046,89459.47338463106,0.0,0.0,1054.5658188408956,939164.2224548899,118.91997852977312,1769.4517356498004,-7631.093037569224,-4150707.752674444,true,true,10.46090572,9162.144038521988,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,922,0.9054195910318832,666.0,0.0,7957.528226825468,6907.528226825468,1050.0,7945.579986244648,11.948240580819022,4952898.822970134,3984798.8229701254,968100.0,6047531.718756142,-1094632.8957860926,0.95,0.25,22.0,922,0.0,0.1,0.0,0.0,1050.0,968100.0,13125.0,12101250.0,13125.0,12101250.0,true,922,0.9138197576226772,53000.0,1239.904194285078,0.0,6312.23577000945,3611477.7704879227,6907.528226825468,3984798.8229701254,6312.23577000945,3611477.7704879227,-0.0,0.0,-0.0,0.0,595.2924568160179,373321.05248216056,922,53000.0,1239.904194285078,6312.23577000945,1997206.8573889185,1050.0,968100.0,487.1885161867275,960988.6625599255,4646.4814921077095,94105.95487673876,0.0,0.0,1086.6613000653747,940250.8837549553,91.90446164963845,1861.356197299439,-6312.23577000945,-4157019.9884444536,true,true,10.72913407,9172.873172591988,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,923,0.9054169939191399,666.0,0.0,4670.128134916262,3620.128134916262,1050.0,4663.115930509481,7.012204406781174,4957568.951105051,3988418.9511050414,969150.0,6052194.834686652,-1094625.8835816858,0.95,0.25,22.0,923,0.0,0.1,0.0,0.0,1050.0,969150.0,13125.0,12114375.0,13125.0,12114375.0,true,923,0.8904093972703024,53000.0,1239.904194285078,0.0,3223.396110652053,3614701.1665985747,3620.128134916262,3988418.9511050414,3223.396110652053,3614701.1665985747,-0.0,0.0,-0.0,0.0,396.73202426420903,373717.7845064248,923,53000.0,1239.904194285078,3223.396110652053,2000430.2534995705,1050.0,969150.0,512.2749649538765,961500.9375248794,1574.9677067161135,95680.92258345487,0.0,0.0,1105.0015750507912,941355.885330006,31.151863931271546,1892.5080612307104,-3223.396110652053,-4160243.3845551056,true,true,10.81854352,9183.691716111987,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,924,0.9054143754849927,666.0,0.0,4708.46828353849,3658.46828353849,1050.0,4701.398511340985,7.06977219750524,4962277.419388589,3992077.41938858,970200.0,6056896.233197993,-1094618.8138094884,0.95,0.25,22.0,924,0.0,0.1,0.0,0.0,1050.0,970200.0,13125.0,12127500.0,13125.0,12127500.0,true,924,0.8907429708259587,53000.0,1239.904194285078,0.0,3258.7549075516204,3617959.9215061264,3658.46828353849,3992077.41938858,3258.7549075516204,3617959.9215061264,-0.0,0.0,-0.0,0.0,399.7133759868698,374117.49788241164,924,53000.0,1239.904194285078,3258.7549075516204,2003689.0084071222,1050.0,970200.0,525.1348313299346,962026.0723562093,1588.037978056219,97268.96056151109,0.0,0.0,1114.1717125434998,942470.0570425495,31.410385621967208,1923.9184468526776,-3258.7549075516204,-4163502.1394626573,true,true,10.90795297,9194.599669081987,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,925,0.9054102631988591,666.0,0.0,7394.712925496907,6344.712925496907,1050.0,7383.6097529361,11.103172560806167,4969672.132314086,3998422.132314077,971250.0,6064279.842950929,-1094607.7106369275,0.95,0.25,22.0,925,0.0,0.1,0.0,0.0,1050.0,971250.0,13125.0,12140625.0,13125.0,12140625.0,true,925,0.911831351555036,53000.0,1239.904194285078,0.0,5785.308162084551,3623745.229668211,6344.712925496907,3998422.132314077,5785.308162084551,3623745.229668211,-0.0,0.0,-0.0,0.0,559.4047634123554,374676.902645824,925,53000.0,1239.904194285078,5785.308162084551,2009474.3165692068,1050.0,971250.0,548.154237167416,962574.2265933767,4027.2774732533544,101296.23803476445,0.0,0.0,1130.2194534121477,943600.2764959616,79.65699825163315,2003.5754451043108,-5785.308162084551,-4169287.447624742,true,true,11.1314766,9205.731145681986,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,926,0.9054075692479736,666.0,0.0,4844.262482193488,3794.2624821934883,1050.0,4836.988814802807,7.273667390680913,4974516.394796279,4002216.3947962704,972300.0,6069116.831765732,-1094600.4369695368,0.95,0.25,22.0,926,0.0,0.1,0.0,0.0,1050.0,972300.0,13125.0,12153750.0,13125.0,12153750.0,true,926,0.8919264437979121,53000.0,1239.904194285078,0.0,3384.2030425786766,3627129.43271079,3794.2624821934883,4002216.3947962704,3384.2030425786766,3627129.43271079,-0.0,0.0,-0.0,0.0,410.0594396148117,375086.96208543883,926,53000.0,1239.904194285078,3384.2030425786766,2012858.5196117854,1050.0,972300.0,571.8367082664563,963146.0633016431,1633.783928477564,102930.02196324202,0.0,0.0,1146.2671942807958,944746.5436902423,32.315211553860614,2035.8906566581713,-3384.2030425786766,-4172671.650667321,true,true,11.22088605,9216.952031731986,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,927,0.9054053564174102,666.0,0.0,3979.111919120773,2929.111919120773,1050.0,3973.1372765995707,5.974642521202362,4978495.5067154,4005145.5067153913,973350.0,6073089.969042331,-1094594.4623270156,0.95,0.25,22.0,927,0.0,0.1,0.0,0.0,1050.0,973350.0,13125.0,12166875.0,13125.0,12166875.0,true,927,0.8785544192654062,53000.0,1239.904194285078,0.0,2573.3842210665302,3629702.816931857,2929.111919120773,4005145.5067153913,2573.3842210665302,3629702.816931857,-0.0,0.0,-0.0,0.0,355.72769805424286,375442.68978349306,927,53000.0,1239.904194285078,2573.3842210665302,2015431.903832852,1050.0,973350.0,582.1916504382081,963728.2549520814,821.7932238950675,103751.8151871371,0.0,0.0,1153.1447971439186,945899.6884873862,16.25454958933612,2052.1452062475073,-2573.3842210665302,-4175245.0348883877,true,true,11.26559077,9228.217622501985,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,928,0.9054031346855984,666.0,0.0,3995.118143789486,2945.118143789486,1050.0,3989.1194678979105,5.998675891575805,4982490.62485919,4008090.6248591808,974400.0,6077079.088510229,-1094588.463651124,0.95,0.25,22.0,928,0.0,0.1,0.0,0.0,1050.0,974400.0,13125.0,12180000.0,13125.0,12180000.0,true,928,0.8788353576853359,53000.0,1239.904194285078,0.0,2588.2739573228055,3632291.0908891796,2945.118143789486,4008090.6248591808,2588.2739573228055,3632291.0908891796,-0.0,0.0,-0.0,0.0,356.84418646668064,375799.5339699597,928,53000.0,1239.904194285078,2588.2739573228055,2018020.1777901747,1050.0,974400.0,589.1639318547457,964317.4188839361,825.0609759225669,104576.87616305966,0.0,0.0,1157.7298658902725,947057.4183532764,16.319183655220527,2068.464389902728,-2588.2739573228055,-4177833.3088457105,true,true,11.3102955,9239.527918001984,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,929,0.905400396950156,666.0,0.0,4922.995872698253,3872.995872698253,1050.0,4915.603987003511,7.391885694742122,4987413.620731887,4011963.620731879,975450.0,6081994.692497233,-1094581.071765429,0.95,0.25,22.0,929,0.0,0.1,0.0,0.0,1050.0,975450.0,13125.0,12193125.0,13125.0,12193125.0,true,929,0.8926140620591266,53000.0,1239.904194285078,0.0,3457.09057826742,3635748.181467447,3872.995872698253,4011963.620731879,3457.09057826742,3635748.181467447,-0.0,0.0,-0.0,0.0,415.90529443083324,376215.43926439056,929,53000.0,1239.904194285078,3457.09057826742,2021477.268368442,1050.0,975450.0,599.7263829082143,964917.1452668443,1659.9244711577396,106236.80063421739,0.0,0.0,1164.6074692662125,948222.0258225426,32.83225493525342,2101.296644837981,-3457.09057826742,-4181290.399423978,true,true,11.39970495,9250.927622951984,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,930,0.9054001710426611,666.0,0.0,406.22685724459086,-643.7731427554091,1050.0,405.6169070084879,0.6099502361029893,4987819.847589132,4011319.8475891235,976500.0,6082400.309404242,-1094580.461815193,0.95,0.25,22.0,930,0.0,0.1,0.0,0.0,1050.0,976500.0,13125.0,12206250.0,13125.0,12206250.0,true,930,0.83,53000.0,1239.904194285078,0.0,-775.6302924763966,3634972.5511749703,-643.7731427554091,4011319.8475891235,-775.6302924763966,3634972.5511749703,-0.0,0.0,-0.0,0.0,131.85714972098742,376347.29641411157,930,53000.0,1239.904194285078,-775.6302924763966,2020701.6380759657,1050.0,976500.0,596.1916585577569,965513.336925402,-2484.9854470803066,103751.81518713708,0.0,0.0,1162.314934636627,949384.3407571792,-49.151438590473944,2052.1452062475073,-775.6302924763966,-4182066.0297164544,true,true,11.26559077,9262.193213721983,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,931,0.9053995491076906,666.0,0.0,1118.3634640082894,68.36346400828943,1050.0,1116.6842395878566,1.679224420432867,4988938.21105314,4011388.2110531316,977550.0,6083516.99364383,-1094578.7825907727,0.95,0.25,22.0,931,0.0,0.1,0.0,0.0,1050.0,977550.0,13125.0,12219375.0,13125.0,12219375.0,true,931,0.8310719803663787,53000.0,1239.904194285078,0.0,56.81495941807475,3635029.3661343884,68.36346400828943,4011388.2110531316,56.81495941807475,3635029.3661343884,-0.0,0.0,-0.0,0.0,11.548504590214677,376358.8449187018,931,53000.0,1239.904194285078,56.81495941807475,2020758.4530353837,1050.0,977550.0,578.7262327051446,966092.0631581072,-1640.3190634166515,102111.49612372043,0.0,0.0,1150.852262514333,950535.1930196935,-32.444472384751336,2019.700733862756,-56.81495941807475,-4182122.8446758725,true,true,11.17618132,9273.369395041982,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,932,0.9053978573069401,666.0,0.0,3042.1961095530014,1992.1961095530012,1050.0,3037.6282475266457,4.567862026355858,4991980.407162693,4013380.4071626845,978600.0,6086554.621891356,-1094574.2147287463,0.95,0.25,22.0,932,0.0,0.1,0.0,0.0,1050.0,978600.0,13125.0,12232500.0,13125.0,12232500.0,true,932,0.8624170547408858,53000.0,1239.904194285078,0.0,1718.1039012669503,3636747.4700356554,1992.1961095530012,4013380.4071626845,1718.1039012669503,3636747.4700356554,-0.0,0.0,-0.0,0.0,274.0922082860509,376632.93712698785,932,53000.0,1239.904194285078,1718.1039012669503,2022476.5569366508,1050.0,978600.0,571.8367074989714,966663.8998656062,0.0,102111.49612372043,0.0,0.0,1146.2671937679788,951681.4602134614,0.0,2019.700733862756,-1718.1039012669503,-4183840.9485771395,true,true,11.17618132,9284.545576361981,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,933,0.9053961655061896,666.0,0.0,3042.1961095530014,1992.1961095530012,1050.0,3037.6282475266457,4.567862026355858,4995022.603272246,4015372.6032722373,979650.0,6089592.250138883,-1094569.64686672,0.95,0.25,22.0,933,0.0,0.1,0.0,0.0,1050.0,979650.0,13125.0,12245625.0,13125.0,12245625.0,true,933,0.8624170547408858,53000.0,1239.904194285078,0.0,1718.1039012669503,3638465.5739369225,1992.1961095530012,4015372.6032722373,1718.1039012669503,3638465.5739369225,-0.0,0.0,-0.0,0.0,274.0922082860509,376907.0293352739,933,53000.0,1239.904194285078,1718.1039012669503,2024194.6608379178,1050.0,979650.0,571.8367074989714,967235.7365731052,0.0,102111.49612372043,0.0,0.0,1146.2671937679788,952827.7274072294,0.0,2019.700733862756,-1718.1039012669503,-4185559.0524784066,true,true,11.17618132,9295.72175768198,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,934,0.9053959430736721,666.0,0.0,399.9781530428204,-650.0218469571796,1050.0,399.3775852454588,0.6005677973615922,4995422.581425289,4014722.5814252803,980700.0,6089991.627724128,-1094569.0462989225,0.95,0.25,22.0,934,0.0,0.1,0.0,0.0,1050.0,980700.0,13125.0,12258750.0,13125.0,12258750.0,true,934,0.83,53000.0,1239.904194285078,0.0,-783.1588517556381,3637682.4150851667,-650.0218469571796,4014722.5814252803,-783.1588517556381,3637682.4150851667,-0.0,0.0,-0.0,0.0,133.13700479845852,377040.16634007235,934,53000.0,1239.904194285078,-783.1588517556381,2023411.5019861623,1050.0,980700.0,561.6052820545196,967797.3418551597,-2435.971746093404,99675.52437762702,0.0,0.0,1139.389590904856,953967.1169981342,-48.18197862160998,1971.518755241146,-783.1588517556381,-4186342.2113301624,true,true,11.04206715,9306.76382483198,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,935,0.905395336854645,666.0,0.0,1090.1030544229077,40.103054422907746,1050.0,1088.4662630499004,1.6367913730073689,4996512.684479712,4014762.684479703,981750.0,6091080.093987178,-1094567.4095075496,0.95,0.25,22.0,935,0.0,0.1,0.0,0.0,1050.0,981750.0,13125.0,12271875.0,13125.0,12271875.0,true,935,0.8306285045306114,53000.0,1239.904194285078,0.0,33.310740122409584,3637715.7258252893,40.103054422907746,4014762.684479703,33.310740122409584,3637715.7258252893,-0.0,0.0,-0.0,0.0,6.7923143004981625,377046.95865437284,935,53000.0,1239.904194285078,33.310740122409584,2023444.8127262846,1050.0,981750.0,544.8253747968071,968342.1672299565,-1607.643385797307,98067.88099182972,0.0,0.0,1127.926919295379,955095.0439174295,-31.798168172469662,1939.7205870686764,-33.310740122409584,-4186375.522070285,true,true,10.9526577,9317.71648253198,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,936,0.9053947366725943,666.0,0.0,1079.2473635500162,29.247363550016143,1050.0,1077.6268720131543,1.6204915368618862,4997591.931843261,4014791.9318432533,982800.0,6092157.720859191,-1094565.7890160128,0.95,0.25,22.0,936,0.0,0.1,0.0,0.0,1050.0,982800.0,13125.0,12285000.0,13125.0,12285000.0,true,936,0.8304582776445167,53000.0,1239.904194285078,0.0,24.288715159389426,3637740.014540449,29.247363550016143,4014791.9318432533,24.288715159389426,3637740.014540449,-0.0,0.0,-0.0,0.0,4.958648390626717,377051.91730276344,936,53000.0,1239.904194285078,24.288715159389426,2023469.101441444,1050.0,982800.0,531.6446942956926,968873.8119242522,-1594.5731144572017,96473.30787737251,0.0,0.0,1118.756781802671,956213.8006992321,-31.539646481772518,1908.180940586904,-24.288715159389426,-4186399.8107854445,true,true,10.86324825,9328.57973078198,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,937,0.9053930938572157,666.0,0.0,2954.110613756643,1904.110613756643,1050.0,2949.675012234486,4.435601522157122,5000546.042457018,4016696.04245701,983850.0,6095107.395871426,-1094561.3534144906,0.95,0.25,22.0,937,0.0,0.1,0.0,0.0,1050.0,983850.0,13125.0,12298125.0,13125.0,12298125.0,true,937,0.8609303121719124,53000.0,1239.904194285078,0.0,1639.3065451113584,3639379.32108556,1904.110613756643,4016696.04245701,1639.3065451113584,3639379.32108556,-0.0,0.0,-0.0,0.0,264.8040686452846,377316.7213714087,937,53000.0,1239.904194285078,1639.3065451113584,2025108.4079865552,1050.0,983850.0,525.1348320550419,969398.9467563073,0.0,96473.30787737251,0.0,0.0,1114.1717130563165,957327.9724122884,0.0,1908.180940586904,-1639.3065451113584,-4188039.117330556,true,true,10.86324825,9339.44297903198,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,938,0.9053904647201915,666.0,0.0,4727.714197012844,3677.714197012844,1050.0,4720.615527047359,7.098669965484751,5005273.756654031,4020373.756654023,984900.0,6099828.011398474,-1094554.254744525,0.95,0.25,22.0,938,0.0,0.1,0.0,0.0,1050.0,984900.0,13125.0,12311250.0,13125.0,12311250.0,true,938,0.8909105116701636,53000.0,1239.904194285078,0.0,3276.514237037338,3642655.8353225975,3677.714197012844,4020373.756654023,3276.514237037338,3642655.8353225975,-0.0,0.0,-0.0,0.0,401.1999599755063,377717.9213313842,938,53000.0,1239.904194285078,3276.514237037338,2028384.9222235926,1050.0,984900.0,531.6446942956926,969930.591450603,1594.5731144572017,98067.88099182972,0.0,0.0,1118.756781802671,958446.729194091,31.539646481772518,1939.7205870686764,-3276.514237037338,-4191315.631567593,true,true,10.9526577,9350.395636731979,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,939,0.9053863358012789,666.0,0.0,7424.6219885745695,6374.6219885745695,1050.0,7413.473907510644,11.14808106392578,5012698.378642606,4026748.3786425977,985950.0,6107241.4853059845,-1094543.106663461,0.95,0.25,22.0,939,0.0,0.1,0.0,0.0,1050.0,985950.0,13125.0,12324375.0,13125.0,12324375.0,true,939,0.9119368014595255,53000.0,1239.904194285078,0.0,5813.252386774253,3648469.087709372,6374.6219885745695,4026748.3786425977,5813.252386774253,3648469.087709372,-0.0,0.0,-0.0,0.0,561.3696018003166,378279.29093318456,939,53000.0,1239.904194285078,5813.252386774253,2034198.1746103668,1050.0,985950.0,554.8525859309602,970485.4440365339,4043.615131890711,102111.49612372043,0.0,0.0,1134.8045221585019,959581.5337162495,79.98014679407964,2019.7007338627561,-5813.252386774253,-4197128.883954368,true,true,11.17618132,9361.571818051978,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,940,0.9053846440005284,666.0,0.0,3042.1961095530014,1992.1961095530012,1050.0,3037.6282475266457,4.567862026355858,5015740.5747521585,4028740.5747521506,987000.0,6110279.113553511,-1094538.5388014347,0.95,0.25,22.0,940,0.0,0.1,0.0,0.0,1050.0,987000.0,13125.0,12337500.0,13125.0,12337500.0,true,940,0.8624170547408858,53000.0,1239.904194285078,0.0,1718.1039012669503,3650187.191610639,1992.1961095530012,4028740.5747521506,1718.1039012669503,3650187.191610639,-0.0,0.0,-0.0,0.0,274.0922082860509,378553.3831414706,940,53000.0,1239.904194285078,1718.1039012669503,2035916.2785116339,1050.0,987000.0,571.8367074989714,971057.2807440329,0.0,102111.49612372043,0.0,0.0,1146.2671937679788,960727.8009100175,0.0,2019.7007338627561,-1718.1039012669503,-4198846.987855635,true,true,11.17618132,9372.747999371977,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,941,0.9053846323891844,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5015761.454270902,4027711.454270894,988050.0,6110299.961721625,-1094538.507450806,0.95,0.25,22.0,941,0.0,0.1,0.0,0.0,1050.0,988050.0,13125.0,12350625.0,13125.0,12350625.0,true,941,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3648947.287416354,-1029.1204812566145,4027711.454270894,-1239.904194285078,3648947.287416354,-0.0,0.0,-0.0,0.0,210.78371302846335,378764.1668544991,941,53000.0,1239.904194285078,-1610.2215097641129,2034306.0570018697,1050.0,988050.0,558.22212647103,971615.5028705039,-3241.4273128129985,98870.06881090743,0.0,0.0,1137.0970562752705,961864.8979662927,-64.11337969741494,1955.5873541653411,-1239.904194285078,-4200086.89204992,true,true,10.99736242,9383.745361791976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,942,0.905382968761184,666.0,0.0,2991.5358704567134,1941.5358704567134,1050.0,2987.044074855427,4.4917956012863565,5018752.990141359,4029652.990141351,989100.0,6113287.005796481,-1094534.0156552047,0.95,0.25,22.0,942,0.0,0.1,0.0,0.0,1050.0,989100.0,13125.0,12363750.0,13125.0,12363750.0,true,942,0.8615613640157782,53000.0,1239.904194285078,0.0,1672.7522928362473,3650620.03970919,1941.5358704567134,4029652.990141351,1672.7522928362473,3650620.03970919,-0.0,0.0,-0.0,0.0,268.7835776204661,379032.95043211954,942,53000.0,1239.904194285078,1672.7522928362473,2035978.809294706,1050.0,989100.0,544.8253740536853,972160.3282445576,0.0,98870.06881090743,0.0,0.0,1127.926918782562,962992.8248850752,0.0,1955.5873541653411,-1672.7522928362473,-4201759.644342756,true,true,10.99736242,9394.742724211976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,943,0.90538295714984,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5018773.869660103,4028623.8696600944,990150.0,6113307.853964595,-1094533.984304576,0.95,0.25,22.0,943,0.0,0.1,0.0,0.0,1050.0,990150.0,13125.0,12376875.0,13125.0,12376875.0,true,943,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3649380.1355149047,-1029.1204812566145,4028623.8696600944,-1239.904194285078,3649380.1355149047,-0.0,0.0,-0.0,0.0,210.78371302846335,379243.734145148,943,53000.0,1239.904194285078,-2412.104169541831,2033566.7051251642,1050.0,990150.0,528.3830784558678,972688.7113230135,-3978.2639528042732,94891.80485810315,0.0,0.0,1116.4642466602684,964109.2891317355,-78.68754185369414,1876.899812311647,-1239.904194285078,-4202999.548537041,true,true,10.77383879,9405.516563001976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,944,0.9053793790122657,666.0,0.0,6434.206985987241,5384.206985987241,1050.0,6424.54601453681,9.660971450431292,5025208.07664609,4034008.0766460816,991200.0,6119732.399979132,-1094524.3233331256,0.95,0.25,22.0,944,0.0,0.1,0.0,0.0,1050.0,991200.0,13125.0,12390000.0,13125.0,12390000.0,true,944,0.906020787286387,53000.0,1239.904194285078,0.0,4878.203452357025,3654258.338967262,5384.206985987241,4034008.0766460816,4878.203452357025,3654258.338967262,-0.0,0.0,-0.0,0.0,506.0035336302162,379749.73767877824,944,53000.0,1239.904194285078,4878.203452357025,2038444.9085775213,1050.0,991200.0,525.1348313299344,973213.8461543435,3176.0761337265612,98067.8809918297,0.0,0.0,1114.1717125434996,965223.4608442789,62.82077475702944,1939.7205870686767,-4878.203452357025,-4207877.751989398,true,true,10.9526577,9416.469220701976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,945,0.9053747516802034,666.0,0.0,8320.868514393867,7270.8685143938665,1050.0,8308.374717825709,12.49379656815896,5033528.945160483,4041278.9451604756,992250.0,6128040.774696958,-1094511.8295365574,0.95,0.25,22.0,945,0.0,0.1,0.0,0.0,1050.0,992250.0,13125.0,12403125.0,13125.0,12403125.0,true,945,0.9151080385849667,53000.0,1239.904194285078,0.0,6653.630225016162,3660911.969192278,7270.8685143938665,4041278.9451604756,6653.630225016162,3660911.969192278,-0.0,0.0,-0.0,0.0,617.2382893777049,380366.97596815595,945,53000.0,1239.904194285078,6653.630225016162,2045098.5388025376,1050.0,992250.0,558.2221272262844,973772.0682815698,4862.140971412295,102930.021963242,0.0,0.0,1137.0970567880875,966360.557901067,96.17006958949486,2035.8906566581716,-6653.630225016162,-4214531.382214414,true,true,11.22088605,9427.690106751976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,946,0.9053705223618264,666.0,0.0,7605.160305709623,6555.160305709623,1050.0,7593.74114609144,11.419159618182617,5041134.105466193,4047834.105466185,993300.0,6135634.51584305,-1094500.4103769392,0.95,0.25,22.0,946,0.0,0.1,0.0,0.0,1050.0,993300.0,13125.0,12416250.0,13125.0,12416250.0,true,946,0.9125738408202795,53000.0,1239.904194285078,0.0,5982.067817374068,3666894.0370096522,6555.160305709623,4047834.105466185,5982.067817374068,3666894.0370096522,-0.0,0.0,-0.0,0.0,573.0924883355547,380940.0684564915,946,53000.0,1239.904194285078,5982.067817374068,2051080.6066199117,1050.0,993300.0,596.1916585577573,974368.2599401275,4141.642164748756,107071.66412799076,0.0,0.0,1162.314934636627,967522.8728357035,81.91905943092799,2117.8097160890998,-5982.067817374068,-4220513.450031788,true,true,11.44440967,9439.134516421977,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,947,0.9053705107504824,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5041154.984984936,4046804.9849849287,994350.0,6135655.364011164,-1094500.3790263105,0.95,0.25,22.0,947,0.0,0.1,0.0,0.0,1050.0,994350.0,13125.0,12429375.0,13125.0,12429375.0,true,947,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3665654.132815367,-1029.1204812566145,4046804.9849849287,-1239.904194285078,3665654.132815367,-0.0,0.0,-0.0,0.0,210.78371302846335,381150.85216952,947,53000.0,1239.904194285078,-2465.0546309853,2048615.5519889265,1050.0,994350.0,596.1916585577573,974964.4515986852,-4141.642164748756,102930.021963242,0.0,0.0,1162.314934636627,968685.1877703401,-81.91905943092799,2035.8906566581718,-1239.904194285078,-4221753.354226073,true,true,11.22088605,9450.355402471976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,948,0.9053704991391384,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5041175.86450368,4045775.8645036723,995400.0,6135676.212179278,-1094500.3476756818,0.95,0.25,22.0,948,0.0,0.1,0.0,0.0,1050.0,995400.0,13125.0,12442500.0,13125.0,12442500.0,true,948,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3664414.228621082,-1029.1204812566145,4045775.8645036723,-1239.904194285078,3664414.228621082,-0.0,0.0,-0.0,0.0,210.78371302846335,381361.63588254846,948,53000.0,1239.904194285078,-7331.457145017592,2041284.094843909,1050.0,995400.0,541.5100161785963,975505.9616148638,-8824.06708650325,94105.95487673876,0.0,0.0,1125.6343846657937,969810.8221550059,-174.53445935873253,1861.3561972994394,-1239.904194285078,-4222993.258420358,true,true,10.72913407,9461.084536541975,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,949,0.9053704875277944,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5041196.744022423,4044746.744022416,996450.0,6135697.060347392,-1094500.316325053,0.95,0.25,22.0,949,0.0,0.1,0.0,0.0,1050.0,996450.0,13125.0,12455625.0,13125.0,12455625.0,true,949,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3663174.3244267968,-1029.1204812566145,4044746.744022416,-1239.904194285078,3663174.3244267968,-0.0,0.0,-0.0,0.0,210.78371302846335,381572.41959557694,949,53000.0,1239.904194285078,-13828.263987209706,2027455.8308566993,1050.0,996450.0,445.28238242675064,975951.2439972906,-15030.81223993688,79075.14263680187,0.0,0.0,1054.5658185332054,970865.3879735391,-297.29994823278105,1564.0562490666584,-1239.904194285078,-4224233.162614644,true,true,9.835039564,9470.919576105976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,950,0.9053704759164504,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5041217.623541167,4043717.6235411596,997500.0,6135717.908515506,-1094500.2849744244,0.95,0.25,22.0,950,0.0,0.1,0.0,0.0,1050.0,997500.0,13125.0,12468750.0,13125.0,12468750.0,true,950,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3661934.4202325116,-1029.1204812566145,4043717.6235411596,-1239.904194285078,3661934.4202325116,-0.0,0.0,-0.0,0.0,210.78371302846335,381783.2033086054,950,53000.0,1239.904194285078,-12020.613534164533,2015435.2173225346,1050.0,997500.0,341.35660067922026,976292.6005979698,-13068.637733221456,66006.50490358041,0.0,0.0,965.1569773639187,971830.5449509029,-258.4893789862169,1305.5668700804415,-1239.904194285078,-4225473.066808929,true,true,8.985649783,9479.905225888977,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,951,0.9053704643051064,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5041238.503059911,4042688.503059903,998550.0,6135738.756683621,-1094500.2536237957,0.95,0.25,22.0,951,0.0,0.1,0.0,0.0,1050.0,998550.0,13125.0,12481875.0,13125.0,12481875.0,true,951,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3660694.5160382264,-1029.1204812566145,4042688.503059903,-1239.904194285078,3660694.5160382264,-0.0,0.0,-0.0,0.0,210.78371302846335,381993.9870216339,951,53000.0,1239.904194285078,-18646.654255641828,1996788.5630668928,1050.0,998550.0,231.72195810245648,976524.3225560723,-19344.001830194637,46662.50307338577,0.0,0.0,848.237723562662,972678.7826744656,-382.6121071123064,922.9547629681351,-1239.904194285078,-4226712.971003214,true,true,7.555098574,9487.460324462976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,952,0.9053704526937624,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5041259.382578654,4041659.3825786468,999600.0,6135759.604851735,-1094500.222273167,0.95,0.25,22.0,952,0.0,0.1,0.0,0.0,1050.0,999600.0,13125.0,12495000.0,13125.0,12495000.0,true,952,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3659454.6118439413,-1029.1204812566145,4041659.3825786468,-1239.904194285078,3659454.6118439413,-0.0,0.0,-0.0,0.0,210.78371302846335,382204.77073466236,952,53000.0,1239.904194285078,-15940.26889767089,1980848.294169222,1050.0,999600.0,129.79606777907512,976654.1186238513,-16444.035347370926,30218.467726014846,0.0,0.0,699.2229883317995,973378.0056627974,-325.25260641083815,597.702156557297,-1239.904194285078,-4227952.875197499,true,true,6.079842639,9493.540167101975,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,953,0.9053704410824184,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5041280.262097398,4040630.2620973904,1000650.0,6135780.453019849,-1094500.1909225383,0.95,0.25,22.0,953,0.0,0.1,0.0,0.0,1050.0,1000650.0,13125.0,12508125.0,13125.0,12508125.0,true,953,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3658214.707649656,-1029.1204812566145,4040630.2620973904,-1239.904194285078,3658214.707649656,-0.0,0.0,-0.0,0.0,210.78371302846335,382415.55444769084,953,53000.0,1239.904194285078,-12530.154928212234,1968318.1392410097,1050.0,1000650.0,62.45334733249567,976716.5719711839,-12885.653919256727,17332.813806758117,0.0,0.0,547.9157187277598,973925.9213815251,-254.87007501576295,342.8320815415341,-1239.904194285078,-4229192.779391784,true,true,4.604586705,9498.144753806975,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,954,0.9053704294710744,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5041301.141616141,4039601.141616134,1001700.0,6135801.301187963,-1094500.1595719096,0.95,0.25,22.0,954,0.0,0.1,0.0,0.0,1050.0,1001700.0,13125.0,12521250.0,13125.0,12521250.0,true,954,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3656974.803455371,-1029.1204812566145,4039601.141616134,-1239.904194285078,3656974.803455371,-0.0,0.0,-0.0,0.0,210.78371302846335,382626.3381607193,954,53000.0,1239.904194285078,-9091.465134306593,1959226.6741067031,1050.0,1001700.0,23.686469147464926,976740.2584403313,-9327.272508611564,8005.541298146552,0.0,0.0,396.6084491237201,974322.5298306488,-184.48754396621402,158.34453757532006,-1239.904194285078,-4230432.683586069,true,true,3.12933077,9501.274084576975,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,955,0.9053704178597304,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5041322.021134885,4038572.0211348776,1002750.0,6135822.149356077,-1094500.1282212809,0.95,0.25,22.0,955,0.0,0.1,0.0,0.0,1050.0,1002750.0,13125.0,12534375.0,13125.0,12534375.0,true,955,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3655734.899261086,-1029.1204812566145,4038572.0211348776,-1239.904194285078,3655734.899261086,-0.0,0.0,-0.0,0.0,210.78371302846335,382837.1218737478,955,53000.0,1239.904194285078,-5632.090722019353,1953594.5833846838,1050.0,1002750.0,5.604196448972666,976745.8626367802,-5768.89108532145,2236.6502128251022,0.0,0.0,245.30117951968046,974567.8310101685,-114.10501266655588,44.23952490876418,-1239.904194285078,-4231672.587780355,true,true,1.654074836,9502.928159412975,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,956,0.9053704062483864,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5041342.900653629,4037542.900653621,1003800.0,6135842.997524192,-1094500.0968706522,0.95,0.25,22.0,956,0.0,0.1,0.0,0.0,1050.0,1003800.0,13125.0,12547500.0,13125.0,12547500.0,true,956,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3654494.9950668006,-1029.1204812566145,4037542.900653621,-1239.904194285078,3654494.9950668006,-0.0,0.0,-0.0,0.0,210.78371302846335,383047.90558677627,956,53000.0,1239.904194285078,-2159.9229489961403,1951434.6604356878,1050.0,1003800.0,0.3152924620086424,976746.1779292423,-2210.5096698522,26.14054297290204,0.0,0.0,93.99390991564074,974661.8249200842,-43.722481521589515,0.5170433871746667,-1239.904194285078,-4232912.49197464,true,true,0.178818901,9503.106978313976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,957,0.9053698304027293,666.0,0.0,1035.4856604906352,-14.514339509364836,1050.0,1033.9308772166253,1.5547832740099627,5042378.386314119,4037528.3863141118,1004850.0,6136876.928401408,-1094498.5420873782,0.95,0.25,22.0,957,0.0,0.1,0.0,0.0,1050.0,1004850.0,13125.0,12560625.0,13125.0,12560625.0,true,957,0.83,53000.0,1239.904194285078,0.0,-17.48715603537932,3654477.5079107652,-14.514339509364836,4037528.3863141118,-17.48715603537932,3654477.5079107652,-0.0,0.0,-0.0,0.0,2.972816526014485,383050.8784033023,957,53000.0,1239.904194285078,-17.48715603537932,1951417.1732796524,1050.0,1004850.0,0.00029278039365004493,976746.1782220226,-26.140542972588076,3.1396396593663667e-10,0.0,0.0,9.170137543990027,974670.9950576283,-0.5170433871749214,-2.546851618490109e-13,-17.48715603537932,-4232929.979130675,true,true,0.0,9503.106978313976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,958,0.9053692464854788,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5043428.386314119,4037528.3863141118,1005900.0,6137925.351824831,-1094496.9655108016,0.95,0.25,22.0,958,0.0,0.1,0.0,0.0,1050.0,1005900.0,13125.0,12573750.0,13125.0,12573750.0,true,958,0.83,53000.0,1239.904194285078,0.0,0.0,3654477.5079107652,0.0,4037528.3863141118,0.0,3654477.5079107652,-0.0,0.0,-0.0,0.0,0.0,383050.8784033023,958,53000.0,1239.904194285078,0.0,1951417.1732796524,1050.0,1005900.0,0.0,976746.1782220226,0.0,3.1396396593663667e-10,0.0,0.0,0.0,974670.9950576283,0.0,-2.546851618490109e-13,0.0,-4232929.979130675,true,true,0.0,9503.106978313976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,959,0.9053686625682282,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5044478.386314119,4037528.3863141118,1006950.0,6138973.775248255,-1094495.388934225,0.95,0.25,22.0,959,0.0,0.1,0.0,0.0,1050.0,1006950.0,13125.0,12586875.0,13125.0,12586875.0,true,959,0.83,53000.0,1239.904194285078,0.0,0.0,3654477.5079107652,0.0,4037528.3863141118,0.0,3654477.5079107652,-0.0,0.0,-0.0,0.0,0.0,383050.8784033023,959,53000.0,1239.904194285078,0.0,1951417.1732796524,1050.0,1006950.0,0.0,976746.1782220226,0.0,3.1396396593663667e-10,0.0,0.0,0.0,974670.9950576283,0.0,-2.546851618490109e-13,0.0,-4232929.979130675,true,true,0.0,9503.106978313976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,960,0.905367608987144,666.0,0.0,1894.549505743984,844.5495057439839,1050.0,1891.7048368164403,2.8446689275435193,5046372.935819863,4038372.935819856,1008000.0,6140865.480085071,-1094492.5442652975,0.95,0.25,22.0,960,0.0,0.1,0.0,0.0,1050.0,1008000.0,13125.0,12600000.0,13125.0,12600000.0,true,960,0.8434401310529319,53000.0,1239.904194285078,0.0,712.3269458053946,3655189.8348565707,844.5495057439839,4038372.935819856,712.3269458053946,3655189.8348565707,-0.0,0.0,-0.0,0.0,132.22255993858926,383183.1009632409,960,53000.0,1239.904194285078,712.3269458053946,1952129.5002254578,1050.0,1008000.0,0.0365975493290532,976746.2148195719,653.5135757765464,653.5135757768604,0.0,0.0,45.85068777123183,974716.8457453995,12.92608470828739,12.926084708287137,-712.3269458053946,-4233642.30607648,true,true,0.894094506,9504.001072819976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,961,0.9053644389786578,666.0,0.0,5700.309259775642,4650.309259775642,1050.0,5691.750236863066,8.55902291257604,5052073.245079639,4043023.2450796315,1009050.0,6146557.230321934,-1094483.985242385,0.95,0.25,22.0,961,0.0,0.1,0.0,0.0,1050.0,1009050.0,13125.0,12613125.0,13125.0,12613125.0,true,961,0.8994600707135636,53000.0,1239.904194285078,0.0,4182.767495637739,3659372.6023522085,4650.309259775642,4043023.2450796315,4182.767495637739,3659372.6023522085,-0.0,0.0,-0.0,0.0,467.54176413790356,383650.6427273788,961,53000.0,1239.904194285078,4182.767495637739,1956312.2677210956,1050.0,1009050.0,1.7796336044451622,976747.9944531764,3935.7855066277507,4589.299082404611,0.0,0.0,167.35501031884266,974884.2007557183,77.84734508670006,90.7734297949872,-4182.767495637739,-4237825.073572118,true,true,2.36935044,9506.370423259976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,962,0.9053590358813831,666.0,0.0,9715.84951945221,8665.84951945221,1050.0,9701.26115681039,14.588362641820135,5061789.094599091,4051689.0945990835,1010100.0,6156258.491478745,-1094469.396879743,0.95,0.25,22.0,962,0.0,0.1,0.0,0.0,1050.0,1010100.0,13125.0,12626250.0,13125.0,12626250.0,true,962,0.9200880942233164,53000.0,1239.904194285078,0.0,7973.344969178825,3667345.9473213875,8665.84951945221,4051689.0945990835,7973.344969178825,3667345.9473213875,-0.0,0.0,-0.0,0.0,692.5045502733847,384343.14727765217,962,53000.0,1239.904194285078,7973.344969178825,1964285.6126902744,1050.0,1010100.0,12.285884218859382,976760.2803373953,7494.166928675301,12083.466011079912,0.0,0.0,318.6622799228823,975202.8630356411,148.22987636178107,239.00330615676825,-7973.344969178825,-4245798.418541296,true,true,3.844606375,9510.215029634976,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,963,0.9053514159849174,666.0,0.0,13702.09782465103,12652.09782465103,1050.0,13681.524104193595,20.57372045743398,5075491.192423742,4064341.1924237343,1011150.0,6169940.015582939,-1094448.8231592856,0.95,0.25,22.0,963,0.0,0.1,0.0,0.0,1050.0,1011150.0,13125.0,12639375.0,13125.0,12639375.0,true,963,0.9311137187313812,53000.0,1239.904194285078,0.0,11780.541855264039,3679126.4891766515,12652.09782465103,4064341.1924237343,11780.541855264039,3679126.4891766515,-0.0,0.0,-0.0,0.0,871.5559693869909,385214.7032470392,963,53000.0,1239.904194285078,11780.541855264039,1976066.1545455384,1050.0,1011150.0,39.41155773817889,976799.6918951335,11052.548340563031,23136.014351642945,0.0,0.0,469.9695495269221,975672.8325851681,218.61240743590727,457.61571359267555,-11780.541855264039,-4257578.960396561,true,true,5.319862309,9515.534891943975,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,964,0.9053415436446578,666.0,0.0,17752.4422548642,16702.4422548642,1050.0,17725.786936163204,26.655318700997295,5093243.634678607,4081043.6346785985,1012200.0,6187665.802519102,-1094422.1678405846,0.95,0.25,22.0,964,0.0,0.1,0.0,0.0,1050.0,1012200.0,13125.0,12652500.0,13125.0,12652500.0,true,964,0.9347285371851975,53000.0,1239.904194285078,0.0,15612.249416309445,3694738.738592961,16702.4422548642,4081043.6346785985,15612.249416309445,3694738.738592961,-0.0,0.0,-0.0,0.0,1090.1928385547544,386304.8960855939,964,53000.0,1239.904194285078,15612.249416309445,1991678.4039618478,1050.0,1012200.0,91.0478909374139,976890.7397860709,14610.929767434664,37746.94411907761,0.0,0.0,621.2768191309617,976294.1094042991,288.99493880640534,746.6106523990809,-15612.249416309445,-4273191.20981287,true,true,6.795118244,9522.330010187974,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,965,0.9053329458985867,666.0,0.0,15460.466985131821,14410.466985131821,1050.0,15437.25307073973,23.213914392089823,5108704.1016637385,4095454.10166373,1013250.0,6203103.055589842,-1094398.9539261926,0.95,0.25,22.0,965,0.0,0.1,0.0,0.0,1050.0,1013250.0,13125.0,12665625.0,13125.0,12665625.0,true,965,0.9326795737789131,53000.0,1239.904194285078,0.0,13440.348205647846,3708179.086798609,14410.466985131821,4095454.10166373,13440.348205647846,3708179.086798609,-0.0,0.0,-0.0,0.0,970.1187794839752,387275.01486507786,965,53000.0,1239.904194285078,13440.348205647846,2005118.7521674957,1050.0,1013250.0,159.95774591967142,977050.6975319906,12287.689007127836,50034.633126205445,0.0,0.0,749.6587449006672,977043.7681491998,243.04270769967127,989.6533600987522,-13440.348205647846,-4286631.558018518,true,true,7.823326926,9530.153337113974,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,966,0.9053277268747785,666.0,0.0,9384.848611991862,8334.848611991862,1050.0,9370.757247709591,14.091364282270062,5118088.95027573,4103788.950275722,1014300.0,6212473.812837551,-1094384.8625619104,0.95,0.25,22.0,966,0.0,0.1,0.0,0.0,1050.0,1014300.0,13125.0,12678750.0,13125.0,12678750.0,true,966,0.9189015287995165,53000.0,1239.904194285078,0.0,7658.90513187185,3715837.9919304806,8334.848611991862,4103788.950275722,7658.90513187185,3715837.9919304806,-0.0,0.0,-0.0,0.0,675.9434801200114,387950.95834519784,966,53000.0,1239.904194285078,7658.90513187185,2012777.6572993675,1050.0,1014300.0,215.2204936962578,977265.9180256869,6487.75601823709,56522.38914444253,0.0,0.0,827.604914101505,977871.3730633013,128.32370583699773,1117.9770659357498,-7658.90513187185,-4294290.4631503895,true,true,8.315078904,9538.468416017973,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,967,0.9053210615338015,666.0,0.0,11985.61614480613,10935.61614480613,1050.0,11967.619724168284,17.99642063784704,5130074.5664205365,4114724.566420528,1015350.0,6224441.43256172,-1094366.8661412725,0.95,0.25,22.0,967,0.0,0.1,0.0,0.0,1050.0,1015350.0,13125.0,12691875.0,13125.0,12691875.0,true,967,0.9283079998116726,53000.0,1239.904194285078,0.0,10151.619950093213,3725989.611880574,10935.61614480613,4114724.566420528,10151.619950093213,3725989.611880574,-0.0,0.0,-0.0,0.0,783.9961947129177,388734.9545399108,967,53000.0,1239.904194285078,10151.619950093213,2022929.2772494606,1050.0,1015350.0,263.1018680130599,977529.0198936999,8828.968403975547,65351.35754841808,0.0,0.0,884.9182737899039,978756.2913370912,174.63140431470188,1292.6084702504518,-10151.619950093213,-4304442.083100483,true,true,8.940945058,9547.409361075974,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,968,0.9053151812571636,666.0,0.0,10573.91345032471,9523.91345032471,1050.0,10558.0367034023,15.876746922409474,5140648.479870861,4124248.479870853,1016400.0,6234999.469265122,-1094350.98939435,0.95,0.25,22.0,968,0.0,0.1,0.0,0.0,1050.0,1016400.0,13125.0,12705000.0,13125.0,12705000.0,true,968,0.9231783811364311,53000.0,1239.904194285078,0.0,8792.271001154248,3734781.882881728,9523.91345032471,4124248.479870853,8792.271001154248,3734781.882881728,-0.0,0.0,-0.0,0.0,731.642449170462,389466.59698908124,968,53000.0,1239.904194285078,8792.271001154248,2031721.548250615,1050.0,1016400.0,317.60511140420454,977846.6250051041,7386.337183979642,72737.69473239772,0.0,0.0,942.2316334783029,979698.5229705696,146.0970722920986,1438.7055425425503,-8792.271001154248,-4313234.354101637,true,true,9.432697036,9556.842058111974,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,969,0.9053098695404007,666.0,0.0,9551.529082929786,8501.529082929786,1050.0,9537.187447670132,14.341635259654334,5150200.008953791,4132750.0089537827,1017450.0,6244536.656712792,-1094336.6477590904,0.95,0.25,22.0,969,0.0,0.1,0.0,0.0,1050.0,1017450.0,13125.0,12718125.0,13125.0,12718125.0,true,969,0.9194986588292522,53000.0,1239.904194285078,0.0,7817.1445897518215,3742599.02747148,8501.529082929786,4132750.0089537827,7817.1445897518215,3742599.02747148,-0.0,0.0,-0.0,0.0,684.3844931779649,390150.98148225923,969,53000.0,1239.904194285078,7817.1445897518215,2039538.6928403666,1050.0,1017450.0,366.26365757403704,978212.8886626782,6337.447904404142,79075.14263680186,0.0,0.0,988.0823212495346,980686.6052918191,125.3507065241081,1564.0562490666584,-7817.1445897518215,-4321051.498691389,true,true,9.835039564,9566.677097675974,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,970,0.9053039000691641,666.0,0.0,10734.303177732088,9684.303177732088,1050.0,10718.185605393151,16.11757233893707,5160934.312131523,4142434.312131515,1018500.0,6255254.842318185,-1094320.5301867514,0.95,0.25,22.0,970,0.0,0.1,0.0,0.0,1050.0,1018500.0,13125.0,12731250.0,13125.0,12731250.0,true,970,0.923758323265888,53000.0,1239.904194285078,0.0,8945.955665460306,3751544.9831369403,9684.303177732088,4142434.312131515,8945.955665460306,3751544.9831369403,-0.0,0.0,-0.0,0.0,738.3475122717828,390889.328994531,970,53000.0,1239.904194285078,8945.955665460306,2048484.648505827,1050.0,1018500.0,416.8689602640805,978629.7576229422,7352.027776457926,86427.17041325978,0.0,0.0,1031.6404748014347,981718.2457666205,145.4184539368638,1709.4747030035223,-8945.955665460306,-4329997.454356849,true,true,10.28208682,9576.959184495974,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,971,0.9052952965354504,666.0,0.0,15470.874323952574,14420.874323952574,1050.0,15447.644782925618,23.22954102695582,5176405.186455476,4156855.1864554673,1019550.0,6270702.487101111,-1094297.3006457244,0.95,0.25,22.0,971,0.0,0.1,0.0,0.0,1050.0,1019550.0,13125.0,12744375.0,13125.0,12744375.0,true,971,0.9326888573540124,53000.0,1239.904194285078,0.0,13450.188795253142,3764995.1719321935,14420.874323952574,4156855.1864554673,13450.188795253142,3764995.1719321935,-0.0,0.0,-0.0,0.0,970.6855286994323,391860.01452323043,971,53000.0,1239.904194285078,13450.188795253142,2061934.83730108,1050.0,1019550.0,490.27849792311673,979120.0361208654,11640.71057856991,98067.88099182969,0.0,0.0,1088.9538346949603,982807.1996013154,230.2458840651549,1939.7205870686773,-13450.188795253142,-4343447.643152102,true,true,10.9526577,9587.911842195974,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,972,0.9052846132062675,666.0,0.0,19210.762536601942,18160.762536601942,1050.0,19181.917547808247,28.844988793696608,5195615.948992078,4175015.9489920693,1020600.0,6289884.404648919,-1094268.4556569308,0.95,0.25,22.0,972,0.0,0.1,0.0,0.0,1050.0,1020600.0,13125.0,12757500.0,13125.0,12757500.0,true,972,0.936036928666992,53000.0,1239.904194285078,0.0,16999.144387011453,3781994.316319205,18160.762536601942,4175015.9489920693,16999.144387011453,3781994.316319205,-0.0,0.0,-0.0,0.0,1161.6181495904893,393021.63267282094,972,53000.0,1239.904194285078,16999.144387011453,2078933.9816880915,1050.0,1020600.0,599.7263829082141,979719.7625037736,14939.32024041975,113007.20123224944,0.0,0.0,1164.6074692662123,983971.8070705816,295.49029441727595,2235.2108814859535,-16999.144387011453,-4360446.787539113,true,true,11.75734275,9599.669184945973,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,973,0.9052764499851974,666.0,0.0,14679.1041282753,13629.1041282753,1050.0,14657.063431385997,22.04069688930225,5210295.053120353,4188645.053120345,1021650.0,6304541.468080305,-1094246.4149600414,0.95,0.25,22.0,973,0.0,0.1,0.0,0.0,1050.0,1021650.0,13125.0,12770625.0,13125.0,12770625.0,true,973,0.9319831083294489,53000.0,1239.904194285078,0.0,12702.094829215737,3794696.4111484205,13629.1041282753,4188645.053120345,12702.094829215737,3794696.4111484205,-0.0,0.0,-0.0,0.0,927.0092990595622,393948.6419718805,973,53000.0,1239.904194285078,12702.094829215737,2091636.0765173072,1050.0,1021650.0,712.3752858099214,980432.1377895835,10547.709037251452,123554.91026950089,0.0,0.0,1233.383500461525,985205.1905710432,208.62700569283822,2443.837887178792,-12702.094829215737,-4373148.882368329,true,true,12.29379945,9611.962984395974,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,974,0.905271254325032,666.0,0.0,9342.836109498545,8292.836109498545,1050.0,9328.80782705185,14.028282446694512,5219637.889229852,4196937.889229843,1022700.0,6313870.275907356,-1094232.3866775946,0.95,0.25,22.0,974,0.0,0.1,0.0,0.0,1050.0,1022700.0,13125.0,12783750.0,13125.0,12783750.0,true,974,0.9187511420624083,53000.0,1239.904194285078,0.0,7619.052646538167,3802315.463794959,8292.836109498545,4196937.889229843,7619.052646538167,3802315.463794959,-0.0,0.0,-0.0,0.0,673.7834629603776,394622.4254348409,974,53000.0,1239.904194285078,7619.052646538167,2099255.1291638454,1050.0,1022700.0,786.2965900070004,981218.4343795906,5450.303387106355,129005.21365660724,0.0,0.0,1274.6491196915292,986479.8396907347,107.80354973328258,2551.6414369120744,-7619.052646538167,-4380767.935014867,true,true,12.56202781,9624.525012205973,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,975,0.905267637634288,666.0,0.0,6503.533295951045,5453.533295951045,1050.0,6493.76823094211,9.765065008935503,5226141.422525803,4202391.422525794,1023750.0,6320364.044138298,-1094222.6216125856,0.95,0.25,22.0,975,0.0,0.1,0.0,0.0,1050.0,1023750.0,13125.0,12796875.0,13125.0,12796875.0,true,975,0.9066454843045124,53000.0,1239.904194285078,0.0,4944.421336278319,3807259.885131237,5453.533295951045,4202391.422525794,4944.421336278319,3807259.885131237,-0.0,0.0,-0.0,0.0,509.1119596727258,395131.5373945136,975,53000.0,1239.904194285078,4944.421336278319,2104199.5505001238,1050.0,1023750.0,825.1014704065443,982043.5358499971,2769.263655033284,131774.47731164054,0.0,0.0,1295.2819293065315,987775.1216200413,54.77428153195907,2606.4157184440332,-4944.421336278319,-4385712.356351146,true,true,12.69614198,9637.221154185974,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,976,0.9052651162075528,666.0,0.0,4534.02955516622,3484.0295551662202,1050.0,4527.221702981286,6.807852184934265,5230675.452080969,4205875.45208096,1024800.0,6324891.26584128,-1094215.8137604007,0.95,0.25,22.0,976,0.0,0.1,0.0,0.0,1050.0,1024800.0,13125.0,12810000.0,13125.0,12810000.0,true,976,0.8884002394542521,53000.0,1239.904194285078,0.0,3095.2126910753614,3810355.0978223123,3484.0295551662202,4205875.45208096,3095.2126910753614,3810355.0978223123,-0.0,0.0,-0.0,0.0,388.81686409085887,395520.35425860446,976,53000.0,1239.904194285078,3095.2126910753614,2107294.763191199,1050.0,1024800.0,842.7501077804774,982886.2859577775,929.6231590690845,132704.1004707096,0.0,0.0,1304.45206679924,989079.5736868406,18.387357426559642,2624.8030758705927,-3095.2126910753614,-4388807.569042221,true,true,12.74084671,9649.962000895974,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,977,0.9052631564819953,666.0,0.0,3523.9784974338504,2473.9784974338504,1050.0,3518.6872384286944,5.291259005155932,5234199.430578402,4208349.430578394,1025850.0,6328409.953079709,-1094210.5225013955,0.95,0.25,22.0,977,0.0,0.1,0.0,0.0,1050.0,1025850.0,13125.0,12823125.0,13125.0,12823125.0,true,977,0.8706404876498303,53000.0,1239.904194285078,0.0,2153.945845441002,3812509.043667753,2473.9784974338504,4208349.430578394,2153.945845441002,3812509.043667753,-0.0,0.0,-0.0,0.0,320.0326519928485,395840.3869105973,977,53000.0,1239.904194285078,2153.945845441002,2109448.70903664,1050.0,1025850.0,847.2012440121763,983733.4872017897,0.0,132704.1004707096,0.0,0.0,1306.7446014288255,990386.3182882695,0.0,2624.8030758705927,-2153.945845441002,-4390961.514887662,true,true,12.74084671,9662.702847605973,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,978,0.9052611967564378,666.0,0.0,3523.9784974338504,2473.9784974338504,1050.0,3518.6872384286944,5.291259005155932,5237723.409075836,4210823.409075827,1026900.0,6331928.640318138,-1094205.2312423903,0.95,0.25,22.0,978,0.0,0.1,0.0,0.0,1050.0,1026900.0,13125.0,12836250.0,13125.0,12836250.0,true,978,0.8706404876498303,53000.0,1239.904194285078,0.0,2153.945845441002,3814662.989513194,2473.9784974338504,4210823.409075827,2153.945845441002,3814662.989513194,-0.0,0.0,-0.0,0.0,320.0326519928485,396160.4195625902,978,53000.0,1239.904194285078,2153.945845441002,2111602.654882081,1050.0,1026900.0,847.2012440121763,984580.688445802,0.0,132704.1004707096,0.0,0.0,1306.7446014288255,991693.0628896983,0.0,2624.8030758705927,-2153.945845441002,-4393115.460733103,true,true,12.74084671,9675.443694315973,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,979,0.9052611851450938,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5237744.288594579,4209794.288594571,1027950.0,6331949.488486252,-1094205.1998917616,0.95,0.25,22.0,979,0.0,0.1,0.0,0.0,1050.0,1027950.0,13125.0,12849375.0,13125.0,12849375.0,true,979,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3813423.085318909,-1029.1204812566145,4209794.288594571,-1239.904194285078,3813423.085318909,-0.0,0.0,-0.0,0.0,210.78371302846335,396371.20327561867,979,53000.0,1239.904194285078,-5390.349482406837,2106212.305399674,1050.0,1027950.0,812.027925148302,985392.7163709502,-7345.492542844294,125358.60792786532,0.0,0.0,1288.4043264434088,992981.4672161418,-145.2891911542533,2479.5138847163394,-1239.904194285078,-4394355.364927388,true,true,12.38320891,9687.826903225972,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,980,0.905260470784269,666.0,0.0,1284.563635212249,234.56363521224907,1050.0,1282.6348609852037,1.928774227045419,5239028.852229792,4210028.852229783,1029000.0,6333232.123347237,-1094203.2711175345,0.95,0.25,22.0,980,0.0,0.1,0.0,0.0,1050.0,1029000.0,13125.0,12862500.0,13125.0,12862500.0,true,980,0.8336896845859515,53000.0,1239.904194285078,0.0,195.55328305543412,3813618.6386019643,234.56363521224907,4210028.852229783,195.55328305543412,3813618.6386019643,-0.0,0.0,-0.0,0.0,39.010352156814946,396410.2136277755,980,53000.0,1239.904194285078,195.55328305543412,2106407.8586827293,1050.0,1029000.0,769.4479567585915,986162.1643277088,-1803.6976583644305,123554.91026950089,0.0,0.0,1265.478982198821,994246.9461983406,-35.675997537548,2443.8378871787913,-195.55328305543412,-4394550.918210443,true,true,12.29379945,9700.120702675973,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,981,0.9052602244263893,666.0,0.0,443.00073910076253,-606.9992608992375,1050.0,442.33557282583644,0.6651662749260698,5239471.852968892,4209421.852968884,1030050.0,6333674.4589200625,-1094202.6059512596,0.95,0.25,22.0,981,0.0,0.1,0.0,0.0,1050.0,1030050.0,13125.0,12875625.0,13125.0,12875625.0,true,981,0.83,53000.0,1239.904194285078,0.0,-731.3244107219729,3812887.314191242,-606.9992608992375,4209421.852968884,-731.3244107219729,3812887.314191242,-0.0,0.0,-0.0,0.0,124.3251498227354,396534.53877759824,981,53000.0,1239.904194285078,-731.3244107219729,2105676.534272007,1050.0,1030050.0,748.7278650449392,986910.8921927537,-2681.039325680307,120873.87094382058,0.0,0.0,1254.0163100765271,995500.9625084172,-53.02926016313246,2390.8086270156587,-731.3244107219729,-4395282.242621165,true,true,12.15968528,9712.280387955972,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,982,0.9052602128150453,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5239492.732487636,4208392.732487627,1031100.0,6333695.307088177,-1094202.574600631,0.95,0.25,22.0,982,0.0,0.1,0.0,0.0,1050.0,1031100.0,13125.0,12888750.0,13125.0,12888750.0,true,982,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3811647.409996957,-1029.1204812566145,4208392.732487627,-1239.904194285078,3811647.409996957,-0.0,0.0,-0.0,0.0,210.78371302846335,396745.3224906267,982,53000.0,1239.904194285078,-1640.4560091842386,2104036.078262823,1050.0,1031100.0,720.3495632647154,987631.2417560185,-3528.9732852190937,117344.89765860149,0.0,0.0,1237.968569720696,996738.931078138,-69.80085695055608,2321.0077700651027,-1239.904194285078,-4396522.14681545,true,true,11.98086638,9724.261254335972,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,983,0.9052599748346385,666.0,0.0,427.9363676143321,-622.0636323856679,1050.0,427.29382051581206,0.6425470985200181,5239920.66885525,4207770.6688552415,1032150.0,6334122.600908693,-1094201.9320535325,0.95,0.25,22.0,983,0.0,0.1,0.0,0.0,1050.0,1032150.0,13125.0,12901875.0,13125.0,12901875.0,true,983,0.83,53000.0,1239.904194285078,0.0,-749.4742558863469,3810897.9357410707,-622.0636323856679,4207770.6688552415,-749.4742558863469,3810897.9357410707,-0.0,0.0,-0.0,0.0,127.41062350067898,396872.7331141274,983,53000.0,1239.904194285078,-749.4742558863469,2103286.604006937,1050.0,1032150.0,692.6975389457738,988323.9392949643,-2612.4205984937516,114732.47706010773,0.0,0.0,1221.9208288520479,997960.85190699,-51.67202519041685,2269.335744874686,-749.4742558863469,-4397271.621071336,true,true,11.8467522,9736.108006535971,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,984,0.9052599632232945,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5239941.5483739935,4206741.548373985,1033200.0,6334143.449076807,-1094201.9007029037,0.95,0.25,22.0,984,0.0,0.1,0.0,0.0,1050.0,1033200.0,13125.0,12915000.0,13125.0,12915000.0,true,984,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3809658.0315467855,-1029.1204812566145,4206741.548373985,-1239.904194285078,3809658.0315467855,-0.0,0.0,-0.0,0.0,210.78371302846335,397083.5168271559,984,53000.0,1239.904194285078,-2507.9571212234428,2100778.6468857136,1050.0,1033200.0,661.9724691954185,988985.9117641597,-4288.682715863149,110443.79434424458,0.0,0.0,1203.5805538666314,999164.4324608566,-84.82742842234404,2184.508316452342,-1239.904194285078,-4398511.525265621,true,true,11.62322858,9747.73123511597,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,985,0.9052597331984021,666.0,0.0,413.63076145245884,-636.3692385475412,1050.0,413.0096942430708,0.6210672093880764,5240355.1791354455,4206105.179135437,1034250.0,6334556.45877105,-1094201.2796356943,0.95,0.25,22.0,985,0.0,0.1,0.0,0.0,1050.0,1034250.0,13125.0,12928125.0,13125.0,12928125.0,true,985,0.83,53000.0,1239.904194285078,0.0,-766.709925960893,3808891.3216208247,-636.3692385475412,4206105.179135437,-766.709925960893,3808891.3216208247,-0.0,0.0,-0.0,0.0,130.34068741335182,397213.85751456924,985,53000.0,1239.904194285078,-766.709925960893,2100011.936959753,1050.0,1034250.0,632.1696576756791,989618.0814218353,-2533.998967529376,107909.7953767152,0.0,0.0,1185.2402788812149,1000349.6727397378,-50.120894988411116,2134.387421463931,-766.709925960893,-4399278.235191582,true,true,11.4891144,9759.22034951597,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,986,0.9052597215870581,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5240376.058654189,4205076.058654181,1035300.0,6334577.306939164,-1094201.2482850656,0.95,0.25,22.0,986,0.0,0.1,0.0,0.0,1050.0,1035300.0,13125.0,12941250.0,13125.0,12941250.0,true,986,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3807651.4174265396,-1029.1204812566145,4205076.058654181,-1239.904194285078,3807651.4174265396,-0.0,0.0,-0.0,0.0,210.78371302846335,397424.6412275977,986,53000.0,1239.904194285078,-2470.0473512790713,2097541.8896084735,1050.0,1035300.0,603.2750501325331,990221.3564719679,-4157.980189578163,103751.81518713705,0.0,0.0,1166.9000033829811,1001516.5727431207,-82.24221521642265,2052.145206247508,-1239.904194285078,-4400518.139385867,true,true,11.26559077,9770.48594028597,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,987,0.9052597099757141,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5240396.938172933,4204046.938172924,1036350.0,6334598.155107278,-1094201.216934437,0.95,0.25,22.0,987,0.0,0.1,0.0,0.0,1050.0,1036350.0,13125.0,12954375.0,13125.0,12954375.0,true,987,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3806411.5132322544,-1029.1204812566145,4204046.938172924,-1239.904194285078,3806411.5132322544,-0.0,0.0,-0.0,0.0,210.78371302846335,397635.4249406262,987,53000.0,1239.904194285078,-8163.89702651014,2089377.9925819633,1050.0,1036350.0,544.8253740536853,990766.1818460216,-9645.860310398319,94105.95487673873,0.0,0.0,1127.926918782562,1002644.4996619032,-190.78900894806864,1861.3561972994396,-1239.904194285078,-4401758.043580152,true,true,10.72913407,9781.215074355969,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,988,0.9052596983643701,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5240417.817691676,4203017.817691668,1037400.0,6334619.003275393,-1094201.1855838082,0.95,0.25,22.0,988,0.0,0.1,0.0,0.0,1050.0,1037400.0,13125.0,12967500.0,13125.0,12967500.0,true,988,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3805171.6090379693,-1029.1204812566145,4203017.817691668,-1239.904194285078,3805171.6090379693,-0.0,0.0,-0.0,0.0,210.78371302846335,397846.20865365467,988,53000.0,1239.904194285078,-13828.263987209706,2075549.7285947537,1050.0,1037400.0,445.28238242675064,991211.4642284483,-15030.81223993688,79075.14263680184,0.0,0.0,1054.5658185332054,1003699.0654804364,-297.29994823278105,1564.0562490666584,-1239.904194285078,-4402997.947774437,true,true,9.835039564,9791.05011391997,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,989,0.9052596867530261,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5240438.69721042,4201988.697210412,1038450.0,6334639.851443507,-1094201.1542331795,0.95,0.25,22.0,989,0.0,0.1,0.0,0.0,1050.0,1038450.0,13125.0,12980625.0,13125.0,12980625.0,true,989,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3803931.704843684,-1029.1204812566145,4201988.697210412,-1239.904194285078,3803931.704843684,-0.0,0.0,-0.0,0.0,210.78371302846335,398056.99236668315,989,53000.0,1239.904194285078,-2249.9570147180375,2073299.7715800356,1050.0,1038450.0,376.55618764217695,991588.0204160905,-3553.4800754114685,75521.66256139037,0.0,0.0,997.2524587935246,1004696.31793923,-70.28558574227041,1493.7706633243881,-1239.904194285078,-4404237.851968722,true,true,9.611515937,9800.66162985697,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,990,0.9052582255579597,666.0,0.0,2627.5209685751624,1577.5209685751622,1050.0,2623.57574189562,3.945226679542286,5243066.218178995,4203566.218178987,1039500.0,6337263.427185402,-1094197.2090065,0.95,0.25,22.0,990,0.0,0.1,0.0,0.0,1050.0,1039500.0,13125.0,12993750.0,13125.0,12993750.0,true,990,0.8554624519972526,53000.0,1239.904194285078,0.0,1349.509955854389,3805281.2147995387,1577.5209685751622,4203566.218178987,1349.509955854389,3805281.2147995387,-0.0,0.0,-0.0,0.0,228.01101272077312,398285.0033794039,990,53000.0,1239.904194285078,1349.509955854389,2074649.28153589,1050.0,1039500.0,363.72016902931324,991951.7405851198,0.0,75521.66256139037,0.0,0.0,985.7897868250759,1005682.1077260551,0.0,1493.7706633243881,-1349.509955854389,-4405587.361924577,true,true,9.611515937,9810.27314579397,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,991,0.9052554451013299,666.0,0.0,4999.817111487792,3949.8171114877923,1050.0,4992.309878587661,7.50723290013182,5248066.035290482,4207516.035290474,1040550.0,6342255.73706399,-1094189.7017735997,0.95,0.25,22.0,991,0.0,0.1,0.0,0.0,1050.0,1040550.0,13125.0,13006875.0,13125.0,13006875.0,true,991,0.8932860032165791,53000.0,1239.904194285078,0.0,3528.3163409573835,3808809.531140496,3949.8171114877923,4207516.035290474,3528.3163409573835,3808809.531140496,-0.0,0.0,-0.0,0.0,421.5007705304088,398706.50414993434,991,53000.0,1239.904194285078,3528.3163409573835,2078177.5978768473,1050.0,1040550.0,371.3861524710975,992323.1267375909,2122.28533837956,77643.94789976993,0.0,0.0,992.6673899958889,1006674.775116051,41.97746011083721,1535.7481234352254,-3528.3163409573835,-4409115.678265534,true,true,9.745630113,9820.01877590697,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,992,0.9052508613695246,666.0,0.0,8242.46653241142,7192.466532411419,1050.0,8230.090456536927,12.37607587449162,5256308.5018228935,4214708.501822885,1041600.0,6350485.827520527,-1094177.3256977252,0.95,0.25,22.0,992,0.0,0.1,0.0,0.0,1050.0,1041600.0,13125.0,13020000.0,13125.0,13020000.0,true,992,0.914829744607331,53000.0,1239.904194285078,0.0,6579.882320942715,3815389.413461439,7192.466532411419,4214708.501822885,6579.882320942715,3815389.413461439,-0.0,0.0,-0.0,0.0,612.5842114687048,399319.08836140303,992,53000.0,1239.904194285078,6579.882320942715,2084757.48019779,1050.0,1041600.0,397.71612208189725,992720.8428596727,5066.363993335132,82710.31189310507,0.0,0.0,1015.5927338815046,1007690.3678499325,100.20947164418095,1635.9575950794062,-6579.882320942715,-4415695.560586477,true,true,10.05856319,9830.07733909697,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,993,0.9052470591289155,666.0,0.0,6837.189063394114,5787.189063394114,1050.0,6826.923013749378,10.266049644735906,5263145.690886288,4220495.69088628,1042650.0,6357312.7505342765,-1094167.0596480805,0.95,0.25,22.0,993,0.0,0.1,0.0,0.0,1050.0,1042650.0,13125.0,13033125.0,13125.0,13033125.0,true,993,0.909664135233841,53000.0,1239.904194285078,0.0,5264.398334787149,3820653.811796226,5787.189063394114,4220495.69088628,5264.398334787149,3820653.811796226,-0.0,0.0,-0.0,0.0,522.7907286069649,399841.87909001,993,53000.0,1239.904194285078,5264.398334787149,2090021.8785325773,1050.0,1042650.0,430.91955998972844,993151.7624196624,3716.8585201547025,86427.17041325977,0.0,0.0,1043.1031467186015,1008733.4709966511,73.51710792411608,1709.4747030035223,-5264.398334787149,-4420959.958921264,true,true,10.28208682,9840.35942591697,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,994,0.9052464921359173,666.0,0.0,1019.5668092487592,-30.433190751240808,1050.0,1018.0359281537911,1.5308810949681069,5264165.257695537,4220465.257695529,1043700.0,6358330.78646243,-1094165.5287669855,0.95,0.25,22.0,994,0.0,0.1,0.0,0.0,1050.0,1043700.0,13125.0,13046250.0,13125.0,13046250.0,true,994,0.83,53000.0,1239.904194285078,0.0,-36.66649488101302,3820617.1453013453,-30.433190751240808,4220465.257695529,-36.66649488101302,3820617.1453013453,-0.0,0.0,-0.0,0.0,6.233304129772215,399848.1123941398,994,53000.0,1239.904194285078,-36.66649488101302,2089985.2120376963,1050.0,1043700.0,439.49956748698776,993591.2619871495,-1496.5460786754472,84930.62433458432,0.0,0.0,1049.9807500945415,1009783.4517467456,-29.600733787094985,1679.8739692164274,-36.66649488101302,-4420996.625416145,true,true,10.19267737,9850.55210328697,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,995,0.9052449493991371,666.0,0.0,2774.1492782214686,1724.1492782214686,1050.0,2769.98388891483,4.165389306638842,5266939.406973759,4222189.40697375,1044750.0,6361100.770351345,-1094161.363377679,0.95,0.25,22.0,995,0.0,0.1,0.0,0.0,1050.0,1044750.0,13125.0,13059375.0,13125.0,13059375.0,true,995,0.8579087305384483,53000.0,1239.904194285078,0.0,1479.162718537762,3822096.308019883,1724.1492782214686,4222189.40697375,1479.162718537762,3822096.308019883,-0.0,0.0,-0.0,0.0,244.98655968370667,400093.0989538235,995,53000.0,1239.904194285078,1479.162718537762,2091464.374756234,1050.0,1044750.0,433.7670371895748,994025.029024339,0.0,84930.62433458432,0.0,0.0,1045.3956813481873,1010828.8474280938,0.0,1679.8739692164274,-1479.162718537762,-4422475.788134683,true,true,10.19267737,9860.744780656969,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,996,0.9052424745944914,666.0,0.0,4450.193714045357,3400.193714045358,1050.0,4443.511741501746,6.681972543611648,5271389.600687804,4225589.600687795,1045800.0,6365544.282092847,-1094154.6814051352,0.95,0.25,22.0,996,0.0,0.1,0.0,0.0,1050.0,1045800.0,13125.0,13072500.0,13125.0,13072500.0,true,996,0.8868986250951711,53000.0,1239.904194285078,0.0,3015.6271300440712,3825111.935149927,3400.193714045358,4225589.600687795,3015.6271300440712,3825111.935149927,-0.0,0.0,-0.0,0.0,384.5665840012866,400477.6655378248,996,53000.0,1239.904194285078,3015.6271300440712,2094480.0018862782,1050.0,1045800.0,439.49956748698776,994464.5285918261,1496.5460786754472,86427.17041325977,0.0,0.0,1049.9807500945415,1011878.8281781883,29.600733787094985,1709.4747030035223,-3015.6271300440712,-4425491.415264727,true,true,10.28208682,9871.026867476969,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,997,0.905242259892351,666.0,0.0,386.0773889260147,-663.9226110739853,1050.0,385.49769314684653,0.5796957791681903,5271775.67807673,4224925.678076722,1046850.0,6365929.7797859935,-1094154.101709356,0.95,0.25,22.0,997,0.0,0.1,0.0,0.0,1050.0,1046850.0,13125.0,13085625.0,13125.0,13085625.0,true,997,0.83,53000.0,1239.904194285078,0.0,-799.9067603301029,3824312.028389597,-663.9226110739853,4224925.678076722,-799.9067603301029,3824312.028389597,-0.0,0.0,-0.0,0.0,135.98414925611758,400613.64968708094,997,53000.0,1239.904194285078,-799.9067603301029,2093680.095125948,1050.0,1046850.0,436.6270301127714,994901.1556219389,-2239.9178492203087,84187.25256403946,0.0,0.0,1047.6882154649559,1012926.5163936532,-44.30415668752168,1665.1705463160006,-799.9067603301029,-4426291.322025057,true,true,10.14797264,9881.174840116968,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,998,0.9052407235961093,666.0,0.0,2762.567901757962,1712.5679017579619,1050.0,2758.419901905472,4.147999852489432,5274538.245978488,4226638.245978479,1047900.0,6368688.199687899,-1094149.9537095036,0.95,0.25,22.0,998,0.0,0.1,0.0,0.0,1050.0,1047900.0,13125.0,13098750.0,13125.0,13098750.0,true,998,0.8577150034678346,53000.0,1239.904194285078,0.0,1468.8951837952325,3825780.923573392,1712.5679017579619,4226638.245978479,1468.8951837952325,3825780.923573392,-0.0,0.0,-0.0,0.0,243.6727179627294,400857.32240504364,998,53000.0,1239.904194285078,1468.8951837952325,2095148.9903097432,1050.0,1047900.0,428.0845717062163,995329.2401936451,0.0,84187.25256403946,0.0,0.0,1040.810612089016,1013967.3270057422,0.0,1665.1705463160006,-1468.8951837952325,-4427760.217208852,true,true,10.14797264,9891.322812756967,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,999,0.9052391872998676,666.0,0.0,2762.567901757962,1712.5679017579619,1050.0,2758.419901905472,4.147999852489432,5277300.813880245,4228350.813880237,1048950.0,6371446.619589805,-1094145.8057096512,0.95,0.25,22.0,999,0.0,0.1,0.0,0.0,1050.0,1048950.0,13125.0,13111875.0,13125.0,13111875.0,true,999,0.8577150034678346,53000.0,1239.904194285078,0.0,1468.8951837952325,3827249.818757187,1712.5679017579619,4228350.813880237,1468.8951837952325,3827249.818757187,-0.0,0.0,-0.0,0.0,243.6727179627294,401100.99512300635,999,53000.0,1239.904194285078,1468.8951837952325,2096617.8854935383,1050.0,1048950.0,428.0845717062163,995757.3247653514,0.0,84187.25256403946,0.0,0.0,1040.810612089016,1015008.1376178312,0.0,1665.1705463160006,-1468.8951837952325,-4429229.112392647,true,true,10.14797264,9901.470785396967,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1000,0.9052339628461786,666.0,0.0,9394.612623537067,8344.612623537067,1050.0,9380.506598576801,14.106024960265866,5286695.426503782,4236695.426503774,1050000.0,6380827.126188382,-1094131.699684691,0.95,0.25,22.0,1000,0.0,0.1,0.0,0.0,1050.0,1050000.0,13125.0,13125000.0,13125.0,13125000.0,true,1000,0.9189364868233001,53000.0,1239.904194285078,0.0,7668.169008174513,3834917.9877653616,8344.612623537067,4236695.426503774,7668.169008174513,3834917.9877653616,-0.0,0.0,-0.0,0.0,676.4436153625538,401777.4387383689,1000,53000.0,1239.904194285078,7668.169008174513,2104286.054501713,1050.0,1050000.0,451.11570210817376,996208.4404674595,6038.46539713857,90225.71796117803,0.0,0.0,1059.1508870744328,1016067.2885049056,119.43702185333656,1784.6075681693371,-7668.169008174513,-4436897.281400822,true,true,10.50561044,9911.976395836966,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1001,0.9052299989920958,666.0,0.0,7127.8024117367795,6077.8024117367795,1050.0,7117.1000057131505,10.702406023628798,5293823.228915519,4242773.228915511,1051050.0,6387944.226194095,-1094120.9972786673,0.95,0.25,22.0,1001,0.0,0.1,0.0,0.0,1050.0,1051050.0,13125.0,13138125.0,13125.0,13138125.0,true,1001,0.910891388211711,53000.0,1239.904194285078,0.0,5536.2178761034,3840454.205641465,6077.8024117367795,4242773.228915511,5536.2178761034,3840454.205641465,-0.0,0.0,-0.0,0.0,541.5845356333793,402319.0232740023,1001,53000.0,1239.904194285078,5536.2178761034,2109822.272377816,1050.0,1051050.0,490.2784972304616,996698.71896469,3880.236915560693,94105.95487673872,0.0,0.0,1088.9538341821433,1017156.2423390878,76.74862913010239,1861.3561972994396,-5536.2178761034,-4442433.499276926,true,true,10.72913407,9922.705529906965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1002,0.9052254639069146,666.0,0.0,8154.9901727316765,7104.9901727316765,1050.0,8142.74544274259,12.2447299890866,5301978.219088251,4249878.219088242,1052100.0,6396086.971636837,-1094108.7525486783,0.95,0.25,22.0,1002,0.0,0.1,0.0,0.0,1050.0,1052100.0,13125.0,13151250.0,13125.0,13151250.0,true,1002,0.9145194401317284,53000.0,1239.904194285078,0.0,6497.651634908005,3846951.8572763726,7104.9901727316765,4249878.219088242,6497.651634908005,3846951.8572763726,-0.0,0.0,-0.0,0.0,607.3385378236717,402926.361811826,1002,53000.0,1239.904194285078,6497.651634908005,2116319.924012724,1050.0,1052100.0,525.1348313299346,997223.8537960199,4764.113934168668,98870.06881090738,0.0,0.0,1114.1717125434998,1018270.4140516312,94.23115686590236,1955.587354165342,-6497.651634908005,-4448931.150911834,true,true,10.99736242,9933.702892326965,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1003,0.9052228024913905,666.0,0.0,4785.757395345312,3735.7573953453125,1050.0,4778.571573430379,7.185821914932901,5306763.9764835965,4253613.976483588,1053150.0,6400865.543210268,-1094101.5667267633,0.95,0.25,22.0,1003,0.0,0.1,0.0,0.0,1050.0,1053150.0,13125.0,13164375.0,13125.0,13164375.0,true,1003,0.8914161751768622,53000.0,1239.904194285078,0.0,3330.1145687473954,3850281.97184512,3735.7573953453125,4253613.976483588,3330.1145687473954,3850281.97184512,-0.0,0.0,-0.0,0.0,405.64282659791706,403332.0046384239,1003,53000.0,1239.904194285078,3330.1145687473954,2119650.0385814714,1050.0,1053150.0,551.496631478679,997775.3504274986,1614.178520736441,100484.24733164383,0.0,0.0,1132.5119875289163,1019402.9260391601,31.927429003359272,1987.5147831687013,-3330.1145687473954,-4452261.265480582,true,true,11.08677187,9944.789664196964,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1004,0.9052196184346775,666.0,0.0,5725.570781461669,4675.570781461669,1050.0,5716.973828336351,8.596953125317821,5312489.547265058,4258289.54726505,1054200.0,6406582.517038604,-1094092.969773638,0.95,0.25,22.0,1004,0.0,0.1,0.0,0.0,1050.0,1054200.0,13125.0,13177500.0,13125.0,13177500.0,true,1004,0.899684318017568,53000.0,1239.904194285078,0.0,4206.537709862209,3854488.509554982,4675.570781461669,4258289.54726505,4206.537709862209,3854488.509554982,-0.0,0.0,-0.0,0.0,469.0330715994596,403801.03771002335,1004,53000.0,1239.904194285078,4206.537709862209,2123856.5762913334,1050.0,1054200.0,568.4125451233866,998343.762972622,2445.7746315981417,102930.02196324196,0.0,0.0,1143.9746596512102,1020546.9006988113,48.37587348947089,2035.8906566581722,-4206.537709862209,-4456467.803190444,true,true,11.22088605,9956.010550246963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1005,0.9052158969482376,666.0,0.0,6691.976916219778,5641.976916219778,1050.0,6681.928902832061,10.048013387717385,5319181.524181278,4263931.52418127,1055250.0,6413264.445941436,-1094082.9217602503,0.95,0.25,22.0,1005,0.0,0.1,0.0,0.0,1050.0,1055250.0,13125.0,13190625.0,13125.0,13190625.0,true,1005,0.9083479048197115,53000.0,1239.904194285078,0.0,5124.877910889412,3859613.3874658714,5641.976916219778,4263931.52418127,5124.877910889412,3859613.3874658714,-0.0,0.0,-0.0,0.0,517.0990053303658,404318.1367153537,1005,53000.0,1239.904194285078,5124.877910889412,2128981.4542022226,1050.0,1055250.0,592.6708512143691,998936.4338238363,3306.778670975374,106236.80063421733,0.0,0.0,1160.0224005198584,1021706.9230993311,65.40598817981007,2101.2966448379825,-5124.877910889412,-4461592.681101333,true,true,11.39970495,9967.410255196963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1006,0.9052136483482901,666.0,0.0,4043.4324255907954,2993.4324255907954,1050.0,4037.361205732551,6.071219858244437,5323224.95660687,4266924.956606861,1056300.0,6417301.807147169,-1094076.850540392,0.95,0.25,22.0,1006,0.0,0.1,0.0,0.0,1050.0,1056300.0,13125.0,13203750.0,13125.0,13203750.0,true,1006,0.8796844521380792,53000.0,1239.904194285078,0.0,2633.2759633182004,3862246.6634291895,2993.4324255907954,4266924.956606861,2633.2759633182004,3862246.6634291895,-0.0,0.0,-0.0,0.0,360.15646227259504,404678.29317762627,1006,53000.0,1239.904194285078,2633.2759633182004,2131614.7301655407,1050.0,1056300.0,610.4143261643655,999546.8481500007,834.8634937733818,107071.66412799072,0.0,0.0,1171.485072129335,1022878.4081714604,16.51307125111793,2117.8097160891,-2633.2759633182004,-4464225.957064652,true,true,11.44440967,9978.854664866964,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1007,0.9052124538826244,666.0,0.0,2147.888160080403,1097.888160080403,1050.0,2144.663102782985,3.2250572974180223,5325372.84476695,4268022.844766942,1057350.0,6419446.470249952,-1094073.6254830947,0.95,0.25,22.0,1007,0.0,0.1,0.0,0.0,1050.0,1057350.0,13125.0,13216875.0,13125.0,13216875.0,true,1007,0.8475570345899849,53000.0,1239.904194285078,0.0,930.5228332692009,3863177.1862624586,1097.888160080403,4268022.844766942,930.5228332692009,3863177.1862624586,-0.0,0.0,-0.0,0.0,167.36532681120207,404845.6585044375,1007,53000.0,1239.904194285078,930.5228332692009,2132545.25299881,1050.0,1057350.0,610.4143261643655,1000157.2624761651,-834.8634937733818,106236.80063421733,0.0,0.0,1171.485072129335,1024049.8932435897,-16.51307125111793,2101.2966448379825,-930.5228332692009,-4465156.479897921,true,true,11.39970495,9990.254369816963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1008,0.9052124422712804,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5325393.724285694,4266993.724285685,1058400.0,6419467.318418066,-1094073.594132466,0.95,0.25,22.0,1008,0.0,0.1,0.0,0.0,1050.0,1058400.0,13125.0,13230000.0,13125.0,13230000.0,true,1008,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3861937.2820681734,-1029.1204812566145,4266993.724285685,-1239.904194285078,3861937.2820681734,-0.0,0.0,-0.0,0.0,210.78371302846335,405056.44221746596,1008,53000.0,1239.904194285078,-2460.006623727165,2130085.2463750825,1050.0,1058400.0,589.1639318547457,1000746.4264080198,-4125.304510496958,102111.49612372037,0.0,0.0,1157.7298658902725,1025207.6231094799,-81.59591097522528,2019.7007338627573,-1239.904194285078,-4466396.384092206,true,true,11.17618132,10001.430551136962,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1009,0.9052124306599364,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5325414.603804437,4265964.603804429,1059450.0,6419488.16658618,-1094073.5627818373,0.95,0.25,22.0,1009,0.0,0.1,0.0,0.0,1050.0,1059450.0,13125.0,13243125.0,13125.0,13243125.0,true,1009,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3860697.3778738882,-1029.1204812566145,4265964.603804429,-1239.904194285078,3860697.3778738882,-0.0,0.0,-0.0,0.0,210.78371302846335,405267.22593049443,1009,53000.0,1239.904194285078,-5695.347787576912,2124389.898587506,1050.0,1059450.0,541.5100154384917,1001287.9364234584,-7219.691265617272,94891.8048581031,0.0,0.0,1125.6343841529765,1026333.2574936328,-142.80092155110907,1876.8998123116482,-1239.904194285078,-4467636.288286491,true,true,10.77383879,10012.204389926963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1010,0.9052124190485924,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5325435.483323181,4264935.483323173,1060500.0,6419509.014754294,-1094073.5314312086,0.95,0.25,22.0,1010,0.0,0.1,0.0,0.0,1050.0,1060500.0,13125.0,13256250.0,13125.0,13256250.0,true,1010,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3859457.473679603,-1029.1204812566145,4264935.483323173,-1239.904194285078,3859457.473679603,-0.0,0.0,-0.0,0.0,210.78371302846335,405478.0096435229,1010,53000.0,1239.904194285078,-1590.1233385983187,2122799.7752489075,1050.0,1060500.0,499.62677809881956,1001787.5632015573,-3123.7948692901678,91768.00998881293,0.0,0.0,1095.8314370452658,1027429.0889306781,-61.786684452236436,1815.1131278594119,-1239.904194285078,-4468876.192480776,true,true,10.59501989,10022.799409816962,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1011,0.9052124074372484,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5325456.362841925,4263906.362841916,1061550.0,6419529.862922409,-1094073.50008058,0.95,0.25,22.0,1011,0.0,0.1,0.0,0.0,1050.0,1061550.0,13125.0,13269375.0,13125.0,13269375.0,true,1011,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3858217.569485318,-1029.1204812566145,4263906.362841916,-1239.904194285078,3858217.569485318,-0.0,0.0,-0.0,0.0,210.78371302846335,405688.7933565514,1011,53000.0,1239.904194285078,-2359.87055060792,2120439.9046982997,1050.0,1061550.0,471.93321636471416,1002259.496417922,-3831.223225537617,87936.78676327532,0.0,0.0,1075.1986279430807,1028504.2875586211,-75.77916937809765,1739.3339584813143,-1239.904194285078,-4470116.096675062,true,true,10.37149627,10033.170906086962,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1012,0.905212192392329,666.0,0.0,386.6937741092205,-663.3062258907795,1050.0,386.11315282677424,0.580621282446277,5325843.056616033,4263243.056616025,1062600.0,6419915.976075236,-1094072.9194592976,0.95,0.25,22.0,1012,0.0,0.1,0.0,0.0,1050.0,1062600.0,13125.0,13282500.0,13125.0,13282500.0,true,1012,0.83,53000.0,1239.904194285078,0.0,-799.1641275792524,3857418.4053577385,-663.3062258907795,4263243.056616025,-799.1641275792524,3857418.4053577385,-0.0,0.0,-0.0,0.0,135.8579016884729,405824.6512582399,1012,53000.0,1239.904194285078,-799.1641275792524,2119640.7405707203,1050.0,1062600.0,448.19271566250274,1002707.6891335845,-2259.523256961397,85677.26350631392,0.0,0.0,1056.858352957664,1029561.1459115788,-44.69193923802247,1694.6420192432918,-799.1641275792524,-4470915.260802641,true,true,10.23738209,10043.408288176961,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1013,0.905212180780985,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5325863.936134777,4262213.936134769,1063650.0,6419936.82424335,-1094072.8881086688,0.95,0.25,22.0,1013,0.0,0.1,0.0,0.0,1050.0,1063650.0,13125.0,13295625.0,13125.0,13295625.0,true,1013,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3856178.5011634533,-1029.1204812566145,4262213.936134769,-1239.904194285078,3856178.5011634533,-0.0,0.0,-0.0,0.0,210.78371302846335,406035.43497126835,1013,53000.0,1239.904194285078,-1556.7408535775226,2118083.999717143,1050.0,1063650.0,428.084571706216,1003135.7737052907,-2966.9516132088697,82710.31189310504,0.0,0.0,1040.8106120890159,1030601.9565236678,-58.684424163884984,1635.9575950794067,-1239.904194285078,-4472155.164996926,true,true,10.05856319,10053.46685136696,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1014,0.905212169169641,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5325884.815653521,4261184.815653512,1064700.0,6419957.672411464,-1094072.8567580401,0.95,0.25,22.0,1014,0.0,0.1,0.0,0.0,1050.0,1064700.0,13125.0,13308750.0,13125.0,13308750.0,true,1014,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3854938.596969168,-1029.1204812566145,4261184.815653512,-1239.904194285078,3854938.596969168,-0.0,0.0,-0.0,0.0,210.78371302846335,406246.2186842968,1014,53000.0,1239.904194285078,-2283.7656475205017,2115800.2340696226,1050.0,1064700.0,403.1271521163293,1003538.9008574071,-3635.169256303224,79075.14263680181,0.0,0.0,1020.1778026791407,1031622.1343263469,-71.90134601274774,1564.056249066659,-1239.904194285078,-4473395.069191211,true,true,9.835039564,10063.301890930961,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1015,0.905212157558297,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5325905.695172264,4260155.695172256,1065750.0,6419978.520579578,-1094072.8254074114,0.95,0.25,22.0,1015,0.0,0.1,0.0,0.0,1050.0,1065750.0,13125.0,13321875.0,13125.0,13321875.0,true,1015,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3853698.692774883,-1029.1204812566145,4260155.695172256,-1239.904194285078,3853698.692774883,-0.0,0.0,-0.0,0.0,210.78371302846335,406457.0023973253,1015,53000.0,1239.904194285078,-1526.972821220898,2114273.261248402,1050.0,1065750.0,379.15910145867383,1003918.0599588659,-2849.3191866434427,76225.82345015838,0.0,0.0,999.5449932179833,1032621.679319565,-56.35772925411249,1507.6985198125465,-1239.904194285078,-4474634.973385496,true,true,9.656220663,10072.958111593962,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1016,0.905212145946953,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5325926.574691008,4259126.574690999,1066800.0,6419999.368747693,-1094072.7940567827,0.95,0.25,22.0,1016,0.0,0.1,0.0,0.0,1050.0,1066800.0,13125.0,13335000.0,13125.0,13335000.0,true,1016,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3852458.788580598,-1029.1204812566145,4259126.574690999,-1239.904194285078,3852458.788580598,-0.0,0.0,-0.0,0.0,210.78371302846335,406667.7861103538,1016,53000.0,1239.904194285078,-6409.191600440365,2107864.0696479613,1050.0,1066800.0,341.35660067922026,1004259.4165595451,-7566.05343259447,68659.7700175639,0.0,0.0,965.1569773639187,1033586.8362969288,-149.651745889033,1358.0467739235135,-1239.904194285078,-4475874.877579781,true,true,9.164468684,10082.122580277963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1017,0.905212134335609,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5325947.454209751,4258097.454209743,1067850.0,6420020.216915807,-1094072.762706154,0.95,0.25,22.0,1017,0.0,0.1,0.0,0.0,1050.0,1067850.0,13125.0,13348125.0,13125.0,13348125.0,true,1017,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3851218.8843863127,-1029.1204812566145,4258097.454209743,-1239.904194285078,3851218.8843863127,-0.0,0.0,-0.0,0.0,210.78371302846335,406878.56982338225,1017,53000.0,1239.904194285078,-17871.344647064336,2089992.725000897,1050.0,1067850.0,251.02259067065614,1004510.4391502157,-18625.136891358507,50034.6331262054,0.0,0.0,871.163067448278,1034457.9993643771,-368.39341382476084,989.6533600987526,-1239.904194285078,-4477114.781774066,true,true,7.823326926,10089.945907203963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1018,0.905212122724265,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5325968.333728495,4257068.333728487,1068900.0,6420041.065083921,-1094072.7313555253,0.95,0.25,22.0,1018,0.0,0.1,0.0,0.0,1050.0,1068900.0,13125.0,13361250.0,13125.0,13361250.0,true,1018,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3849978.9801920275,-1029.1204812566145,4257068.333728487,-1239.904194285078,3849978.9801920275,-0.0,0.0,-0.0,0.0,210.78371302846335,407089.3535364107,1018,53000.0,1239.904194285078,-16556.60289107337,2073436.1221098236,1050.0,1068900.0,145.7269261100079,1004656.1660763257,-17091.013787915977,32943.61933828943,0.0,0.0,726.7334010150513,1035184.7327653922,-338.0494302824519,651.6039298163007,-1239.904194285078,-4478354.685968352,true,true,6.348070991,10096.293978194963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1019,0.905212111112921,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5325989.213247239,4256039.21324723,1069950.0,6420061.913252035,-1094072.7000048966,0.95,0.25,22.0,1019,0.0,0.1,0.0,0.0,1050.0,1069950.0,13125.0,13374375.0,13125.0,13374375.0,true,1019,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3848739.0759977424,-1029.1204812566145,4256039.21324723,-1239.904194285078,3848739.0759977424,-0.0,0.0,-0.0,0.0,210.78371302846335,407300.1372494392,1019,53000.0,1239.904194285078,-13152.532347684739,2060283.589762139,1050.0,1069950.0,72.34077914616587,1004728.5068554719,-13532.632359363213,19410.986978926216,0.0,0.0,575.4261314110116,1035760.1588968032,-267.6668988787024,383.9370309375983,-1239.904194285078,-4479594.590162637,true,true,4.872815057,10101.166793251963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1020,0.905212099501577,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5326010.092765982,4255010.092765974,1071000.0,6420082.761420149,-1094072.668654268,0.95,0.25,22.0,1020,0.0,0.1,0.0,0.0,1050.0,1071000.0,13125.0,13387500.0,13125.0,13387500.0,true,1020,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3847499.171803457,-1029.1204812566145,4255010.092765974,-1239.904194285078,3847499.171803457,-0.0,0.0,-0.0,0.0,210.78371302846335,407510.9209624677,1020,53000.0,1239.904194285078,-9718.451210419411,2050565.1385517195,1050.0,1071000.0,28.96524476806052,1004757.47210024,-9974.250949156614,9436.736029769601,0.0,0.0,424.11886180697195,1036184.2777586101,-197.28436783782777,186.65266309977054,-1239.904194285078,-4480834.494356922,true,true,3.397559122,10104.564352373964,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1021,0.905212087890233,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5326030.972284726,4253980.9722847175,1072050.0,6420103.609588264,-1094072.6373036392,0.95,0.25,22.0,1021,0.0,0.1,0.0,0.0,1050.0,1072050.0,13125.0,13400625.0,13125.0,13400625.0,true,1021,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3846259.267609172,-1029.1204812566145,4253980.9722847175,-1239.904194285078,3846259.267609172,-0.0,0.0,-0.0,0.0,210.78371302846335,407721.70467549615,1021,53000.0,1239.904194285078,-6262.250686814583,2044302.887864905,1050.0,1072050.0,7.709086196334267,1004765.1811864363,-6415.869528570906,3020.866501198695,0.0,0.0,272.81159215165053,1036457.0893507617,-126.9018365916611,59.75082650810944,-1239.904194285078,-4482074.398551207,true,true,1.922303187,10106.486655560964,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1022,0.905212076278889,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5326051.8518034695,4252951.851803461,1073100.0,6420124.457756378,-1094072.6059530105,0.95,0.25,22.0,1022,0.0,0.1,0.0,0.0,1050.0,1073100.0,13125.0,13413750.0,13125.0,13413750.0,true,1022,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3845019.363414887,-1029.1204812566145,4252951.851803461,-1239.904194285078,3845019.363414887,-0.0,0.0,-0.0,0.0,210.78371302846335,407932.4883885246,1022,53000.0,1239.904194285078,-2791.82202336955,2041511.0658415353,1050.0,1073100.0,0.6810666681565701,1004765.8622531045,-2857.4881072542803,163.3783939444147,0.0,0.0,121.50432254761081,1036578.5936733093,-56.51930533103734,3.2315211770721035,-1239.904194285078,-4483314.302745492,true,true,0.447047253,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1023,0.9052115586804,666.0,0.0,930.7456028702011,-119.25439712979889,1050.0,929.3480869499756,1.3975159202255272,5326982.59740634,4252832.597406331,1074150.0,6421053.805843328,-1094071.2084370903,0.95,0.25,22.0,1023,0.0,0.1,0.0,0.0,1050.0,1074150.0,13125.0,13426875.0,13125.0,13426875.0,true,1023,0.83,53000.0,1239.904194285078,0.0,-143.67999654192639,3844875.683418345,-119.25439712979889,4252832.597406331,-143.67999654192639,3844875.683418345,-0.0,0.0,-0.0,0.0,24.425599412127497,407956.91398793674,1023,53000.0,1239.904194285078,-143.67999654192639,2041367.3858449934,1050.0,1074150.0,0.00457469366613165,1004765.8668277981,-163.3783939441366,2.781064267765032e-10,0.0,0.0,22.925343885615916,1036601.519017195,-3.2315211770718477,2.5579538487363607e-13,-143.67999654192639,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1024,0.9052109747631495,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5328032.59740634,4252832.597406331,1075200.0,6422102.229266752,-1094069.6318605137,0.95,0.25,22.0,1024,0.0,0.1,0.0,0.0,1050.0,1075200.0,13125.0,13440000.0,13125.0,13440000.0,true,1024,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1024,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1075200.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1025,0.9052103908458989,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5329082.59740634,4252832.597406331,1076250.0,6423150.652690175,-1094068.0552839371,0.95,0.25,22.0,1025,0.0,0.1,0.0,0.0,1050.0,1076250.0,13125.0,13453125.0,13125.0,13453125.0,true,1025,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1025,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1076250.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1026,0.9052098069286484,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5330132.59740634,4252832.597406331,1077300.0,6424199.076113598,-1094066.4787073606,0.95,0.25,22.0,1026,0.0,0.1,0.0,0.0,1050.0,1077300.0,13125.0,13466250.0,13125.0,13466250.0,true,1026,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1026,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1077300.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1027,0.9052092230113978,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5331182.59740634,4252832.597406331,1078350.0,6425247.499537022,-1094064.902130784,0.95,0.25,22.0,1027,0.0,0.1,0.0,0.0,1050.0,1078350.0,13125.0,13479375.0,13125.0,13479375.0,true,1027,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1027,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1078350.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1028,0.9052086390941473,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5332232.59740634,4252832.597406331,1079400.0,6426295.922960445,-1094063.3255542074,0.95,0.25,22.0,1028,0.0,0.1,0.0,0.0,1050.0,1079400.0,13125.0,13492500.0,13125.0,13492500.0,true,1028,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1028,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1079400.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1029,0.9052080551768967,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5333282.59740634,4252832.597406331,1080450.0,6427344.346383869,-1094061.7489776309,0.95,0.25,22.0,1029,0.0,0.1,0.0,0.0,1050.0,1080450.0,13125.0,13505625.0,13125.0,13505625.0,true,1029,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1029,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1080450.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1030,0.9052074712596462,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5334332.59740634,4252832.597406331,1081500.0,6428392.769807292,-1094060.1724010543,0.95,0.25,22.0,1030,0.0,0.1,0.0,0.0,1050.0,1081500.0,13125.0,13518750.0,13125.0,13518750.0,true,1030,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1030,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1081500.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1031,0.9052068873423956,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5335382.59740634,4252832.597406331,1082550.0,6429441.193230716,-1094058.5958244777,0.95,0.25,22.0,1031,0.0,0.1,0.0,0.0,1050.0,1082550.0,13125.0,13531875.0,13125.0,13531875.0,true,1031,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1031,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1082550.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1032,0.9052063034251451,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5336432.59740634,4252832.597406331,1083600.0,6430489.616654139,-1094057.0192479012,0.95,0.25,22.0,1032,0.0,0.1,0.0,0.0,1050.0,1083600.0,13125.0,13545000.0,13125.0,13545000.0,true,1032,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1032,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1083600.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1033,0.9052057195078945,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5337482.59740634,4252832.597406331,1084650.0,6431538.040077562,-1094055.4426713246,0.95,0.25,22.0,1033,0.0,0.1,0.0,0.0,1050.0,1084650.0,13125.0,13558125.0,13125.0,13558125.0,true,1033,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1033,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1084650.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1034,0.905205135590644,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5338532.59740634,4252832.597406331,1085700.0,6432586.463500986,-1094053.866094748,0.95,0.25,22.0,1034,0.0,0.1,0.0,0.0,1050.0,1085700.0,13125.0,13571250.0,13125.0,13571250.0,true,1034,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1034,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1085700.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1035,0.9052045516733934,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5339582.59740634,4252832.597406331,1086750.0,6433634.886924409,-1094052.2895181715,0.95,0.25,22.0,1035,0.0,0.1,0.0,0.0,1050.0,1086750.0,13125.0,13584375.0,13125.0,13584375.0,true,1035,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1035,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1086750.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1036,0.9052039677561429,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5340632.59740634,4252832.597406331,1087800.0,6434683.310347833,-1094050.712941595,0.95,0.25,22.0,1036,0.0,0.1,0.0,0.0,1050.0,1087800.0,13125.0,13597500.0,13125.0,13597500.0,true,1036,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1036,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1087800.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1037,0.9052033838388923,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5341682.59740634,4252832.597406331,1088850.0,6435731.733771256,-1094049.1363650183,0.95,0.25,22.0,1037,0.0,0.1,0.0,0.0,1050.0,1088850.0,13125.0,13610625.0,13125.0,13610625.0,true,1037,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1037,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1088850.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1038,0.9052027999216418,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5342732.59740634,4252832.597406331,1089900.0,6436780.15719468,-1094047.5597884418,0.95,0.25,22.0,1038,0.0,0.1,0.0,0.0,1050.0,1089900.0,13125.0,13623750.0,13125.0,13623750.0,true,1038,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1038,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1089900.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1039,0.9052022160043912,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5343782.59740634,4252832.597406331,1090950.0,6437828.580618103,-1094045.9832118652,0.95,0.25,22.0,1039,0.0,0.1,0.0,0.0,1050.0,1090950.0,13125.0,13636875.0,13125.0,13636875.0,true,1039,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1039,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1090950.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1040,0.9052016320871407,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5344832.59740634,4252832.597406331,1092000.0,6438877.0040415265,-1094044.4066352886,0.95,0.25,22.0,1040,0.0,0.1,0.0,0.0,1050.0,1092000.0,13125.0,13650000.0,13125.0,13650000.0,true,1040,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1040,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1092000.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1041,0.9052010481698901,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5345882.59740634,4252832.597406331,1093050.0,6439925.42746495,-1094042.830058712,0.95,0.25,22.0,1041,0.0,0.1,0.0,0.0,1050.0,1093050.0,13125.0,13663125.0,13125.0,13663125.0,true,1041,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1041,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1093050.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1042,0.9052004642526396,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5346932.59740634,4252832.597406331,1094100.0,6440973.850888373,-1094041.2534821355,0.95,0.25,22.0,1042,0.0,0.1,0.0,0.0,1050.0,1094100.0,13125.0,13676250.0,13125.0,13676250.0,true,1042,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1042,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1094100.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1043,0.905199880335389,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5347982.59740634,4252832.597406331,1095150.0,6442022.274311797,-1094039.676905559,0.95,0.25,22.0,1043,0.0,0.1,0.0,0.0,1050.0,1095150.0,13125.0,13689375.0,13125.0,13689375.0,true,1043,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1043,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1095150.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1044,0.9051992964181385,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5349032.59740634,4252832.597406331,1096200.0,6443070.69773522,-1094038.1003289823,0.95,0.25,22.0,1044,0.0,0.1,0.0,0.0,1050.0,1096200.0,13125.0,13702500.0,13125.0,13702500.0,true,1044,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1044,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1096200.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1045,0.9051987125008879,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5350082.59740634,4252832.597406331,1097250.0,6444119.121158644,-1094036.5237524058,0.95,0.25,22.0,1045,0.0,0.1,0.0,0.0,1050.0,1097250.0,13125.0,13715625.0,13125.0,13715625.0,true,1045,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1045,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1097250.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1046,0.9051981285836374,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5351132.59740634,4252832.597406331,1098300.0,6445167.544582067,-1094034.9471758292,0.95,0.25,22.0,1046,0.0,0.1,0.0,0.0,1050.0,1098300.0,13125.0,13728750.0,13125.0,13728750.0,true,1046,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1046,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1098300.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1047,0.9051975446663868,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5352182.59740634,4252832.597406331,1099350.0,6446215.9680054905,-1094033.3705992526,0.95,0.25,22.0,1047,0.0,0.1,0.0,0.0,1050.0,1099350.0,13125.0,13741875.0,13125.0,13741875.0,true,1047,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1047,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1099350.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1048,0.9051969607491362,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5353232.59740634,4252832.597406331,1100400.0,6447264.391428914,-1094031.794022676,0.95,0.25,22.0,1048,0.0,0.1,0.0,0.0,1050.0,1100400.0,13125.0,13755000.0,13125.0,13755000.0,true,1048,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1048,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1100400.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1049,0.9051963768318857,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5354282.59740634,4252832.597406331,1101450.0,6448312.814852337,-1094030.2174460995,0.95,0.25,22.0,1049,0.0,0.1,0.0,0.0,1050.0,1101450.0,13125.0,13768125.0,13125.0,13768125.0,true,1049,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1049,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1101450.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1050,0.9051957929146351,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5355332.59740634,4252832.597406331,1102500.0,6449361.238275761,-1094028.640869523,0.95,0.25,22.0,1050,0.0,0.1,0.0,0.0,1050.0,1102500.0,13125.0,13781250.0,13125.0,13781250.0,true,1050,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1050,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1102500.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1051,0.9051952089973846,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5356382.59740634,4252832.597406331,1103550.0,6450409.661699184,-1094027.0642929464,0.95,0.25,22.0,1051,0.0,0.1,0.0,0.0,1050.0,1103550.0,13125.0,13794375.0,13125.0,13794375.0,true,1051,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1051,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1103550.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1052,0.905194625080134,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5357432.59740634,4252832.597406331,1104600.0,6451458.085122608,-1094025.4877163698,0.95,0.25,22.0,1052,0.0,0.1,0.0,0.0,1050.0,1104600.0,13125.0,13807500.0,13125.0,13807500.0,true,1052,0.83,53000.0,1239.904194285078,0.0,0.0,3844875.683418345,0.0,4252832.597406331,0.0,3844875.683418345,-0.0,0.0,-0.0,0.0,0.0,407956.91398793674,1052,53000.0,1239.904194285078,0.0,2041367.3858449934,1050.0,1104600.0,0.0,1004765.8668277981,0.0,2.781064267765032e-10,0.0,0.0,0.0,1036601.519017195,0.0,2.5579538487363607e-13,0.0,-4483457.982742034,true,true,0.0,10106.933702813963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1053,0.9051938630593833,666.0,0.0,1370.2657140216088,320.2657140216087,1050.0,1368.2082579945493,2.0574560270594726,5358802.863120361,4253152.863120353,1105650.0,6452826.293380602,-1094023.4302603428,0.95,0.25,22.0,1053,0.0,0.1,0.0,0.0,1050.0,1105650.0,13125.0,13820625.0,13125.0,13820625.0,true,1053,0.8350459734894428,53000.0,1239.904194285078,0.0,267.4365949404657,3845143.1200132854,320.2657140216087,4253152.863120353,267.4365949404657,3845143.1200132854,-0.0,0.0,-0.0,0.0,52.829119081143006,408009.7431070179,1053,53000.0,1239.904194285078,267.4365949404657,2041634.822439934,1050.0,1105650.0,0.007905070628551215,1004765.8747328687,235.26488675329273,235.26488675357083,0.0,0.0,27.51041263197008,1036629.029429827,4.653390484574293,4.653390484574548,-267.4365949404657,-4483725.419336975,true,true,0.536456703,10107.470159516963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1054,0.9051916667966523,666.0,0.0,3949.3196429005106,2899.3196429005106,1050.0,3943.389733526786,5.929909373724491,5362752.182763262,4256052.182763253,1106700.0,6456769.683114129,-1094017.5003509691,0.95,0.25,22.0,1054,0.0,0.1,0.0,0.0,1050.0,1106700.0,13125.0,13833750.0,13125.0,13833750.0,true,1054,0.8780319885170267,53000.0,1239.904194285078,0.0,2545.695391402411,3847688.815404688,2899.3196429005106,4256052.182763253,2545.695391402411,3847688.815404688,-0.0,0.0,-0.0,0.0,353.6242514980995,408363.36735851597,1054,53000.0,1239.904194285078,2545.695391402411,2044180.5178313362,1050.0,1106700.0,0.6432385265093721,1004766.5179713953,2378.7894163528927,2614.0543031064635,0.0,0.0,119.21178817443374,1036748.2412180015,47.050948348575275,51.704338833149826,-2545.695391402411,-4486271.114728377,true,true,1.788189012,10109.258348528963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1055,0.9051871430218497,666.0,0.0,8134.651850093988,7084.651850093988,1050.0,8122.43765812688,12.214191967108091,5370886.834613356,4263136.834613347,1107750.0,6464892.120772256,-1094005.286159002,0.95,0.25,22.0,1055,0.0,0.1,0.0,0.0,1050.0,1107750.0,13125.0,13846875.0,13125.0,13846875.0,true,1055,0.9144473242550841,53000.0,1239.904194285078,0.0,6478.540927597279,3854167.3563322853,7084.651850093988,4263136.834613347,6478.540927597279,3854167.3563322853,-0.0,0.0,-0.0,0.0,606.1109224967095,408969.4782810127,1055,53000.0,1239.904194285078,6478.540927597279,2050659.0587589336,1050.0,1107750.0,6.600811763252355,1004773.1187831585,6092.380305374694,8706.434608481159,0.0,0.0,259.0563858613063,1037007.2976038628,120.5034245980255,172.20776343117532,-6478.540927597279,-4492749.6556559745,true,true,3.263444946,10112.521793474963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1056,0.9051804049905068,666.0,0.0,12116.327960837527,11066.327960837527,1050.0,12098.135276211644,18.192684625882173,5383003.162574193,4274203.162574185,1108800.0,6476990.256048467,-1093987.093474376,0.95,0.25,22.0,1056,0.0,0.1,0.0,0.0,1050.0,1108800.0,13125.0,13860000.0,13125.0,13860000.0,true,1056,0.9287858443744572,53000.0,1239.904194285078,0.0,10278.248759231148,3864445.6050915164,11066.327960837527,4274203.162574185,10278.248759231148,3864445.6050915164,-0.0,0.0,-0.0,0.0,788.0792016063788,409757.5574826191,1056,53000.0,1239.904194285078,10278.248759231148,2060937.3075181646,1050.0,1108800.0,26.237418979695963,1004799.3562021381,9650.761728884087,18357.196337365247,0.0,0.0,410.36365546534597,1037417.6612593281,190.88595590202084,363.0937193331962,-10278.248759231148,-4503027.904415206,true,true,4.738700881,10117.260494355964,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1057,0.9051714199085368,666.0,0.0,16156.974398418948,15106.974398418948,1050.0,16132.7146771,24.25972131894737,5399160.136972613,4289310.136972604,1109850.0,6493122.970725567,-1093962.833753057,0.95,0.25,22.0,1057,0.0,0.1,0.0,0.0,1050.0,1109850.0,13125.0,13873125.0,13125.0,13873125.0,true,1057,0.9333012816680862,53000.0,1239.904194285078,0.0,14099.35856817137,3878544.963659688,15106.974398418948,4289310.136972604,14099.35856817137,3878544.963659688,-0.0,0.0,-0.0,0.0,1007.6158302475778,410765.17331286665,1057,53000.0,1239.904194285078,14099.35856817137,2075036.666086336,1050.0,1109850.0,67.27601684477203,1004866.6322189829,13209.143139309981,31566.339476675228,0.0,0.0,561.6709250693857,1037979.3321843975,261.26848694723276,624.362206280429,-14099.35856817137,-4517127.262983377,true,true,6.213956815,10123.474451170963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1058,0.9051608511800767,666.0,0.0,19004.68751696865,17954.68751696865,1050.0,18976.151950126354,28.53556684229527,5418164.824489581,4307264.824489573,1110900.0,6512099.122675694,-1093934.2981862149,0.95,0.25,22.0,1058,0.0,0.1,0.0,0.0,1050.0,1110900.0,13125.0,13886250.0,13125.0,13886250.0,true,1058,0.9358518178794457,53000.0,1239.904194285078,0.0,16802.926952212503,3895347.8906119005,17954.68751696865,4307264.824489573,16802.926952212503,3895347.8906119005,-0.0,0.0,-0.0,0.0,1151.7605647561468,411916.9338776228,1058,53000.0,1239.904194285078,16802.926952212503,2091839.5930385485,1050.0,1110900.0,134.97006460574337,1005001.6022835886,15650.01634832918,47216.35582500441,0.0,0.0,708.3931258757896,1038687.7253102732,309.54741340179123,933.9096196822202,-16802.926952212503,-4533930.189935589,true,true,7.599803299,10131.074254469962,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1059,0.9051543359729192,666.0,0.0,11715.645510670853,10665.645510670853,1050.0,11698.05445134552,17.59105932533161,5429880.470000252,4317930.470000244,1111950.0,6523797.177127039,-1093916.7071268896,0.95,0.25,22.0,1059,0.0,0.1,0.0,0.0,1050.0,1111950.0,13125.0,13899375.0,13125.0,13899375.0,true,1059,0.9273226201531313,53000.0,1239.904194285078,0.0,9890.494340579777,3905238.3849524804,10665.645510670853,4317930.470000244,9890.494340579777,3905238.3849524804,-0.0,0.0,-0.0,0.0,775.151170091076,412692.0850477139,1059,53000.0,1239.904194285078,9890.494340579777,2101730.087379128,1050.0,1111950.0,204.6666479569444,1005206.2689315456,8699.89948209352,55916.25530709793,0.0,0.0,813.849707759879,1039501.5750180332,172.07850276943296,1105.9881224516532,-9890.494340579777,-4543820.684276169,true,true,8.270374179,10139.344628648962,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1060,0.9051473157480375,666.0,0.0,12623.768382091694,11573.768382091694,1050.0,12604.813774911376,18.954607180317858,5442504.238382344,4329504.238382336,1113000.0,6536401.990901951,-1093897.7525197093,0.95,0.25,22.0,1060,0.0,0.1,0.0,0.0,1050.0,1113000.0,13125.0,13912500.0,13125.0,13912500.0,true,1060,0.9301560477889731,53000.0,1239.904194285078,0.0,10765.410656311387,3916003.795608792,11573.768382091694,4329504.238382336,10765.410656311387,3916003.795608792,-0.0,0.0,-0.0,0.0,808.3577257803063,413500.4427734942,1060,53000.0,1239.904194285078,10765.410656311387,2112495.4980354398,1050.0,1113000.0,261.0623277757454,1005467.3312593213,9435.102241320115,65351.35754841804,0.0,0.0,882.6257394167267,1040384.2007574498,186.6203477987991,1292.6084702504522,-10765.410656311387,-4554586.094932481,true,true,8.940945058,10148.285573706962,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1061,0.9051384900248213,666.0,0.0,15870.415487381406,14820.415487381406,1050.0,15846.58603469765,23.829452683755864,5458374.653869726,4344324.653869717,1114050.0,6552248.576936648,-1093873.9230670256,0.95,0.25,22.0,1061,0.0,0.1,0.0,0.0,1050.0,1114050.0,13125.0,13925625.0,13125.0,13925625.0,true,1061,0.9330453966480305,53000.0,1239.904194285078,0.0,13828.120446912399,3929831.9160557045,14820.415487381406,4344324.653869717,13828.120446912399,3929831.9160557045,-0.0,0.0,-0.0,0.0,992.2950404690073,414492.7378139632,1061,53000.0,1239.904194285078,13828.120446912399,2126323.6184823522,1050.0,1114050.0,334.11106818264346,1005801.4423275039,12292.590351351875,77643.94789976992,0.0,0.0,958.2793741931059,1041342.4801316429,243.1396531847735,1535.7481234352258,-13828.120446912399,-4568414.215379393,true,true,9.745630113,10158.031203819963,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1062,0.9051316848446843,666.0,0.0,12237.074922222484,11187.074922222484,1050.0,12218.700935852781,18.37398636970343,5470611.728791948,4355511.72879194,1115100.0,6564467.277872501,-1093855.549080656,0.95,0.25,22.0,1062,0.0,0.1,0.0,0.0,1050.0,1115100.0,13125.0,13938750.0,13125.0,13938750.0,true,1062,0.9292276976348899,53000.0,1239.904194285078,0.0,10395.339873245814,3940227.2559289504,11187.074922222484,4355511.72879194,10395.339873245814,3940227.2559289504,-0.0,0.0,-0.0,0.0,791.7350489766704,415284.4728629399,1062,53000.0,1239.904194285078,10395.339873245814,2136718.958355598,1050.0,1115100.0,411.33537418388363,1006212.7777016878,8783.222513489834,86427.17041325975,0.0,0.0,1027.0554060037987,1042369.5355376467,173.726579568297,1709.4747030035228,-10395.339873245814,-4578809.555252639,true,true,10.28208682,10168.313290639962,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1063,0.9051254622684617,666.0,0.0,11189.436563545325,10139.436563545325,1050.0,11172.635607744205,16.800955801119105,5481801.165355493,4365651.165355485,1116150.0,6575639.9134802455,-1093838.7481248549,0.95,0.25,22.0,1063,0.0,0.1,0.0,0.0,1050.0,1116150.0,13125.0,13951875.0,13125.0,13951875.0,true,1063,0.9254079831727492,53000.0,1239.904194285078,0.0,9383.11554077851,3949610.371469729,10139.436563545325,4365651.165355485,9383.11554077851,3949610.371469729,-0.0,0.0,-0.0,0.0,756.3210227668151,416040.7938857067,1063,53000.0,1239.904194285078,9383.11554077851,2146102.073896377,1050.0,1116150.0,474.95842043097144,1006687.7361221188,7678.784463478954,94105.9548767387,0.0,0.0,1077.4911625726663,1043447.0267002194,151.88149429591726,1861.35619729944,-9383.11554077851,-4588192.670793417,true,true,10.72913407,10179.042424709962,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1064,0.9051199531324127,666.0,0.0,9906.528443438321,8856.528443438321,1050.0,9891.653776105832,14.874667332489972,5491707.693798931,4374507.693798923,1117200.0,6585531.567256351,-1093823.8734575224,0.95,0.25,22.0,1064,0.0,0.1,0.0,0.0,1050.0,1117200.0,13125.0,13965000.0,13125.0,13965000.0,true,1064,0.9207730283608635,53000.0,1239.904194285078,0.0,8154.852515628828,3957765.223985358,8856.528443438321,4374507.693798923,8154.852515628828,3957765.223985358,-0.0,0.0,-0.0,0.0,701.6759278094933,416742.4698135162,1064,53000.0,1239.904194285078,8154.852515628828,2154256.926412006,1050.0,1117200.0,531.6446935646047,1007219.3808156834,6378.292454905109,100484.24733164381,0.0,0.0,1118.7567812898537,1044565.7834815092,126.15858586926163,1987.5147831687018,-8154.852515628828,-4596347.5233090455,true,true,11.08677187,10190.129196579961,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1065,0.9051142667680163,666.0,0.0,10225.22045747078,9175.22045747078,1050.0,10209.867273600703,15.353183870076245,5501932.914256402,4383682.914256394,1118250.0,6595741.434529952,-1093808.5202736524,0.95,0.25,22.0,1065,0.0,0.1,0.0,0.0,1050.0,1118250.0,13125.0,13978125.0,13125.0,13978125.0,true,1065,0.9219200752239541,53000.0,1239.904194285078,0.0,8458.819934347825,3966224.043919706,9175.22045747078,4383682.914256394,8458.819934347825,3966224.043919706,-0.0,0.0,-0.0,0.0,716.4005231229548,417458.8703366392,1065,53000.0,1239.904194285078,8458.819934347825,2162715.7463463536,1050.0,1118250.0,585.6708738198415,1007805.0516895032,6587.416796346897,107071.6641279907,0.0,0.0,1155.437331260687,1045721.2208127698,130.29493292039888,2117.8097160891007,-8458.819934347825,-4604806.343243393,true,true,11.44440967,10201.573606249962,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1066,0.9051078879780898,666.0,0.0,11470.340045780478,10420.340045780478,1050.0,11453.117312979006,17.22273280147219,5513403.254302183,4394103.254302175,1119300.0,6607194.551842931,-1093791.297540851,0.95,0.25,22.0,1066,0.0,0.1,0.0,0.0,1050.0,1119300.0,13125.0,13991250.0,13125.0,13991250.0,true,1066,0.9264290793789747,53000.0,1239.904194285078,0.0,9653.706035428271,3975877.749955134,10420.340045780478,4394103.254302175,9653.706035428271,3975877.749955134,-0.0,0.0,-0.0,0.0,766.634010352207,418225.50434699137,1066,53000.0,1239.904194285078,9653.706035428271,2172369.452381782,1050.0,1119300.0,646.9566586645805,1008452.0083481679,7660.812932116999,114732.4770601077,0.0,0.0,1194.410415861106,1046915.6312286309,151.52602878558594,2269.3357448746865,-9653.706035428271,-4614460.049278822,true,true,11.8467522,10213.420358449961,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1067,0.9051044848761527,666.0,0.0,6119.457903399938,5069.457903399938,1050.0,6110.269528169608,9.188375230330237,5519522.712205583,4399172.712205575,1120350.0,6613304.8213711,-1093782.1091656205,0.95,0.25,22.0,1067,0.0,0.1,0.0,0.0,1050.0,1120350.0,13125.0,14004375.0,13125.0,14004375.0,true,1067,0.9031953867120943,53000.0,1239.904194285078,0.0,4578.71099148199,3980456.460946616,5069.457903399938,4399172.712205575,4578.71099148199,3980456.460946616,-0.0,0.0,-0.0,0.0,490.7469119179477,418716.2512589093,1067,53000.0,1239.904194285078,4578.71099148199,2176948.1633732636,1050.0,1120350.0,692.6975389457738,1009144.7058871137,2612.4205984937516,117344.89765860146,0.0,0.0,1221.9208288520479,1048137.552057483,51.67202519041685,2321.007770065103,-4578.71099148199,-4619038.760270304,true,true,11.98086638,10225.40122482996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1068,0.9050994241811595,666.0,0.0,9100.141736705305,8050.141736705305,1050.0,9086.477860223766,13.663876481539498,5528622.853942288,4407222.85394228,1121400.0,6622391.299231323,-1093768.445289139,0.95,0.25,22.0,1068,0.0,0.1,0.0,0.0,1050.0,1121400.0,13125.0,14017500.0,13125.0,14017500.0,true,1068,0.917883362902369,53000.0,1239.904194285078,0.0,7389.091169127783,3987845.5521157435,8050.141736705305,4407222.85394228,7389.091169127783,3987845.5521157435,-0.0,0.0,-0.0,0.0,661.0505675775221,419377.30182648683,1068,53000.0,1239.904194285078,7389.091169127783,2184337.2545423913,1050.0,1121400.0,728.383127860046,1009873.0890149737,5313.06533483881,122657.96299344028,0.0,0.0,1242.5536384670502,1049380.10569595,105.08906796187836,2426.0968380269815,-7389.091169127783,-4626427.851439432,true,true,12.24909473,10237.65031955996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1069,0.9050948000745003,666.0,0.0,8315.068594607785,7265.068594607785,1050.0,8302.583506627892,12.485087979891569,5536937.922536896,4414487.922536887,1122450.0,6630693.882737951,-1093755.9602011591,0.95,0.25,22.0,1069,0.0,0.1,0.0,0.0,1050.0,1122450.0,13125.0,14030625.0,13125.0,14030625.0,true,1069,0.9150874455159929,53000.0,1239.904194285078,0.0,6648.173061738102,3994493.725177482,7265.068594607785,4414487.922536887,6648.173061738102,3994493.725177482,-0.0,0.0,-0.0,0.0,616.8955328696829,419994.1973593565,1069,53000.0,1239.904194285078,6648.173061738102,2190985.4276041295,1050.0,1122450.0,773.6373198418746,1010646.7263348156,4517.412663125942,127175.37565656622,0.0,0.0,1267.7715168284067,1050647.8772127784,89.35156194187746,2515.448399968859,-6648.173061738102,-4633076.02450117,true,true,12.47261836,10250.12293791996,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1070,0.9050906517739034,666.0,0.0,7459.47413338832,6409.47413338832,1050.0,7448.273721776626,11.200411611694175,5544397.396670284,4420897.396670275,1123500.0,6638142.156459728,-1093744.7597895474,0.95,0.25,22.0,1070,0.0,0.1,0.0,0.0,1050.0,1123500.0,13125.0,14043750.0,13125.0,14043750.0,true,1070,0.9120597098814754,53000.0,1239.904194285078,0.0,5845.823118590973,4000339.5482960725,6409.47413338832,4420897.396670275,5845.823118590973,4000339.5482960725,-0.0,0.0,-0.0,0.0,563.6510147973477,420557.84837415384,1070,53000.0,1239.904194285078,5845.823118590973,2196831.2507227203,1050.0,1123500.0,812.027925148302,1011458.7542599639,3672.746271422135,130848.12192798835,0.0,0.0,1288.4043264434088,1051936.2815392218,72.64459557712665,2588.0929955459856,-5845.823118590973,-4638921.847619761,true,true,12.65143726,10262.774375179959,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1071,0.905090394176715,666.0,0.0,463.2112640614903,-586.7887359385097,1050.0,462.51575165298954,0.6955124085007361,5544860.6079343455,4420310.607934337,1124550.0,6638604.672211382,-1093744.064277139,0.95,0.25,22.0,1071,0.0,0.1,0.0,0.0,1050.0,1124550.0,13125.0,14056875.0,13125.0,14056875.0,true,1071,0.83,53000.0,1239.904194285078,0.0,-706.9743806488069,3999632.573915424,-586.7887359385097,4420310.607934337,-706.9743806488069,3999632.573915424,-0.0,0.0,-0.0,0.0,120.1856447102972,420678.03401886416,1071,53000.0,1239.904194285078,-706.9743806488069,2196124.2763420716,1050.0,1124550.0,816.3703107801272,1012275.124570744,-2759.4611576482507,128088.6607703401,0.0,0.0,1290.6968605601774,1053226.978399782,-54.580394340860735,2533.5126012051246,-706.9743806488069,-4639628.8220004095,true,true,12.51732308,10275.291698259958,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1072,0.905090382565371,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5544881.487453089,4419281.487453081,1125600.0,6638625.520379496,-1093744.0329265103,0.95,0.25,22.0,1072,0.0,0.1,0.0,0.0,1050.0,1125600.0,13125.0,14070000.0,13125.0,14070000.0,true,1072,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3998392.6697211387,-1029.1204812566145,4419281.487453081,-1239.904194285078,3998392.6697211387,-0.0,0.0,-0.0,0.0,210.78371302846335,420888.81773189263,1072,53000.0,1239.904194285078,-2569.0070217279253,2193555.2693203436,1050.0,1125600.0,782.061608075701,1013057.1861788197,-4533.750500839236,123554.91026950086,0.0,0.0,1272.3565850619436,1054499.3349848439,-89.67471402633319,2443.8378871787913,-1239.904194285078,-4640868.726194695,true,true,12.29379945,10287.585497709959,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1073,0.905090370954027,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5544902.366971833,4418252.366971824,1126650.0,6638646.36854761,-1093744.0015758816,0.95,0.25,22.0,1073,0.0,0.1,0.0,0.0,1050.0,1126650.0,13125.0,14083125.0,13125.0,14083125.0,true,1073,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3997152.7655268535,-1029.1204812566145,4418252.366971824,-1239.904194285078,3997152.7655268535,-0.0,0.0,-0.0,0.0,210.78371302846335,421099.6014449211,1073,53000.0,1239.904194285078,-2550.1436924189506,2191005.1256279247,1050.0,1126650.0,740.5451196945293,1013797.7312985143,-4452.061103959894,119102.84916554097,0.0,0.0,1249.431241330173,1055748.766226174,-88.05894948375833,2355.778937695033,-1239.904194285078,-4642108.63038898,true,true,12.07027583,10299.655773539958,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1074,0.9050885308578536,666.0,0.0,3308.8609391062205,2258.8609391062205,1050.0,3303.8926794378926,4.968259668327659,5548211.227910939,4420511.22791093,1127700.0,6641950.261227048,-1093739.0333162132,0.95,0.25,22.0,1074,0.0,0.1,0.0,0.0,1050.0,1127700.0,13125.0,14096250.0,13125.0,14096250.0,true,1074,0.8669493987355738,53000.0,1239.904194285078,0.0,1958.3181329854115,3999111.083659839,2258.8609391062205,4420511.22791093,1958.3181329854115,3999111.083659839,-0.0,0.0,-0.0,0.0,300.542806120809,421400.14425104193,1074,53000.0,1239.904194285078,1958.3181329854115,2192963.44376091,1050.0,1127700.0,720.3495632647154,1014518.080861779,0.0,119102.84916554097,0.0,0.0,1237.968569720696,1056986.7347958947,0.0,2355.778937695033,-1958.3181329854115,-4644066.948521965,true,true,12.07027583,10311.726049369958,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1075,0.9050885192465096,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5548232.107429682,4419482.107429674,1128750.0,6641971.109395162,-1093739.0019655845,0.95,0.25,22.0,1075,0.0,0.1,0.0,0.0,1050.0,1128750.0,13125.0,14109375.0,13125.0,14109375.0,true,1075,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3997871.1794655537,-1029.1204812566145,4419482.107429674,-1239.904194285078,3997871.1794655537,-0.0,0.0,-0.0,0.0,210.78371302846335,421610.9279640704,1075,53000.0,1239.904194285078,-4301.597621702816,2188661.8461392075,1050.0,1128750.0,692.6975389457738,1015210.7784007249,-6095.647933291558,113007.20123224941,0.0,0.0,1221.9208288520479,1058208.6556247468,-120.5680562090799,2235.2108814859535,-1239.904194285078,-4645306.85271625,true,true,11.75734275,10323.483392119957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1076,0.9050885076351656,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5548252.986948426,4418452.9869484175,1129800.0,6641991.957563276,-1093738.9706149558,0.95,0.25,22.0,1076,0.0,0.1,0.0,0.0,1050.0,1129800.0,13125.0,14122500.0,13125.0,14122500.0,true,1076,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3996631.2752712686,-1029.1204812566145,4418452.9869484175,-1239.904194285078,3996631.2752712686,-0.0,0.0,-0.0,0.0,210.78371302846335,421821.7116770989,1076,53000.0,1239.904194285078,-13470.476682662598,2175191.369456545,1050.0,1129800.0,599.7263829082141,1015810.504783633,-14939.32024041975,98067.88099182966,0.0,0.0,1164.6074692662123,1059373.263094013,-295.49029441727595,1939.7205870686776,-1239.904194285078,-4646546.7569105355,true,true,10.9526577,10334.436049819957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1077,0.9050884960238216,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5548273.8664671695,4417423.866467161,1130850.0,6642012.805731391,-1093738.939264327,0.95,0.25,22.0,1077,0.0,0.1,0.0,0.0,1050.0,1130850.0,13125.0,14135625.0,13125.0,14135625.0,true,1077,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3995391.3710769834,-1029.1204812566145,4417423.866467161,-1239.904194285078,3995391.3710769834,-0.0,0.0,-0.0,0.0,210.78371302846335,422032.49539012735,1077,53000.0,1239.904194285078,-14108.882507710247,2161082.4869488347,1050.0,1130850.0,474.95842043097116,1016285.463204064,-15357.569098724613,82710.31189310504,0.0,0.0,1077.491162572666,1060450.7542565858,-303.762991989271,1635.9575950794065,-1239.904194285078,-4647786.661104821,true,true,10.05856319,10344.494613009956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1078,0.9050884844124776,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5548294.745985913,4416394.745985905,1131900.0,6642033.653899505,-1093738.9079136983,0.95,0.25,22.0,1078,0.0,0.1,0.0,0.0,1050.0,1131900.0,13125.0,14148750.0,13125.0,14148750.0,true,1078,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3994151.4668826982,-1029.1204812566145,4416394.745985905,-1239.904194285078,3994151.4668826982,-0.0,0.0,-0.0,0.0,210.78371302846335,422243.27910315583,1078,53000.0,1239.904194285078,-5932.430427800431,2155150.0565210343,1050.0,1131900.0,389.6907049585884,1016675.1539090227,-7188.649331714692,75521.66256139035,0.0,0.0,1008.7151307106918,1061459.4693872966,-142.18693175501815,1493.7706633243884,-1239.904194285078,-4649026.565299106,true,true,9.611515937,10354.106128946956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1079,0.9050884728011336,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5548315.625504657,4415365.625504648,1132950.0,6642054.502067619,-1093738.8765630696,0.95,0.25,22.0,1079,0.0,0.1,0.0,0.0,1050.0,1132950.0,13125.0,14161875.0,13125.0,14161875.0,true,1079,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3992911.562688413,-1029.1204812566145,4415365.625504648,-1239.904194285078,3992911.562688413,-0.0,0.0,-0.0,0.0,210.78371302846335,422454.0628161843,1079,53000.0,1239.904194285078,-5006.336093473979,2150143.72042756,1050.0,1132950.0,341.35660067922026,1017016.5105097019,-6190.407334358867,69331.25522703148,0.0,0.0,965.1569773639187,1062424.6263646604,-122.44233715825095,1371.3283261661375,-1239.904194285078,-4650266.469493391,true,true,9.20917341,10363.315302356956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1080,0.9050884611897896,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5548336.5050234,4414336.505023392,1134000.0,6642075.350235733,-1093738.845212441,0.95,0.25,22.0,1080,0.0,0.1,0.0,0.0,1050.0,1134000.0,13125.0,14175000.0,13125.0,14175000.0,true,1080,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3991671.658494128,-1029.1204812566145,4414336.505023392,-1239.904194285078,3991671.658494128,-0.0,0.0,-0.0,0.0,210.78371302846335,422664.8465292128,1080,53000.0,1239.904194285078,-15572.950938956503,2134570.769488604,1050.0,1134000.0,263.1018680130599,1017279.612377715,-16396.65561544415,52934.59961158733,0.0,0.0,884.9182737899039,1063309.5446384503,-324.31546531531694,1047.0128608508205,-1239.904194285078,-4651506.373687676,true,true,8.046850552,10371.362152908956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1081,0.9050884495784456,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5548357.384542144,4413307.3845421355,1135050.0,6642096.198403847,-1093738.8138618122,0.95,0.25,22.0,1081,0.0,0.1,0.0,0.0,1050.0,1135050.0,13125.0,14188125.0,13125.0,14188125.0,true,1081,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3990431.7542998428,-1029.1204812566145,4413307.3845421355,-1239.904194285078,3990431.7542998428,-0.0,0.0,-0.0,0.0,210.78371302846335,422875.63024224126,1081,53000.0,1239.904194285078,-15573.444478361116,2118997.325010243,1050.0,1135050.0,164.4007661460466,1017444.013143861,-16174.460996083992,36760.13861550334,0.0,0.0,756.5363480201985,1064066.0809864704,-319.92059644336985,727.0922644074507,-1239.904194285078,-4652746.277881961,true,true,6.705708793,10378.067861701957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1082,0.9050884379671016,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5548378.2640608875,4412278.264060879,1136100.0,6642117.046571962,-1093738.7825111835,0.95,0.25,22.0,1082,0.0,0.1,0.0,0.0,1050.0,1136100.0,13125.0,14201250.0,13125.0,14201250.0,true,1082,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3989191.8501055576,-1029.1204812566145,4412278.264060879,-1239.904194285078,3989191.8501055576,-0.0,0.0,-0.0,0.0,210.78371302846335,423086.41395526973,1082,53000.0,1239.904194285078,-11561.876316633627,2107435.4486936093,1050.0,1136100.0,93.07862491202148,1017537.091768773,-12042.621403785954,24717.517211717386,0.0,0.0,625.8618879285976,1064691.942874399,-238.1954256882916,488.89683871915906,-1239.904194285078,-4653986.1820762465,true,true,5.498681211,10383.566542912957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1083,0.9050884263557576,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5548399.143579631,4411249.143579623,1137150.0,6642137.894740076,-1093738.7511605548,0.95,0.25,22.0,1083,0.0,0.1,0.0,0.0,1050.0,1137150.0,13125.0,14214375.0,13125.0,14214375.0,true,1083,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3987951.9459112724,-1029.1204812566145,4411249.143579623,-1239.904194285078,3987951.9459112724,-0.0,0.0,-0.0,0.0,210.78371302846335,423297.1976682982,1083,53000.0,1239.904194285078,-4083.3382615608443,2103352.1104320483,1050.0,1137150.0,58.6151107365714,1017595.7068795096,-4587.665304407255,20129.85190731013,0.0,0.0,536.4530468105927,1065228.3959212096,-90.74111470075363,398.1557240184054,-1239.904194285078,-4655226.086270532,true,true,4.962224507,10388.528767419957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1084,0.9050884147444136,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5548420.023098375,4410220.023098366,1138200.0,6642158.74290819,-1093738.719809926,0.95,0.25,22.0,1084,0.0,0.1,0.0,0.0,1050.0,1138200.0,13125.0,14227500.0,13125.0,14227500.0,true,1084,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3986712.0417169873,-1029.1204812566145,4410220.023098366,-1239.904194285078,3986712.0417169873,-0.0,0.0,-0.0,0.0,210.78371302846335,423507.9813813267,1084,53000.0,1239.904194285078,-1263.4919606906415,2102088.6184713575,1050.0,1138200.0,46.74565172929302,1017642.4525312389,-1772.6555699448988,18357.196337365232,0.0,0.0,497.4799622101738,1065725.8758834198,-35.062004685209374,363.093719333196,-1239.904194285078,-4656465.990464817,true,true,4.738700881,10393.267468300957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1085,0.9050884031330696,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5548440.902617118,4409190.90261711,1139250.0,6642179.591076304,-1093738.6884592974,0.95,0.25,22.0,1085,0.0,0.1,0.0,0.0,1050.0,1139250.0,13125.0,14240625.0,13125.0,14240625.0,true,1085,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3985472.137522702,-1029.1204812566145,4409190.90261711,-1239.904194285078,3985472.137522702,-0.0,0.0,-0.0,0.0,210.78371302846335,423718.76509435516,1085,53000.0,1239.904194285078,-1547.0453378174893,2100541.57313354,1050.0,1139250.0,39.99113026223865,1017682.4436615012,-2019.3569502605258,16337.839387104706,0.0,0.0,472.2620839513808,1066198.1379673711,-39.941601770582935,323.15211756261306,-1239.904194285078,-4657705.894659102,true,true,4.470472529,10397.737940829957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1086,0.9050883470157307,666.0,0.0,100.91019871940807,-949.0898012805919,1050.0,100.75868190451406,0.15151681489400612,5548541.812815838,4408241.812815829,1140300.0,6642280.349758209,-1093738.5369424825,0.95,0.25,22.0,1086,0.0,0.1,0.0,0.0,1050.0,1140300.0,13125.0,14253750.0,13125.0,14253750.0,true,1086,0.83,53000.0,1239.904194285078,0.0,-1143.48168828987,3984328.655834412,-949.0898012805919,4408241.812815829,-1143.48168828987,3984328.655834412,-0.0,0.0,-0.0,0.0,194.39188700927798,423913.1569813644,1086,53000.0,1239.904194285078,-1143.48168828987,2099398.09144525,1050.0,1140300.0,33.92078166847431,1017716.3644431697,-1592.9393440617569,14744.90004304295,0.0,0.0,447.0442056413061,1066645.1821730125,-31.507331537893617,291.64478602471945,-1143.48168828987,-4658849.376347392,true,true,4.246948902,10401.984889731957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1087,0.9050881248463206,666.0,0.0,399.50503324106774,-650.4949667589323,1050.0,398.90517583379886,0.5998574072688705,5548941.317849078,4407591.31784907,1141350.0,6642679.254934043,-1093737.9370850753,0.95,0.25,22.0,1087,0.0,0.1,0.0,0.0,1050.0,1141350.0,13125.0,14266875.0,13125.0,14266875.0,true,1087,0.83,53000.0,1239.904194285078,0.0,-783.7288756131715,3983544.926958799,-650.4949667589323,4407591.31784907,-783.7288756131715,3983544.926958799,-0.0,0.0,-0.0,0.0,133.2339088542392,424046.39089021867,1087,53000.0,1239.904194285078,-783.7288756131715,2098614.3625696367,1050.0,1141350.0,29.437494955931108,1017745.8019381256,-1215.5352491755418,13529.364793867408,0.0,0.0,426.4113961288673,1067071.5935691413,-24.0425175224281,267.60226850229134,-783.7288756131715,-4659633.105223005,true,true,4.068130001,10406.053019732957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1088,0.9050878882123579,666.0,0.0,425.5151917774007,-624.4848082225993,1050.0,424.8762800780352,0.6389116993654664,5549366.833040856,4406966.833040847,1142400.0,6643104.13121412,-1093737.298173376,0.95,0.25,22.0,1088,0.0,0.1,0.0,0.0,1050.0,1142400.0,13125.0,14280000.0,13125.0,14280000.0,true,1088,0.83,53000.0,1239.904194285078,0.0,-752.391335207951,3982792.535623591,-624.4848082225993,4406966.833040847,-752.391335207951,3982792.535623591,-0.0,0.0,-0.0,0.0,127.90652698535166,424174.297417204,1088,53000.0,1239.904194285078,-752.391335207951,2097861.9712344287,1050.0,1142400.0,25.800137729609,1017771.6020758552,-1163.254163230369,12366.110630637038,0.0,0.0,408.07112104088725,1067479.6646901823,-23.008430748078293,244.59383775421304,-752.391335207951,-4660385.496558213,true,true,3.8893111,10409.942330832957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1089,0.9050872160780382,666.0,0.0,1208.631933643188,158.63193364318795,1050.0,1206.81717098006,1.81476266312791,5550575.464974499,4407125.464974491,1143450.0,6644310.948385101,-1093735.4834107128,0.95,0.25,22.0,1089,0.0,0.1,0.0,0.0,1050.0,1143450.0,13125.0,14293125.0,13125.0,14293125.0,true,1089,0.8324916937191804,53000.0,1239.904194285078,0.0,132.05976711656618,3982924.5953907077,158.63193364318795,4407125.464974491,132.05976711656618,3982924.5953907077,-0.0,0.0,-0.0,0.0,26.57216652662177,424200.86958373064,1089,53000.0,1239.904194285078,132.05976711656618,2097994.0310015455,1050.0,1143450.0,23.686469147464926,1017795.2885450027,-282.6446195571744,12083.466011079863,0.0,0.0,396.6084491237201,1067876.273139306,-5.5905315974444605,239.0033061567686,-132.05976711656618,-4660517.5563253295,true,true,3.844606375,10413.786937207957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1090,0.9050859752438122,666.0,0.0,2231.2681052364164,1181.2681052364164,1050.0,2227.9178528261514,3.3502524102648894,5552806.733079736,4408306.733079728,1144500.0,6646538.866237927,-1093732.1331583026,0.95,0.25,22.0,1090,0.0,0.1,0.0,0.0,1050.0,1144500.0,13125.0,14306250.0,13125.0,14306250.0,true,1090,0.8489208128314947,53000.0,1239.904194285078,0.0,1002.8030800692181,3983927.398470777,1181.2681052364164,4408306.733079728,1002.8030800692181,3983927.398470777,-0.0,0.0,-0.0,0.0,178.4650251671983,424379.33460889786,1090,53000.0,1239.904194285078,1002.8030800692181,2098996.834081615,1050.0,1144500.0,24.09959600538151,1017819.3881410081,568.5568069493766,12652.02281802924,0.0,0.0,398.9009834968972,1068275.174122803,11.24569361756293,250.2489997743315,-1002.8030800692181,-4661520.359405398,true,true,3.934015825,10417.720953032956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1091,0.9050847189186298,666.0,0.0,2259.123942884292,1209.1239428842916,1050.0,2255.731864891973,3.3920779923187565,5555065.857022621,4409515.857022612,1145550.0,6648794.598102819,-1093728.7410803104,0.95,0.25,22.0,1091,0.0,0.1,0.0,0.0,1050.0,1145550.0,13125.0,14319375.0,13125.0,14319375.0,true,1091,0.8493774067750313,53000.0,1239.904194285078,0.0,1027.0025590766606,3984954.4010298536,1209.1239428842916,4409515.857022612,1027.0025590766606,3984954.4010298536,-0.0,0.0,-0.0,0.0,182.121383807631,424561.4559927055,1091,53000.0,1239.904194285078,1027.0025590766606,2100023.8366406914,1050.0,1145550.0,25.800137729609,1017845.1882787377,581.6270848677907,13233.64990289703,0.0,0.0,408.07112104088725,1068683.2452438439,11.504215438373642,261.75321521270513,-1027.0025590766606,-4662547.361964475,true,true,4.023425276,10421.744378308957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1092,0.9050843443487412,666.0,0.0,673.5515737454223,-376.4484262545778,1050.0,672.5402350461048,1.011338699317451,5555739.408596366,4409139.408596357,1146600.0,6649467.1383378655,-1093727.729741611,0.95,0.25,22.0,1092,0.0,0.1,0.0,0.0,1050.0,1146600.0,13125.0,14332500.0,13125.0,14332500.0,true,1092,0.83,53000.0,1239.904194285078,0.0,-453.55232078864793,3984500.848709065,-376.4484262545778,4409139.408596357,-453.55232078864793,3984500.848709065,-0.0,0.0,-0.0,0.0,77.10389453407015,424638.55988723953,1092,53000.0,1239.904194285078,-453.55232078864793,2099570.284319903,1050.0,1146600.0,25.3677422621268,1017870.5560209998,-867.5392722599928,12366.110630637037,0.0,0.0,405.77858666771016,1069089.0238305116,-17.15937745849211,244.593837754213,-453.55232078864793,-4663000.914285264,true,true,3.8893111,10425.633689408956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1093,0.9050836722144215,666.0,0.0,1208.631933643188,158.63193364318795,1050.0,1206.81717098006,1.81476266312791,5556948.040530009,4409298.040530001,1147650.0,6650673.955508846,-1093725.914978948,0.95,0.25,22.0,1093,0.0,0.1,0.0,0.0,1050.0,1147650.0,13125.0,14345625.0,13125.0,14345625.0,true,1093,0.8324916937191804,53000.0,1239.904194285078,0.0,132.05976711656618,3984632.908476182,158.63193364318795,4409298.040530001,132.05976711656618,3984632.908476182,-0.0,0.0,-0.0,0.0,26.57216652662177,424665.13205376617,1093,53000.0,1239.904194285078,132.05976711656618,2099702.3440870196,1050.0,1147650.0,23.686469147464926,1017894.2424901472,-282.6446195571744,12083.466011079861,0.0,0.0,396.6084491237201,1069485.6322796354,-5.5905315974444605,239.00330615676856,-132.05976711656618,-4663132.974052381,true,true,3.844606375,10429.478295783956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1094,0.9050836606030775,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5556968.920048753,4408268.920048744,1148700.0,6650694.80367696,-1093725.8836283193,0.95,0.25,22.0,1094,0.0,0.1,0.0,0.0,1050.0,1148700.0,13125.0,14358750.0,13125.0,14358750.0,true,1094,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3983393.0042818966,-1029.1204812566145,4408268.920048744,-1239.904194285078,3983393.0042818966,-0.0,0.0,-0.0,0.0,210.78371302846335,424875.91576679464,1094,53000.0,1239.904194285078,-1257.9480441101598,2098444.3960429095,1050.0,1148700.0,20.926002922984196,1017915.1684930702,-1627.2488045022335,10456.217206577629,0.0,0.0,380.56070840891715,1069866.1929880443,-32.18595093982765,206.8173552169409,-1239.904194285078,-4664372.878246666,true,true,3.576378023,10433.054673806957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1095,0.9050836489917335,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5556989.799567496,4407239.799567488,1149750.0,6650715.651845074,-1093725.8522776905,0.95,0.25,22.0,1095,0.0,0.1,0.0,0.0,1050.0,1149750.0,13125.0,14371875.0,13125.0,14371875.0,true,1095,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3982153.1000876115,-1029.1204812566145,4407239.799567488,-1239.904194285078,3982153.1000876115,-0.0,0.0,-0.0,0.0,210.78371302846335,425086.6994798231,1095,53000.0,1239.904194285078,-2139.828976781692,2096304.5670661277,1050.0,1149750.0,15.439591109379595,1017930.6080841796,-2450.6759084311266,8005.5412981465015,0.0,0.0,343.88015818167537,1070210.0731462261,-48.47281764162058,158.34453757532032,-1239.904194285078,-4665612.782440951,true,true,3.12933077,10436.184004576957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1096,0.9050836373803895,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5557010.67908624,4406210.679086232,1150800.0,6650736.500013188,-1093725.8209270618,0.95,0.25,22.0,1096,0.0,0.1,0.0,0.0,1050.0,1150800.0,13125.0,14385000.0,13125.0,14385000.0,true,1096,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3980913.1958933263,-1029.1204812566145,4406210.679086232,-1239.904194285078,3980913.1958933263,-0.0,0.0,-0.0,0.0,210.78371302846335,425297.4831928516,1096,53000.0,1239.904194285078,-3715.628764247183,2092588.9383018804,1050.0,1150800.0,7.9050706462340665,1017938.5131548258,-3921.0814531974347,4084.459844949067,0.0,0.0,275.1041265248276,1070485.177272751,-77.55650822081,80.78802935451031,-1239.904194285078,-4666852.686635236,true,true,2.235236264,10438.419240840956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1097,0.9050835204701722,666.0,0.0,210.2279529018998,-839.7720470981002,1050.0,209.91229531496003,0.3156575869397895,5557220.907039142,4405370.907039134,1151850.0,6650946.412308504,-1093725.5052694748,0.95,0.25,22.0,1097,0.0,0.1,0.0,0.0,1050.0,1151850.0,13125.0,14398125.0,13125.0,14398125.0,true,1097,0.83,53000.0,1239.904194285078,0.0,-1011.7735507206027,3979901.422342606,-839.7720470981002,4405370.907039134,-1011.7735507206027,3979901.422342606,-0.0,0.0,-0.0,0.0,172.00150362250247,425469.4846964741,1097,53000.0,1239.904194285078,-1011.7735507206027,2091577.1647511597,1050.0,1151850.0,3.5622590573352877,1017942.0754138831,-1202.4649776161586,2881.994867332908,0.0,0.0,210.9131636656157,1070696.0904364167,-23.783995827394993,57.004033527115325,-1011.7735507206027,-4667864.460185957,true,true,1.877598462,10440.296839302957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1098,0.9050835088588282,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5557241.786557886,4404341.786557877,1152900.0,6650967.260476618,-1093725.473918846,0.95,0.25,22.0,1098,0.0,0.1,0.0,0.0,1050.0,1152900.0,13125.0,14411250.0,13125.0,14411250.0,true,1098,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,3978661.5181483207,-1029.1204812566145,4404341.786557877,-1239.904194285078,3978661.5181483207,-0.0,0.0,-0.0,0.0,210.78371302846335,425680.2684095026,1098,53000.0,1239.904194285078,-1655.3851057728575,2089921.7796453869,1050.0,1152900.0,1.4384300782612909,1017943.5138439613,-1777.5569238902024,1104.4379434427058,0.0,0.0,155.89233840167554,1070851.9827748183,-35.15895036259188,21.845083164523444,-1239.904194285078,-4669104.364380242,true,true,1.162322858,10441.459162160956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1099,0.9050833297077895,666.0,0.0,322.1493976390004,-727.8506023609996,1050.0,321.6656898347377,0.4837078042627634,5557563.935955524,4403613.935955516,1153950.0,6651288.9261664525,-1093724.9902110419,0.95,0.25,22.0,1099,0.0,0.1,0.0,0.0,1050.0,1153950.0,13125.0,14424375.0,13125.0,14424375.0,true,1099,0.83,53000.0,1239.904194285078,0.0,-876.9284365795177,3977784.589711741,-727.8506023609996,4403613.935955516,-876.9284365795177,3977784.589711741,-0.0,0.0,-0.0,0.0,149.0778342185181,425829.3462437211,1099,53000.0,1239.904194285078,-876.9284365795177,2089044.8512088074,1050.0,1153950.0,0.21343690776661112,1017943.727280869,-941.0595494983064,163.37839394439936,0.0,0.0,82.53123799847364,1070934.5140128168,-18.613561987451575,3.231521177071869,-876.9284365795177,-4669981.2928168215,true,true,0.447047253,10441.906209413955,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1100,0.9050828121093005,666.0,0.0,930.7456028702011,-119.25439712979889,1050.0,929.3480869499756,1.3975159202255272,5558494.681558395,4403494.681558386,1155000.0,6652218.274253403,-1093723.5926951217,0.95,0.25,22.0,1100,0.0,0.1,0.0,0.0,1050.0,1155000.0,13125.0,14437500.0,13125.0,14437500.0,true,1100,0.83,53000.0,1239.904194285078,0.0,-143.67999654192639,3977640.9097151994,-119.25439712979889,4403494.681558386,-143.67999654192639,3977640.9097151994,-0.0,0.0,-0.0,0.0,24.425599412127497,425853.7718431332,1100,53000.0,1239.904194285078,-143.67999654192639,2088901.1712122655,1050.0,1155000.0,0.00457469366613165,1017943.7318555627,-163.3783939441366,2.6275870368408505e-10,0.0,0.0,22.925343885615916,1070957.4393567024,-3.2315211770718477,2.1316282072803006e-14,-143.67999654192639,-4670124.972813363,true,true,0.0,10441.906209413955,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1101,0.9050822255399454,666.0,0.0,1054.7690143047196,4.7690143047196365,1050.0,1053.1852770460039,1.5837372587157952,5559549.450572699,4403499.450572691,1156050.0,6653271.459530449,-1093722.0089578629,0.95,0.25,22.0,1101,0.0,0.1,0.0,0.0,1050.0,1156050.0,13125.0,14450625.0,13125.0,14450625.0,true,1101,0.8300746912844664,53000.0,1239.904194285078,0.0,3.958638076721357,3977644.868353276,4.7690143047196365,4403499.450572691,3.958638076721357,3977644.868353276,-0.0,0.0,-0.0,0.0,0.8103762279982796,425854.5822193612,1101,53000.0,1239.904194285078,3.958638076721357,2088905.1298503422,1050.0,1156050.0,4.5746935740334605e-6,1017943.7318601373,1.6337839175136983,1.633783917776457,0.0,0.0,2.292534373177081,1070959.7318910756,0.0323152113370031,0.03231521133702442,-3.958638076721357,-4670128.93145144,true,true,0.044704725,10441.950914138955,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1102,0.9050815918826697,666.0,0.0,1139.442513269074,89.44251326907408,1050.0,1137.7316386245259,1.710874644548159,5560688.893085969,4403588.89308596,1157100.0,6654409.191169073,-1093720.2980832183,0.95,0.25,22.0,1102,0.0,0.1,0.0,0.0,1050.0,1157100.0,13125.0,14463750.0,13125.0,14463750.0,true,1102,0.8314030713252634,53000.0,1239.904194285078,0.0,74.36278023895882,3977719.231133515,89.44251326907408,4403588.89308596,74.36278023895882,3977719.231133515,-0.0,0.0,-0.0,0.0,15.079733030115264,425869.6619523913,1102,53000.0,1239.904194285078,74.36278023895882,2088979.4926305811,1050.0,1157100.0,0.0015691199259788857,1017943.7334292573,57.18243799008616,58.81622190786261,0.0,0.0,16.04774071480297,1070975.7796317905,1.1310324141437238,1.1633476254807482,-74.36278023895882,-4670203.294231678,true,true,0.268228352,10442.219142490956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1103,0.9050807311759198,666.0,0.0,1547.722877683558,497.72287768355795,1050.0,1545.3989694588079,2.323908224750087,5562236.615963652,4404086.615963643,1158150.0,6655954.590138531,-1093717.9741749936,0.95,0.25,22.0,1103,0.0,0.1,0.0,0.0,1050.0,1158150.0,13125.0,14476875.0,13125.0,14476875.0,true,1103,0.8378684204023173,53000.0,1239.904194285078,0.0,417.02628132281853,3978136.257414838,497.72287768355795,4404086.615963643,417.02628132281853,3978136.257414838,-0.0,0.0,-0.0,0.0,80.69659636073942,425950.3585487521,1103,53000.0,1239.904194285078,417.02628132281853,2089396.518911904,1050.0,1158150.0,0.04871133821640384,1017943.7821405955,359.432466823285,418.2486887311476,0.0,0.0,50.435756568867696,1071026.2153883593,7.109346592449501,8.27269421793025,-417.02628132281853,-4670620.320513002,true,true,0.715275605,10442.934418095956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1104,0.9050789561541377,666.0,0.0,3191.8441686116776,2141.8441686116776,1050.0,3187.0516097999484,4.792558811729245,5565428.460132264,4406228.460132255,1159200.0,6659141.6417483315,-1093713.1816161817,0.95,0.25,22.0,1104,0.0,0.1,0.0,0.0,1050.0,1159200.0,13125.0,14490000.0,13125.0,14490000.0,true,1104,0.8649546819165339,53000.0,1239.904194285078,0.0,1852.5981415762967,3979988.855556414,2141.8441686116776,4406228.460132255,1852.5981415762967,3979988.855556414,-0.0,0.0,-0.0,0.0,289.24602703538085,426239.6045757875,1104,53000.0,1239.904194285078,1852.5981415762967,2091249.1170534804,1050.0,1159200.0,0.6432385265093721,1017944.425379122,1699.1352946800694,2117.383983411217,0.0,0.0,119.21178817443374,1071145.4271765337,33.60782019528424,41.88051441321449,-1852.5981415762967,-4672472.918654578,true,true,1.60937011,10444.543788205956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1105,0.9050747048627957,666.0,0.0,7644.672091079181,6594.672091079181,1050.0,7633.193604455939,11.478486623242013,5573073.132223343,4412823.132223334,1160250.0,6666774.835352788,-1093701.7031295586,0.95,0.25,22.0,1105,0.0,0.1,0.0,0.0,1050.0,1160250.0,13125.0,14503125.0,13125.0,14503125.0,true,1105,0.9127133790489381,53000.0,1239.904194285078,0.0,6019.045447968606,3986007.9010043824,6594.672091079181,4412823.132223334,6019.045447968606,3986007.9010043824,-0.0,0.0,-0.0,0.0,575.6266431105751,426815.2312188981,1105,53000.0,1239.904194285078,6019.045447968606,2097268.1625014488,1050.0,1160250.0,5.295779750178738,1017949.7211588722,5661.061348739035,7778.4453321502515,0.0,0.0,240.71611072204456,1071386.1432872557,111.972208757348,153.85272317056248,-6019.045447968606,-4678491.964102547,true,true,3.084626045,10447.628414250956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1106,0.9050686239679813,666.0,0.0,10934.665055406143,9884.665055406143,1050.0,10918.246639407034,16.418415999108323,5584007.797278749,4422707.79727874,1161300.0,6677693.081992195,-1093685.2847135596,0.95,0.25,22.0,1106,0.0,0.1,0.0,0.0,1050.0,1161300.0,13125.0,14516250.0,13125.0,14516250.0,true,1106,0.9244838223904576,53000.0,1239.904194285078,0.0,9138.212933471255,3995146.113937854,9884.665055406143,4422707.79727874,9138.212933471255,3995146.113937854,-0.0,0.0,-0.0,0.0,746.452121934888,427561.683340833,1106,53000.0,1239.904194285078,9138.212933471255,2106406.37543492,1050.0,1161300.0,22.081172545021555,1017971.8023314172,8559.394054954453,16337.839387104705,0.0,0.0,387.4383115797301,1071773.5815988353,169.29939439205052,323.152117562613,-9138.212933471255,-4687630.177036018,true,true,4.470472529,10452.098886779955,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1107,0.9050613390104396,666.0,0.0,13099.810651464471,12049.810651464471,1050.0,13080.141266101913,19.669385362559268,5597107.607930213,4434757.607930205,1162350.0,6690773.223258297,-1093665.615328197,0.95,0.25,22.0,1107,0.0,0.1,0.0,0.0,1050.0,1162350.0,13125.0,14529375.0,13125.0,14529375.0,true,1107,0.9305785808448004,53000.0,1239.904194285078,0.0,11213.295695488367,4006359.409633342,12049.810651464471,4434757.607930205,11213.295695488367,4006359.409633342,-0.0,0.0,-0.0,0.0,836.5149559761048,428398.1982968091,1107,53000.0,1239.904194285078,11213.295695488367,2117619.6711304085,1050.0,1162350.0,54.22087958486174,1018026.0232110021,10430.076663604772,26767.91605070948,0.0,0.0,522.6978404689668,1072296.2794393043,206.30031182976572,529.4524293923787,-11213.295695488367,-4698843.472731506,true,true,5.722204837,10457.821091616956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1108,0.9050570630156686,666.0,0.0,7689.093797248566,6639.093797248566,1050.0,7677.548611366812,11.545185881754604,5604796.701727462,4441396.701727454,1163400.0,6698450.771869664,-1093654.0701423152,0.95,0.25,22.0,1108,0.0,0.1,0.0,0.0,1050.0,1163400.0,13125.0,14542500.0,13125.0,14542500.0,true,1108,0.9128703079207898,53000.0,1239.904194285078,0.0,6060.631599009304,4012420.0412323517,6639.093797248566,4441396.701727454,6060.631599009304,4012420.0412323517,-0.0,0.0,-0.0,0.0,578.4621982392619,428976.6604950484,1108,53000.0,1239.904194285078,6060.631599009304,2123680.302729418,1050.0,1163400.0,88.05750977791335,1018114.0807207801,5254.249152108657,32022.165202818134,0.0,0.0,614.3992160114304,1072910.6786553157,103.92572111130312,633.3781505036818,-6060.631599009304,-4704904.1043305155,true,true,6.258661541,10464.079753157956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1109,0.9050545192370845,666.0,0.0,4574.222649975359,3524.2226499753588,1050.0,4567.354447798219,6.868202177140178,5609370.924377438,4444920.924377429,1164450.0,6703018.126317462,-1093647.2019401381,0.95,0.25,22.0,1109,0.0,0.1,0.0,0.0,1050.0,1164450.0,13125.0,14555625.0,13125.0,14555625.0,true,1109,0.8891219573729061,53000.0,1239.904194285078,0.0,3133.463740764021,4015553.504973116,3524.2226499753588,4444920.924377429,3133.463740764021,4015553.504973116,-0.0,0.0,-0.0,0.0,390.7589092113376,429367.4194042597,1109,53000.0,1239.904194285078,3133.463740764021,2126813.766470182,1050.0,1164450.0,105.90015545165086,1018219.9808762317,2328.1421080392906,34350.307310857424,0.0,0.0,653.3723006118494,1073564.0509559275,46.04917666123046,679.4273271649123,-3133.463740764021,-4708037.56807128,true,true,6.482185167,10470.561938324956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1110,0.9050488371804336,666.0,0.0,10217.474269538587,9167.474269538587,1050.0,10202.132716581322,15.341552957265145,5619588.398646976,4454088.3986469675,1165500.0,6713220.259034043,-1093631.860387181,0.95,0.25,22.0,1110,0.0,0.1,0.0,0.0,1050.0,1165500.0,13125.0,14568750.0,13125.0,14568750.0,true,1110,0.9218921610010039,53000.0,1239.904194285078,0.0,8451.422665266027,4024004.9276383817,9167.474269538587,4454088.3986469675,8451.422665266027,4024004.9276383817,-0.0,0.0,-0.0,0.0,716.0516042725594,430083.4710085323,1110,53000.0,1239.904194285078,8451.422665266027,2135265.189135448,1050.0,1165500.0,129.79606777907514,1018349.7769440108,7474.561515452302,41824.86882630973,0.0,0.0,699.2229883317996,1074263.2739442592,147.8420937028512,827.2694208677635,-8451.422665266027,-4716488.990736546,true,true,7.152756046,10477.714694370956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1111,0.905040560894217,666.0,0.0,14882.41787470376,13832.41787470376,1050.0,14860.07190191892,22.34597278484048,5634470.81652168,4467920.816521672,1166550.0,6728080.3309359625,-1093609.5144143961,0.95,0.25,22.0,1111,0.0,0.1,0.0,0.0,1050.0,1166550.0,13125.0,14581875.0,13125.0,14581875.0,true,1111,0.9321642312973175,53000.0,1239.904194285078,0.0,12894.085175156506,4036899.0128135383,13832.41787470376,4467920.816521672,12894.085175156506,4036899.0128135383,-0.0,0.0,-0.0,0.0,938.3326995472544,431021.8037080795,1111,53000.0,1239.904194285078,12894.085175156506,2148159.2743106047,1050.0,1166550.0,181.39493422578641,1018531.1718782366,11699.526783300837,53524.39560961057,0.0,0.0,781.7542262789914,1075045.0281705381,231.40923135089201,1058.6786522186555,-12894.085175156506,-4729383.075911703,true,true,8.091555277,10485.806249647956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1112,0.9050321119819572,666.0,0.0,15192.834025507284,14142.834025507284,1050.0,15170.021962405921,22.812063101362288,5649663.650547187,4482063.650547178,1167600.0,6743250.352898369,-1093586.7023512947,0.95,0.25,22.0,1112,0.0,0.1,0.0,0.0,1050.0,1167600.0,13125.0,14595000.0,13125.0,14595000.0,true,1112,0.9324409027606969,53000.0,1239.904194285078,0.0,13187.356926338713,4050086.369739877,14142.834025507284,4482063.650547178,13187.356926338713,4050086.369739877,-0.0,0.0,-0.0,0.0,955.4770991685709,431977.2808072481,1112,53000.0,1239.904194285078,13187.356926338713,2161346.6312369434,1050.0,1167600.0,253.00956767799403,1018784.1814459146,11826.961938807466,65351.35754841803,0.0,0.0,873.4556018214552,1075918.4837723596,233.92981803179646,1292.608470250452,-13187.356926338713,-4742570.432838041,true,true,8.940945058,10494.747194705957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1113,0.9050266429126912,666.0,0.0,9834.480354163785,8784.480354163785,1050.0,9819.713867145521,14.766487018263941,5659498.130901351,4490848.130901342,1168650.0,6753070.066765514,-1093571.9358642765,0.95,0.25,22.0,1113,0.0,0.1,0.0,0.0,1050.0,1168650.0,13125.0,14608125.0,13125.0,14608125.0,true,1113,0.9205141059605318,53000.0,1239.904194285078,0.0,8086.238079540933,4058172.607819418,8784.480354163785,4490848.130901342,8086.238079540933,4058172.607819418,-0.0,0.0,-0.0,0.0,698.2422746228522,432675.5230818709,1113,53000.0,1239.904194285078,8086.238079540933,2169432.8693164843,1050.0,1168650.0,315.29246195703683,1019099.4739078716,6698.514150247739,72049.87169866577,0.0,0.0,939.9390991051258,1076858.4228714646,132.49236823103115,1425.1008384814832,-8086.238079540933,-4750656.670917583,true,true,9.387992311,10504.135187016956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1114,0.905024344206882,666.0,0.0,4133.532785993391,3083.532785993391,1050.0,4127.326280308716,6.206505684674762,5663631.663687344,4493931.663687335,1169700.0,6757197.393045823,-1093565.7293585918,0.95,0.25,22.0,1114,0.0,0.1,0.0,0.0,1050.0,1169700.0,13125.0,14621250.0,13125.0,14621250.0,true,1114,0.8812723026131217,53000.0,1239.904194285078,0.0,2717.43203849545,4060890.0398579133,3083.532785993391,4493931.663687335,2717.43203849545,4060890.0398579133,-0.0,0.0,-0.0,0.0,366.10074749794103,433041.62382936885,1114,53000.0,1239.904194285078,2717.43203849545,2172150.3013549796,1050.0,1169700.0,343.79485291473685,1019443.2687607864,1378.9136352988091,73428.78533396458,0.0,0.0,967.4495117370959,1077825.8723832017,27.27403854480805,1452.3748770262912,-2717.43203849545,-4753374.102956078,true,true,9.477401761,10513.612588777956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1115,0.905022457955228,666.0,0.0,3391.857724453855,2341.857724453855,1050.0,3386.7648449877083,5.09287946614693,5667023.521411798,4496273.52141179,1170750.0,6760584.157890811,-1093560.6364791256,0.95,0.25,22.0,1115,0.0,0.1,0.0,0.0,1050.0,1170750.0,13125.0,14634375.0,13125.0,14634375.0,true,1115,0.8683697827039147,53000.0,1239.904194285078,0.0,2033.5984833074785,4062923.6383412206,2341.857724453855,4496273.52141179,2033.5984833074785,4062923.6383412206,-0.0,0.0,-0.0,0.0,308.25924114637655,433349.88307051524,1115,53000.0,1239.904194285078,2033.5984833074785,2174183.899838287,1050.0,1170750.0,351.1792182146088,1019794.447979001,694.3581849706073,74123.14351893519,0.0,0.0,974.3271149079087,1078800.1994981098,13.73396521435359,1466.108842240645,-2033.5984833074785,-4755407.701439385,true,true,9.522106487,10523.134695264956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1116,0.9050205638104978,666.0,0.0,3406.0510538285557,2356.0510538285557,1050.0,3400.9368630570416,5.114190771514348,5670429.5724656265,4498629.572465618,1171800.0,6763985.094753868,-1093555.522288354,0.95,0.25,22.0,1116,0.0,0.1,0.0,0.0,1050.0,1171800.0,13125.0,14647500.0,13125.0,14647500.0,true,1116,0.8686131495542773,53000.0,1239.904194285078,0.0,2046.4969263766957,4064970.135267597,2356.0510538285557,4498629.572465618,2046.4969263766957,4064970.135267597,-0.0,0.0,-0.0,0.0,309.55412745186004,433659.4371979671,1116,53000.0,1239.904194285078,2046.4969263766957,2176230.3967646635,1050.0,1171800.0,356.1604100305612,1020150.6083890315,697.6257373100552,74820.76925624524,0.0,0.0,978.9121837055446,1079779.1116818152,13.798595330534413,1479.9074375711793,-2046.4969263766957,-4757454.198365762,true,true,9.566811212,10532.701506476957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1117,0.9050177951659834,666.0,0.0,4978.576565848431,3928.576565848431,1050.0,4971.101225659469,7.475340188961607,5675408.149031475,4502558.149031467,1172850.0,6768956.195979527,-1093548.0469481652,0.95,0.25,22.0,1117,0.0,0.1,0.0,0.0,1050.0,1172850.0,13125.0,14660625.0,13125.0,14660625.0,true,1117,0.8931001149289276,53000.0,1239.904194285078,0.0,3508.6121824663255,4068478.7474500635,3928.576565848431,4502558.149031467,3508.6121824663255,4068478.7474500635,-0.0,0.0,-0.0,0.0,419.96438338210555,434079.4015813492,1117,53000.0,1239.904194285078,3508.6121824663255,2179739.00894713,1050.0,1172850.0,366.26365757403704,1020516.8720466056,2112.4826348013844,76933.25189104663,0.0,0.0,988.0823212495346,1080767.194003065,41.783568841369494,1521.6910064125489,-3508.6121824663255,-4760962.810548228,true,true,9.700925388,10542.402431864957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1118,0.9050127870299499,666.0,0.0,9005.630215351888,7955.630215351889,1050.0,8992.10824806157,13.52196729031815,5684413.779246827,4510513.779246818,1173900.0,6777948.304227589,-1093534.524980875,0.95,0.25,22.0,1118,0.0,0.1,0.0,0.0,1050.0,1173900.0,13125.0,14673750.0,13125.0,14673750.0,true,1118,0.9175458703787025,53000.0,1239.904194285078,0.0,7299.655650356153,4075778.40310042,7955.630215351889,4510513.779246818,7299.655650356153,4075778.40310042,-0.0,0.0,-0.0,0.0,655.9745649957358,434735.37614634493,1118,53000.0,1239.904194285078,7299.655650356153,2187038.664597486,1050.0,1173900.0,395.0288601225559,1020911.9009067281,5777.0600020584125,82710.31189310504,0.0,0.0,1013.3001995083276,1081780.4942025733,114.26658866685773,1635.9575950794065,-7299.655650356153,-4768262.466198584,true,true,10.05856319,10552.460995054957,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1119,0.9050089847893408,666.0,0.0,6837.189063394114,5787.189063394114,1050.0,6826.923013749378,10.266049644735906,5691250.968310221,4516300.968310213,1174950.0,6784775.227241338,-1093524.2589312303,0.95,0.25,22.0,1119,0.0,0.1,0.0,0.0,1050.0,1174950.0,13125.0,14686875.0,13125.0,14686875.0,true,1119,0.909664135233841,53000.0,1239.904194285078,0.0,5264.398334787149,4081042.801435207,5787.189063394114,4516300.968310213,5264.398334787149,4081042.801435207,-0.0,0.0,-0.0,0.0,522.7907286069649,435258.1668749519,1119,53000.0,1239.904194285078,5264.398334787149,2192303.0629322734,1050.0,1174950.0,430.91955998972844,1021342.8204667178,3716.8585201547025,86427.17041325974,0.0,0.0,1043.1031467186015,1082823.597349292,73.51710792411608,1709.4747030035226,-5264.398334787149,-4773526.864533371,true,true,10.28208682,10562.743081874956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1120,0.9050036949945982,666.0,0.0,9512.108906095336,8462.108906095336,1050.0,9497.82646029039,14.282445804947953,5700763.077216316,4524763.077216308,1176000.0,6794273.053701629,-1093509.9764854254,0.95,0.25,22.0,1120,0.0,0.1,0.0,0.0,1050.0,1176000.0,13125.0,14700000.0,13125.0,14700000.0,true,1120,0.9193573666420609,53000.0,1239.904194285078,0.0,7779.702160146139,4088822.503595353,8462.108906095336,4524763.077216308,7779.702160146139,4088822.503595353,-0.0,0.0,-0.0,0.0,682.4067459491971,435940.5736209011,1120,53000.0,1239.904194285078,7779.702160146139,2200082.7650924195,1050.0,1176000.0,468.92088616152745,1021811.7413528793,6116.887028102958,92544.05744136269,0.0,0.0,1072.9060938263121,1083896.5034431182,120.98815205534211,1830.4628550588648,-7779.702160146139,-4781306.566693517,true,true,10.63972462,10573.382806494956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1121,0.9049987126188301,666.0,0.0,8959.30810616932,7909.308106169319,1050.0,8945.855691595492,13.452414573827806,5709722.385322485,4532672.385322477,1177050.0,6803218.909393225,-1093496.5240708515,0.95,0.25,22.0,1121,0.0,0.1,0.0,0.0,1050.0,1177050.0,13125.0,14713125.0,13125.0,14713125.0,true,1121,0.9173805487185731,53000.0,1239.904194285078,0.0,7255.845410421868,4096078.349005775,7909.308106169319,4532672.385322477,7255.845410421868,4096078.349005775,-0.0,0.0,-0.0,0.0,653.4626957474511,436594.03631664853,1121,53000.0,1239.904194285078,7255.845410421868,2207338.6105028414,1050.0,1177050.0,515.4700182647258,1022327.211371144,5523.823550466953,98067.88099182965,0.0,0.0,1107.2941096803768,1085003.7975527986,109.25773200981281,1939.7205870686776,-7255.845410421868,-4788562.412103939,true,true,10.9526577,10584.335464194955,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1122,0.9049945836999176,666.0,0.0,7424.6219885745695,6374.6219885745695,1050.0,7413.473907510644,11.14808106392578,5717147.00731106,4539047.007311052,1178100.0,6810632.383300736,-1093485.3759897875,0.95,0.25,22.0,1122,0.0,0.1,0.0,0.0,1050.0,1178100.0,13125.0,14726250.0,13125.0,14726250.0,true,1122,0.9119368014595255,53000.0,1239.904194285078,0.0,5813.252386774253,4101891.6013925495,6374.6219885745695,4539047.007311052,5813.252386774253,4101891.6013925495,-0.0,0.0,-0.0,0.0,561.3696018003166,437155.4059184489,1122,53000.0,1239.904194285078,5813.252386774253,2213151.862889616,1050.0,1178100.0,554.8525859309602,1022882.063957075,4043.615131890711,102111.49612372035,0.0,0.0,1134.8045221585019,1086138.6020749572,79.98014679407964,2019.7007338627573,-5813.252386774253,-4794375.664490713,true,true,11.17618132,10595.511645514955,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1123,0.9049934210874594,666.0,0.0,2090.609722353258,1040.6097223532581,1050.0,2087.470668716091,3.139053637167054,5719237.617033414,4540087.617033405,1179150.0,6812719.853969452,-1093482.2369361504,0.95,0.25,22.0,1123,0.0,0.1,0.0,0.0,1050.0,1179150.0,13125.0,14739375.0,13125.0,14739375.0,true,1123,0.8466227137181164,53000.0,1239.904194285078,0.0,881.0038270601709,4102772.6052196096,1040.6097223532581,4540087.617033405,881.0038270601709,4102772.6052196096,-0.0,0.0,-0.0,0.0,159.6058952930872,437315.01181374193,1123,53000.0,1239.904194285078,881.0038270601709,2214032.866716676,1050.0,1179150.0,568.4125451233863,1023450.4765021984,-815.25808895598,101296.23803476438,0.0,0.0,1143.97465965121,1087282.5767346085,-16.125288758445397,2003.575445104312,-881.0038270601709,-4795256.668317773,true,true,11.1314766,10606.643122114954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1124,0.9049922636664733,666.0,0.0,2081.2744171750255,1031.2744171750253,1050.0,2078.1493805126006,3.125036662424963,5721318.891450589,4541118.89145058,1180200.0,6814798.0033499645,-1093479.111899488,0.95,0.25,22.0,1124,0.0,0.1,0.0,0.0,1050.0,1180200.0,13125.0,14752500.0,13125.0,14752500.0,true,1124,0.8464706322245884,53000.0,1239.904194285078,0.0,872.9435079031875,4103645.548727513,1031.2744171750253,4541118.89145058,872.9435079031875,4103645.548727513,-0.0,0.0,-0.0,0.0,158.33090927183775,437473.3427230138,1124,53000.0,1239.904194285078,872.9435079031875,2214905.810224579,1050.0,1180200.0,561.6052820545196,1024012.0817842529,-811.9907031205778,100484.2473316438,0.0,0.0,1139.389590904856,1088421.9663255133,-16.060661935610277,1987.5147831687016,-872.9435079031875,-4796129.611825677,true,true,11.08677187,10617.729893984953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1125,0.904989580589411,666.0,0.0,4824.709173467385,3774.7091734673845,1050.0,4817.464865399115,7.244308068269347,5726143.600624056,4544893.600624047,1181250.0,6819615.468215364,-1093471.8675914197,0.95,0.25,22.0,1125,0.0,0.1,0.0,0.0,1050.0,1181250.0,13125.0,14765625.0,13125.0,14765625.0,true,1125,0.8917558391170591,53000.0,1239.904194285078,0.0,3366.118946408268,4107011.667673921,3774.7091734673845,4544893.600624047,3366.118946408268,4107011.667673921,-0.0,0.0,-0.0,0.0,408.5902270591164,437881.93295007286,1125,53000.0,1239.904194285078,3366.118946408268,2218271.9291709876,1050.0,1181250.0,565.0020786160302,1024577.083862869,1627.2487920765577,102111.49612372035,0.0,0.0,1141.6821250216244,1089563.648450535,32.18595069405567,2019.7007338627573,-3366.118946408268,-4799495.730772085,true,true,11.17618132,10628.906075304953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1126,0.9049858735476902,666.0,0.0,6666.002422338203,5616.002422338203,1050.0,6655.99340969205,10.009012646153458,5732809.603046394,4550509.603046386,1182300.0,6826271.461625056,-1093461.8585787737,0.95,0.25,22.0,1126,0.0,0.1,0.0,0.0,1050.0,1182300.0,13125.0,14778750.0,13125.0,14778750.0,true,1126,0.9081128685822093,53000.0,1239.904194285078,0.0,5099.964069714182,4112111.6317436355,5616.002422338203,4550509.603046386,5099.964069714182,4112111.6317436355,-0.0,0.0,-0.0,0.0,516.0383526240212,438397.9713026969,1126,53000.0,1239.904194285078,5099.964069714182,2223371.893240702,1050.0,1182300.0,585.6708738198415,1025162.7547366888,3293.7083981734545,105405.20452189381,0.0,0.0,1155.437331260687,1090719.0857817957,65.14746646019981,2084.848200322957,-5099.964069714182,-4804595.694841798,true,true,11.35500022,10640.261075524953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1127,0.9049821085784971,666.0,0.0,6770.167603071999,5720.167603071999,1050.0,6760.00218625057,10.165416821429428,5739579.770649466,4556229.770649457,1183350.0,6833031.463811307,-1093451.6931619523,0.95,0.25,22.0,1127,0.0,0.1,0.0,0.0,1050.0,1183350.0,13125.0,14791875.0,13125.0,14791875.0,true,1127,0.9090561663403082,53000.0,1239.904194285078,0.0,5199.953632072661,4117311.585375708,5720.167603071999,4556229.770649457,5199.953632072661,4117311.585375708,-0.0,0.0,-0.0,0.0,520.213970999338,438918.18527369626,1127,53000.0,1239.904194285078,5199.953632072661,2228571.8468727744,1050.0,1183350.0,614.0049890696986,1025776.7597257585,3345.9894835338755,108751.1940054277,0.0,0.0,1173.777606246104,1091892.8633880417,66.1815532229832,2151.02975354594,-5199.953632072661,-4809795.648473871,true,true,11.53381912,10651.794894644954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1128,0.9049793154542133,666.0,0.0,5022.596087276309,3972.596087276309,1050.0,5015.054651709828,7.541435566480945,5744602.366736742,4560202.366736733,1184400.0,6838046.518463017,-1093444.1517263858,0.95,0.25,22.0,1128,0.0,0.1,0.0,0.0,1050.0,1184400.0,13125.0,14805000.0,13125.0,14805000.0,true,1128,0.8934854412053855,53000.0,1239.904194285078,0.0,3549.456767770861,4120861.042143479,3972.596087276309,4560202.366736733,3549.456767770861,4120861.042143479,-0.0,0.0,-0.0,0.0,423.13931950544793,439341.3245932017,1128,53000.0,1239.904194285078,3549.456767770861,2232121.3036405453,1050.0,1184400.0,635.8450530496157,1026412.6047788081,1692.6003388168601,110443.79434424455,0.0,0.0,1187.5328129979832,1093080.3962010397,33.47856290640209,2184.508316452342,-3549.456767770861,-4813345.105241641,true,true,11.62322858,10663.418123224954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1129,0.90497546179391,666.0,0.0,6929.651957415694,5879.651957415694,1050.0,6919.247074596751,10.404882818942482,5751532.018694158,4566082.018694149,1185450.0,6844965.765537614,-1093433.746843567,0.95,0.25,22.0,1129,0.0,0.1,0.0,0.0,1050.0,1185450.0,13125.0,14818125.0,13125.0,14818125.0,true,1129,0.910194825615316,53000.0,1239.904194285078,0.0,5351.628788058729,4126212.6709315376,5879.651957415694,4566082.018694149,5351.628788058729,4126212.6709315376,-0.0,0.0,-0.0,0.0,528.0231693569649,439869.34776255867,1129,53000.0,1239.904194285078,5351.628788058729,2237472.932428604,1050.0,1185450.0,658.1969703856254,1027070.8017491937,3424.4111144982517,113868.2054587428,0.0,0.0,1201.2880197498628,1094281.6842207895,67.73268342498893,2252.240999877331,-5351.628788058729,-4818696.7340297,true,true,11.80204748,10675.220170704953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1130,0.9049726012225642,666.0,0.0,5143.879393930207,4093.879393930207,1050.0,5136.155851296678,7.723542633528839,5756675.898088088,4570175.89808808,1186500.0,6850101.921388911,-1093426.0233009334,0.95,0.25,22.0,1130,0.0,0.1,0.0,0.0,1050.0,1186500.0,13125.0,14831250.0,13125.0,14831250.0,true,1130,0.8945488205992043,53000.0,1239.904194285078,0.0,3662.1749835156515,4129874.8459150535,4093.879393930207,4570175.89808808,3662.1749835156515,4129874.8459150535,-0.0,0.0,-0.0,0.0,431.70441041455524,440301.0521729732,1130,53000.0,1239.904194285078,3662.1749835156515,2241135.10741212,1050.0,1186500.0,681.0666690189165,1027751.8684182126,1731.810964259272,115600.01642300207,0.0,0.0,1215.0432259889253,1095496.7274467784,34.25412424853815,2286.495124125869,-3662.1749835156515,-4822358.909013215,true,true,11.89145693,10687.111627634953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1131,0.9049691849862999,666.0,0.0,6143.076050471128,5093.076050471128,1050.0,6133.852212557507,9.223837913620311,5762818.97413856,4575268.974138551,1187550.0,6856235.773601469,-1093416.7994630197,0.95,0.25,22.0,1131,0.0,0.1,0.0,0.0,1050.0,1187550.0,13125.0,14844375.0,13125.0,14844375.0,true,1131,0.9034067874826505,53000.0,1239.904194285078,0.0,4601.119473160947,4134475.9653882147,5093.076050471128,4575268.974138551,4601.119473160947,4134475.9653882147,-0.0,0.0,-0.0,0.0,491.9565773101813,440793.0087502834,1131,53000.0,1239.904194285078,4601.119473160947,2245736.226885281,1050.0,1187550.0,700.5245561215831,1028452.3929743342,2622.223106842589,118222.23952984466,0.0,0.0,1226.5058975984023,1096723.2333443768,51.865912598371835,2338.361036724241,-4601.119473160947,-4826960.028486377,true,true,12.0255711,10699.137198734954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1132,0.9049668076811461,666.0,0.0,4274.8701275308995,3224.8701275309,1050.0,4268.451403615688,6.418723915211561,5767093.844266091,4578493.844266082,1188600.0,6860504.225005085,-1093410.3807391045,0.95,0.25,22.0,1132,0.0,0.1,0.0,0.0,1050.0,1188600.0,13125.0,14857500.0,13125.0,14857500.0,true,1132,0.8837746905474397,53000.0,1239.904194285078,0.0,2850.0585990143036,4137326.023987229,3224.8701275309,4578493.844266082,2850.0585990143036,4137326.023987229,-0.0,0.0,-0.0,0.0,374.81152851659635,441167.8202788,1132,53000.0,1239.904194285078,2850.0585990143036,2248586.2854842953,1050.0,1188600.0,716.355027256107,1029168.7480015903,880.6096356962939,119102.84916554096,0.0,0.0,1235.6760350911104,1097958.9093794678,17.417900970792186,2355.778937695033,-2850.0585990143036,-4829810.087085391,true,true,12.07027583,10711.207474564953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1133,0.9049649675849727,666.0,0.0,3308.8609391062205,2258.8609391062205,1050.0,3303.8926794378926,4.968259668327659,5770402.7052051965,4580752.705205188,1189650.0,6863808.117684523,-1093405.412479436,0.95,0.25,22.0,1133,0.0,0.1,0.0,0.0,1050.0,1189650.0,13125.0,14870625.0,13125.0,14870625.0,true,1133,0.8669493987355738,53000.0,1239.904194285078,0.0,1958.3181329854115,4139284.3421202144,2258.8609391062205,4580752.705205188,1958.3181329854115,4139284.3421202144,-0.0,0.0,-0.0,0.0,300.542806120809,441468.3630849208,1133,53000.0,1239.904194285078,1958.3181329854115,2250544.6036172807,1050.0,1189650.0,720.3495632647154,1029889.097564855,0.0,119102.84916554096,0.0,0.0,1237.968569720696,1099196.8779491885,0.0,2355.778937695033,-1958.3181329854115,-4831768.405218377,true,true,12.07027583,10723.277750394953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1134,0.9049631274887993,666.0,0.0,3308.8609391062205,2258.8609391062205,1050.0,3303.8926794378926,4.968259668327659,5773711.5661443025,4583011.566144294,1190700.0,6867112.010363961,-1093400.4442197676,0.95,0.25,22.0,1134,0.0,0.1,0.0,0.0,1050.0,1190700.0,13125.0,14883750.0,13125.0,14883750.0,true,1134,0.8669493987355738,53000.0,1239.904194285078,0.0,1958.3181329854115,4141242.6602531997,2258.8609391062205,4583011.566144294,1958.3181329854115,4141242.6602531997,-0.0,0.0,-0.0,0.0,300.542806120809,441768.9058910416,1134,53000.0,1239.904194285078,1958.3181329854115,2252502.921750266,1050.0,1190700.0,720.3495632647154,1030609.4471281198,0.0,119102.84916554096,0.0,0.0,1237.968569720696,1100434.846518909,0.0,2355.778937695033,-1958.3181329854115,-4833726.723351362,true,true,12.07027583,10735.348026224952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1135,0.9049618538989743,666.0,0.0,2290.169223173052,1240.1692231730522,1050.0,2286.730530645765,3.438692527286865,5776001.735367475,4584251.735367467,1191750.0,6869398.740894606,-1093397.0055272402,0.95,0.25,22.0,1135,0.0,0.1,0.0,0.0,1050.0,1191750.0,13125.0,14896875.0,13125.0,14896875.0,true,1135,0.8498868589750967,53000.0,1239.904194285078,0.0,1054.0035256801311,4142296.6637788797,1240.1692231730522,4584251.735367467,1054.0035256801311,4142296.6637788797,-0.0,0.0,-0.0,0.0,186.16569749292103,441955.0715885345,1135,53000.0,1239.904194285078,1054.0035256801311,2253556.925275946,1050.0,1191750.0,716.355027256107,1031325.8021553758,-880.6096356962939,118222.23952984466,0.0,0.0,1235.6760350911104,1101670.5225540001,-17.417900970792186,2338.361036724241,-1054.0035256801311,-4834780.726877042,true,true,12.0255711,10747.373597324953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1136,0.9049605861877089,666.0,0.0,2279.5983975053896,1229.5983975053896,1050.0,2276.175577088715,3.4228204166747593,5778281.333764981,4585481.333764972,1192800.0,6871674.916471695,-1093393.5827068235,0.95,0.25,22.0,1136,0.0,0.1,0.0,0.0,1050.0,1192800.0,13125.0,14910000.0,13125.0,14910000.0,true,1136,0.8497133234114277,53000.0,1239.904194285078,0.0,1044.8061408056703,4143341.4699196853,1229.5983975053896,4585481.333764972,1044.8061408056703,4143341.4699196853,-0.0,0.0,-0.0,0.0,184.79225669971925,442139.8638452342,1136,53000.0,1239.904194285078,1044.8061408056703,2254601.7314167516,1050.0,1192800.0,708.4103123632636,1032034.2124677391,-877.3418712432118,117344.89765860145,0.0,0.0,1231.0909663447565,1102901.613520345,-17.353266659138026,2321.0077700651027,-1044.8061408056703,-4835825.533017848,true,true,11.98086638,10759.354463704953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1137,0.9049587614895258,666.0,0.0,3281.1722729455455,2231.1722729455455,1050.0,3276.2455878510327,4.926685094512831,5781562.506037926,4587712.506037918,1193850.0,6874951.1620595455,-1093388.6560217289,0.95,0.25,22.0,1137,0.0,0.1,0.0,0.0,1050.0,1193850.0,13125.0,14923125.0,13125.0,14923125.0,true,1137,0.8664765756755488,53000.0,1239.904194285078,0.0,1933.258510804087,4145274.7284304895,2231.1722729455455,4587712.506037918,1933.258510804087,4145274.7284304895,-0.0,0.0,-0.0,0.0,297.9137621414584,442437.7776073757,1137,53000.0,1239.904194285078,1933.258510804087,2256534.989927556,1050.0,1193850.0,704.4600785760994,1032738.6725463152,0.0,117344.89765860145,0.0,0.0,1228.7984322279879,1104130.4119525729,0.0,2321.0077700651027,-1933.258510804087,-4837758.7915286515,true,true,11.98086638,10771.335330084952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1138,0.904958523509119,666.0,0.0,427.9363676143321,-622.0636323856679,1050.0,427.29382051581206,0.6425470985200181,5781990.4424055405,4587090.442405532,1194900.0,6875378.455880062,-1093388.0134746304,0.95,0.25,22.0,1138,0.0,0.1,0.0,0.0,1050.0,1194900.0,13125.0,14936250.0,13125.0,14936250.0,true,1138,0.83,53000.0,1239.904194285078,0.0,-749.4742558863469,4144525.254174603,-622.0636323856679,4587090.442405532,-749.4742558863469,4144525.254174603,-0.0,0.0,-0.0,0.0,127.41062350067898,442565.1882308764,1138,53000.0,1239.904194285078,-749.4742558863469,2255785.5156716695,1050.0,1194900.0,692.6975389457738,1033431.3700852611,-2612.4205984937516,114732.47706010769,0.0,0.0,1221.9208288520479,1105352.332781425,-51.67202519041685,2269.335744874686,-749.4742558863469,-4838508.265784537,true,true,11.8467522,10783.182082284951,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1139,0.9049572789605169,666.0,0.0,2237.9472961385413,1187.9472961385413,1050.0,2234.5870149131083,3.360281225433245,5784228.389701679,4588278.389701671,1195950.0,6877613.042894975,-1093384.653193405,0.95,0.25,22.0,1139,0.0,0.1,0.0,0.0,1050.0,1195950.0,13125.0,14949375.0,13125.0,14949375.0,true,1139,0.8490302488386356,53000.0,1239.904194285078,0.0,1008.6031884476901,4145533.857363051,1187.9472961385413,4588278.389701671,1008.6031884476901,4145533.857363051,-0.0,0.0,-0.0,0.0,179.34410769085127,442744.53233856725,1139,53000.0,1239.904194285078,1008.6031884476901,2256794.118860117,1050.0,1195950.0,677.2188434506029,1034108.5889287117,-864.2716013648975,113868.20545874278,0.0,0.0,1212.7506913593397,1106565.0834727844,-17.0947449973551,2252.240999877331,-1008.6031884476901,-4839516.868972985,true,true,11.80204748,10794.984129764951,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1140,0.9049572673491729,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784249.269220423,4587249.269220415,1197000.0,6877633.8910630895,-1093384.6218427762,0.95,0.25,22.0,1140,0.0,0.1,0.0,0.0,1050.0,1197000.0,13125.0,14962500.0,13125.0,14962500.0,true,1140,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4144293.9531687656,-1029.1204812566145,4587249.269220415,-1239.904194285078,4144293.9531687656,-0.0,0.0,-0.0,0.0,210.78371302846335,442955.3160515957,1140,53000.0,1239.904194285078,-1632.6588077877527,2255161.4600523296,1050.0,1197000.0,658.1969703856254,1034766.7858990973,-3424.4111144982517,110443.79434424454,0.0,0.0,1201.2880197498628,1107766.3714925342,-67.73268342498893,2184.508316452342,-1239.904194285078,-4840756.77316727,true,true,11.62322858,10806.60735834495,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1141,0.9049572557378289,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784270.148739167,4586220.148739158,1198050.0,6877654.739231204,-1093384.5904921475,0.95,0.25,22.0,1141,0.0,0.1,0.0,0.0,1050.0,1198050.0,13125.0,14975625.0,13125.0,14975625.0,true,1141,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4143054.0489744805,-1029.1204812566145,4586220.148739158,-1239.904194285078,4143054.0489744805,-0.0,0.0,-0.0,0.0,210.78371302846335,443166.0997646242,1141,53000.0,1239.904194285078,-2484.6887607521408,2252676.7712915773,1050.0,1198050.0,624.8614107545912,1035391.647309852,-4206.993710027233,106236.8006342173,0.0,0.0,1180.6552101348605,1108947.026702669,-83.21167161435982,2101.2966448379825,-1239.904194285078,-4841996.677361555,true,true,11.39970495,10818.00706329495,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1142,0.9049572441264849,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784291.02825791,4585191.028257902,1199100.0,6877675.587399318,-1093384.5591415188,0.95,0.25,22.0,1142,0.0,0.1,0.0,0.0,1050.0,1199100.0,13125.0,14988750.0,13125.0,14988750.0,true,1142,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4141814.1447801953,-1029.1204812566145,4585191.028257902,-1239.904194285078,4141814.1447801953,-0.0,0.0,-0.0,0.0,210.78371302846335,443376.8834776527,1142,53000.0,1239.904194285078,-5788.606790862181,2246888.164500715,1050.0,1199100.0,575.2745947228524,1035966.9219045748,-7366.731823309957,98870.06881090735,0.0,0.0,1148.5597283975644,1110095.5864310665,-145.70929067264024,1955.5873541653423,-1239.904194285078,-4843236.581555841,true,true,10.99736242,10829.00442571495,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1143,0.9049572325151409,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784311.907776654,4584161.907776645,1200150.0,6877696.435567432,-1093384.52779089,0.95,0.25,22.0,1143,0.0,0.1,0.0,0.0,1050.0,1200150.0,13125.0,15001875.0,13125.0,15001875.0,true,1143,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4140574.24058591,-1029.1204812566145,4584161.907776645,-1239.904194285078,4140574.24058591,-0.0,0.0,-0.0,0.0,210.78371302846335,443587.66719068115,1143,53000.0,1239.904194285078,-7203.5284536442705,2239684.636047071,1050.0,1200150.0,509.0931416598888,1036476.0150462347,-8644.35084972936,90225.71796117799,0.0,0.0,1102.7090404212058,1111198.2954714878,-170.97978599600475,1784.6075681693376,-1239.904194285078,-4844476.485750126,true,true,10.50561044,10839.510036154948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1144,0.9049572209037969,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784332.787295397,4583132.787295389,1201200.0,6877717.283735546,-1093384.4964402614,0.95,0.25,22.0,1144,0.0,0.1,0.0,0.0,1050.0,1201200.0,13125.0,15015000.0,13125.0,15015000.0,true,1144,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4139334.336391625,-1029.1204812566145,4583132.787295389,-1239.904194285078,4139334.336391625,-0.0,0.0,-0.0,0.0,210.78371302846335,443798.4509037096,1144,53000.0,1239.904194285078,-13546.382870361225,2226138.2531767096,1050.0,1201200.0,416.86895982891633,1036892.8840060636,-14704.055399787656,75521.66256139033,0.0,0.0,1031.6404744424626,1112229.9359459302,-290.8369048449491,1493.7706633243884,-1239.904194285078,-4845716.389944411,true,true,9.611515937,10849.121552091949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1145,0.9049572092924529,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784353.666814141,4582103.666814133,1202250.0,6877738.1319036605,-1093384.4650896327,0.95,0.25,22.0,1145,0.0,0.1,0.0,0.0,1050.0,1202250.0,13125.0,15028125.0,13125.0,15028125.0,true,1145,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4138094.43219734,-1029.1204812566145,4582103.666814133,-1239.904194285078,4138094.43219734,-0.0,0.0,-0.0,0.0,210.78371302846335,444009.2346167381,1145,53000.0,1239.904194285078,-9093.096639352332,2217045.1565373573,1050.0,1202250.0,326.96879567162813,1037219.8528017352,-10170.305012972316,65351.35754841802,0.0,0.0,951.4017710222929,1113181.3377169524,-201.1621930739363,1292.608470250452,-1239.904194285078,-4846956.294138696,true,true,8.940945058,10858.06249714995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1146,0.9049571976811089,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784374.546332885,4581074.546332876,1203300.0,6877758.980071775,-1093384.433739004,0.95,0.25,22.0,1146,0.0,0.1,0.0,0.0,1050.0,1203300.0,13125.0,15041250.0,13125.0,15041250.0,true,1146,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4136854.5280030547,-1029.1204812566145,4581074.546332876,-1239.904194285078,4136854.5280030547,-0.0,0.0,-0.0,0.0,210.78371302846335,444220.0183297666,1146,53000.0,1239.904194285078,-14518.735525684411,2202526.421011673,1050.0,1203300.0,241.24361114881268,1037461.096412884,-15316.724422212636,50034.633126205386,0.0,0.0,859.700395531111,1114041.0381124835,-302.9551101516996,989.6533600987524,-1239.904194285078,-4848196.198332981,true,true,7.823326926,10865.88582407595,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1147,0.9049571860697649,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784395.425851628,4580045.42585162,1204350.0,6877779.828239889,-1093384.4023883753,0.95,0.25,22.0,1147,0.0,0.1,0.0,0.0,1050.0,1204350.0,13125.0,15054375.0,13125.0,15054375.0,true,1147,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4135614.6238087695,-1029.1204812566145,4580045.42585162,-1239.904194285078,4135614.6238087695,-0.0,0.0,-0.0,0.0,210.78371302846335,444430.80204279505,1147,53000.0,1239.904194285078,-7432.161895370247,2195094.2591163027,1050.0,1204350.0,171.9873237677608,1037633.0837366517,-8209.764299895667,41824.86882630972,0.0,0.0,767.9990199886472,1114809.037132472,-162.38393923098886,827.2694208677635,-1239.904194285078,-4849436.102527266,true,true,7.152756046,10873.038580121949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1148,0.9049571744584209,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784416.305370372,4579016.305370363,1205400.0,6877800.676408003,-1093384.3710377465,0.95,0.25,22.0,1148,0.0,0.1,0.0,0.0,1050.0,1205400.0,13125.0,15067500.0,13125.0,15067500.0,true,1148,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4134374.7196144843,-1029.1204812566145,4579016.305370363,-1239.904194285078,4134374.7196144843,-0.0,0.0,-0.0,0.0,210.78371302846335,444641.58575582353,1148,53000.0,1239.904194285078,-9185.317848538374,2185908.941267764,1050.0,1205400.0,123.51672890266623,1037756.6004655544,-9802.703623491592,32022.165202818127,0.0,0.0,687.7603164146324,1115496.7974488866,-193.8912703640817,633.3781505036818,-1239.904194285078,-4850676.0067215515,true,true,6.258661541,10879.29724166295,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1149,0.904957162847077,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784437.184889115,4577987.184889107,1206450.0,6877821.524576117,-1093384.3396871178,0.95,0.25,22.0,1149,0.0,0.1,0.0,0.0,1050.0,1206450.0,13125.0,15080625.0,13125.0,15080625.0,true,1149,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4133134.815420199,-1029.1204812566145,4577987.184889107,-1239.904194285078,4133134.815420199,-0.0,0.0,-0.0,0.0,210.78371302846335,444852.369468852,1149,53000.0,1239.904194285078,-12945.181107028196,2172963.760160736,1050.0,1206450.0,68.93707897229368,1037825.5375445267,-13316.972888756625,18705.192314061504,0.0,0.0,566.2559938670216,1116063.0534427536,-263.40129111088703,369.9768593927948,-1239.904194285078,-4851915.910915837,true,true,4.783405606,10884.08064726895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1150,0.904957151235733,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784458.064407859,4576958.064407851,1207500.0,6877842.3727442315,-1093384.3083364891,0.95,0.25,22.0,1150,0.0,0.1,0.0,0.0,1050.0,1207500.0,13125.0,15093750.0,13125.0,15093750.0,true,1150,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4131894.911225914,-1029.1204812566145,4576958.064407851,-1239.904194285078,4131894.911225914,-0.0,0.0,-0.0,0.0,210.78371302846335,445063.1531818805,1150,53000.0,1239.904194285078,-9509.534755252564,2163454.225405483,1050.0,1207500.0,27.12674857136907,1037852.6642930981,-9758.591468170913,8946.60084589059,0.0,0.0,414.94872421170015,1116478.0021669653,-193.01875986472024,176.95809952807454,-1239.904194285078,-4853155.815110122,true,true,3.308149671,10887.38879693995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1151,0.904957139624389,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784478.943926603,4575928.943926594,1208550.0,6877863.220912346,-1093384.2769858604,0.95,0.25,22.0,1151,0.0,0.1,0.0,0.0,1050.0,1208550.0,13125.0,15106875.0,13125.0,15106875.0,true,1151,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4130655.007031629,-1029.1204812566145,4575928.943926594,-1239.904194285078,4130655.007031629,-0.0,0.0,-0.0,0.0,210.78371302846335,445273.93689490895,1151,53000.0,1239.904194285078,-6052.24728131666,2157401.9781241664,1050.0,1208550.0,6.95753722338798,1037859.6218303215,-6200.210044588429,2746.390801302162,0.0,0.0,263.6414546076605,1116741.643621573,-122.63622855927913,54.32187096879541,-1239.904194285078,-4854395.719304407,true,true,1.832893737,10889.22169067695,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1152,0.904957128013045,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5784499.823445346,4574899.823445338,1209600.0,6877884.06908046,-1093384.2456352317,0.95,0.25,22.0,1152,0.0,0.1,0.0,0.0,1050.0,1209600.0,13125.0,15120000.0,13125.0,15120000.0,true,1152,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4129415.1028373437,-1029.1204812566145,4574899.823445338,-1239.904194285078,4129415.1028373437,-0.0,0.0,-0.0,0.0,210.78371302846335,445484.72060793743,1152,53000.0,1239.904194285078,-2581.209933693414,2154820.768190473,1050.0,1209600.0,0.538208134610758,1037860.1600384561,-2641.8286294115496,104.56217189061226,0.0,0.0,112.3341850036208,1116853.9778065765,-52.25369742009576,2.0681735486996473,-1239.904194285078,-4855635.623498692,true,true,0.357637802,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1153,0.9049565848469979,666.0,0.0,976.7211856704241,-73.27881432957587,1050.0,975.2546373435916,1.4665483268324686,5785476.544631016,4574826.544631008,1210650.0,6878859.323717804,-1093382.7790869048,0.95,0.25,22.0,1153,0.0,0.1,0.0,0.0,1050.0,1210650.0,13125.0,15133125.0,13125.0,15133125.0,true,1153,0.83,53000.0,1239.904194285078,0.0,-88.28772810792273,4129326.8151092357,-73.27881432957587,4574826.544631008,-88.28772810792273,4129326.8151092357,-0.0,0.0,-0.0,0.0,15.008913778346866,445499.7295217158,1153,53000.0,1239.904194285078,-88.28772810792273,2154732.480462365,1050.0,1210650.0,0.0023422431492003595,1037860.1623806992,-104.5621718903523,2.5995916530519025e-10,0.0,0.0,18.340275087980054,1116872.3180816646,-2.0681735486996855,-3.8191672047105385e-14,-88.28772810792273,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1154,0.9049560009297474,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5786526.544631016,4574826.544631008,1211700.0,6879907.747141227,-1093381.2025103283,0.95,0.25,22.0,1154,0.0,0.1,0.0,0.0,1050.0,1211700.0,13125.0,15146250.0,13125.0,15146250.0,true,1154,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1154,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1211700.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1155,0.9049554170124968,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5787576.544631016,4574826.544631008,1212750.0,6880956.170564651,-1093379.6259337517,0.95,0.25,22.0,1155,0.0,0.1,0.0,0.0,1050.0,1212750.0,13125.0,15159375.0,13125.0,15159375.0,true,1155,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1155,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1212750.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1156,0.9049548330952463,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5788626.544631016,4574826.544631008,1213800.0,6882004.593988074,-1093378.0493571751,0.95,0.25,22.0,1156,0.0,0.1,0.0,0.0,1050.0,1213800.0,13125.0,15172500.0,13125.0,15172500.0,true,1156,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1156,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1213800.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1157,0.9049542491779957,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5789676.544631016,4574826.544631008,1214850.0,6883053.017411497,-1093376.4727805986,0.95,0.25,22.0,1157,0.0,0.1,0.0,0.0,1050.0,1214850.0,13125.0,15185625.0,13125.0,15185625.0,true,1157,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1157,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1214850.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1158,0.9049536652607452,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5790726.544631016,4574826.544631008,1215900.0,6884101.440834921,-1093374.896204022,0.95,0.25,22.0,1158,0.0,0.1,0.0,0.0,1050.0,1215900.0,13125.0,15198750.0,13125.0,15198750.0,true,1158,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1158,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1215900.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1159,0.9049530813434946,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5791776.544631016,4574826.544631008,1216950.0,6885149.864258344,-1093373.3196274454,0.95,0.25,22.0,1159,0.0,0.1,0.0,0.0,1050.0,1216950.0,13125.0,15211875.0,13125.0,15211875.0,true,1159,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1159,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1216950.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1160,0.9049524974262441,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5792826.544631016,4574826.544631008,1218000.0,6886198.287681768,-1093371.7430508689,0.95,0.25,22.0,1160,0.0,0.1,0.0,0.0,1050.0,1218000.0,13125.0,15225000.0,13125.0,15225000.0,true,1160,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1160,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1218000.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1161,0.9049519135089935,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5793876.544631016,4574826.544631008,1219050.0,6887246.711105191,-1093370.1664742923,0.95,0.25,22.0,1161,0.0,0.1,0.0,0.0,1050.0,1219050.0,13125.0,15238125.0,13125.0,15238125.0,true,1161,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1161,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1219050.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1162,0.904951329591743,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5794926.544631016,4574826.544631008,1220100.0,6888295.134528615,-1093368.5898977157,0.95,0.25,22.0,1162,0.0,0.1,0.0,0.0,1050.0,1220100.0,13125.0,15251250.0,13125.0,15251250.0,true,1162,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1162,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1220100.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1163,0.9049507456744924,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5795976.544631016,4574826.544631008,1221150.0,6889343.557952038,-1093367.0133211392,0.95,0.25,22.0,1163,0.0,0.1,0.0,0.0,1050.0,1221150.0,13125.0,15264375.0,13125.0,15264375.0,true,1163,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1163,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1221150.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1164,0.9049501617572419,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5797026.544631016,4574826.544631008,1222200.0,6890391.981375461,-1093365.4367445626,0.95,0.25,22.0,1164,0.0,0.1,0.0,0.0,1050.0,1222200.0,13125.0,15277500.0,13125.0,15277500.0,true,1164,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1164,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1222200.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1165,0.9049495778399913,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5798076.544631016,4574826.544631008,1223250.0,6891440.404798885,-1093363.860167986,0.95,0.25,22.0,1165,0.0,0.1,0.0,0.0,1050.0,1223250.0,13125.0,15290625.0,13125.0,15290625.0,true,1165,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1165,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1223250.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1166,0.9049489939227408,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5799126.544631016,4574826.544631008,1224300.0,6892488.828222308,-1093362.2835914094,0.95,0.25,22.0,1166,0.0,0.1,0.0,0.0,1050.0,1224300.0,13125.0,15303750.0,13125.0,15303750.0,true,1166,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1166,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1224300.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1167,0.9049484100054902,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5800176.544631016,4574826.544631008,1225350.0,6893537.251645732,-1093360.7070148329,0.95,0.25,22.0,1167,0.0,0.1,0.0,0.0,1050.0,1225350.0,13125.0,15316875.0,13125.0,15316875.0,true,1167,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1167,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1225350.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1168,0.9049478260882396,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5801226.544631016,4574826.544631008,1226400.0,6894585.675069155,-1093359.1304382563,0.95,0.25,22.0,1168,0.0,0.1,0.0,0.0,1050.0,1226400.0,13125.0,15330000.0,13125.0,15330000.0,true,1168,0.83,53000.0,1239.904194285078,0.0,0.0,4129326.8151092357,0.0,4574826.544631008,0.0,4129326.8151092357,-0.0,0.0,-0.0,0.0,0.0,445499.7295217158,1168,53000.0,1239.904194285078,0.0,2154732.480462365,1050.0,1226400.0,0.0,1037860.1623806992,0.0,2.5995916530519025e-10,0.0,0.0,0.0,1116872.3180816646,0.0,-3.8191672047105385e-14,0.0,-4855723.9112268,true,true,0.0,10889.57932847895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1169,0.9049467267665074,666.0,0.0,1976.8003388658226,926.8003388658227,1050.0,1973.832170188847,2.9681686769757096,5803203.344969883,4575753.344969874,1227450.0,6896559.507239344,-1093356.1622695792,0.95,0.25,22.0,1169,0.0,0.1,0.0,0.0,1050.0,1227450.0,13125.0,15343125.0,13125.0,15343125.0,true,1169,0.8447723644074971,53000.0,1239.904194285078,0.0,782.9353135973506,4130109.750422833,926.8003388658227,4575753.344969874,782.9353135973506,4130109.750422833,-0.0,0.0,-0.0,0.0,143.8650252684721,445643.59454698424,1169,53000.0,1239.904194285078,782.9353135973506,2155515.415775962,1050.0,1227450.0,0.04236623800142991,1037860.2047469371,720.4987168331614,720.4987168334214,0.0,0.0,48.14322214440891,1116920.461303809,14.251008381778824,14.251008381778785,-782.9353135973506,-4856506.846540397,true,true,0.938799231,10890.518127709951,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1170,0.9049434890359674,666.0,0.0,5822.087056955382,4772.087056955382,1050.0,5813.345184497491,8.741872457890963,5809025.432026838,4580525.43202683,1228500.0,6902372.852423841,-1093347.4203971215,0.95,0.25,22.0,1170,0.0,0.1,0.0,0.0,1050.0,1228500.0,13125.0,15356250.0,13125.0,15356250.0,true,1170,0.9005421266690614,53000.0,1239.904194285078,0.0,4297.465426920502,4134407.2158497535,4772.087056955382,4580525.43202683,4297.465426920502,4134407.2158497535,-0.0,0.0,-0.0,0.0,474.6216300348797,446118.2161770191,1170,53000.0,1239.904194285078,4297.465426920502,2159812.8812028826,1050.0,1228500.0,1.9299488895358692,1037862.1346958267,4043.615249788465,4764.113966621886,0.0,0.0,171.9400791164785,1117092.4013829255,79.9801491260225,94.23115750780129,-4297.465426920502,-4860804.311967318,true,true,2.414055166,10892.932182875951,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1171,0.9049380186860675,666.0,0.0,9836.783190026561,8786.783190026561,1050.0,9822.013245296792,14.76994472976961,5818862.215216865,4589312.215216856,1229550.0,6912194.865669138,-1093332.6504523917,0.95,0.25,22.0,1171,0.0,0.1,0.0,0.0,1050.0,1229550.0,13125.0,15369375.0,13125.0,15369375.0,true,1171,0.9205223795106703,53000.0,1239.904194285078,0.0,8088.430570327609,4142495.646420081,8786.783190026561,4589312.215216856,8088.430570327609,4142495.646420081,-0.0,0.0,-0.0,0.0,698.3526196989524,446816.5687967181,1171,53000.0,1239.904194285078,8088.430570327609,2167901.3117732103,1050.0,1229550.0,12.823877345532877,1037874.9585731722,7601.996664015146,12366.110630637031,0.0,0.0,323.2473487205182,1117415.648731646,150.36268024641166,244.59383775421293,-8088.430570327609,-4868892.742537646,true,true,3.8893111,10896.821493975951,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1172,0.9049303305127563,666.0,0.0,13824.873248126045,12774.873248126045,1050.0,13804.115180185916,20.758067940129198,5832687.088464991,4602087.088464983,1230600.0,6925998.980849324,-1093311.8923844516,0.95,0.25,22.0,1172,0.0,0.1,0.0,0.0,1050.0,1230600.0,13125.0,15382500.0,13125.0,15382500.0,true,1172,0.9312228813920168,53000.0,1239.904194285078,0.0,11896.254275537729,4154391.9006956187,12774.873248126045,4602087.088464983,11896.254275537729,4154391.9006956187,-0.0,0.0,-0.0,0.0,878.618972588316,447695.1877693064,1172,53000.0,1239.904194285078,11896.254275537729,2179797.566048748,1050.0,1230600.0,40.576357094691346,1037915.5349302669,11160.378088547834,23526.488719184865,0.0,0.0,474.5546183245579,1117890.2033499705,220.74521157064694,465.33904932485984,-11896.254275537729,-4880788.996813184,true,true,5.364567035,10902.18606101095,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1173,0.9049203899157491,666.0,0.0,17875.181538405275,16825.181538405275,1050.0,17848.341926485748,26.83961191952744,5850562.270003396,4618912.270003388,1231650.0,6943847.322775809,-1093285.052772532,0.95,0.25,22.0,1173,0.0,0.1,0.0,0.0,1050.0,1231650.0,13125.0,15395625.0,13125.0,15395625.0,true,1173,0.934838516748478,53000.0,1239.904194285078,0.0,15728.82775338666,4170120.728449005,16825.181538405275,4618912.270003388,15728.82775338666,4170120.728449005,-0.0,0.0,-0.0,0.0,1096.3537850186149,448791.541554325,1173,53000.0,1239.904194285078,15728.82775338666,2195526.3938021343,1050.0,1231650.0,93.07862491202148,1038008.613555179,14718.759497950423,38245.24821713529,0.0,0.0,625.8618879285976,1118516.065237899,291.12774259561866,756.4667919204785,-15728.82775338666,-4896517.82456657,true,true,6.839822969,10909.02588397995,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1174,0.9049081952895898,666.0,0.0,21928.376759761428,20878.376759761428,1050.0,21895.451269131154,32.925490630272414,5872490.646763157,4639790.646763149,1232700.0,6965742.77404494,-1093252.1272819017,0.95,0.25,22.0,1174,0.0,0.1,0.0,0.0,1050.0,1232700.0,13125.0,15408750.0,13125.0,15408750.0,true,1174,0.9384849455437996,53000.0,1239.904194285078,0.0,19594.042276427634,4189714.770725433,20878.376759761428,4639790.646763149,19594.042276427634,4189714.770725433,-0.0,0.0,-0.0,0.0,1284.3344833337942,450075.87603765883,1174,53000.0,1239.904194285078,19594.042276427634,2215120.436078562,1050.0,1232700.0,178.2219175725335,1038186.8354727515,18277.14092730719,56522.38914444248,0.0,0.0,777.1691575326373,1119293.2343954318,361.51027401527153,1117.97706593575,-19594.042276427634,-4916111.866842998,true,true,8.315078904,10917.340962883949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1175,0.9048970840964228,666.0,0.0,19980.14755279511,18930.14755279511,1050.0,19950.147331244367,30.00022155074341,5892470.794315952,4658720.7943159435,1233750.0,6985692.921376185,-1093222.127060351,0.95,0.25,22.0,1175,0.0,0.1,0.0,0.0,1050.0,1233750.0,13125.0,15421875.0,13125.0,15421875.0,true,1175,0.9367286908823965,53000.0,1239.904194285078,0.0,17732.412335340367,4207447.183060773,18930.14755279511,4658720.7943159435,17732.412335340367,4207447.183060773,-0.0,0.0,-0.0,0.0,1197.735217454745,451273.61125511356,1175,53000.0,1239.904194285078,17732.412335340367,2232852.8484139023,1050.0,1233750.0,286.2421187296828,1038473.0775914812,16215.305587955188,72737.69473239766,0.0,0.0,910.1361520486969,1120203.3705474804,320.7284766068005,1438.7055425425506,-17732.412335340367,-4933844.279178338,true,true,9.432697036,10926.773659919949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1176,0.9048873573907003,666.0,0.0,17490.562230152445,16440.562230152445,1050.0,17464.300124701767,26.262105450679346,5909961.356546104,4675161.356546096,1234800.0,7003157.221500887,-1093195.8649549002,0.95,0.25,22.0,1176,0.0,0.1,0.0,0.0,1050.0,1234800.0,13125.0,15435000.0,13125.0,15435000.0,true,1176,0.9344939681481527,53000.0,1239.904194285078,0.0,15363.6062370418,4222810.7892978145,16440.562230152445,4675161.356546096,15363.6062370418,4222810.7892978145,-0.0,0.0,-0.0,0.0,1076.955993110645,452350.5672482242,1176,53000.0,1239.904194285078,15363.6062370418,2248216.454650944,1050.0,1234800.0,392.3537304297649,1038865.4313219109,13689.475680862068,86427.17041325974,0.0,0.0,1011.0076652889957,1121214.3782127695,270.76916046097193,1709.4747030035226,-15363.6062370418,-4949207.88541538,true,true,10.28208682,10937.055746739949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1177,0.90488347503524,666.0,0.0,6981.251588621246,5931.251588621246,1050.0,6970.769228878571,10.482359742674543,5916942.608134725,4681092.608134717,1235850.0,7010127.990729765,-1093185.3825951575,0.95,0.25,22.0,1177,0.0,0.1,0.0,0.0,1050.0,1235850.0,13125.0,15448125.0,13125.0,15448125.0,true,1177,0.9103761123108937,53000.0,1239.904194285078,0.0,5399.669762386822,4228210.459060201,5931.251588621246,4681092.608134717,5399.669762386822,4228210.459060201,-0.0,0.0,-0.0,0.0,531.5818262344237,452882.14907445863,1177,53000.0,1239.904194285078,5399.669762386822,2253616.124413331,1050.0,1235850.0,459.9608588523731,1039325.3921807633,3798.547547918261,90225.717961178,0.0,0.0,1066.0284904503726,1122280.40670322,75.13286516581486,1784.6075681693374,-5399.669762386822,-4954607.555177767,true,true,10.50561044,10947.561357179948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1178,0.904883463423896,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5916963.487653469,4680063.48765346,1236900.0,7010148.838897879,-1093185.3512445288,0.95,0.25,22.0,1178,0.0,0.1,0.0,0.0,1050.0,1236900.0,13125.0,15461250.0,13125.0,15461250.0,true,1178,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4226970.554865916,-1029.1204812566145,4680063.48765346,-1239.904194285078,4226970.554865916,-0.0,0.0,-0.0,0.0,210.78371302846335,453092.9327874871,1178,53000.0,1239.904194285078,-2347.69106378133,2251268.43334955,1050.0,1236900.0,459.9608588523731,1039785.3530396157,-3798.547547918261,86427.17041325974,0.0,0.0,1066.0284904503726,1123346.4351936704,-75.13286516581486,1709.4747030035226,-1239.904194285078,-4955847.459372052,true,true,10.28208682,10957.843443999947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1179,0.904883451812552,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5916984.367172212,4679034.367172204,1237950.0,7010169.687065993,-1093185.3198939,0.95,0.25,22.0,1179,0.0,0.1,0.0,0.0,1050.0,1237950.0,13125.0,15474375.0,13125.0,15474375.0,true,1179,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4225730.650671631,-1029.1204812566145,4679034.367172204,-1239.904194285078,4225730.650671631,-0.0,0.0,-0.0,0.0,210.78371302846335,453303.7165005156,1179,53000.0,1239.904194285078,-2316.3529213704887,2248952.0804281794,1050.0,1237950.0,430.91955998972844,1040216.2725996054,-3716.8585201547025,82710.31189310504,0.0,0.0,1043.1031467186015,1124389.538340389,-73.51710792411608,1635.9575950794065,-1239.904194285078,-4957087.363566337,true,true,10.05856319,10967.902007189947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1180,0.904883440201208,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5917005.246690956,4678005.246690948,1239000.0,7010190.535234108,-1093185.2885432714,0.95,0.25,22.0,1180,0.0,0.1,0.0,0.0,1050.0,1239000.0,13125.0,15487500.0,13125.0,15487500.0,true,1180,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4224490.746477346,-1029.1204812566145,4678005.246690948,-1239.904194285078,4224490.746477346,-0.0,0.0,-0.0,0.0,210.78371302846335,453514.50021354406,1180,53000.0,1239.904194285078,-16376.797136393445,2232575.283291786,1050.0,1239000.0,351.1792182146088,1040567.45181782,-17358.95434468701,65351.35754841803,0.0,0.0,974.3271149079087,1125363.865455297,-343.3491248289544,1292.608470250452,-1239.904194285078,-4958327.267760622,true,true,8.940945058,10976.842952247947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1181,0.904883428589864,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5917026.1262097,4676976.126209691,1240050.0,7010211.383402222,-1093185.2571926427,0.95,0.25,22.0,1181,0.0,0.1,0.0,0.0,1050.0,1240050.0,13125.0,15500625.0,13125.0,15500625.0,true,1181,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4223250.842283061,-1029.1204812566145,4676976.126209691,-1239.904194285078,4223250.842283061,-0.0,0.0,-0.0,0.0,210.78371302846335,453725.28392657253,1181,53000.0,1239.904194285078,-19110.63564055501,2213464.647651231,1050.0,1240050.0,226.1310557079917,1040793.582873528,-19786.757286970955,45564.60026144708,0.0,0.0,841.3601203918493,1126205.225575689,-391.36952968389755,901.2389405665544,-1239.904194285078,-4959567.1719549075,true,true,7.465689123,10984.308641370948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1182,0.90488341697852,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5917047.005728443,4675947.005728435,1241100.0,7010232.231570336,-1093185.225842014,0.95,0.25,22.0,1182,0.0,0.1,0.0,0.0,1050.0,1241100.0,13125.0,15513750.0,13125.0,15513750.0,true,1182,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4222010.938088776,-1029.1204812566145,4675947.005728435,-1239.904194285078,4222010.938088776,-0.0,0.0,-0.0,0.0,210.78371302846335,453936.067639601,1182,53000.0,1239.904194285078,-15734.553986064451,2197730.0936651663,1050.0,1241100.0,124.75601798261722,1040918.3388915106,-16228.375856590874,29336.224404856206,0.0,0.0,690.0528507878095,1126895.2784264768,-320.98699824400495,580.2519423225494,-1239.904194285078,-4960807.076149193,true,true,5.990433189,10990.299074559947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1183,0.904883405367176,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5917067.885247187,4674917.885247178,1242150.0,7010253.07973845,-1093185.1944913852,0.95,0.25,22.0,1183,0.0,0.1,0.0,0.0,1050.0,1242150.0,13125.0,15526875.0,13125.0,15526875.0,true,1183,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4220771.03389449,-1029.1204812566145,4674917.885247178,-1239.904194285078,4220771.03389449,-0.0,0.0,-0.0,0.0,210.78371302846335,454146.8513526295,1183,53000.0,1239.904194285078,-12322.48353174711,2185407.6101334193,1050.0,1242150.0,59.36980251996394,1040977.7086940305,-12669.994448211572,16666.229956644635,0.0,0.0,538.7455811837698,1127434.0240076606,-250.60446723927302,329.6474750832764,-1239.904194285078,-4962046.980343478,true,true,4.515177254,10994.814251813947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1184,0.904883393755832,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5917088.76476593,4673888.764765922,1243200.0,7010273.927906564,-1093185.1631407565,0.95,0.25,22.0,1184,0.0,0.1,0.0,0.0,1050.0,1243200.0,13125.0,15540000.0,13125.0,15540000.0,true,1184,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4219531.129700205,-1029.1204812566145,4673888.764765922,-1239.904194285078,4219531.129700205,-0.0,0.0,-0.0,0.0,210.78371302846335,454357.63506565796,1184,53000.0,1239.904194285078,-8882.315474425644,2176525.294658994,1050.0,1243200.0,22.081172545021555,1040999.7898665755,-9111.6130226556,7554.616933989035,0.0,0.0,387.4383115797301,1127821.4623192402,-180.22193589479772,149.42553918847867,-1239.904194285078,-4963286.884537763,true,true,3.03992132,10997.854173133946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1185,0.904883382144488,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5917109.644284674,4672859.644284666,1244250.0,7010294.776074679,-1093185.1317901278,0.95,0.25,22.0,1185,0.0,0.1,0.0,0.0,1050.0,1244250.0,13125.0,15553125.0,13125.0,15553125.0,true,1185,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4218291.22550592,-1029.1204812566145,4672859.644284666,-1239.904194285078,4218291.22550592,-0.0,0.0,-0.0,0.0,210.78371302846335,454568.41877868643,1185,53000.0,1239.904194285078,-5421.941080988386,2171103.3535780055,1050.0,1244250.0,4.998891282779831,1041004.7887578583,-5553.2316094522075,2001.3853245368273,0.0,0.0,236.1310419756904,1128057.593361216,-109.83940479464863,39.58613439383004,-1239.904194285078,-4964526.788732048,true,true,1.564665385,10999.418838518946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1186,0.904883370533144,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,5917130.523803418,4671830.523803409,1245300.0,7010315.624242793,-1093185.1004394991,0.95,0.25,22.0,1186,0.0,0.1,0.0,0.0,1050.0,1245300.0,13125.0,15566250.0,13125.0,15566250.0,true,1186,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4217051.321311635,-1029.1204812566145,4671830.523803409,-1239.904194285078,4217051.321311635,-0.0,0.0,-0.0,0.0,210.78371302846335,454779.2024917149,1186,53000.0,1239.904194285078,-1949.251567936032,2169154.1020100694,1050.0,1245300.0,0.2317219582285391,1041005.0204798166,-1994.8501887203206,6.535135816506681,0.0,0.0,84.82377237165073,1128142.4171335876,-39.456873545590625,0.12926084823941153,-1239.904194285078,-4965766.692926333,true,true,0.089409451,10999.508247969947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1187,0.9048827875756376,666.0,0.0,1048.2741882464868,-1.725811753513197,1050.0,1046.7002029788493,1.5739852676373676,5918178.797991664,4671828.797991656,1246350.0,7011362.324445772,-1093183.5264542315,0.95,0.25,22.0,1187,0.0,0.1,0.0,0.0,1050.0,1246350.0,13125.0,15579375.0,13125.0,15579375.0,true,1187,0.83,53000.0,1239.904194285078,0.0,-2.0792912692930083,4217049.242020366,-1.725811753513197,4671828.797991656,-2.0792912692930083,4217049.242020366,-0.0,0.0,-0.0,0.0,0.3534795157798114,454779.5559712307,1187,53000.0,1239.904194285078,-2.0792912692930083,2169152.0227188,1050.0,1246350.0,0.00003659754982024355,1041005.0205164142,-6.5351358162392446,2.674367394206456e-10,0.0,0.0,4.585068797635864,1128147.0022023853,-0.1292608482394483,-3.677613769070831e-14,-2.0792912692930083,-4965768.7722176025,true,true,0.0,10999.508247969947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1188,0.904882203658387,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5919228.797991664,4671828.797991656,1247400.0,7012410.747869195,-1093181.949877655,0.95,0.25,22.0,1188,0.0,0.1,0.0,0.0,1050.0,1247400.0,13125.0,15592500.0,13125.0,15592500.0,true,1188,0.83,53000.0,1239.904194285078,0.0,0.0,4217049.242020366,0.0,4671828.797991656,0.0,4217049.242020366,-0.0,0.0,-0.0,0.0,0.0,454779.5559712307,1188,53000.0,1239.904194285078,0.0,2169152.0227188,1050.0,1247400.0,0.0,1041005.0205164142,0.0,2.674367394206456e-10,0.0,0.0,0.0,1128147.0022023853,0.0,-3.677613769070831e-14,0.0,-4965768.7722176025,true,true,0.0,10999.508247969947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1189,0.9048816197411365,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5920278.797991664,4671828.797991656,1248450.0,7013459.171292619,-1093180.3733010783,0.95,0.25,22.0,1189,0.0,0.1,0.0,0.0,1050.0,1248450.0,13125.0,15605625.0,13125.0,15605625.0,true,1189,0.83,53000.0,1239.904194285078,0.0,0.0,4217049.242020366,0.0,4671828.797991656,0.0,4217049.242020366,-0.0,0.0,-0.0,0.0,0.0,454779.5559712307,1189,53000.0,1239.904194285078,0.0,2169152.0227188,1050.0,1248450.0,0.0,1041005.0205164142,0.0,2.674367394206456e-10,0.0,0.0,0.0,1128147.0022023853,0.0,-3.677613769070831e-14,0.0,-4965768.7722176025,true,true,0.0,10999.508247969947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1190,0.9048810358238859,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5921328.797991664,4671828.797991656,1249500.0,7014507.594716042,-1093178.7967245018,0.95,0.25,22.0,1190,0.0,0.1,0.0,0.0,1050.0,1249500.0,13125.0,15618750.0,13125.0,15618750.0,true,1190,0.83,53000.0,1239.904194285078,0.0,0.0,4217049.242020366,0.0,4671828.797991656,0.0,4217049.242020366,-0.0,0.0,-0.0,0.0,0.0,454779.5559712307,1190,53000.0,1239.904194285078,0.0,2169152.0227188,1050.0,1249500.0,0.0,1041005.0205164142,0.0,2.674367394206456e-10,0.0,0.0,0.0,1128147.0022023853,0.0,-3.677613769070831e-14,0.0,-4965768.7722176025,true,true,0.0,10999.508247969947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1191,0.9048804519066354,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5922378.797991664,4671828.797991656,1250550.0,7015556.018139466,-1093177.2201479252,0.95,0.25,22.0,1191,0.0,0.1,0.0,0.0,1050.0,1250550.0,13125.0,15631875.0,13125.0,15631875.0,true,1191,0.83,53000.0,1239.904194285078,0.0,0.0,4217049.242020366,0.0,4671828.797991656,0.0,4217049.242020366,-0.0,0.0,-0.0,0.0,0.0,454779.5559712307,1191,53000.0,1239.904194285078,0.0,2169152.0227188,1050.0,1250550.0,0.0,1041005.0205164142,0.0,2.674367394206456e-10,0.0,0.0,0.0,1128147.0022023853,0.0,-3.677613769070831e-14,0.0,-4965768.7722176025,true,true,0.0,10999.508247969947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1192,0.9048798679893848,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5923428.797991664,4671828.797991656,1251600.0,7016604.441562889,-1093175.6435713486,0.95,0.25,22.0,1192,0.0,0.1,0.0,0.0,1050.0,1251600.0,13125.0,15645000.0,13125.0,15645000.0,true,1192,0.83,53000.0,1239.904194285078,0.0,0.0,4217049.242020366,0.0,4671828.797991656,0.0,4217049.242020366,-0.0,0.0,-0.0,0.0,0.0,454779.5559712307,1192,53000.0,1239.904194285078,0.0,2169152.0227188,1050.0,1251600.0,0.0,1041005.0205164142,0.0,2.674367394206456e-10,0.0,0.0,0.0,1128147.0022023853,0.0,-3.677613769070831e-14,0.0,-4965768.7722176025,true,true,0.0,10999.508247969947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1193,0.9048792840721342,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5924478.797991664,4671828.797991656,1252650.0,7017652.864986313,-1093174.066994772,0.95,0.25,22.0,1193,0.0,0.1,0.0,0.0,1050.0,1252650.0,13125.0,15658125.0,13125.0,15658125.0,true,1193,0.83,53000.0,1239.904194285078,0.0,0.0,4217049.242020366,0.0,4671828.797991656,0.0,4217049.242020366,-0.0,0.0,-0.0,0.0,0.0,454779.5559712307,1193,53000.0,1239.904194285078,0.0,2169152.0227188,1050.0,1252650.0,0.0,1041005.0205164142,0.0,2.674367394206456e-10,0.0,0.0,0.0,1128147.0022023853,0.0,-3.677613769070831e-14,0.0,-4965768.7722176025,true,true,0.0,10999.508247969947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1194,0.9048787001548837,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5925528.797991664,4671828.797991656,1253700.0,7018701.288409736,-1093172.4904181955,0.95,0.25,22.0,1194,0.0,0.1,0.0,0.0,1050.0,1253700.0,13125.0,15671250.0,13125.0,15671250.0,true,1194,0.83,53000.0,1239.904194285078,0.0,0.0,4217049.242020366,0.0,4671828.797991656,0.0,4217049.242020366,-0.0,0.0,-0.0,0.0,0.0,454779.5559712307,1194,53000.0,1239.904194285078,0.0,2169152.0227188,1050.0,1253700.0,0.0,1041005.0205164142,0.0,2.674367394206456e-10,0.0,0.0,0.0,1128147.0022023853,0.0,-3.677613769070831e-14,0.0,-4965768.7722176025,true,true,0.0,10999.508247969947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1195,0.9048781162376331,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5926578.797991664,4671828.797991656,1254750.0,7019749.711833159,-1093170.913841619,0.95,0.25,22.0,1195,0.0,0.1,0.0,0.0,1050.0,1254750.0,13125.0,15684375.0,13125.0,15684375.0,true,1195,0.83,53000.0,1239.904194285078,0.0,0.0,4217049.242020366,0.0,4671828.797991656,0.0,4217049.242020366,-0.0,0.0,-0.0,0.0,0.0,454779.5559712307,1195,53000.0,1239.904194285078,0.0,2169152.0227188,1050.0,1254750.0,0.0,1041005.0205164142,0.0,2.674367394206456e-10,0.0,0.0,0.0,1128147.0022023853,0.0,-3.677613769070831e-14,0.0,-4965768.7722176025,true,true,0.0,10999.508247969947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1196,0.9048775323203826,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,5927628.797991664,4671828.797991656,1255800.0,7020798.135256583,-1093169.3372650424,0.95,0.25,22.0,1196,0.0,0.1,0.0,0.0,1050.0,1255800.0,13125.0,15697500.0,13125.0,15697500.0,true,1196,0.83,53000.0,1239.904194285078,0.0,0.0,4217049.242020366,0.0,4671828.797991656,0.0,4217049.242020366,-0.0,0.0,-0.0,0.0,0.0,454779.5559712307,1196,53000.0,1239.904194285078,0.0,2169152.0227188,1050.0,1255800.0,0.0,1041005.0205164142,0.0,2.674367394206456e-10,0.0,0.0,0.0,1128147.0022023853,0.0,-3.677613769070831e-14,0.0,-4965768.7722176025,true,true,0.0,10999.508247969947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1197,0.9048769408677345,666.0,0.0,1063.5501517777195,13.550151777719478,1050.0,1061.953229627903,1.5969221498163957,5928692.348143442,4671842.348143433,1256850.0,7021860.08848621,-1093167.7403428925,0.95,0.25,22.0,1197,0.0,0.1,0.0,0.0,1050.0,1256850.0,13125.0,15710625.0,13125.0,15710625.0,true,1197,0.8302122547558427,53000.0,1239.904194285078,0.0,11.249502059664378,4217060.491522426,13.550151777719478,4671842.348143433,11.249502059664378,4217060.491522426,-0.0,0.0,-0.0,0.0,2.3006497180550998,454781.8566209487,1197,53000.0,1239.904194285078,11.249502059664378,2169163.27222086,1050.0,1256850.0,0.00003659754982024355,1041005.0205530118,6.5351358162392446,6.535135816506681,0.0,0.0,4.585068797635864,1128151.587271183,0.1292608482394483,0.12926084823941153,-11.249502059664378,-4965780.0217196625,true,true,0.089409451,10999.597657420947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1198,0.9048760866208021,666.0,0.0,1536.1068337955803,486.1068337955802,1050.0,1533.8003670781695,2.3064667174107814,5930228.454977238,4672328.454977229,1257900.0,7023393.888853288,-1093165.433876175,0.95,0.25,22.0,1198,0.0,0.1,0.0,0.0,1050.0,1257900.0,13125.0,15723750.0,13125.0,15723750.0,true,1198,0.837683084374898,53000.0,1239.904194285078,0.0,407.20347186959754,4217467.694994295,486.1068337955802,4672328.454977229,407.20347186959754,4217467.694994295,-0.0,0.0,-0.0,0.0,78.90336192598267,454860.7599828747,1198,53000.0,1239.904194285078,407.20347186959754,2169570.4756927295,1050.0,1257900.0,0.02247546997283267,1041005.0430284818,361.06625000987646,367.60138582638314,0.0,0.0,38.973084600418886,1128190.5603557834,7.141661789329325,7.270922637568736,-407.20347186959754,-4966187.225191532,true,true,0.670570879,11000.268228299947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1199,0.9048743556566944,666.0,0.0,3112.6196585571333,2062.6196585571333,1050.0,3107.946055466207,4.673603090926627,5933341.074635794,4674391.074635786,1258950.0,7026501.834908755,-1093160.760273084,0.95,0.25,22.0,1199,0.0,0.1,0.0,0.0,1050.0,1258950.0,13125.0,15736875.0,13125.0,15736875.0,true,1199,0.8636093906896415,53000.0,1239.904194285078,0.0,1781.2977065510022,4219248.992700846,2062.6196585571333,4674391.074635786,1781.2977065510022,4219248.992700846,-0.0,0.0,-0.0,0.0,281.32195200613114,455142.0819348808,1199,53000.0,1239.904194285078,1781.2977065510022,2171351.7733992804,1050.0,1258950.0,0.5718367074989714,1041005.6148651893,1633.783938710444,2001.3853245368273,0.0,0.0,114.62671937679788,1128305.1870751602,32.315211756261306,39.586134393830044,-1781.2977065510022,-4967968.522898083,true,true,1.564665385,11001.832893684947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1200,0.9048705720747114,666.0,0.0,6803.637121733038,5753.637121733038,1050.0,6793.4214503790845,10.21567135395351,5940144.711757528,4680144.711757519,1260000.0,7033295.256359134,-1093150.54460173,0.95,0.25,22.0,1200,0.0,0.1,0.0,0.0,1050.0,1260000.0,13125.0,15750000.0,13125.0,15750000.0,true,1200,0.9093596753300578,53000.0,1239.904194285078,0.0,5232.125584986124,4224481.118285832,5753.637121733038,4680144.711757519,5232.125584986124,4224481.118285832,-0.0,0.0,-0.0,0.0,521.5115367469143,455663.59347162774,1200,53000.0,1239.904194285078,5232.125584986124,2176583.8989842664,1050.0,1260000.0,4.574693663061712,1041010.1895588523,4901.3518172277145,6902.737141764542,0.0,0.0,229.25343880487748,1128534.440513965,96.94563529046968,136.53176968429972,-5232.125584986124,-4973200.648483069,true,true,2.905807144,11004.738700828946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1201,0.9048643654938846,666.0,0.0,11160.673642788975,10110.673642788975,1050.0,11143.91587455656,16.75776823241588,5951305.385400317,4690255.385400308,1261050.0,7044439.1722336905,-1093133.7868334977,0.95,0.25,22.0,1201,0.0,0.1,0.0,0.0,1050.0,1261050.0,13125.0,15763125.0,13125.0,15763125.0,true,1201,0.9253035557458823,53000.0,1239.904194285078,0.0,9355.44227265881,4233836.56055849,10110.673642788975,4690255.385400308,9355.44227265881,4233836.56055849,-0.0,0.0,-0.0,0.0,755.2313701301646,456418.8248417579,1201,53000.0,1239.904194285078,9355.44227265881,2185939.3412569254,1050.0,1261050.0,19.811840855021263,1041030.0013997074,8788.123802602357,15690.860944366897,0.0,0.0,373.68310523810425,1128908.123619203,173.82352396332803,310.3552936476277,-9355.44227265881,-4982556.090755727,true,true,4.381063078,11009.119763906947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1202,0.904858633164552,666.0,0.0,10307.874605910241,9257.874605910241,1050.0,10292.397316712179,15.477289198063426,5961613.260006227,4699513.260006218,1262100.0,7054731.569550402,-1093118.3095442997,0.95,0.25,22.0,1202,0.0,0.1,0.0,0.0,1050.0,1262100.0,13125.0,15776250.0,13125.0,15776250.0,true,1202,0.9222180336405796,53000.0,1239.904194285078,0.0,8537.778914753599,4242374.339473244,9257.874605910241,4699513.260006218,8537.778914753599,4242374.339473244,-0.0,0.0,-0.0,0.0,720.0956911566427,457138.9205329145,1202,53000.0,1239.904194285078,8537.778914753599,2194477.120171679,1050.0,1262100.0,47.394887675039456,1041077.3962873825,7835.627774817976,23526.488719184876,0.0,0.0,499.7724965833509,1129407.8961157864,154.98375567723215,465.33904932485984,-8537.778914753599,-4991093.8696704805,true,true,5.364567035,11014.484330941947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1203,0.9048553496322213,666.0,0.0,5904.447837117644,4854.447837117644,1050.0,5895.582299824674,8.865537292969435,5967517.707843345,4704367.707843336,1263150.0,7060627.151850227,-1093109.4440070067,0.95,0.25,22.0,1203,0.0,0.1,0.0,0.0,1050.0,1263150.0,13125.0,15789375.0,13125.0,15789375.0,true,1203,0.9012754199334256,53000.0,1239.904194285078,0.0,4375.194512943114,4246749.533986187,4854.447837117644,4704367.707843336,4375.194512943114,4246749.533986187,-0.0,0.0,-0.0,0.0,479.25332417452955,457618.1738570891,1203,53000.0,1239.904194285078,4375.194512943114,2198852.3146846225,1050.0,1263150.0,70.62525986507168,1041148.0215472475,3661.3098010300464,27187.79852021492,0.0,0.0,570.8410626133758,1129978.7371783997,72.41838943462031,537.7574387594801,-4375.194512943114,-4995469.064183423,true,true,5.766909562,11020.251240503947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1204,0.9048540436399578,666.0,0.0,2348.4352880568845,1298.4352880568845,1050.0,2344.909108945688,3.526179111196523,5969866.143131401,4705666.143131393,1264200.0,7062972.060959173,-1093105.9178278956,0.95,0.25,22.0,1204,0.0,0.1,0.0,0.0,1050.0,1264200.0,13125.0,15802500.0,13125.0,15802500.0,true,1204,0.8508446551877425,53000.0,1239.904194285078,0.0,1104.766724950357,4247854.300711137,1298.4352880568845,4705666.143131393,1104.766724950357,4247854.300711137,-0.0,0.0,-0.0,0.0,193.66856310652747,457811.8424201956,1204,53000.0,1239.904194285078,1104.766724950357,2199957.0814095726,1050.0,1264200.0,79.48063163120196,1041227.5021788788,423.1500468424447,27610.948567057367,0.0,0.0,593.7664064989916,1130572.5035848988,8.369639977718785,546.1270787371989,-1104.766724950357,-4996573.830908374,true,true,5.811614288,11026.062854791948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1205,0.9048539408873564,666.0,0.0,184.7697278583122,-865.2302721416878,1050.0,184.4922958345009,0.27743202381127957,5970050.91285926,4704800.912859252,1265250.0,7063156.553255008,-1093105.6403958718,0.95,0.25,22.0,1205,0.0,0.1,0.0,0.0,1050.0,1265250.0,13125.0,15815625.0,13125.0,15815625.0,true,1205,0.83,53000.0,1239.904194285078,0.0,-1042.4461110140817,4246811.854600123,-865.2302721416878,4704800.912859252,-1042.4461110140817,4246811.854600123,-0.0,0.0,-0.0,0.0,177.21583887239387,457989.058259068,1205,53000.0,1239.904194285078,-1042.4461110140817,2198914.6352985585,1050.0,1265250.0,76.75062371418893,1041304.2528025929,-1672.994761063288,25937.95380599408,0.0,0.0,586.8888033281786,1131159.392388227,-33.09077699316135,513.0363017440375,-1042.4461110140817,-4997616.277019388,true,true,5.632795386,11031.695650177948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1206,0.9048523828034335,666.0,0.0,2801.7465101276166,1751.7465101276166,1050.0,2797.5396835358333,4.206826591783208,5972852.659369388,4706552.659369379,1266300.0,7065954.092938543,-1093101.43356928,0.95,0.25,22.0,1206,0.0,0.1,0.0,0.0,1050.0,1266300.0,13125.0,15828750.0,13125.0,15828750.0,true,1206,0.8583707151833623,53000.0,1239.904194285078,0.0,1503.6479047182013,4248315.502504841,1751.7465101276166,4706552.659369379,1503.6479047182013,4248315.502504841,-0.0,0.0,-0.0,0.0,248.0986054094153,458237.15686447744,1206,53000.0,1239.904194285078,1503.6479047182013,2200418.283203277,1050.0,1266300.0,74.9657978239147,1041379.2186004169,829.9622447154028,26767.916050709482,0.0,0.0,582.3037345305428,1131741.6961227574,16.416127648341043,529.4524293923785,-1503.6479047182013,-4999119.924924106,true,true,5.722204837,11037.417855014948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1207,0.904850536881734,666.0,0.0,3319.336400049207,2269.336400049207,1050.0,3314.3524114605443,4.983988588662473,5976171.9957694365,4708821.995769428,1267350.0,7069268.445350003,-1093096.4495806913,0.95,0.25,22.0,1207,0.0,0.1,0.0,0.0,1050.0,1267350.0,13125.0,15841875.0,13125.0,15841875.0,true,1207,0.8671284165902902,53000.0,1239.904194285078,0.0,1967.8060792853782,4250283.308584127,2269.336400049207,4708821.995769428,1967.8060792853782,4250283.308584127,-0.0,0.0,-0.0,0.0,301.53032076382874,458538.68718524126,1207,53000.0,1239.904194285078,1967.8060792853782,2202386.089282562,1050.0,1267350.0,79.48063163120196,1041458.6992320481,1269.4501215964692,28037.366172305952,0.0,0.0,593.7664064989916,1132335.4625292565,25.108919558715442,554.5613489510939,-1967.8060792853782,-5001087.731003392,true,true,5.856319013,11043.274174027949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1208,0.9048495023942366,666.0,0.0,1860.2154178888686,810.2154178888687,1050.0,1857.4223016457922,2.7931162430763794,5978032.211187325,4709632.211187317,1268400.0,7071125.867651649,-1093093.6564644482,0.95,0.25,22.0,1208,0.0,0.1,0.0,0.0,1050.0,1268400.0,13125.0,15855000.0,13125.0,15855000.0,true,1208,0.8428852571864851,53000.0,1239.904194285078,0.0,682.9186308837146,4250966.227215011,810.2154178888687,4709632.211187317,682.9186308837146,4250966.227215011,-0.0,0.0,-0.0,0.0,127.2967870051541,458665.9839722464,1208,53000.0,1239.904194285078,682.9186308837146,2203069.0079134456,1050.0,1268400.0,82.27462121391,1041540.973853262,0.0,28037.366172305952,0.0,0.0,600.6440096698046,1132936.1065389263,0.0,554.5613489510939,-682.9186308837146,-5001770.649634276,true,true,5.856319013,11049.13049304095,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1209,0.9048459839004164,666.0,0.0,6326.955587371505,5276.955587371505,1050.0,6317.455654057134,9.49993331437163,5984359.166774697,4714909.166774688,1269450.0,7077443.323305706,-1093084.156531134,0.95,0.25,22.0,1209,0.0,0.1,0.0,0.0,1050.0,1269450.0,13125.0,15868125.0,13125.0,15868125.0,true,1209,0.9050560428510093,53000.0,1239.904194285078,0.0,4775.940542206978,4255742.167757218,5276.955587371505,4714909.166774688,4775.940542206978,4255742.167757218,-0.0,0.0,-0.0,0.0,501.0150451645277,459166.9990174109,1209,53000.0,1239.904194285078,4775.940542206978,2207844.9484556527,1050.0,1269450.0,91.04789095995984,1041632.021744222,3984.799030512187,32022.165202818138,0.0,0.0,621.2768191822435,1133557.3833581086,78.81680155258768,633.3781505036816,-4775.940542206978,-5006546.590176483,true,true,6.258661541,11055.38915458195,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1210,0.9048404681229798,666.0,0.0,9918.470986493694,8868.470986493694,1050.0,9903.578387414875,14.89259907881936,5994277.6377611905,4723777.637761182,1270500.0,7087346.901693121,-1093069.263932055,0.95,0.25,22.0,1210,0.0,0.1,0.0,0.0,1050.0,1270500.0,13125.0,15881250.0,13125.0,15881250.0,true,1210,0.9208159608790809,53000.0,1239.904194285078,0.0,8166.229632956441,4263908.397390174,8868.470986493694,4723777.637761182,8166.229632956441,4263908.397390174,-0.0,0.0,-0.0,0.0,702.2413535372534,459869.24037094816,1210,53000.0,1239.904194285078,8166.229632956441,2216011.178088609,1050.0,1270500.0,117.44325124026616,1041749.4649954623,7229.493925267009,39251.65912808515,0.0,0.0,676.2976444974653,1134233.681002606,142.99481195170017,776.3729624553818,-8166.229632956441,-5014712.819809439,true,true,6.92923242,11062.31838700195,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1211,0.9048344531981637,666.0,0.0,10816.037804389014,9766.037804389014,1050.0,10799.797507385427,16.24029700358711,6005093.67556558,4733543.6755655715,1271550.0,7098146.699200506,-1093053.0236350514,0.95,0.25,22.0,1211,0.0,0.1,0.0,0.0,1050.0,1271550.0,13125.0,15894375.0,13125.0,15894375.0,true,1211,0.9240541422118616,53000.0,1239.904194285078,0.0,9024.347686143303,4272932.745076317,9766.037804389014,4733543.6755655715,9024.347686143303,4272932.745076317,-0.0,0.0,-0.0,0.0,741.6901182457113,460610.9304891939,1211,53000.0,1239.904194285078,9024.347686143303,2225035.5257747523,1050.0,1271550.0,157.04065589418371,1041906.5056513565,7964.69669691925,47216.3558250044,0.0,0.0,745.0736761030313,1134978.754678709,157.53665722683792,933.9096196822197,-9024.347686143303,-5023737.167495582,true,true,7.599803299,11069.918190300948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1212,0.9048275808110157,666.0,0.0,12357.926569541673,11307.926569541673,1050.0,12339.37112424206,18.55544529961212,6017451.602135122,4744851.602135113,1272600.0,7110486.070324749,-1093034.4681897517,0.95,0.25,22.0,1212,0.0,0.1,0.0,0.0,1050.0,1272600.0,13125.0,15907500.0,13125.0,15907500.0,true,1212,0.9296703551309452,53000.0,1239.904194285078,0.0,10512.644109700457,4283445.389186018,11307.926569541673,4744851.602135113,10512.644109700457,4283445.389186018,-0.0,0.0,-0.0,0.0,795.2824598412153,461406.2129490351,1212,53000.0,1239.904194285078,10512.644109700457,2235548.1698844526,1050.0,1272600.0,206.4011018757792,1042112.9067532324,9306.033319438091,56522.389144442495,0.0,0.0,816.1422421330562,1135794.8969208421,184.06744625353016,1117.9770659357498,-10512.644109700457,-5034249.811605283,true,true,8.315078904,11078.233269204948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1213,0.9048220719792343,666.0,0.0,9905.981309280476,8855.981309280476,1050.0,9891.107463470746,14.873845809730444,6027357.583444403,4753707.583444394,1273650.0,7120377.177788219,-1093019.594343942,0.95,0.25,22.0,1213,0.0,0.1,0.0,0.0,1050.0,1273650.0,13125.0,15920625.0,13125.0,15920625.0,true,1213,0.9207710615518082,53000.0,1239.904194285078,0.0,8154.331311229157,4291599.720497248,8855.981309280476,4753707.583444394,8154.331311229157,4291599.720497248,-0.0,0.0,-0.0,0.0,701.649998051319,462107.86294708645,1213,53000.0,1239.904194285078,8154.331311229157,2243702.5011956817,1050.0,1273650.0,257.0149224345968,1042369.9216756669,6883.131731099499,63405.520875541995,0.0,0.0,878.040670619091,1136672.9375914612,136.1439870759698,1254.1210530117196,-8154.331311229157,-5042404.142916513,true,true,8.806830882,11087.040100086948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1214,0.9048154611099266,666.0,0.0,11887.665188986906,10837.665188986906,1050.0,11869.815841856296,17.84934713061097,6039245.248633389,4764545.248633381,1274700.0,7132246.993630076,-1093001.7449968113,0.95,0.25,22.0,1214,0.0,0.1,0.0,0.0,1050.0,1274700.0,13125.0,15933750.0,13125.0,15933750.0,true,1214,0.9279502416255755,53000.0,1239.904194285078,0.0,10056.814030777488,4301656.534528025,10837.665188986906,4764545.248633381,10056.814030777488,4301656.534528025,-0.0,0.0,-0.0,0.0,780.8511582094179,462888.7141052959,1214,53000.0,1239.904194285078,10056.814030777488,2253759.3152264594,1050.0,1274700.0,308.4219262496256,1042678.3436019166,8644.350823123787,72049.87169866578,0.0,0.0,933.0614959343127,1137605.9990873956,170.97978546976324,1425.100838481483,-10056.814030777488,-5052460.95694729,true,true,9.387992311,11096.428092397948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1215,0.90481189010243,666.0,0.0,6421.385680312971,5371.385680312971,1050.0,6411.743960072261,9.641720240710168,6045666.634313703,4769916.634313694,1275750.0,7138658.737590148,-1092992.1032765706,0.95,0.25,22.0,1215,0.0,0.1,0.0,0.0,1050.0,1275750.0,13125.0,15946875.0,13125.0,15946875.0,true,1215,0.9059053492517924,53000.0,1239.904194285078,0.0,4865.967020689999,4306522.501548716,5371.385680312971,4769916.634313694,4865.967020689999,4306522.501548716,-0.0,0.0,-0.0,0.0,505.418659622972,463394.13276491885,1215,53000.0,1239.904194285078,4865.967020689999,2258625.2822471494,1050.0,1275750.0,351.1792182146088,1043029.5228201312,3471.7908627245765,75521.66256139036,0.0,0.0,974.3271149079087,1138580.3262023036,68.66982484290513,1493.7706633243881,-4865.967020689999,-5057326.923967981,true,true,9.611515937,11106.039608334948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1216,0.9048091096458003,666.0,0.0,4999.817111487792,3949.8171114877923,1050.0,4992.309878587661,7.50723290013182,6050666.45142519,4773866.451425182,1276800.0,7143651.047468736,-1092984.5960436703,0.95,0.25,22.0,1216,0.0,0.1,0.0,0.0,1050.0,1276800.0,13125.0,15960000.0,13125.0,15960000.0,true,1216,0.8932860032165791,53000.0,1239.904194285078,0.0,3528.3163409573835,4310050.817889674,3949.8171114877923,4773866.451425182,3528.3163409573835,4310050.817889674,-0.0,0.0,-0.0,0.0,421.5007705304088,463815.6335354493,1216,53000.0,1239.904194285078,3528.3163409573835,2262153.5985881067,1050.0,1276800.0,371.3861524710975,1043400.9089726022,2122.28533837956,77643.94789976992,0.0,0.0,992.6673899958889,1139572.9935922995,41.97746011083721,1535.7481234352254,-3528.3163409573835,-5060855.240308939,true,true,9.745630113,11115.785238447948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1217,0.9048076300491878,666.0,0.0,2660.6106284133944,1610.6106284133944,1050.0,2656.615717559921,3.994910853473565,6053327.062053603,4775477.062053595,1277850.0,7146307.663186296,-1092980.6011328169,0.95,0.25,22.0,1217,0.0,0.1,0.0,0.0,1050.0,1277850.0,13125.0,15973125.0,13125.0,15973125.0,true,1217,0.8560132848031513,53000.0,1239.904194285078,0.0,1378.7040945670174,4311429.521984241,1610.6106284133944,4775477.062053595,1378.7040945670174,4311429.521984241,-0.0,0.0,-0.0,0.0,231.906533846377,464047.5400692957,1217,53000.0,1239.904194285078,1378.7040945670174,2263532.3026826736,1050.0,1277850.0,379.15910140031565,1043780.0680740025,0.0,77643.94789976992,0.0,0.0,999.5449931667018,1140572.5385854663,0.0,1535.7481234352254,-1378.7040945670174,-5062233.944403506,true,true,9.745630113,11125.530868560949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1218,0.9048074154866712,666.0,0.0,385.8263175005691,-664.1736824994309,1050.0,385.2469987055232,0.5793187950458996,6053712.888371103,4774812.888371095,1278900.0,7146692.910185002,-1092980.0218140217,0.95,0.25,22.0,1218,0.0,0.1,0.0,0.0,1050.0,1278900.0,13125.0,15986250.0,13125.0,15986250.0,true,1218,0.83,53000.0,1239.904194285078,0.0,-800.2092560234108,4310629.312728218,-664.1736824994309,4774812.888371095,-800.2092560234108,4310629.312728218,-0.0,0.0,-0.0,0.0,136.0355735239799,464183.57564281963,1218,53000.0,1239.904194285078,-800.2092560234108,2262732.09342665,1050.0,1278900.0,371.3861524710975,1044151.4542264736,-2122.28533837956,75521.66256139036,0.0,0.0,992.6673899958889,1141565.2059754622,-41.97746011083721,1493.7706633243881,-800.2092560234108,-5063034.153659529,true,true,9.611515937,11135.142384497949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1219,0.9048072004585034,666.0,0.0,386.66365132113833,-663.3363486788617,1050.0,386.0830752681036,0.5805760530347422,6054099.5520224245,4774149.552022416,1279950.0,7147078.99326027,-1092979.4412379686,0.95,0.25,22.0,1219,0.0,0.1,0.0,0.0,1050.0,1279950.0,13125.0,15999375.0,13125.0,15999375.0,true,1219,0.83,53000.0,1239.904194285078,0.0,-799.2004200950141,4309830.112308123,-663.3363486788617,4774149.552022416,-799.2004200950141,4309830.112308123,-0.0,0.0,-0.0,0.0,135.86407141615246,464319.4397142358,1219,53000.0,1239.904194285078,-799.2004200950141,2261932.893006555,1050.0,1279950.0,356.1604099745873,1044507.6146364482,-2092.877227425767,73428.7853339646,0.0,0.0,978.9121836542629,1142544.1181591165,-41.39578629809707,1452.374877026291,-799.2004200950141,-5063833.354079624,true,true,9.477401761,11144.619786258949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1220,0.9048044553679181,666.0,0.0,4936.221890461995,3886.2218904619945,1050.0,4928.810145881722,7.4117445802732655,6059035.773912886,4778035.773912878,1281000.0,7152007.803406152,-1092972.0294933883,0.95,0.25,22.0,1220,0.0,0.1,0.0,0.0,1050.0,1281000.0,13125.0,16012500.0,13125.0,16012500.0,true,1220,0.8927296755410634,53000.0,1239.904194285078,0.0,3469.3456073527145,4313299.457915476,3886.2218904619945,4778035.773912878,3469.3456073527145,4313299.457915476,-0.0,0.0,-0.0,0.0,416.87628310927994,464736.3159973451,1220,53000.0,1239.904194285078,3469.3456073527145,2265402.2386139077,1050.0,1281000.0,356.1604099745873,1044863.7750464228,2092.877227425767,75521.66256139036,0.0,0.0,978.9121836542629,1143523.0303427707,41.39578629809707,1493.7706633243881,-3469.3456073527145,-5067302.699686976,true,true,9.611515937,11154.231302195949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1221,0.9048016749112884,666.0,0.0,4999.817111487792,3949.8171114877923,1050.0,4992.309878587661,7.50723290013182,6064035.591024374,4781985.591024365,1282050.0,7157000.11328474,-1092964.522260488,0.95,0.25,22.0,1221,0.0,0.1,0.0,0.0,1050.0,1282050.0,13125.0,16025625.0,13125.0,16025625.0,true,1221,0.8932860032165791,53000.0,1239.904194285078,0.0,3528.3163409573835,4316827.774256433,3949.8171114877923,4781985.591024365,3528.3163409573835,4316827.774256433,-0.0,0.0,-0.0,0.0,421.5007705304088,465157.8167678755,1221,53000.0,1239.904194285078,3528.3163409573835,2268930.554954865,1050.0,1282050.0,371.3861524710975,1045235.1611988939,2122.28533837956,77643.94789976992,0.0,0.0,992.6673899958889,1144515.6977327666,41.97746011083721,1535.7481234352254,-3528.3163409573835,-5070831.016027934,true,true,9.745630113,11163.97693230895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1222,0.9047992988027684,666.0,0.0,4272.718340624873,3222.7183406248737,1050.0,4266.302847620932,6.415493003941251,6068308.309364999,4785208.30936499,1283100.0,7161266.416132361,-1092958.106767484,0.95,0.25,22.0,1222,0.0,0.1,0.0,0.0,1050.0,1283100.0,13125.0,16038750.0,13125.0,16038750.0,true,1222,0.8837364864763534,53000.0,1239.904194285078,0.0,2848.03378324673,4319675.80803968,3222.7183406248737,4785208.30936499,2848.03378324673,4319675.80803968,-0.0,0.0,-0.0,0.0,374.68455737814384,465532.50132525363,1222,53000.0,1239.904194285078,2848.03378324673,2271778.588738112,1050.0,1283100.0,384.4008586190502,1045619.5620575129,1431.1947370319085,79075.14263680183,0.0,0.0,1004.1300619643378,1145519.827794731,28.30812563143321,1564.0562490666587,-2848.03378324673,-5073679.049811181,true,true,9.835039564,11173.81197187295,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1223,0.9047982778830267,666.0,0.0,1835.8178795447636,785.8178795447636,1050.0,1833.061396242144,2.756483302619765,6070144.127244543,4785994.127244535,1284150.0,7163099.477528603,-1092955.3502841813,0.95,0.25,22.0,1223,0.0,0.1,0.0,0.0,1050.0,1284150.0,13125.0,16051875.0,13125.0,16051875.0,true,1223,0.8424914115961348,53000.0,1239.904194285078,0.0,662.0448145951493,4320337.852854275,785.8178795447636,4785994.127244535,662.0448145951493,4320337.852854275,-0.0,0.0,-0.0,0.0,123.77306494961431,465656.27439020324,1223,53000.0,1239.904194285078,662.0448145951493,2272440.633552707,1050.0,1284150.0,387.03975691734314,1046006.6018144303,-717.2311604736253,78357.9114763282,0.0,0.0,1006.4225963375146,1146526.2503910684,-14.186378186083063,1549.8698708805755,-662.0448145951493,-5074341.094625776,true,true,9.790334838,11183.60230671095,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1224,0.9047977281841694,666.0,0.0,988.4684851984644,-61.5315148015356,1050.0,986.984298283752,1.484186914712409,6071132.595729742,4785932.595729734,1285200.0,7164086.461826887,-1092953.8660972666,0.95,0.25,22.0,1224,0.0,0.1,0.0,0.0,1050.0,1285200.0,13125.0,16065000.0,13125.0,16065000.0,true,1224,0.83,53000.0,1239.904194285078,0.0,-74.13435518257302,4320263.718499092,-61.5315148015356,4785932.595729734,-74.13435518257302,4320263.718499092,-0.0,0.0,-0.0,0.0,12.602840381037417,465668.8772305843,1224,53000.0,1239.904194285078,-74.13435518257302,2272366.499197524,1050.0,1285200.0,379.15910140031565,1046385.7609158306,-1424.6595852815635,76933.25189104663,0.0,0.0,999.5449931667018,1147525.7953842352,-28.17886446802693,1521.6910064125486,-74.13435518257302,-5074415.228980958,true,true,9.700925388,11193.303232098951,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1225,0.904797181338517,666.0,0.0,983.3378520512808,-66.66214794871915,1050.0,981.8613687899426,1.4764832613382595,6072115.933581794,4785865.933581785,1286250.0,7165068.323195677,-1092952.389614005,0.95,0.25,22.0,1225,0.0,0.1,0.0,0.0,1050.0,1286250.0,13125.0,16078125.0,13125.0,16078125.0,true,1225,0.83,53000.0,1239.904194285078,0.0,-80.31584090207127,4320183.402658191,-66.66214794871915,4785865.933581785,-80.31584090207127,4320183.402658191,-0.0,0.0,-0.0,0.0,13.65369295335212,465682.5309235376,1225,53000.0,1239.904194285078,-80.31584090207127,2272286.183356622,1050.0,1286250.0,368.818976219657,1046754.5798920502,-1411.5893296562797,75521.66256139035,0.0,0.0,990.3748556227118,1148516.1702398579,-27.920343088160422,1493.7706633243881,-80.31584090207127,-5074495.54482186,true,true,9.611515937,11202.914748035952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1226,0.9047957201434506,666.0,0.0,2627.5209685751624,1577.5209685751622,1050.0,2623.57574189562,3.945226679542286,6074743.454550369,4787443.45455036,1287300.0,7167691.898937573,-1092948.4443873256,0.95,0.25,22.0,1226,0.0,0.1,0.0,0.0,1050.0,1287300.0,13125.0,16091250.0,13125.0,16091250.0,true,1226,0.8554624519972526,53000.0,1239.904194285078,0.0,1349.509955854389,4321532.912614045,1577.5209685751622,4787443.45455036,1349.509955854389,4321532.912614045,-0.0,0.0,-0.0,0.0,228.01101272077312,465910.5419362584,1226,53000.0,1239.904194285078,1349.509955854389,2273635.6933124764,1050.0,1287300.0,363.72016902931324,1047118.3000610796,0.0,75521.66256139035,0.0,0.0,985.7897868250759,1149501.960026683,0.0,1493.7706633243881,-1349.509955854389,-5075845.054777714,true,true,9.611515937,11212.526263972952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1227,0.9047947201232996,666.0,0.0,1798.2362354589745,748.2362354589746,1050.0,1795.5361810513784,2.700054407596058,6076541.690785828,4788191.69078582,1288350.0,7169487.435118624,-1092945.744332918,0.95,0.25,22.0,1227,0.0,0.1,0.0,0.0,1050.0,1288350.0,13125.0,16104375.0,13125.0,16104375.0,true,1227,0.8418854566944283,53000.0,1239.904194285078,0.0,629.9292048046987,4322162.84181885,748.2362354589746,4788191.69078582,629.9292048046987,4322162.84181885,-0.0,0.0,-0.0,0.0,118.30703065427599,466028.84896691266,1227,53000.0,1239.904194285078,629.9292048046987,2274265.622517281,1050.0,1288350.0,361.1884832511139,1047479.4885443307,-700.8933051451048,74820.76925624524,0.0,0.0,983.4972524518987,1150485.457279135,-13.86322575320907,1479.9074375711791,-629.9292048046987,-5076474.983982519,true,true,9.566811212,11222.093075184952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1228,0.9047947085119556,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6076562.570304572,4787162.570304563,1289400.0,7169508.283286738,-1092945.7129822893,0.95,0.25,22.0,1228,0.0,0.1,0.0,0.0,1050.0,1289400.0,13125.0,16117500.0,13125.0,16117500.0,true,1228,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4320922.937624564,-1029.1204812566145,4787162.570304563,-1239.904194285078,4320922.937624564,-0.0,0.0,-0.0,0.0,210.78371302846335,466239.63267994113,1228,53000.0,1239.904194285078,-7710.234353461701,2266555.3881638194,1050.0,1289400.0,326.9687956716279,1047806.4573400023,-8814.264352664884,66006.50490358035,0.0,0.0,951.4017710222927,1151436.8590501572,-174.34056749073739,1305.5668700804417,-1239.904194285078,-5077714.888176804,true,true,8.985649783,11231.078724967952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1229,0.9047946969006117,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6076583.449823315,4786133.449823307,1290450.0,7169529.131454852,-1092945.6816316606,0.95,0.25,22.0,1229,0.0,0.1,0.0,0.0,1050.0,1290450.0,13125.0,16130625.0,13125.0,16130625.0,true,1229,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4319683.033430279,-1029.1204812566145,4786133.449823307,-1239.904194285078,4319683.033430279,-0.0,0.0,-0.0,0.0,210.78371302846335,466450.4163929696,1229,53000.0,1239.904194285078,-2766.723443633659,2263788.6647201856,1050.0,1290450.0,284.0845239003683,1048090.5418639027,-3881.870641954606,62124.634261625746,0.0,0.0,907.843617624238,1152344.7026677814,-76.7809432036593,1228.7859268767825,-1239.904194285078,-5078954.79237109,true,true,8.717421431,11239.796146398952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1230,0.9047944739231789,666.0,0.0,400.95801953720775,-649.0419804627923,1050.0,400.35598046883354,0.6020390683741859,6076984.407842852,4785484.407842844,1291500.0,7169929.487435321,-1092945.079592592,0.95,0.25,22.0,1230,0.0,0.1,0.0,0.0,1050.0,1291500.0,13125.0,16143750.0,13125.0,16143750.0,true,1230,0.83,53000.0,1239.904194285078,0.0,-781.9782897142076,4318901.055140565,-649.0419804627923,4785484.407842844,-781.9782897142076,4318901.055140565,-0.0,0.0,-0.0,0.0,132.9363092514153,466583.352702221,1230,53000.0,1239.904194285078,-781.9782897142076,2263006.6864304715,1050.0,1291500.0,265.15200324076056,1048355.6938671435,-1896.8231405129077,60227.81112111284,0.0,0.0,887.210808163081,1153231.9134759444,-37.51796060514141,1191.267966271641,-781.9782897142076,-5079736.770660804,true,true,8.583307256,11248.379453654952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1231,0.9047915653844355,666.0,0.0,5230.134368333526,4180.134368333526,1050.0,5222.281313726419,7.853054607107397,6082214.542211186,4789664.542211178,1292550.0,7175151.768749048,-1092937.226537985,0.95,0.25,22.0,1231,0.0,0.1,0.0,0.0,1050.0,1292550.0,13125.0,16156875.0,13125.0,16156875.0,true,1231,0.8953066224794624,53000.0,1239.904194285078,0.0,3742.5019828230106,4322643.557123388,4180.134368333526,4789664.542211178,3742.5019828230106,4322643.557123388,-0.0,0.0,-0.0,0.0,437.63238551051563,467020.98508773156,1231,53000.0,1239.904194285078,3742.5019828230106,2266749.1884132945,1050.0,1292550.0,267.2127609532252,1048622.9066280967,2535.632670680014,62763.44379179286,0.0,0.0,889.5033425875399,1154121.416818532,50.15320860223098,1241.421174873872,-3742.5019828230106,-5083479.272643627,true,true,8.762126157,11257.141579811952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1232,0.9047893989388872,666.0,0.0,3895.702385001431,2845.702385001431,1050.0,3889.8529820209487,5.84940298048263,6086110.244596188,4792510.24459618,1293600.0,7179041.621731069,-1092931.3771350046,0.95,0.25,22.0,1232,0.0,0.1,0.0,0.0,1050.0,1293600.0,13125.0,16170000.0,13125.0,16170000.0,true,1232,0.8770933318153947,53000.0,1239.904194285078,0.0,2495.9465862159204,4325139.503709604,2845.702385001431,4792510.24459618,2495.9465862159204,4325139.503709604,-0.0,0.0,-0.0,0.0,349.7557987855107,467370.7408865171,1232,53000.0,1239.904194285078,2495.9465862159204,2269245.1349995104,1050.0,1293600.0,279.8019153063541,1048902.708543403,1287.421735333312,64050.865527126174,0.0,0.0,903.258548877884,1155024.6753674098,25.464386698370287,1266.8855615722423,-2495.9465862159204,-5085975.219229843,true,true,8.851535607,11265.993115418953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1233,0.9047872138413552,666.0,0.0,3929.2423821280427,2879.2423821280427,1050.0,3923.3426187915143,5.899763336528593,6090039.486978316,4795389.486978307,1294650.0,7182964.96434986,-1092925.477371668,0.95,0.25,22.0,1233,0.0,0.1,0.0,0.0,1050.0,1294650.0,13125.0,16183125.0,13125.0,16183125.0,true,1233,0.877680268430622,53000.0,1239.904194285078,0.0,2527.0542268229638,4327666.557936427,2879.2423821280427,4795389.486978307,2527.0542268229638,4327666.557936427,-0.0,0.0,-0.0,0.0,352.1881553050789,467722.9290418222,1233,53000.0,1239.904194285078,2527.0542268229638,2271772.1892263335,1050.0,1294650.0,288.4106104310194,1049191.1191538342,1300.4920212918605,65351.35754841803,0.0,0.0,912.428686421874,1155937.1040538317,25.72290867820962,1292.608470250452,-2527.0542268229638,-5088502.273456666,true,true,8.940945058,11274.934060476953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1234,0.9047872022300112,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6090060.366497059,4794360.366497051,1295700.0,7182985.8125179745,-1092925.4460210393,0.95,0.25,22.0,1234,0.0,0.1,0.0,0.0,1050.0,1295700.0,13125.0,16196250.0,13125.0,16196250.0,true,1234,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4326426.653742142,-1029.1204812566145,4794360.366497051,-1239.904194285078,4326426.653742142,-0.0,0.0,-0.0,0.0,210.78371302846335,467933.7127548507,1234,53000.0,1239.904194285078,-2103.0569483234462,2269669.1322780102,1050.0,1295700.0,281.93779859144115,1049473.0569524255,-3226.723286792279,62124.63426162575,0.0,0.0,905.5510832510612,1156842.6551370828,-63.82254337366948,1228.7859268767825,-1239.904194285078,-5089742.177650951,true,true,8.717421431,11283.651481907953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1235,0.9047871906186672,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6090081.246015803,4793331.246015795,1296750.0,7183006.660686089,-1092925.4146704106,0.95,0.25,22.0,1235,0.0,0.1,0.0,0.0,1050.0,1296750.0,13125.0,16209375.0,13125.0,16209375.0,true,1235,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4325186.749547857,-1029.1204812566145,4793331.246015795,-1239.904194285078,4325186.749547857,-0.0,0.0,-0.0,0.0,210.78371302846335,468144.49646787916,1235,53000.0,1239.904194285078,-11249.174020533268,2258419.958257477,1050.0,1296750.0,231.72195810245648,1049704.778910528,-12090.001135420356,50034.6331262054,0.0,0.0,848.237723562662,1157690.8928606454,-239.13256677803014,989.6533600987523,-1239.904194285078,-5090982.081845236,true,true,7.823326926,11291.474808833953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1236,0.9047871790073232,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6090102.125534547,4792302.125534538,1297800.0,7183027.508854203,-1092925.3833197819,0.95,0.25,22.0,1236,0.0,0.1,0.0,0.0,1050.0,1297800.0,13125.0,16222500.0,13125.0,16222500.0,true,1236,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4323946.845353572,-1029.1204812566145,4792302.125534538,-1239.904194285078,4323946.845353572,-0.0,0.0,-0.0,0.0,210.78371302846335,468355.28018090763,1236,53000.0,1239.904194285078,-10075.317281512664,2248344.6409759643,1050.0,1297800.0,164.4007661794782,1049869.1796767074,-10782.973998120251,39251.65912808515,0.0,0.0,756.5363480714801,1158447.4292087168,-213.28039764337035,776.3729624553819,-1239.904194285078,-5092221.986039521,true,true,6.92923242,11298.404041253953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1237,0.9047871673959792,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6090123.00505329,4791273.005053282,1298850.0,7183048.357022317,-1092925.3519691532,0.95,0.25,22.0,1237,0.0,0.1,0.0,0.0,1050.0,1298850.0,13125.0,16235625.0,13125.0,16235625.0,true,1237,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4322706.941159287,-1029.1204812566145,4791273.005053282,-1239.904194285078,4322706.941159287,-0.0,0.0,-0.0,0.0,210.78371302846335,468566.0638939361,1237,53000.0,1239.904194285078,-11111.683988682462,2237232.956987282,1050.0,1298850.0,105.90015545165086,1049975.079832159,-11640.71056102778,27610.94856705737,0.0,0.0,653.3723006118494,1159100.8015093287,-230.245883718183,546.1270787371989,-1239.904194285078,-5093461.890233806,true,true,5.811614288,11304.215655541953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1238,0.9047871557846352,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6090143.884572034,4790243.884572025,1299900.0,7183069.205190431,-1092925.3206185244,0.95,0.25,22.0,1238,0.0,0.1,0.0,0.0,1050.0,1299900.0,13125.0,16248750.0,13125.0,16248750.0,true,1238,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4321467.036965001,-1029.1204812566145,4790243.884572025,-1239.904194285078,4321467.036965001,-0.0,0.0,-0.0,0.0,210.78371302846335,468776.8476069646,1238,53000.0,1239.904194285078,-10913.140934057295,2226319.8160532247,1050.0,1299900.0,55.66029780334383,1050030.7401299623,-11273.109179952657,16337.839387104714,0.0,0.0,527.2829092666027,1159628.0844185953,-222.97496117458604,323.15211756261283,-1239.904194285078,-5094701.7944280915,true,true,4.470472529,11308.686128070953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1239,0.9047871441732912,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6090164.764090777,4789214.764090769,1300950.0,7183090.0533585455,-1092925.2892678957,0.95,0.25,22.0,1239,0.0,0.1,0.0,0.0,1050.0,1300950.0,13125.0,16261875.0,13125.0,16261875.0,true,1239,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4320227.132770716,-1029.1204812566145,4789214.764090769,-1239.904194285078,4320227.132770716,-0.0,0.0,-0.0,0.0,210.78371302846335,468987.63131999306,1239,53000.0,1239.904194285078,-5558.621139593237,2220761.1949136313,1050.0,1300950.0,26.67961344098658,1050057.4197434033,-5881.622180527075,10456.21720657764,0.0,0.0,412.6561898385231,1160040.7406084337,-116.33476234567212,206.8173552169407,-1239.904194285078,-5095941.698622377,true,true,3.576378023,11312.262506093954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1240,0.9047871325619472,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6090185.643609521,4788185.643609513,1302000.0,7183110.90152666,-1092925.257917267,0.95,0.25,22.0,1240,0.0,0.1,0.0,0.0,1050.0,1302000.0,13125.0,16275000.0,13125.0,16275000.0,true,1240,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4318987.228576431,-1029.1204812566145,4788185.643609513,-1239.904194285078,4318987.228576431,-0.0,0.0,-0.0,0.0,210.78371302846335,469198.41503302153,1240,53000.0,1239.904194285078,-4331.569848199188,2216429.625065432,1050.0,1302000.0,12.552959407831088,1050069.9727028112,-4574.59502897398,5881.622177603659,0.0,0.0,320.95481429605945,1160361.6954227297,-90.48259292909741,116.3347622878433,-1239.904194285078,-5097181.602816662,true,true,2.682283517,11314.944789610954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1241,0.9047871209506032,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6090206.523128265,4787156.523128256,1303050.0,7183131.749694774,-1092925.2265666383,0.95,0.25,22.0,1241,0.0,0.1,0.0,0.0,1050.0,1303050.0,13125.0,16288125.0,13125.0,16288125.0,true,1241,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4317747.324382146,-1029.1204812566145,4787156.523128256,-1239.904194285078,4317747.324382146,-0.0,0.0,-0.0,0.0,210.78371302846335,469409.19874605,1241,53000.0,1239.904194285078,-3098.3701654839538,2213331.254899948,1050.0,1303050.0,4.574693663061712,1050074.5473964743,-3267.567874497199,2614.05430310646,0.0,0.0,229.25343880487748,1160590.9488615345,-64.63042345469391,51.70433883314939,-1239.904194285078,-5098421.507010947,true,true,1.788189012,11316.732978622955,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1242,0.9047871093392592,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6090227.402647008,4786127.402647,1304100.0,7183152.597862888,-1092925.1952160096,0.95,0.25,22.0,1242,0.0,0.1,0.0,0.0,1050.0,1304100.0,13125.0,16301250.0,13125.0,16301250.0,true,1242,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4316507.420187861,-1029.1204812566145,4786127.402647,-1239.904194285078,4316507.420187861,-0.0,0.0,-0.0,0.0,210.78371302846335,469619.9824590785,1242,53000.0,1239.904194285078,-1474.1756128852312,2211857.079287063,1050.0,1304100.0,1.2563252474128792,1050075.8037217217,-1592.9393418689847,1021.1149612374752,0.0,0.0,149.01473523086258,1160739.9635967654,-31.507331494521996,20.197007338627397,-1239.904194285078,-5099661.411205232,true,true,1.117618132,11317.850596754955,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1243,0.9047869344502303,666.0,0.0,314.48545180955523,-735.5145481904448,1050.0,314.0132514314628,0.47220037809242527,6090541.888098817,4785391.888098809,1305150.0,7183466.611114319,-1092924.7230156315,0.95,0.25,22.0,1243,0.0,0.1,0.0,0.0,1050.0,1305150.0,13125.0,16314375.0,13125.0,16314375.0,true,1243,0.83,53000.0,1239.904194285078,0.0,-886.162106253548,4315621.2580816075,-735.5145481904448,4785391.888098809,-886.162106253548,4315621.2580816075,-0.0,0.0,-0.0,0.0,150.64755806310325,469770.6300171416,1243,53000.0,1239.904194285078,-886.162106253548,2210970.917180809,1050.0,1305150.0,0.14990356186318488,1050075.9536252837,-941.0595482557387,80.05541298173648,0.0,0.0,73.36110040320192,1160813.3246971685,-18.613561962874368,1.5834453757530298,-886.162106253548,-5100547.573311485,true,true,0.312933077,11318.163529831956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1244,0.9047863808073237,666.0,0.0,995.5606747263361,-54.439325273663904,1050.0,994.0658388783986,1.4948358479374415,6091537.448773543,4785337.448773535,1306200.0,7184460.676953197,-1092923.2281797836,0.95,0.25,22.0,1244,0.0,0.1,0.0,0.0,1050.0,1306200.0,13125.0,16327500.0,13125.0,16327500.0,true,1244,0.83,53000.0,1239.904194285078,0.0,-65.58954852248664,4315555.668533085,-54.439325273663904,4785337.448773535,-65.58954852248664,4315555.668533085,-0.0,0.0,-0.0,0.0,11.150223248822734,469781.7802403904,1244,53000.0,1239.904194285078,-65.58954852248664,2210905.3276322866,1050.0,1306200.0,0.0015691199259788857,1050075.9551944037,-80.05541298146238,2.7409896574681625e-10,0.0,0.0,16.04774071480297,1160829.3724378834,-1.583445375753203,-1.7319479184152442e-13,-65.58954852248664,-5100613.162860008,true,true,0.0,11318.163529831956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1245,0.9047857968900731,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6092587.448773543,4785337.448773535,1307250.0,7185509.100376621,-1092921.651603207,0.95,0.25,22.0,1245,0.0,0.1,0.0,0.0,1050.0,1307250.0,13125.0,16340625.0,13125.0,16340625.0,true,1245,0.83,53000.0,1239.904194285078,0.0,0.0,4315555.668533085,0.0,4785337.448773535,0.0,4315555.668533085,-0.0,0.0,-0.0,0.0,0.0,469781.7802403904,1245,53000.0,1239.904194285078,0.0,2210905.3276322866,1050.0,1307250.0,0.0,1050075.9551944037,0.0,2.7409896574681625e-10,0.0,0.0,0.0,1160829.3724378834,0.0,-1.7319479184152442e-13,0.0,-5100613.162860008,true,true,0.0,11318.163529831956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1246,0.9047852129728226,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6093637.448773543,4785337.448773535,1308300.0,7186557.523800044,-1092920.0750266304,0.95,0.25,22.0,1246,0.0,0.1,0.0,0.0,1050.0,1308300.0,13125.0,16353750.0,13125.0,16353750.0,true,1246,0.83,53000.0,1239.904194285078,0.0,0.0,4315555.668533085,0.0,4785337.448773535,0.0,4315555.668533085,-0.0,0.0,-0.0,0.0,0.0,469781.7802403904,1246,53000.0,1239.904194285078,0.0,2210905.3276322866,1050.0,1308300.0,0.0,1050075.9551944037,0.0,2.7409896574681625e-10,0.0,0.0,0.0,1160829.3724378834,0.0,-1.7319479184152442e-13,0.0,-5100613.162860008,true,true,0.0,11318.163529831956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1247,0.904784629055572,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6094687.448773543,4785337.448773535,1309350.0,7187605.947223468,-1092918.4984500539,0.95,0.25,22.0,1247,0.0,0.1,0.0,0.0,1050.0,1309350.0,13125.0,16366875.0,13125.0,16366875.0,true,1247,0.83,53000.0,1239.904194285078,0.0,0.0,4315555.668533085,0.0,4785337.448773535,0.0,4315555.668533085,-0.0,0.0,-0.0,0.0,0.0,469781.7802403904,1247,53000.0,1239.904194285078,0.0,2210905.3276322866,1050.0,1309350.0,0.0,1050075.9551944037,0.0,2.7409896574681625e-10,0.0,0.0,0.0,1160829.3724378834,0.0,-1.7319479184152442e-13,0.0,-5100613.162860008,true,true,0.0,11318.163529831956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1248,0.9047840451383214,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6095737.448773543,4785337.448773535,1310400.0,7188654.370646891,-1092916.9218734773,0.95,0.25,22.0,1248,0.0,0.1,0.0,0.0,1050.0,1310400.0,13125.0,16380000.0,13125.0,16380000.0,true,1248,0.83,53000.0,1239.904194285078,0.0,0.0,4315555.668533085,0.0,4785337.448773535,0.0,4315555.668533085,-0.0,0.0,-0.0,0.0,0.0,469781.7802403904,1248,53000.0,1239.904194285078,0.0,2210905.3276322866,1050.0,1310400.0,0.0,1050075.9551944037,0.0,2.7409896574681625e-10,0.0,0.0,0.0,1160829.3724378834,0.0,-1.7319479184152442e-13,0.0,-5100613.162860008,true,true,0.0,11318.163529831956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1249,0.9047834612210709,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6096787.448773543,4785337.448773535,1311450.0,7189702.794070315,-1092915.3452969007,0.95,0.25,22.0,1249,0.0,0.1,0.0,0.0,1050.0,1311450.0,13125.0,16393125.0,13125.0,16393125.0,true,1249,0.83,53000.0,1239.904194285078,0.0,0.0,4315555.668533085,0.0,4785337.448773535,0.0,4315555.668533085,-0.0,0.0,-0.0,0.0,0.0,469781.7802403904,1249,53000.0,1239.904194285078,0.0,2210905.3276322866,1050.0,1311450.0,0.0,1050075.9551944037,0.0,2.7409896574681625e-10,0.0,0.0,0.0,1160829.3724378834,0.0,-1.7319479184152442e-13,0.0,-5100613.162860008,true,true,0.0,11318.163529831956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1250,0.9047828773038203,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6097837.448773543,4785337.448773535,1312500.0,7190751.217493738,-1092913.7687203242,0.95,0.25,22.0,1250,0.0,0.1,0.0,0.0,1050.0,1312500.0,13125.0,16406250.0,13125.0,16406250.0,true,1250,0.83,53000.0,1239.904194285078,0.0,0.0,4315555.668533085,0.0,4785337.448773535,0.0,4315555.668533085,-0.0,0.0,-0.0,0.0,0.0,469781.7802403904,1250,53000.0,1239.904194285078,0.0,2210905.3276322866,1050.0,1312500.0,0.0,1050075.9551944037,0.0,2.7409896574681625e-10,0.0,0.0,0.0,1160829.3724378834,0.0,-1.7319479184152442e-13,0.0,-5100613.162860008,true,true,0.0,11318.163529831956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1251,0.9047822933865698,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6098887.448773543,4785337.448773535,1313550.0,7191799.6409171615,-1092912.1921437476,0.95,0.25,22.0,1251,0.0,0.1,0.0,0.0,1050.0,1313550.0,13125.0,16419375.0,13125.0,16419375.0,true,1251,0.83,53000.0,1239.904194285078,0.0,0.0,4315555.668533085,0.0,4785337.448773535,0.0,4315555.668533085,-0.0,0.0,-0.0,0.0,0.0,469781.7802403904,1251,53000.0,1239.904194285078,0.0,2210905.3276322866,1050.0,1313550.0,0.0,1050075.9551944037,0.0,2.7409896574681625e-10,0.0,0.0,0.0,1160829.3724378834,0.0,-1.7319479184152442e-13,0.0,-5100613.162860008,true,true,0.0,11318.163529831956,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1252,0.9047815830197997,666.0,0.0,1277.3815260172341,227.38152601723408,1050.0,1275.463535737929,1.9179902793051564,6100164.830299561,4785564.8302995525,1314600.0,7193075.1044529,-1092910.2741534682,0.95,0.25,22.0,1252,0.0,0.1,0.0,0.0,1050.0,1314600.0,13125.0,16432500.0,13125.0,16432500.0,true,1252,0.8335762232773677,53000.0,1239.904194285078,0.0,189.5398337004905,4315745.208366785,227.38152601723408,4785564.8302995525,189.5398337004905,4315745.208366785,-0.0,0.0,-0.0,0.0,37.841692316743575,469819.62193270714,1252,53000.0,1239.904194285078,189.5398337004905,2211094.867465987,1050.0,1314600.0,0.00457469366613165,1050075.9597690974,163.3783939441366,163.3783939444107,0.0,0.0,22.925343885615916,1160852.297781769,3.2315211770718477,3.2315211770716745,-189.5398337004905,-5100802.702693708,true,true,0.447047253,11318.610577084955,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1253,0.9047809683894606,666.0,0.0,1105.2282756614386,55.228275661438694,1050.0,1103.568773746031,1.6595019154075654,6101270.058575222,4785620.058575214,1315650.0,7194178.673226646,-1092908.6146515529,0.95,0.25,22.0,1253,0.0,0.1,0.0,0.0,1050.0,1315650.0,13125.0,16445625.0,13125.0,16445625.0,true,1253,0.8308657978362369,53000.0,1239.904194285078,0.0,45.887285320560885,4315791.095652106,55.228275661438694,4785620.058575214,45.887285320560885,4315791.095652106,-0.0,0.0,-0.0,0.0,9.34099034087781,469828.962923048,1253,53000.0,1239.904194285078,45.887285320560885,2211140.7547513074,1050.0,1315650.0,0.0365975493290532,1050075.9963666466,0.0,163.3783939444107,0.0,0.0,45.85068777123183,1160898.1484695403,0.0,3.2315211770716745,-45.887285320560885,-5100848.589979029,true,true,0.447047253,11319.057624337955,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1254,0.9047803537591216,666.0,0.0,1105.2282756614386,55.228275661438694,1050.0,1103.568773746031,1.6595019154075654,6102375.286850884,4785675.286850875,1316700.0,7195282.242000393,-1092906.9551496375,0.95,0.25,22.0,1254,0.0,0.1,0.0,0.0,1050.0,1316700.0,13125.0,16458750.0,13125.0,16458750.0,true,1254,0.8308657978362369,53000.0,1239.904194285078,0.0,45.887285320560885,4315836.982937427,55.228275661438694,4785675.286850875,45.887285320560885,4315836.982937427,-0.0,0.0,-0.0,0.0,9.34099034087781,469838.30391338887,1254,53000.0,1239.904194285078,45.887285320560885,2211186.642036628,1050.0,1316700.0,0.0365975493290532,1050076.0329641958,0.0,163.3783939444107,0.0,0.0,45.85068777123183,1160943.9991573116,0.0,3.2315211770716745,-45.887285320560885,-5100894.47726435,true,true,0.447047253,11319.504671590954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1255,0.9047797391287825,666.0,0.0,1105.2282756614386,55.228275661438694,1050.0,1103.568773746031,1.6595019154075654,6103480.515126545,4785730.515126537,1317750.0,7196385.810774139,-1092905.2956477222,0.95,0.25,22.0,1255,0.0,0.1,0.0,0.0,1050.0,1317750.0,13125.0,16471875.0,13125.0,16471875.0,true,1255,0.8308657978362369,53000.0,1239.904194285078,0.0,45.887285320560885,4315882.870222748,55.228275661438694,4785730.515126537,45.887285320560885,4315882.870222748,-0.0,0.0,-0.0,0.0,9.34099034087781,469847.6449037297,1255,53000.0,1239.904194285078,45.887285320560885,2211232.5293219485,1050.0,1317750.0,0.0365975493290532,1050076.069561745,0.0,163.3783939444107,0.0,0.0,45.85068777123183,1160989.849845083,0.0,3.2315211770716745,-45.887285320560885,-5100940.364549671,true,true,0.447047253,11319.951718843953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1256,0.9047791244984434,666.0,0.0,1105.2282756614386,55.228275661438694,1050.0,1103.568773746031,1.6595019154075654,6104585.743402206,4785785.743402198,1318800.0,7197489.379547886,-1092903.6361458069,0.95,0.25,22.0,1256,0.0,0.1,0.0,0.0,1050.0,1318800.0,13125.0,16485000.0,13125.0,16485000.0,true,1256,0.8308657978362369,53000.0,1239.904194285078,0.0,45.887285320560885,4315928.757508069,55.228275661438694,4785785.743402198,45.887285320560885,4315928.757508069,-0.0,0.0,-0.0,0.0,9.34099034087781,469856.9858940706,1256,53000.0,1239.904194285078,45.887285320560885,2211278.416607269,1050.0,1318800.0,0.0365975493290532,1050076.1061592943,0.0,163.3783939444107,0.0,0.0,45.85068777123183,1161035.7005328543,0.0,3.2315211770716745,-45.887285320560885,-5100986.251834992,true,true,0.447047253,11320.398766096952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1257,0.9047783279907168,666.0,0.0,1432.28019417492,382.28019417492015,1050.0,1430.1296233127955,2.1505708621245048,6106018.023596381,4786168.023596372,1319850.0,7198919.509171198,-1092901.4855749446,0.95,0.25,22.0,1257,0.0,0.1,0.0,0.0,1050.0,1319850.0,13125.0,16498125.0,13125.0,16498125.0,true,1257,0.8360301465425732,53000.0,1239.904194285078,0.0,319.5977667563819,4316248.355274825,382.28019417492015,4786168.023596372,319.5977667563819,4316248.355274825,-0.0,0.0,-0.0,0.0,62.68242741853828,469919.6683214891,1257,53000.0,1239.904194285078,319.5977667563819,2211598.0143740256,1050.0,1319850.0,0.08040481591743547,1050076.1865641102,254.87029478674827,418.24868873115895,0.0,0.0,59.605894112857726,1161095.3064269673,5.04117304085838,8.272694217930056,-319.5977667563819,-5101305.849601748,true,true,0.715275605,11321.114041701952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1258,0.9047769748288509,666.0,0.0,2433.2556673118215,1383.2556673118215,1050.0,2429.602130273816,3.653537038005738,6108451.279263693,4787551.2792636845,1320900.0,7201349.1113014715,-1092897.8320379066,0.95,0.25,22.0,1258,0.0,0.1,0.0,0.0,1050.0,1320900.0,13125.0,16511250.0,13125.0,16511250.0,true,1258,0.8522428248567729,53000.0,1239.904194285078,0.0,1178.8697174089673,4317427.224992234,1383.2556673118215,4787551.2792636845,1178.8697174089673,4317427.224992234,-0.0,0.0,-0.0,0.0,204.38594990285424,470124.054271392,1258,53000.0,1239.904194285078,1178.8697174089673,2212776.8840914345,1050.0,1320900.0,0.44528238281651017,1050076.631846493,1052.1568567663448,1470.4055454975037,0.0,0.0,105.45658188408956,1161200.7630088513,20.810996375716414,29.08369059364647,-1178.8697174089673,-5102484.719319157,true,true,1.341141759,11322.455183460952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1259,0.9047755270075791,666.0,0.0,2603.4722109226104,1553.4722109226107,1050.0,2599.5630934887927,3.9091174338177335,6111054.751474615,4789104.751474607,1321950.0,7203948.6743949605,-1092893.922920473,0.95,0.25,22.0,1259,0.0,0.1,0.0,0.0,1050.0,1321950.0,13125.0,16524375.0,13125.0,16524375.0,true,1259,0.8550625647731179,53000.0,1239.904194285078,0.0,1328.3159329752534,4318755.540925209,1553.4722109226107,4789104.751474607,1328.3159329752534,4318755.540925209,-0.0,0.0,-0.0,0.0,225.15627794735724,470349.21054933936,1259,53000.0,1239.904194285078,1328.3159329752534,2214105.2000244097,1050.0,1321950.0,1.5691199274831562,1050078.2009664206,1143.648757608956,2614.05430310646,0.0,0.0,160.47740719931141,1161361.2404160507,22.620648239502923,51.70433883314939,-1328.3159329752534,-5103813.035252132,true,true,1.788189012,11324.243372472953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1260,0.9047738407632124,666.0,0.0,3032.2046201666026,1982.2046201666024,1050.0,3027.651760376563,4.5528597900399435,6114086.956094782,4791086.9560947735,1323000.0,7206976.3261553375,-1092889.370060683,0.95,0.25,22.0,1260,0.0,0.1,0.0,0.0,1050.0,1323000.0,13125.0,16537500.0,13125.0,16537500.0,true,1260,0.8622481562068559,53000.0,1239.904194285078,0.0,1709.152278963364,4320464.693204173,1982.2046201666024,4791086.9560947735,1709.152278963364,4320464.693204173,-0.0,0.0,-0.0,0.0,273.05234120323826,470622.2628905426,1260,53000.0,1239.904194285078,1709.152278963364,2215814.352303373,1050.0,1323000.0,3.3349516801233223,1050081.5359181007,1470.4055418426185,4084.4598449490786,0.0,0.0,206.32809491926156,1161567.5685109699,29.083690521360722,80.78802935451012,-1709.152278963364,-5105522.187531096,true,true,2.235236264,11326.478608736952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1261,0.904771544598463,666.0,0.0,4128.963452553195,3078.9634525531947,1050.0,4122.763807729541,6.199644823653445,6118215.919547335,4794165.919547327,1324050.0,7211099.089963067,-1092883.1704158594,0.95,0.25,22.0,1261,0.0,0.1,0.0,0.0,1050.0,1324050.0,13125.0,16550625.0,13125.0,16550625.0,true,1261,0.8811916386830284,53000.0,1239.904194285078,0.0,2713.1568502005043,4323177.850054373,3078.9634525531947,4794165.919547327,2713.1568502005043,4323177.850054373,-0.0,0.0,-0.0,0.0,365.80660235269033,470988.06949289533,1261,53000.0,1239.904194285078,2713.1568502005043,2218527.509153574,1050.0,1324050.0,6.600811759332348,1050088.13672986,2400.0286065496484,6484.488451498727,0.0,0.0,259.0563858100246,1161826.62489678,47.47104608149913,128.25907543600925,-2713.1568502005043,-5108235.344381296,true,true,2.816397693,11329.295006429953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1262,0.9047682514694761,666.0,0.0,5921.704544136739,4871.704544136739,1050.0,5912.8130958722695,8.891448264469577,6124137.624091472,4799037.624091463,1325100.0,7217011.90305894,-1092874.278967595,0.95,0.25,22.0,1262,0.0,0.1,0.0,0.0,1050.0,1325100.0,13125.0,16563750.0,13125.0,16563750.0,true,1262,0.9014292151278882,53000.0,1239.904194285078,0.0,4391.496803556147,4327569.34685793,4871.704544136739,4799037.624091463,4391.496803556147,4327569.34685793,-0.0,0.0,-0.0,0.0,480.20774058059214,471468.27723347594,1262,53000.0,1239.904194285078,4391.496803556147,2222919.00595713,1050.0,1325100.0,13.377351229430168,1050101.5140810895,3971.728755078913,10456.21720657764,0.0,0.0,327.83241746687236,1162154.4573142468,78.55827978093146,206.8173552169407,-4391.496803556147,-5112626.841184853,true,true,3.576378023,11332.871384452954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1263,0.9047637521128575,666.0,0.0,8090.743071563497,7040.743071563497,1050.0,8078.594808693282,12.148262870215461,6132228.367163035,4806078.367163027,1326150.0,7225090.497867633,-1092862.1307047247,0.95,0.25,22.0,1263,0.0,0.1,0.0,0.0,1050.0,1326150.0,13125.0,16576875.0,13125.0,16576875.0,true,1263,0.9142916707401972,53000.0,1239.904194285078,0.0,6437.292746152258,4334006.639604081,7040.743071563497,4806078.367163027,6437.292746152258,4334006.639604081,-0.0,0.0,-0.0,0.0,603.4503254112396,472071.72755888716,1263,53000.0,1239.904194285078,6437.292746152258,2229356.298703282,1050.0,1326150.0,26.67961344098658,1050128.1936945305,5881.622180527075,16337.839387104716,0.0,0.0,412.6561898385231,1162567.1135040852,116.33476234567212,323.15211756261283,-6437.292746152258,-5119064.133931004,true,true,4.470472529,11337.341856981953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1264,0.9047617539639655,666.0,0.0,3593.071337634488,2543.071337634488,1050.0,3587.6763356260276,5.395002008460192,6135821.43850067,4808621.438500661,1327200.0,7228678.174203259,-1092856.7357027163,0.95,0.25,22.0,1264,0.0,0.1,0.0,0.0,1050.0,1327200.0,13125.0,16590000.0,13125.0,16590000.0,true,1264,0.8718326930749349,53000.0,1239.904194285078,0.0,2217.1327329715527,4336223.772337053,2543.071337634488,4808621.438500661,2217.1327329715527,4336223.772337053,-0.0,0.0,-0.0,0.0,325.9386046629352,472397.6661635501,1264,53000.0,1239.904194285078,2217.1327329715527,2231573.4314362537,1050.0,1327200.0,39.41155773817887,1050167.6052522687,1674.6285337245943,18012.46792082931,0.0,0.0,469.969549526922,1163037.0830536122,33.12309198185764,356.2752095444705,-2217.1327329715527,-5121281.266663976,true,true,4.693996155,11342.035853136953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1265,0.9047617423526215,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6135842.318019413,4807592.318019405,1328250.0,7228699.022371373,-1092856.7043520876,0.95,0.25,22.0,1265,0.0,0.1,0.0,0.0,1050.0,1328250.0,13125.0,16603125.0,13125.0,16603125.0,true,1265,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4334983.868142768,-1029.1204812566145,4807592.318019405,-1239.904194285078,4334983.868142768,-0.0,0.0,-0.0,0.0,210.78371302846335,472608.4498765786,1265,53000.0,1239.904194285078,-2837.093874455415,2228736.3375617983,1050.0,1328250.0,36.597549292213934,1050204.202801561,-3267.567877786351,14744.900043042959,0.0,0.0,458.50687755847326,1163495.5899311707,-64.63042351975126,291.6447860247192,-1239.904194285078,-5122521.170858261,true,true,4.246948902,11346.282802038953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1266,0.9047617307412775,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6135863.197538157,4806563.197538149,1329300.0,7228719.870539487,-1092856.6730014589,0.95,0.25,22.0,1266,0.0,0.1,0.0,0.0,1050.0,1329300.0,13125.0,16616250.0,13125.0,16616250.0,true,1266,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4333743.963948483,-1029.1204812566145,4806563.197538149,-1239.904194285078,4333743.963948483,-0.0,0.0,-0.0,0.0,210.78371302846335,472819.23358960706,1266,53000.0,1239.904194285078,-2559.6426614484467,2226176.6949003497,1050.0,1329300.0,26.679613440986564,1050230.882415002,-2940.8110836852347,11804.088959357723,0.0,0.0,412.656189838523,1163908.246121009,-58.1673810427214,233.47740498199784,-1239.904194285078,-5123761.075052546,true,true,3.79990165,11350.082703688953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1267,0.9047617191299335,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6135884.077056901,4805534.077056892,1330350.0,7228740.718707602,-1092856.6416508302,0.95,0.25,22.0,1267,0.0,0.1,0.0,0.0,1050.0,1330350.0,13125.0,16629375.0,13125.0,16629375.0,true,1267,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4332504.0597541975,-1029.1204812566145,4805534.077056892,-1239.904194285078,4332504.0597541975,-0.0,0.0,-0.0,0.0,210.78371302846335,473030.01730263553,1267,53000.0,1239.904194285078,-2025.9881528312612,2224150.7067475184,1050.0,1330350.0,19.091482147342692,1050249.9738971493,-2367.3529295881262,9436.736029769596,0.0,0.0,369.09803649175,1164277.344157501,-46.824741882227706,186.65266309977014,-1239.904194285078,-5125000.9792468315,true,true,3.397559122,11353.480262810954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1268,0.9047588508722618,666.0,0.0,5157.700945198845,4107.700945198845,1050.0,5149.956649485333,7.74429571351178,6141041.778002099,4809641.778002091,1331400.0,7233890.675357087,-1092848.8973551167,0.95,0.25,22.0,1268,0.0,0.1,0.0,0.0,1050.0,1331400.0,13125.0,16642500.0,13125.0,16642500.0,true,1268,0.8946701649255263,53000.0,1239.904194285078,0.0,3675.0374821057912,4336179.097236304,4107.700945198845,4809641.778002091,3675.0374821057912,4336179.097236304,-0.0,0.0,-0.0,0.0,432.6634630930539,473462.6807657286,1268,53000.0,1239.904194285078,3675.0374821057912,2227825.744229624,1050.0,1331400.0,20.178717560296207,1050270.1526147097,3215.2867882596524,12652.022818029249,0.0,0.0,375.9756396112813,1164653.3197971121,63.59633667456118,250.2489997743313,-3675.0374821057912,-5128676.016728938,true,true,3.934015825,11357.414278635953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1269,0.9047535802529577,666.0,0.0,9477.627632617958,8427.627632617958,1050.0,9463.39696049691,14.230672121047984,6150519.405634717,4818069.405634709,1332450.0,7243354.0723175835,-1092834.6666829956,0.95,0.25,22.0,1269,0.0,0.1,0.0,0.0,1050.0,1332450.0,13125.0,16655625.0,13125.0,16655625.0,true,1269,0.9192338123696733,53000.0,1239.904194285078,0.0,7746.96027796341,4343926.057514267,8427.627632617958,4818069.405634709,7746.96027796341,4343926.057514267,-0.0,0.0,-0.0,0.0,680.667354654548,474143.3481203831,1269,53000.0,1239.904194285078,7746.96027796341,2235572.7045075875,1050.0,1332450.0,35.51056548754606,1050305.6631801971,7116.762841171411,19768.78565920066,0.0,0.0,453.9218088121191,1165107.2416059242,140.76506249233321,391.0140622666645,-7746.96027796341,-5136422.977006901,true,true,4.917519782,11362.331798417954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1270,0.9047451589990766,666.0,0.0,15143.098728947361,14093.098728947361,1050.0,15120.361343468461,22.73738547889994,6165662.504363664,4832162.504363656,1333500.0,7258474.433661052,-1092811.9292975168,0.95,0.25,22.0,1270,0.0,0.1,0.0,0.0,1050.0,1333500.0,13125.0,16668750.0,13125.0,16668750.0,true,1270,0.9323965630352711,53000.0,1239.904194285078,0.0,13140.356817387266,4357066.414331654,14093.098728947361,4832162.504363656,13140.356817387266,4357066.414331654,-0.0,0.0,-0.0,0.0,952.7419115600951,475096.0900319432,1270,53000.0,1239.904194285078,13140.356817387266,2248713.0613249745,1050.0,1333500.0,71.47958849493283,1050377.142768692,12253.379543617482,32022.16520281814,0.0,0.0,573.1335970378345,1165680.375202962,242.36408823701717,633.3781505036817,-13140.356817387266,-5149563.333824288,true,true,6.258661541,11368.590459958954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1271,0.9047348598330802,666.0,0.0,18519.960294667704,17469.960294667704,1050.0,18492.15254647751,27.80774819019175,6184182.464658332,4849632.464658324,1334550.0,7276966.5862075295,-1092784.1215493267,0.95,0.25,22.0,1271,0.0,0.1,0.0,0.0,1050.0,1334550.0,13125.0,16681875.0,13125.0,16681875.0,true,1271,0.9354166909911172,53000.0,1239.904194285078,0.0,16341.692450584267,4373408.106782238,17469.960294667704,4849632.464658324,16341.692450584267,4373408.106782238,-0.0,0.0,-0.0,0.0,1128.267844083437,476224.35787602665,1271,53000.0,1239.904194285078,16341.692450584267,2265054.753775559,1050.0,1334550.0,136.28469891922163,1050513.4274676112,15194.19062218626,47216.3558250044,0.0,0.0,710.6856603002483,1166391.0608632623,300.5314691785381,933.9096196822197,-16341.692450584267,-5165905.026274872,true,true,7.599803299,11376.190263257953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1272,0.9047246070431418,666.0,0.0,18436.566867264897,17386.566867264897,1050.0,18408.884334431164,27.682532833731077,6202619.031525597,4867019.031525589,1335600.0,7295375.470541961,-1092756.439016493,0.95,0.25,22.0,1272,0.0,0.1,0.0,0.0,1050.0,1335600.0,13125.0,16695000.0,13125.0,16695000.0,true,1272,0.9353418716943074,53000.0,1239.904194285078,0.0,16262.38399596578,4389670.490778204,17386.566867264897,4867019.031525589,16262.38399596578,4389670.490778204,-0.0,0.0,-0.0,0.0,1124.1828712991173,477348.54074732575,1272,53000.0,1239.904194285078,16262.38399596578,2281317.1377715245,1050.0,1335600.0,222.45420055564526,1050735.8816681667,14908.278436621358,62124.63426162576,0.0,0.0,836.7750515942132,1167227.8359148565,294.87630719456257,1228.7859268767822,-16262.38399596578,-5182167.410270838,true,true,8.717421431,11384.907684688953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1273,0.9047172390122931,666.0,0.0,13249.193072259563,12199.193072259563,1050.0,13229.299388967882,19.893683291681025,6215868.224597856,4879218.224597848,1336650.0,7308604.769930928,-1092736.5453332013,0.95,0.25,22.0,1273,0.0,0.1,0.0,0.0,1050.0,1336650.0,13125.0,16708125.0,13125.0,16708125.0,true,1273,0.9307112511770119,53000.0,1239.904194285078,0.0,11353.926247632633,4401024.417025837,12199.193072259563,4879218.224597848,11353.926247632633,4401024.417025837,-0.0,0.0,-0.0,0.0,845.2668246269295,478193.8075719527,1273,53000.0,1239.904194285078,11353.926247632633,2292671.064019157,1050.0,1336650.0,303.8974718512377,1051039.779140018,9925.237437040018,72049.87169866578,0.0,0.0,928.4764271366769,1168156.3123419932,196.31491160470065,1425.100838481483,-11353.926247632633,-5193521.336518471,true,true,9.387992311,11394.295676999953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1274,0.9047123809804047,666.0,0.0,8735.712941509697,7685.712941509696,1050.0,8722.596255411334,13.116686098362909,6224603.937539366,4886903.937539358,1337700.0,7317327.366186339,-1092723.428647103,0.95,0.25,22.0,1274,0.0,0.1,0.0,0.0,1050.0,1337700.0,13125.0,16721250.0,13125.0,16721250.0,true,1274,0.9165833840636636,53000.0,1239.904194285078,0.0,7044.5967768708515,4408069.013802708,7685.712941509696,4886903.937539358,7044.5967768708515,4408069.013802708,-0.0,0.0,-0.0,0.0,641.1161646388446,478834.92373659153,1274,53000.0,1239.904194285078,7044.5967768708515,2299715.660796028,1050.0,1337700.0,358.66857273425063,1051398.4477127523,5594.076201104136,77643.94789976992,0.0,0.0,981.2047180787218,1169137.517060072,110.64728495374233,1535.7481234352254,-7044.5967768708515,-5200565.933295342,true,true,9.745630113,11404.041307112953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1275,0.9047091236335271,666.0,0.0,5857.361155443936,4807.361155443936,1050.0,5848.5663188742,8.79483656973564,6230461.29869481,4891711.2986948015,1338750.0,7323175.932505214,-1092714.6338105332,0.95,0.25,22.0,1275,0.0,0.1,0.0,0.0,1050.0,1338750.0,13125.0,16734375.0,13125.0,16734375.0,true,1275,0.9008560409224292,53000.0,1239.904194285078,0.0,4330.740337777499,4412399.754140486,4807.361155443936,4891711.2986948015,4330.740337777499,4412399.754140486,-0.0,0.0,-0.0,0.0,476.6208176664368,479311.544554258,1275,53000.0,1239.904194285078,4330.740337777499,2304046.4011338055,1050.0,1338750.0,389.6907049585884,1051788.1384177108,2875.4597294698233,80519.40762923974,0.0,0.0,1008.7151307106918,1170146.2321907827,56.87477263839576,1592.6228960736212,-4330.740337777499,-5204896.67363312,true,true,9.924449014,11413.965756126954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1276,0.9047040076208492,666.0,0.0,9199.613997196222,8149.613997196221,1050.0,9185.800762966197,13.813234230024358,6239660.912692006,4899860.912691997,1339800.0,7332361.73326818,-1092700.8205763032,0.95,0.25,22.0,1276,0.0,0.1,0.0,0.0,1050.0,1339800.0,13125.0,16747500.0,13125.0,16747500.0,true,1276,0.9182388380659294,53000.0,1239.904194285078,0.0,7483.292087471293,4419883.046227957,8149.613997196221,4899860.912691997,7483.292087471293,4419883.046227957,-0.0,0.0,-0.0,0.0,666.3219097249284,479977.8664639829,1276,53000.0,1239.904194285078,7483.292087471293,2311529.6932212766,1050.0,1339800.0,422.4519529735909,1052210.5903706844,5907.762784020012,86427.17041325975,0.0,0.0,1036.2255435477887,1171182.4577343306,116.85180692990126,1709.4747030035223,-7483.292087471293,-5212379.965720591,true,true,10.28208682,11424.247842946954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1277,0.9046996550280284,666.0,0.0,7826.832410516436,6776.832410516436,1050.0,7815.080409900044,11.752000616391044,6247487.745102522,4906637.745102514,1340850.0,7340176.81367808,-1092689.0685756868,0.95,0.25,22.0,1277,0.0,0.1,0.0,0.0,1050.0,1340850.0,13125.0,16760625.0,13125.0,16760625.0,true,1277,0.9133572413415212,53000.0,1239.904194285078,0.0,6189.668955503103,4426072.71518346,6776.832410516436,4906637.745102514,6189.668955503103,4426072.71518346,-0.0,0.0,-0.0,0.0,587.1634550133331,480565.02991899627,1277,53000.0,1239.904194285078,6189.668955503103,2317719.3621767797,1050.0,1340850.0,462.93473485065107,1052673.525105535,4568.059864067031,90995.23027732679,0.0,0.0,1068.3210250799582,1172250.7787594106,90.35333150546188,1799.8280345089843,-6189.668955503103,-5218569.634676094,true,true,10.55031517,11434.798158116953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1278,0.9046956747926291,666.0,0.0,7157.259294936009,6107.259294936009,1050.0,7146.512659358027,10.746635577981994,6254645.004397458,4912745.00439745,1341900.0,7347323.326337438,-1092678.321940109,0.95,0.25,22.0,1278,0.0,0.1,0.0,0.0,1050.0,1341900.0,13125.0,16773750.0,13125.0,16773750.0,true,1278,0.9109950296701647,53000.0,1239.904194285078,0.0,5563.682862593618,4431636.398046054,6107.259294936009,4912745.00439745,5563.682862593618,4431636.398046054,-0.0,0.0,-0.0,0.0,543.576432342391,481108.6063513387,1278,53000.0,1239.904194285078,5563.682862593618,2323283.0450393734,1050.0,1341900.0,496.4976010861395,1053170.022706621,3896.574580776318,94891.8048581031,0.0,0.0,1093.5389029284972,1173344.3176623392,77.07177780266359,1876.8998123116478,-5563.682862593618,-5224133.317538688,true,true,10.77383879,11445.571996906954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1279,0.9046920966550549,666.0,0.0,6434.206985987241,5384.206985987241,1050.0,6424.54601453681,9.660971450431292,6261079.211383445,4918129.211383437,1342950.0,7353747.872351975,-1092668.6609686585,0.95,0.25,22.0,1279,0.0,0.1,0.0,0.0,1050.0,1342950.0,13125.0,16786875.0,13125.0,16786875.0,true,1279,0.906020787286387,53000.0,1239.904194285078,0.0,4878.203452357025,4436514.601498411,5384.206985987241,4918129.211383437,4878.203452357025,4436514.601498411,-0.0,0.0,-0.0,0.0,506.0035336302162,481614.6098849689,1279,53000.0,1239.904194285078,4878.203452357025,2328161.2484917305,1050.0,1342950.0,525.1348313299344,1053695.1575379511,3176.0761337265612,98067.88099182966,0.0,0.0,1114.1717125434996,1174458.4893748828,62.82077475702944,1939.7205870686773,-4878.203452357025,-5229011.520991045,true,true,10.9526577,11456.524654606954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1280,0.9046904399946301,666.0,0.0,2979.0067758868954,1929.0067758868956,1050.0,2974.533792739918,4.47298314697732,6264058.218159332,4920058.218159324,1344000.0,7356722.406144715,-1092664.1879855115,0.95,0.25,22.0,1280,0.0,0.1,0.0,0.0,1050.0,1344000.0,13125.0,16800000.0,13125.0,16800000.0,true,1280,0.8613499997339032,53000.0,1239.904194285078,0.0,1661.5499858968751,4438176.151484308,1929.0067758868956,4920058.218159324,1661.5499858968751,4438176.151484308,-0.0,0.0,-0.0,0.0,267.4567899900205,481882.0666749589,1280,53000.0,1239.904194285078,1661.5499858968751,2329822.7984776273,1050.0,1344000.0,538.2081353478502,1054233.365673299,0.0,98067.88099182966,0.0,0.0,1123.341850549025,1175581.8312254318,0.0,1939.7205870686773,-1661.5499858968751,-5230673.070976942,true,true,10.9526577,11467.477312306954,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1281,0.9046904283832861,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6264079.097678076,4919029.097678067,1345050.0,7356743.254312829,-1092664.1566348828,0.95,0.25,22.0,1281,0.0,0.1,0.0,0.0,1050.0,1345050.0,13125.0,16813125.0,13125.0,16813125.0,true,1281,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4436936.247290023,-1029.1204812566145,4919029.097678067,-1239.904194285078,4436936.247290023,-0.0,0.0,-0.0,0.0,210.78371302846335,482092.8503879874,1281,53000.0,1239.904194285078,-2406.511402425898,2327416.2870752015,1050.0,1345050.0,521.8999240075651,1054755.2655973064,-3961.926115090956,94105.9548767387,0.0,0.0,1111.8791784267312,1176693.7104038585,-78.36438976923766,1861.3561972994396,-1239.904194285078,-5231912.975171227,true,true,10.72913407,11478.206446376953,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1282,0.9046904167719421,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6264099.977196819,4917999.977196811,1346100.0,7356764.102480943,-1092664.125284254,0.95,0.25,22.0,1282,0.0,0.1,0.0,0.0,1050.0,1346100.0,13125.0,16826250.0,13125.0,16826250.0,true,1282,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4435696.3430957375,-1029.1204812566145,4917999.977196811,-1239.904194285078,4435696.3430957375,-0.0,0.0,-0.0,0.0,210.78371302846335,482303.63410101586,1282,53000.0,1239.904194285078,-2377.7532132781903,2325038.5338619235,1050.0,1346100.0,490.2784972304616,1055245.544094537,-3880.236915560693,90225.71796117802,0.0,0.0,1088.9538341821433,1177782.6642380406,-76.74862913010239,1784.6075681693371,-1239.904194285078,-5233152.879365512,true,true,10.50561044,11488.712056816952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1283,0.904688828148694,666.0,0.0,2856.662324745262,1806.6623247452621,1050.0,2852.3730419753742,4.289282769887781,6266956.639521564,4919806.639521556,1347150.0,7359616.475522919,-1092659.8360014842,0.95,0.25,22.0,1283,0.0,0.1,0.0,0.0,1050.0,1347150.0,13125.0,16839375.0,13125.0,16839375.0,true,1283,0.8592915015436353,53000.0,1239.904194285078,0.0,1552.449581812671,4437248.792677551,1806.6623247452621,4919806.639521556,1552.449581812671,4437248.792677551,-0.0,0.0,-0.0,0.0,254.21274293259103,482557.8468439485,1283,53000.0,1239.904194285078,1552.449581812671,2326590.983443736,1050.0,1347150.0,474.95841975282167,1055720.5025142897,0.0,90225.71796117802,0.0,0.0,1077.4911620598493,1178860.1554001004,0.0,1784.6075681693371,-1552.449581812671,-5234705.328947325,true,true,10.50561044,11499.217667256951,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1284,0.9046872395254459,666.0,0.0,2856.662324745262,1806.6623247452621,1050.0,2852.3730419753742,4.289282769887781,6269813.30184631,4921613.301846301,1348200.0,7362468.848564894,-1092655.5467187143,0.95,0.25,22.0,1284,0.0,0.1,0.0,0.0,1050.0,1348200.0,13125.0,16852500.0,13125.0,16852500.0,true,1284,0.8592915015436353,53000.0,1239.904194285078,0.0,1552.449581812671,4438801.242259364,1806.6623247452621,4921613.301846301,1552.449581812671,4438801.242259364,-0.0,0.0,-0.0,0.0,254.21274293259103,482812.0595868811,1284,53000.0,1239.904194285078,1552.449581812671,2328143.4330255487,1050.0,1348200.0,474.95841975282167,1056195.4609340425,0.0,90225.71796117802,0.0,0.0,1077.4911620598493,1179937.6465621602,0.0,1784.6075681693371,-1552.449581812671,-5236257.778529138,true,true,10.50561044,11509.72327769695,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1285,0.9046856509021979,666.0,0.0,2856.662324745262,1806.6623247452621,1050.0,2852.3730419753742,4.289282769887781,6272669.964171055,4923419.964171046,1349250.0,7365321.221606869,-1092651.2574359444,0.95,0.25,22.0,1285,0.0,0.1,0.0,0.0,1050.0,1349250.0,13125.0,16865625.0,13125.0,16865625.0,true,1285,0.8592915015436353,53000.0,1239.904194285078,0.0,1552.449581812671,4440353.691841177,1806.6623247452621,4923419.964171046,1552.449581812671,4440353.691841177,-0.0,0.0,-0.0,0.0,254.21274293259103,483066.2723298137,1285,53000.0,1239.904194285078,1552.449581812671,2329695.8826073613,1050.0,1349250.0,474.95841975282167,1056670.4193537952,0.0,90225.71796117802,0.0,0.0,1077.4911620598493,1181015.13772422,0.0,1784.6075681693371,-1552.449581812671,-5237810.228110951,true,true,10.50561044,11520.22888813695,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1286,0.9046840622789498,666.0,0.0,2856.662324745262,1806.6623247452621,1050.0,2852.3730419753742,4.289282769887781,6275526.6264958,4925226.626495792,1350300.0,7368173.594648845,-1092646.9681531745,0.95,0.25,22.0,1286,0.0,0.1,0.0,0.0,1050.0,1350300.0,13125.0,16878750.0,13125.0,16878750.0,true,1286,0.8592915015436353,53000.0,1239.904194285078,0.0,1552.449581812671,4441906.14142299,1806.6623247452621,4925226.626495792,1552.449581812671,4441906.14142299,-0.0,0.0,-0.0,0.0,254.21274293259103,483320.4850727463,1286,53000.0,1239.904194285078,1552.449581812671,2331248.332189174,1050.0,1350300.0,474.95841975282167,1057145.377773548,0.0,90225.71796117802,0.0,0.0,1077.4911620598493,1182092.6288862799,0.0,1784.6075681693371,-1552.449581812671,-5239362.677692764,true,true,10.50561044,11530.734498576949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1287,0.9046824736557018,666.0,0.0,2856.662324745262,1806.6623247452621,1050.0,2852.3730419753742,4.289282769887781,6278383.288820545,4927033.288820537,1351350.0,7371025.96769082,-1092642.6788704046,0.95,0.25,22.0,1287,0.0,0.1,0.0,0.0,1050.0,1351350.0,13125.0,16891875.0,13125.0,16891875.0,true,1287,0.8592915015436353,53000.0,1239.904194285078,0.0,1552.449581812671,4443458.591004803,1806.6623247452621,4927033.288820537,1552.449581812671,4443458.591004803,-0.0,0.0,-0.0,0.0,254.21274293259103,483574.6978156789,1287,53000.0,1239.904194285078,1552.449581812671,2332800.7817709865,1050.0,1351350.0,474.95841975282167,1057620.3361933008,0.0,90225.71796117802,0.0,0.0,1077.4911620598493,1183170.1200483397,0.0,1784.6075681693371,-1552.449581812671,-5240915.1272745775,true,true,10.50561044,11541.240109016948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1288,0.9046785098016189,666.0,0.0,7127.8024117367795,6077.8024117367795,1050.0,7117.1000057131505,10.702406023628798,6285511.091232282,4933111.091232274,1352400.0,7378143.067696533,-1092631.976464381,0.95,0.25,22.0,1288,0.0,0.1,0.0,0.0,1050.0,1352400.0,13125.0,16905000.0,13125.0,16905000.0,true,1288,0.910891388211711,53000.0,1239.904194285078,0.0,5536.2178761034,4448994.808880907,6077.8024117367795,4933111.091232274,5536.2178761034,4448994.808880907,-0.0,0.0,-0.0,0.0,541.5845356333793,484116.2823513123,1288,53000.0,1239.904194285078,5536.2178761034,2338336.9996470897,1050.0,1352400.0,490.2784972304616,1058110.6146905313,3880.236915560693,94105.9548767387,0.0,0.0,1088.9538341821433,1184259.0738825218,76.74862913010239,1861.3561972994396,-5536.2178761034,-5246451.345150681,true,true,10.72913407,11551.969243086947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1289,0.9046763930947797,666.0,0.0,3806.2622382494224,2756.2622382494224,1050.0,3800.5471297835825,5.715108465839974,6289317.353470531,4935867.353470523,1353450.0,7381943.614826317,-1092626.261355915,0.95,0.25,22.0,1289,0.0,0.1,0.0,0.0,1050.0,1353450.0,13125.0,16918125.0,13125.0,16918125.0,true,1289,0.8755319958199566,53000.0,1239.904194285078,0.0,2413.1957784576975,4451408.004659364,2756.2622382494224,4935867.353470523,2413.1957784576975,4451408.004659364,-0.0,0.0,-0.0,0.0,343.0664597917248,484459.348811104,1289,53000.0,1239.904194285078,2413.1957784576975,2340750.1954255477,1050.0,1353450.0,509.0931416598888,1058619.7078321911,785.8499813643947,94891.8048581031,0.0,0.0,1102.7090404212058,1185361.7829229431,15.543615012208226,1876.8998123116478,-2413.1957784576975,-5248864.540929139,true,true,10.77383879,11562.743081876948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1290,0.9046728149572054,666.0,0.0,6434.206985987241,5384.206985987241,1050.0,6424.54601453681,9.660971450431292,6295751.560456518,4941251.56045651,1354500.0,7388368.160840854,-1092616.6003844647,0.95,0.25,22.0,1290,0.0,0.1,0.0,0.0,1050.0,1354500.0,13125.0,16931250.0,13125.0,16931250.0,true,1290,0.906020787286387,53000.0,1239.904194285078,0.0,4878.203452357025,4456286.208111721,5384.206985987241,4941251.56045651,4878.203452357025,4456286.208111721,-0.0,0.0,-0.0,0.0,506.0035336302162,484965.35234473424,1290,53000.0,1239.904194285078,4878.203452357025,2345628.3988779048,1050.0,1354500.0,525.1348313299344,1059144.8426635212,3176.0761337265612,98067.88099182966,0.0,0.0,1114.1717125434996,1186475.9546354867,62.82077475702944,1939.7205870686773,-4878.203452357025,-5253742.744381496,true,true,10.9526577,11573.695739576948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1291,0.9046701643295906,666.0,0.0,4766.358576992763,3716.3585769927627,1050.0,4759.201882432714,7.156694560049194,6300517.919033511,4944967.919033502,1355550.0,7393127.362723287,-1092609.4436899046,0.95,0.25,22.0,1291,0.0,0.1,0.0,0.0,1050.0,1355550.0,13125.0,16944375.0,13125.0,16944375.0,true,1291,0.8912471117741695,53000.0,1239.904194285078,0.0,3312.1938480619624,4459598.401959783,3716.3585769927627,4944967.919033502,3312.1938480619624,4459598.401959783,-0.0,0.0,-0.0,0.0,404.16472893080027,485369.51707366505,1291,53000.0,1239.904194285078,3312.1938480619624,2348940.5927259666,1050.0,1355550.0,544.8253747968071,1059689.668038318,1607.643385797307,99675.52437762696,0.0,0.0,1127.926919295379,1187603.8815547822,31.798168172469662,1971.518755241147,-3312.1938480619624,-5257054.938229558,true,true,11.04206715,11584.737806726947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1292,0.9046669929135545,666.0,0.0,5702.840316243484,4652.840316243484,1050.0,5694.277492945821,8.56282329766289,6306220.759349754,4949620.759349746,1356600.0,7398821.640216233,-1092600.880866607,0.95,0.25,22.0,1292,0.0,0.1,0.0,0.0,1050.0,1356600.0,13125.0,16957500.0,13125.0,16957500.0,true,1292,0.8994825339403244,53000.0,1239.904194285078,0.0,4185.14859767439,4463783.550557458,4652.840316243484,4949620.759349746,4185.14859767439,4463783.550557458,-0.0,0.0,-0.0,0.0,467.6917185690945,485837.20879223413,1292,53000.0,1239.904194285078,4185.14859767439,2353125.741323641,1050.0,1356600.0,561.6052820545196,1060251.2733203724,2435.971746093404,102111.49612372037,0.0,0.0,1139.389590904856,1188743.271145687,48.18197862160998,2019.7007338627568,-4185.14859767439,-5261240.0868272325,true,true,11.17618132,11595.913988046947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1293,0.9046632858718336,666.0,0.0,6666.002422338203,5616.002422338203,1050.0,6655.99340969205,10.009012646153458,6312886.761772092,4955236.761772084,1357650.0,7405477.6336259255,-1092590.871853961,0.95,0.25,22.0,1293,0.0,0.1,0.0,0.0,1050.0,1357650.0,13125.0,16970625.0,13125.0,16970625.0,true,1293,0.9081128685822093,53000.0,1239.904194285078,0.0,5099.964069714182,4468883.514627172,5616.002422338203,4955236.761772084,5099.964069714182,4468883.514627172,-0.0,0.0,-0.0,0.0,516.0383526240212,486353.2471448582,1293,53000.0,1239.904194285078,5099.964069714182,2358225.7053933553,1050.0,1357650.0,585.6708738198415,1060836.9441941923,3293.7083981734545,105405.20452189383,0.0,0.0,1155.437331260687,1189898.7084769476,65.14746646019981,2084.8482003229565,-5099.964069714182,-5266340.050896946,true,true,11.35500022,11607.268988266947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1294,0.9046605371174562,666.0,0.0,4942.810121611006,3892.810121611006,1050.0,4935.388484791771,7.421636819235745,6317829.571893703,4959129.571893695,1358700.0,7410413.022110717,-1092583.4502171418,0.95,0.25,22.0,1294,0.0,0.1,0.0,0.0,1050.0,1358700.0,13125.0,16983750.0,13125.0,16983750.0,true,1294,0.892787276866328,53000.0,1239.904194285078,0.0,3475.451347830769,4472358.965975002,3892.810121611006,4959129.571893695,3475.451347830769,4472358.965975002,-0.0,0.0,-0.0,0.0,417.3587737802368,486770.6059186384,1294,53000.0,1239.904194285078,3475.451347830769,2361701.156741186,1050.0,1358700.0,606.8376884679908,1061443.7818826602,1666.4596060968852,107071.66412799072,0.0,0.0,1169.1925374997495,1191067.9010144474,32.9615157661434,2117.8097160890998,-3475.451347830769,-5269815.502244777,true,true,11.44440967,11618.713397936948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1295,0.9046582795061239,666.0,0.0,4059.636697841186,3009.636697841186,1050.0,4053.541147243827,6.095550597359138,6321889.208591544,4962139.208591536,1359750.0,7414466.5632579615,-1092577.3546665444,0.95,0.25,22.0,1295,0.0,0.1,0.0,0.0,1050.0,1359750.0,13125.0,16996875.0,13125.0,16996875.0,true,1295,0.879969600022897,53000.0,1239.904194285078,0.0,2648.3888012135412,4475007.354776216,3009.636697841186,4962139.208591536,2648.3888012135412,4475007.354776216,-0.0,0.0,-0.0,0.0,361.2478966276449,487131.85381526605,1295,53000.0,1239.904194285078,2648.3888012135412,2364349.5455423994,1050.0,1359750.0,617.6097062385463,1062061.3915888988,838.1312487244746,107909.79537671519,0.0,0.0,1176.0701408756895,1192243.971155323,16.577705374830778,2134.3874214639304,-2648.3888012135412,-5272463.89104599,true,true,11.4891144,11630.202512336948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1296,0.9046549804726494,666.0,0.0,5932.321993828461,4882.321993828461,1050.0,5923.414603447337,8.907390381123815,6327821.530585373,4967021.530585364,1360800.0,7420389.977861409,-1092568.4472761631,0.95,0.25,22.0,1296,0.0,0.1,0.0,0.0,1050.0,1360800.0,13125.0,17010000.0,13125.0,17010000.0,true,1296,0.9015238660290065,53000.0,1239.904194285078,0.0,4401.529799074681,4479408.884575291,4882.321993828461,4967021.530585364,4401.529799074681,4479408.884575291,-0.0,0.0,-0.0,0.0,480.79219475377977,487612.6460100198,1296,53000.0,1239.904194285078,4401.529799074681,2368751.0753414743,1050.0,1360800.0,632.1696576756791,1062693.5612465746,2533.998967529376,110443.79434424457,0.0,0.0,1185.2402788812149,1193429.2114342044,50.120894988411116,2184.5083164523417,-4401.529799074681,-5276865.420845065,true,true,11.62322858,11641.825740916947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1297,0.9046521649858361,666.0,0.0,5062.808387637657,4012.8083876376572,1050.0,5055.206573241804,7.601814395852338,6332884.338973011,4971034.3389730025,1361850.0,7425445.1844346505,-1092560.8454617674,0.95,0.25,22.0,1297,0.0,0.1,0.0,0.0,1050.0,1361850.0,13125.0,17023125.0,13125.0,17023125.0,true,1297,0.8938377315701089,53000.0,1239.904194285078,0.0,3586.79954643155,4482995.684121722,4012.8083876376572,4971034.3389730025,3586.79954643155,4482995.684121722,-0.0,0.0,-0.0,0.0,426.00884120610726,488038.6548512259,1297,53000.0,1239.904194285078,3586.79954643155,2372337.874887906,1050.0,1361850.0,650.6890929818102,1063344.2503395565,1705.6704215790846,112149.46476582365,0.0,0.0,1196.7029510035086,1194625.914385208,33.73708086714682,2218.2453973194883,-3586.79954643155,-5280452.220391497,true,true,11.71263803,11653.538378946947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1298,0.9046461645508296,666.0,0.0,10789.982228813366,9739.982228813366,1050.0,10773.781054295629,16.201174517737787,6343674.321201825,4980774.321201816,1362900.0,7436218.965488946,-1092544.6442872498,0.95,0.25,22.0,1298,0.0,0.1,0.0,0.0,1050.0,1362900.0,13125.0,17036250.0,13125.0,17036250.0,true,1298,0.9239598197137727,53000.0,1239.904194285078,0.0,8999.352224149747,4491995.036345872,9739.982228813366,4980774.321201816,8999.352224149747,4491995.036345872,-0.0,0.0,-0.0,0.0,740.6300046636188,488779.2848558895,1298,53000.0,1239.904194285078,8999.352224149747,2381337.2271120558,1050.0,1362900.0,688.8059893216006,1064033.056328878,6953.384399717322,119102.84916554097,0.0,0.0,1219.6282947352795,1195845.5426799431,137.53354037554428,2355.7789376950327,-8999.352224149747,-5289451.572615647,true,true,12.07027583,11665.608654776946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1299,0.9046399823186524,666.0,0.0,11116.88990106494,10066.88990106494,1050.0,11100.197874186464,16.692026878475886,6354791.21110289,4990841.2111028815,1363950.0,7447319.163363133,-1092527.9522603713,0.95,0.25,22.0,1299,0.0,0.1,0.0,0.0,1050.0,1363950.0,13125.0,17049375.0,13125.0,17049375.0,true,1299,0.9251446385621341,53000.0,1239.904194285078,0.0,9313.329218965522,4501308.365564838,10066.88990106494,4990841.2111028815,9313.329218965522,4501308.365564838,-0.0,0.0,-0.0,0.0,753.560682099418,489532.84553798893,1299,53000.0,1239.904194285078,9313.329218965522,2390650.5563310212,1050.0,1363950.0,752.8417456736288,1064785.8980745517,7162.5087411590985,126265.35790670007,0.0,0.0,1256.3088447061127,1197101.8515246492,141.66988742668153,2497.4488251217144,-9313.329218965522,-5298764.901834613,true,true,12.42791363,11678.036568406946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1300,0.9046352878828454,666.0,0.0,8441.534468152695,7391.534468152695,1050.0,8428.859491473788,12.67497667890795,6363232.745571042,4998232.745571034,1365000.0,7455748.022854607,-1092515.2772836925,0.95,0.25,22.0,1300,0.0,0.1,0.0,0.0,1050.0,1365000.0,13125.0,17062500.0,13125.0,17062500.0,true,1300,0.9155366828224154,53000.0,1239.904194285078,0.0,6767.220947940064,4508075.586512778,7391.534468152695,4998232.745571034,6767.220947940064,4508075.586512778,-0.0,0.0,-0.0,0.0,624.3135202126305,490157.1590582016,1300,53000.0,1239.904194285078,6767.220947940064,2397417.777278961,1050.0,1365000.0,807.7009644136879,1065593.5990389653,4582.7640212882825,130848.12192798835,0.0,0.0,1286.1117918138234,1198387.963316463,90.64417042427073,2588.092995545985,-6767.220947940064,-5305532.122782553,true,true,12.65143726,11690.688005666945,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1301,0.904629370028779,666.0,0.0,10641.485182287297,9591.485182287297,1050.0,10625.506976307886,15.978205979410356,6373874.23075333,5007824.230753321,1366050.0,7466373.529830915,-1092499.2990777132,0.95,0.25,22.0,1301,0.0,0.1,0.0,0.0,1050.0,1366050.0,13125.0,17075625.0,13125.0,17075625.0,true,1301,0.9234226203003774,53000.0,1239.904194285078,0.0,8856.994379599979,4516932.5808923775,9591.485182287297,5007824.230753321,8856.994379599979,4516932.5808923775,-0.0,0.0,-0.0,0.0,734.4908026873181,490891.6498608889,1301,53000.0,1239.904194285078,8856.994379599979,2406274.771658561,1050.0,1366050.0,860.6486332178192,1066454.2476721832,6553.107230653582,137401.22915864195,0.0,0.0,1313.6222042919483,1199701.5855207548,129.61631143663047,2717.7093069826155,-8856.994379599979,-5314389.117162152,true,true,12.96437033,11703.652375996946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1302,0.9046267887416064,666.0,0.0,4641.670593712548,3591.6705937125485,1050.0,4634.701118346613,6.969475365934756,6378515.901347042,5011415.901347034,1367100.0,7471008.230949261,-1092492.3296023472,0.95,0.25,22.0,1302,0.0,0.1,0.0,0.0,1050.0,1367100.0,13125.0,17088750.0,13125.0,17088750.0,true,1302,0.8901619675713912,53000.0,1239.904194285078,0.0,3197.168562567469,4520129.749454945,3591.6705937125485,5011415.901347034,3197.168562567469,4520129.749454945,-0.0,0.0,-0.0,0.0,394.5020311450794,491286.151892034,1302,53000.0,1239.904194285078,3197.168562567469,2409471.9402211285,1050.0,1367100.0,897.20237501206,1067351.4500471952,949.2285682720682,138350.457726914,0.0,0.0,1331.962479277365,1201033.548000032,18.77514000597632,2736.484446988592,-3197.168562567469,-5317586.28572472,true,true,13.00907506,11716.661451056945,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1303,0.9046253833789007,666.0,0.0,2527.1232173010185,1477.1232173010183,1050.0,2523.328737995762,3.7944793052567847,6381043.0245643435,5012893.024564335,1368150.0,7473531.559687257,-1092488.535123042,0.95,0.25,22.0,1303,0.0,0.1,0.0,0.0,1050.0,1368150.0,13125.0,17101875.0,13125.0,17101875.0,true,1303,0.8537954933209694,53000.0,1239.904194285078,0.0,1261.1611460113804,4521390.9106009565,1477.1232173010183,5012893.024564335,1261.1611460113804,4521390.9106009565,-0.0,0.0,-0.0,0.0,215.96207128963783,491502.11396332365,1303,53000.0,1239.904194285078,1261.1611460113804,2410733.1013671397,1050.0,1368150.0,897.20237501206,1068248.6524222072,-949.2285682720682,137401.22915864195,0.0,0.0,1331.962479277365,1202365.5104793094,-18.77514000597632,2717.7093069826155,-1261.1611460113804,-5318847.446870731,true,true,12.96437033,11729.625821386946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1304,0.9046253717675568,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6381063.904083087,5011863.904083079,1369200.0,7473552.407855371,-1092488.5037724134,0.95,0.25,22.0,1304,0.0,0.1,0.0,0.0,1050.0,1369200.0,13125.0,17115000.0,13125.0,17115000.0,true,1304,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4520151.006406671,-1029.1204812566145,5011863.904083079,-1239.904194285078,4520151.006406671,-0.0,0.0,-0.0,0.0,210.78371302846335,491712.8976763521,1304,53000.0,1239.904194285078,-7342.819250148561,2403390.282116991,1050.0,1369200.0,847.2012430147529,1069095.853665222,-9312.568388301832,128088.66077034011,0.0,0.0,1306.7446009160085,1203672.2550802254,-184.19670577749122,2533.512601205124,-1239.904194285078,-5320087.351065016,true,true,12.51732308,11742.143144466945,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1305,0.9046253601562128,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6381084.783601831,5010834.783601822,1370250.0,7473573.256023485,-1092488.4724217847,0.95,0.25,22.0,1305,0.0,0.1,0.0,0.0,1050.0,1370250.0,13125.0,17128125.0,13125.0,17128125.0,true,1305,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4518911.102212386,-1029.1204812566145,5010834.783601822,-1239.904194285078,4518911.102212386,-0.0,0.0,-0.0,0.0,210.78371302846335,491923.6813893806,1305,53000.0,1239.904194285078,-27097.397890103464,2376292.8842268875,1050.0,1370250.0,669.566725960658,1069765.4203911826,-28413.13639271313,99675.52437762698,0.0,0.0,1208.1656226129853,1204880.4207028383,-561.9938459639777,1971.5187552411464,-1239.904194285078,-5321327.2552593015,true,true,11.04206715,11753.185211616945,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1306,0.9046253485448688,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6381105.663120574,5009805.663120566,1371300.0,7473594.104191599,-1092488.441071156,0.95,0.25,22.0,1306,0.0,0.1,0.0,0.0,1050.0,1371300.0,13125.0,17141250.0,13125.0,17141250.0,true,1306,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4517671.198018101,-1029.1204812566145,5009805.663120566,-1239.904194285078,4517671.198018101,-0.0,0.0,-0.0,0.0,210.78371302846335,492134.46510240907,1306,53000.0,1239.904194285078,-23841.315370198467,2352451.568856689,1050.0,1371300.0,448.19271579298805,1070213.6131069756,-24854.755121381717,74820.76925624526,0.0,0.0,1056.8583530602275,1205937.2790558985,-491.6113176699679,1479.9074375711784,-1239.904194285078,-5322567.159453587,true,true,9.566811212,11762.752022828945,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1307,0.9046253369335248,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6381126.542639318,5008776.54263931,1372350.0,7473614.952359714,-1092488.4097205272,0.95,0.25,22.0,1307,0.0,0.1,0.0,0.0,1050.0,1372350.0,13125.0,17154375.0,13125.0,17154375.0,true,1307,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4516431.293823816,-1029.1204812566145,5008776.54263931,-1239.904194285078,4516431.293823816,-0.0,0.0,-0.0,0.0,210.78371302846335,492345.24881543755,1307,53000.0,1239.904194285078,-20530.113550144702,2331921.4553065444,1050.0,1372350.0,281.93779859144104,1070495.550905567,-21296.373646634678,53524.39560961058,0.0,0.0,905.551083251061,1206842.8301391497,-421.2287853525237,1058.6786522186549,-1239.904194285078,-5323807.063647872,true,true,8.091555277,11770.843578105945,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1308,0.9046253253221808,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6381147.4221580615,5007747.422158053,1373400.0,7473635.800527828,-1092488.3783698985,0.95,0.25,22.0,1308,0.0,0.1,0.0,0.0,1050.0,1373400.0,13125.0,17167500.0,13125.0,17167500.0,true,1308,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4515191.389629531,-1029.1204812566145,5007747.422158053,-1239.904194285078,4515191.389629531,-0.0,0.0,-0.0,0.0,210.78371302846335,492556.032528466,1308,53000.0,1239.904194285078,-17171.683917368562,2314749.7713891757,1050.0,1373400.0,162.91073810813515,1070658.461643675,-17737.992215231327,35786.40339437926,0.0,0.0,754.2438136470213,1207597.0739527966,-350.84625389239073,707.8323983262642,-1239.904194285078,-5325046.967842157,true,true,6.616299343,11777.459877448946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1309,0.9046253137108368,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6381168.301676805,5006718.301676797,1374450.0,7473656.648695942,-1092488.3470192698,0.95,0.25,22.0,1309,0.0,0.1,0.0,0.0,1050.0,1374450.0,13125.0,17180625.0,13125.0,17180625.0,true,1309,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4513951.485435246,-1029.1204812566145,5006718.301676797,-1239.904194285078,4513951.485435246,-0.0,0.0,-0.0,0.0,210.78371302846335,492766.8162414945,1309,53000.0,1239.904194285078,-13773.917689433143,2300975.8536997424,1050.0,1374450.0,83.22029730708965,1070741.6819409821,-14179.610807875315,21606.792586503943,0.0,0.0,602.9365440429816,1208200.0104968396,-280.46372290789935,427.36867541836483,-1239.904194285078,-5326286.872036442,true,true,5.141043408,11782.600920856947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1310,0.9046253020994928,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6381189.181195549,5005689.18119554,1375500.0,7473677.496864056,-1092488.3156686411,0.95,0.25,22.0,1310,0.0,0.1,0.0,0.0,1050.0,1375500.0,13125.0,17193750.0,13125.0,17193750.0,true,1310,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4512711.58124096,-1029.1204812566145,5005689.18119554,-1239.904194285078,4512711.58124096,-0.0,0.0,-0.0,0.0,210.78371302846335,492977.599954523,1310,53000.0,1239.904194285078,-10344.706058986996,2290631.1476407554,1050.0,1375500.0,34.97523941329426,1070776.6571803954,-10621.229381296049,10985.563205207894,0.0,0.0,451.629274438942,1208651.6397712785,-210.08119154318368,217.28748387518115,-1239.904194285078,-5327526.776230727,true,true,3.665787474,11786.266708330946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1311,0.9046252904881488,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6381210.060714292,5004660.060714284,1376550.0,7473698.34503217,-1092488.2843180124,0.95,0.25,22.0,1311,0.0,0.1,0.0,0.0,1050.0,1376550.0,13125.0,17206875.0,13125.0,17206875.0,true,1311,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4511471.677046675,-1029.1204812566145,5004660.060714284,-1239.904194285078,4511471.677046675,-0.0,0.0,-0.0,0.0,210.78371302846335,493188.38366755145,1311,53000.0,1239.904194285078,-6891.940297092585,2283739.2073436626,1050.0,1376550.0,10.28432765173875,1070786.9415080473,-7062.847969115951,3922.7152360919436,0.0,0.0,300.3220048349023,1208951.9617761134,-139.6986604632748,77.58882341190636,-1239.904194285078,-5328766.6804250125,true,true,2.190531539,11788.457239869946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1312,0.9046252788768048,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6381230.940233036,5003630.940233028,1377600.0,7473719.193200285,-1092488.2529673837,0.95,0.25,22.0,1312,0.0,0.1,0.0,0.0,1050.0,1377600.0,13125.0,17220000.0,13125.0,17220000.0,true,1312,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4510231.77285239,-1029.1204812566145,5003630.940233028,-1239.904194285078,4510231.77285239,-0.0,0.0,-0.0,0.0,210.78371302846335,493399.1673805799,1312,53000.0,1239.904194285078,-3423.5116160764737,2280315.6957275863,1050.0,1377600.0,1.2563252474128799,1070788.1978332947,-3504.4665473607724,418.2486887311711,0.0,0.0,149.0147352308626,1209100.9765113443,-69.31612919397672,8.27269421792964,-1239.904194285078,-5330006.584619298,true,true,0.715275605,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1313,0.9046248748907847,666.0,0.0,726.4476613356701,-323.55233866432985,1050.0,725.3568990814123,1.0907622542577629,6381957.3878943715,5003307.387894363,1378650.0,7474444.550099366,-1092487.1622051294,0.95,0.25,22.0,1313,0.0,0.1,0.0,0.0,1050.0,1378650.0,13125.0,17233125.0,13125.0,17233125.0,true,1313,0.83,53000.0,1239.904194285078,0.0,-389.82209477630107,4509841.950757613,-323.55233866432985,5003307.387894363,-389.82209477630107,4509841.950757613,-0.0,0.0,-0.0,0.0,66.26975611197122,493465.4371366919,1313,53000.0,1239.904194285078,-389.82209477630107,2279925.87363281,1050.0,1378650.0,0.01873794527219333,1070788.21657124,-418.24868873088485,2.8626345738302916e-10,0.0,0.0,36.6805502272418,1209137.6570615715,-8.272694217930228,-5.879741138414829e-13,-389.82209477630107,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1314,0.9046242909735341,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6383007.3878943715,5003307.387894363,1379700.0,7475492.97352279,-1092485.5856285528,0.95,0.25,22.0,1314,0.0,0.1,0.0,0.0,1050.0,1379700.0,13125.0,17246250.0,13125.0,17246250.0,true,1314,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1314,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1379700.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1315,0.9046237070562836,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6384057.3878943715,5003307.387894363,1380750.0,7476541.396946213,-1092484.0090519763,0.95,0.25,22.0,1315,0.0,0.1,0.0,0.0,1050.0,1380750.0,13125.0,17259375.0,13125.0,17259375.0,true,1315,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1315,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1380750.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1316,0.904623123139033,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6385107.3878943715,5003307.387894363,1381800.0,7477589.820369637,-1092482.4324753997,0.95,0.25,22.0,1316,0.0,0.1,0.0,0.0,1050.0,1381800.0,13125.0,17272500.0,13125.0,17272500.0,true,1316,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1316,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1381800.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1317,0.9046225392217825,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6386157.3878943715,5003307.387894363,1382850.0,7478638.24379306,-1092480.8558988231,0.95,0.25,22.0,1317,0.0,0.1,0.0,0.0,1050.0,1382850.0,13125.0,17285625.0,13125.0,17285625.0,true,1317,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1317,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1382850.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1318,0.9046219553045319,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6387207.3878943715,5003307.387894363,1383900.0,7479686.6672164835,-1092479.2793222466,0.95,0.25,22.0,1318,0.0,0.1,0.0,0.0,1050.0,1383900.0,13125.0,17298750.0,13125.0,17298750.0,true,1318,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1318,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1383900.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1319,0.9046213713872814,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6388257.3878943715,5003307.387894363,1384950.0,7480735.090639907,-1092477.70274567,0.95,0.25,22.0,1319,0.0,0.1,0.0,0.0,1050.0,1384950.0,13125.0,17311875.0,13125.0,17311875.0,true,1319,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1319,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1384950.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1320,0.9046207874700308,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6389307.3878943715,5003307.387894363,1386000.0,7481783.51406333,-1092476.1261690934,0.95,0.25,22.0,1320,0.0,0.1,0.0,0.0,1050.0,1386000.0,13125.0,17325000.0,13125.0,17325000.0,true,1320,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1320,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1386000.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1321,0.9046202035527803,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6390357.3878943715,5003307.387894363,1387050.0,7482831.937486754,-1092474.5495925169,0.95,0.25,22.0,1321,0.0,0.1,0.0,0.0,1050.0,1387050.0,13125.0,17338125.0,13125.0,17338125.0,true,1321,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1321,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1387050.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1322,0.9046196196355297,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6391407.3878943715,5003307.387894363,1388100.0,7483880.360910177,-1092472.9730159403,0.95,0.25,22.0,1322,0.0,0.1,0.0,0.0,1050.0,1388100.0,13125.0,17351250.0,13125.0,17351250.0,true,1322,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1322,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1388100.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1323,0.9046190357182792,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6392457.3878943715,5003307.387894363,1389150.0,7484928.784333601,-1092471.3964393637,0.95,0.25,22.0,1323,0.0,0.1,0.0,0.0,1050.0,1389150.0,13125.0,17364375.0,13125.0,17364375.0,true,1323,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1323,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1389150.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1324,0.9046184518010286,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6393507.3878943715,5003307.387894363,1390200.0,7485977.207757024,-1092469.8198627871,0.95,0.25,22.0,1324,0.0,0.1,0.0,0.0,1050.0,1390200.0,13125.0,17377500.0,13125.0,17377500.0,true,1324,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1324,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1390200.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1325,0.9046178678837781,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6394557.3878943715,5003307.387894363,1391250.0,7487025.6311804475,-1092468.2432862106,0.95,0.25,22.0,1325,0.0,0.1,0.0,0.0,1050.0,1391250.0,13125.0,17390625.0,13125.0,17390625.0,true,1325,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1325,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1391250.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1326,0.9046172839665275,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6395607.3878943715,5003307.387894363,1392300.0,7488074.054603871,-1092466.666709634,0.95,0.25,22.0,1326,0.0,0.1,0.0,0.0,1050.0,1392300.0,13125.0,17403750.0,13125.0,17403750.0,true,1326,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1326,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1392300.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1327,0.904616700049277,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6396657.3878943715,5003307.387894363,1393350.0,7489122.478027294,-1092465.0901330574,0.95,0.25,22.0,1327,0.0,0.1,0.0,0.0,1050.0,1393350.0,13125.0,17416875.0,13125.0,17416875.0,true,1327,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1327,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1393350.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1328,0.9046161161320264,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6397707.3878943715,5003307.387894363,1394400.0,7490170.901450718,-1092463.5135564809,0.95,0.25,22.0,1328,0.0,0.1,0.0,0.0,1050.0,1394400.0,13125.0,17430000.0,13125.0,17430000.0,true,1328,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1328,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1394400.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1329,0.9046155322147759,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6398757.3878943715,5003307.387894363,1395450.0,7491219.324874141,-1092461.9369799043,0.95,0.25,22.0,1329,0.0,0.1,0.0,0.0,1050.0,1395450.0,13125.0,17443125.0,13125.0,17443125.0,true,1329,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1329,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1395450.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1330,0.9046149482975253,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6399807.3878943715,5003307.387894363,1396500.0,7492267.748297565,-1092460.3604033277,0.95,0.25,22.0,1330,0.0,0.1,0.0,0.0,1050.0,1396500.0,13125.0,17456250.0,13125.0,17456250.0,true,1330,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1330,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1396500.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1331,0.9046143643802748,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6400857.3878943715,5003307.387894363,1397550.0,7493316.171720988,-1092458.7838267512,0.95,0.25,22.0,1331,0.0,0.1,0.0,0.0,1050.0,1397550.0,13125.0,17469375.0,13125.0,17469375.0,true,1331,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1331,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1397550.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1332,0.9046137804630242,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6401907.3878943715,5003307.387894363,1398600.0,7494364.595144412,-1092457.2072501746,0.95,0.25,22.0,1332,0.0,0.1,0.0,0.0,1050.0,1398600.0,13125.0,17482500.0,13125.0,17482500.0,true,1332,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1332,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1398600.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1333,0.9046131965457737,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6402957.3878943715,5003307.387894363,1399650.0,7495413.018567835,-1092455.630673598,0.95,0.25,22.0,1333,0.0,0.1,0.0,0.0,1050.0,1399650.0,13125.0,17495625.0,13125.0,17495625.0,true,1333,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1333,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1399650.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1334,0.9046126126285231,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6404007.3878943715,5003307.387894363,1400700.0,7496461.441991258,-1092454.0540970215,0.95,0.25,22.0,1334,0.0,0.1,0.0,0.0,1050.0,1400700.0,13125.0,17508750.0,13125.0,17508750.0,true,1334,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1334,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1400700.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1335,0.9046120287112726,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6405057.3878943715,5003307.387894363,1401750.0,7497509.865414682,-1092452.477520445,0.95,0.25,22.0,1335,0.0,0.1,0.0,0.0,1050.0,1401750.0,13125.0,17521875.0,13125.0,17521875.0,true,1335,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1335,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1401750.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1336,0.904611444794022,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6406107.3878943715,5003307.387894363,1402800.0,7498558.288838105,-1092450.9009438683,0.95,0.25,22.0,1336,0.0,0.1,0.0,0.0,1050.0,1402800.0,13125.0,17535000.0,13125.0,17535000.0,true,1336,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1336,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1402800.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1337,0.9046108608767714,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6407157.3878943715,5003307.387894363,1403850.0,7499606.712261529,-1092449.3243672918,0.95,0.25,22.0,1337,0.0,0.1,0.0,0.0,1050.0,1403850.0,13125.0,17548125.0,13125.0,17548125.0,true,1337,0.83,53000.0,1239.904194285078,0.0,0.0,4509841.950757613,0.0,5003307.387894363,0.0,4509841.950757613,-0.0,0.0,-0.0,0.0,0.0,493465.4371366919,1337,53000.0,1239.904194285078,0.0,2279925.87363281,1050.0,1403850.0,0.0,1070788.21657124,0.0,2.8626345738302916e-10,0.0,0.0,0.0,1209137.6570615715,0.0,-5.879741138414829e-13,0.0,-5330396.406714074,true,true,0.0,11789.172515474946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1338,0.9046100052667907,666.0,0.0,1538.557867471076,488.55786747107595,1050.0,1536.247720522921,2.3101469481547685,6408695.945761843,5003795.945761834,1404900.0,7501142.9599820515,-1092447.0142203437,0.95,0.25,22.0,1338,0.0,0.1,0.0,0.0,1050.0,1404900.0,13125.0,17561250.0,13125.0,17561250.0,true,1338,0.8377221842237275,53000.0,1239.904194285078,0.0,409.2757638575561,4510251.226521471,488.55786747107595,5003795.945761834,409.2757638575561,4510251.226521471,-0.0,0.0,-0.0,0.0,79.28210361351984,493544.7192403054,1338,53000.0,1239.904194285078,409.2757638575561,2280335.1493966677,1050.0,1404900.0,0.015439591088657499,1070788.2320108311,367.6013858261157,367.60138582640195,0.0,0.0,34.38801580278302,1209172.0450773742,7.270922637568773,7.2709226375681855,-409.2757638575561,-5330805.6824779315,true,true,0.670570879,11789.843086353945,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1339,0.9046071762581493,666.0,0.0,5087.1233388487835,4037.123338848783,1050.0,5079.485015517179,7.63832333160478,6413783.069100691,5007833.069100683,1405950.0,7506222.444997569,-1092439.375897012,0.95,0.25,22.0,1339,0.0,0.1,0.0,0.0,1050.0,1405950.0,13125.0,17574375.0,13125.0,17574375.0,true,1339,0.8940508838618594,53000.0,1239.904194285078,0.0,3609.3936893570954,4513860.620210827,4037.123338848783,5007833.069100683,3609.3936893570954,4513860.620210827,-0.0,0.0,-0.0,0.0,427.7296494916877,493972.4488897971,1339,53000.0,1239.904194285078,3609.3936893570954,2283944.543086025,1050.0,1405950.0,1.1438884260386075,1070789.3758992571,3396.636809243421,3764.2381950698227,0.0,0.0,144.42966643322674,1209316.4747438075,67.1833252544088,74.45424789197699,-3609.3936893570954,-5334415.076167288,true,true,2.145826814,11791.988913167945,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1340,0.9046021102466854,666.0,0.0,9109.701814624641,8059.701814624641,1050.0,9096.023583671751,13.678230952889852,6422892.7709153155,5015892.770915307,1407000.0,7515318.468581241,-1092425.697666059,0.95,0.25,22.0,1340,0.0,0.1,0.0,0.0,1050.0,1407000.0,13125.0,17587500.0,13125.0,17587500.0,true,1340,0.9179175149467629,53000.0,1239.904194285078,0.0,7398.141460892166,4521258.761671719,8059.701814624641,5015892.770915307,7398.141460892166,4521258.761671719,-0.0,0.0,-0.0,0.0,661.560353732475,494634.0092435296,1340,53000.0,1239.904194285078,7398.141460892166,2291342.684546917,1050.0,1407000.0,9.820444562769723,1070799.1963438198,6955.018223908657,10719.256418978479,0.0,0.0,295.73693603726645,1209612.2116798447,137.5658563834723,212.02010427544928,-7398.141460892166,-5341813.21762818,true,true,3.621082748,11795.609995915946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1341,0.9045948317778273,666.0,0.0,13088.142700619637,12038.142700619637,1050.0,13068.49083470279,19.6518659168463,6435980.9136159355,5027930.913615927,1408050.0,7528386.959415943,-1092406.0458001422,0.95,0.25,22.0,1341,0.0,0.1,0.0,0.0,1050.0,1408050.0,13125.0,17600625.0,13125.0,17600625.0,true,1341,0.9305682198330298,53000.0,1239.904194285078,0.0,11202.313023011598,4532461.07469473,12038.142700619637,5027930.913615927,11202.313023011598,4532461.07469473,-0.0,0.0,-0.0,0.0,835.8296776080388,495469.8389211376,1341,53000.0,1239.904194285078,11202.313023011598,2302544.997569929,1050.0,1408050.0,33.92078166847431,1070833.1171254884,10513.399648002785,21232.656066981264,0.0,0.0,447.0442056413061,1210059.255885486,207.94838769903322,419.9684919744825,-11202.313023011598,-5353015.530651191,true,true,5.096338683,11800.706334598946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1342,0.9045894075144152,666.0,0.0,9753.910467722515,8703.910467722515,1050.0,9739.264956509718,14.645511212796569,6445734.824083658,5036634.82408365,1409100.0,7538126.224372453,-1092391.4002889295,0.95,0.25,22.0,1342,0.0,0.1,0.0,0.0,1050.0,1409100.0,13125.0,17613750.0,13125.0,17613750.0,true,1342,0.9202247308197712,53000.0,1239.904194285078,0.0,8009.553667239341,4540470.628361969,8703.910467722515,5036634.82408365,8009.553667239341,4540470.628361969,-0.0,0.0,-0.0,0.0,694.3568004831741,496164.1957216208,1342,53000.0,1239.904194285078,8009.553667239341,2310554.5512371683,1050.0,1409100.0,68.10317177528871,1070901.2202972637,7234.395278408309,28467.051345389573,0.0,0.0,563.9634594425628,1210623.2193449286,143.09175761318014,563.0602495876626,-8009.553667239341,-5361025.08431843,true,true,5.901023738,11806.607358336947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1343,0.9045829956413627,666.0,0.0,11529.830122961517,10479.830122961517,1050.0,11512.518065719833,17.31205724168396,6457264.65420662,5047114.654206611,1410150.0,7549638.742438173,-1092374.0882316877,0.95,0.25,22.0,1343,0.0,0.1,0.0,0.0,1050.0,1410150.0,13125.0,17626875.0,13125.0,17626875.0,true,1343,0.9266456175710623,53000.0,1239.904194285078,0.0,9711.088656331498,4550181.717018301,10479.830122961517,5047114.654206611,9711.088656331498,4550181.717018301,-0.0,0.0,-0.0,0.0,768.7414666300192,496932.9371882508,1343,53000.0,1239.904194285078,9711.088656331498,2320265.6398934997,1050.0,1410150.0,103.68628733928762,1071004.906584603,8784.856243465303,37251.907588854876,0.0,0.0,648.7872318142136,1211272.0065767427,173.75889371269434,736.8191433003569,-9711.088656331498,-5370736.172974762,true,true,6.750413519,11813.357771855946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1344,0.9045764662869686,666.0,0.0,11741.085071382262,10691.085071382262,1050.0,11723.455814518325,17.62925686393733,6469005.739278002,5057805.739277993,1411200.0,7561362.198252691,-1092356.4589748238,0.95,0.25,22.0,1344,0.0,0.1,0.0,0.0,1050.0,1411200.0,13125.0,17640000.0,13125.0,17640000.0,true,1344,0.9274153840269462,53000.0,1239.904194285078,0.0,9915.076767140732,4560096.793785442,10691.085071382262,5057805.739277993,9915.076767140732,4560096.793785442,-0.0,0.0,-0.0,0.0,776.0083042415299,497708.94549249235,1344,53000.0,1239.904194285078,9915.076767140732,2330180.71666064,1050.0,1411200.0,148.50260320444409,1071153.4091878075,8860.010300747233,46111.91788960211,0.0,0.0,731.3184698126871,1212003.3250465554,175.24539337636782,912.0645366767247,-9915.076767140732,-5380651.249741903,true,true,7.510393849,11820.868165704946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1345,0.9045700178628611,666.0,0.0,11595.556230285283,10545.556230285283,1050.0,11578.145485194766,17.410745090518443,6480601.295508287,5068351.2955082785,1412250.0,7572940.343737885,-1092339.0482297332,0.95,0.25,22.0,1345,0.0,0.1,0.0,0.0,1050.0,1412250.0,13125.0,17653125.0,13125.0,17653125.0,true,1345,0.9268849720441431,53000.0,1239.904194285078,0.0,9774.517591697913,4569871.31137714,10545.556230285283,5068351.2955082785,9774.517591697913,4569871.31137714,-0.0,0.0,-0.0,0.0,771.0386385873699,498479.9841310797,1345,53000.0,1239.904194285078,9774.517591697913,2339955.2342523383,1050.0,1412250.0,197.8259987359285,1071351.2351865433,8601.872432935907,54713.790322538014,0.0,0.0,804.679570215889,1212808.0046167714,170.13958981018953,1082.2041264869142,-9774.517591697913,-5390425.767333601,true,true,8.180964728,11829.049130432946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1346,0.9045642079992939,666.0,0.0,10447.296666335897,9397.296666335897,1050.0,10431.610034704761,15.68663163113498,6491048.592174623,5077748.592174615,1413300.0,7583371.9537725905,-1092323.3615981021,0.95,0.25,22.0,1346,0.0,0.1,0.0,0.0,1050.0,1413300.0,13125.0,17666250.0,13125.0,17666250.0,true,1346,0.9227210703328169,53000.0,1239.904194285078,0.0,8671.083638196471,4578542.395015337,9397.296666335897,5077748.592174615,8671.083638196471,4578542.395015337,-0.0,0.0,-0.0,0.0,726.2130281394257,499206.1971592191,1346,53000.0,1239.904194285078,8671.083638196471,2348626.3178905346,1050.0,1413300.0,247.07990006820367,1071598.3150866115,7410.8439390877575,62124.634261625775,0.0,0.0,866.577998650642,1213674.582615422,146.5818003898676,1228.7859268767818,-8671.083638196471,-5399096.8509717975,true,true,8.717421431,11837.766551863946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1347,0.904559668151936,666.0,0.0,8163.553519077819,7113.553519077819,1050.0,8151.295931211336,12.257587866483211,6499212.145693701,5084862.145693692,1414350.0,7591523.249703802,-1092311.1040102358,0.95,0.25,22.0,1347,0.0,0.1,0.0,0.0,1050.0,1414350.0,13125.0,17679375.0,13125.0,17679375.0,true,1347,0.9145498075543401,53000.0,1239.904194285078,0.0,6505.699001900119,4585048.0940172365,7113.553519077819,5084862.145693692,6505.699001900119,4585048.0940172365,-0.0,0.0,-0.0,0.0,607.8545171777005,499814.0516763968,1347,53000.0,1239.904194285078,6505.699001900119,2355132.0168924346,1050.0,1414350.0,288.4106104310194,1071886.7256970427,5201.968070622083,67326.60233224786,0.0,0.0,912.428686421874,1214587.011301844,102.89163442514172,1331.6775613019236,-6505.699001900119,-5405602.549973697,true,true,9.075059234,11846.841611097945,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1348,0.9045541244924671,666.0,0.0,9968.608457066968,8918.608457066968,1050.0,9953.640576500802,14.967880566166619,6509180.754150768,5093780.754150759,1415400.0,7601476.890280303,-1092296.1361296696,0.95,0.25,22.0,1348,0.0,0.1,0.0,0.0,1050.0,1415400.0,13125.0,17692500.0,13125.0,17692500.0,true,1348,0.92099624490075,53000.0,1239.904194285078,0.0,8214.00489869875,4593262.0989159355,8918.608457066968,5093780.754150759,8214.00489869875,4593262.0989159355,-0.0,0.0,-0.0,0.0,704.6035583682187,500518.655234765,1348,53000.0,1239.904194285078,8214.00489869875,2363346.021791133,1050.0,1415400.0,329.3381256259256,1072216.0638226685,6796.541186687351,74123.1435189352,0.0,0.0,953.6943054467516,1215540.7056072906,134.43128093872056,1466.1088422406442,-8214.00489869875,-5413816.554872396,true,true,9.522106487,11856.363717584945,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1349,0.9045500762785124,666.0,0.0,7279.498333288642,6229.498333288642,1050.0,7268.568155611031,10.930177677610574,6516460.252484056,5100010.252484048,1416450.0,7608745.458435914,-1092285.205951992,0.95,0.25,22.0,1349,0.0,0.1,0.0,0.0,1050.0,1416450.0,13125.0,17705625.0,13125.0,17705625.0,true,1349,0.9114253691240578,53000.0,1239.904194285078,0.0,5677.722817875304,4598939.821733811,6229.498333288642,5100010.252484048,5677.722817875304,4598939.821733811,-0.0,0.0,-0.0,0.0,551.7755154133383,501070.43075017835,1349,53000.0,1239.904194285078,5677.722817875304,2369023.7446090085,1050.0,1416450.0,368.818976219657,1072584.8827988883,4234.767957393004,78357.91147632821,0.0,0.0,990.3748556227118,1216531.0804629133,83.76102863993083,1549.869870880575,-5677.722817875304,-5419494.277690272,true,true,9.790334838,11866.154052422946,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1350,0.9045476903985511,666.0,0.0,4290.289346427709,3240.2893464277086,1050.0,4283.847470532171,6.4418758955371,6520750.541830484,5103250.541830475,1417500.0,7613029.305906446,-1092278.7640760965,0.95,0.25,22.0,1350,0.0,0.1,0.0,0.0,1050.0,1417500.0,13125.0,17718750.0,13125.0,17718750.0,true,1350,0.8840485489608031,53000.0,1239.904194285078,0.0,2864.573094922565,4601804.394828733,3240.2893464277086,5103250.541830475,2864.573094922565,4601804.394828733,-0.0,0.0,-0.0,0.0,375.71625150514365,501446.1470016835,1350,53000.0,1239.904194285078,2864.573094922565,2371888.317703931,1050.0,1417500.0,389.6907049585884,1072974.5735038468,1437.7298727750576,79795.64134910327,0.0,0.0,1008.7151307106918,1217539.795593624,28.43738647822701,1578.307257358802,-2864.573094922565,-5422358.850785194,true,true,9.879744289,11876.033796711947,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1351,0.9045448385709354,666.0,0.0,5128.156418670945,4078.1564186709447,1050.0,5120.456484108376,7.699934562568986,6525878.698249155,5107328.698249146,1418550.0,7618149.762390554,-1092271.0641415338,0.95,0.25,22.0,1351,0.0,0.1,0.0,0.0,1050.0,1418550.0,13125.0,17731875.0,13125.0,17731875.0,true,1351,0.8944108230073214,53000.0,1239.904194285078,0.0,3647.54723877607,4605451.9420675095,4078.1564186709447,5107328.698249146,3647.54723877607,4605451.9420675095,-0.0,0.0,-0.0,0.0,430.6091798948746,501876.7561815783,1351,53000.0,1239.904194285078,3647.54723877607,2375535.864942707,1050.0,1418550.0,403.12715181236683,1073377.7006556592,2181.1014784238578,81976.74282752714,0.0,0.0,1020.177802422732,1218559.9733960468,43.14080611711361,1621.4480634759157,-3647.54723877607,-5426006.39802397,true,true,10.01385846,11886.047655171948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1352,0.9045448269595914,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6525899.577767898,5106299.57776789,1419600.0,7618170.610558668,-1092271.032790905,0.95,0.25,22.0,1352,0.0,0.1,0.0,0.0,1050.0,1419600.0,13125.0,17745000.0,13125.0,17745000.0,true,1352,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4604212.037873224,-1029.1204812566145,5106299.57776789,-1239.904194285078,4604212.037873224,-0.0,0.0,-0.0,0.0,210.78371302846335,502087.5398946068,1352,53000.0,1239.904194285078,-1540.6911937502334,2373995.173748957,1050.0,1419600.0,400.4155433347589,1073778.116198994,-2901.60019072529,79075.14263680184,0.0,0.0,1017.8852680495551,1219577.8586640963,-57.391814409257556,1564.0562490666582,-1239.904194285078,-5427246.302218256,true,true,9.835039564,11895.882694735948,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1353,0.9045448153482474,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6525920.457286642,5105270.457286634,1420650.0,7618191.458726782,-1092271.0014402764,0.95,0.25,22.0,1353,0.0,0.1,0.0,0.0,1050.0,1420650.0,13125.0,17758125.0,13125.0,17758125.0,true,1353,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4602972.133678939,-1029.1204812566145,5105270.457286634,-1239.904194285078,4602972.133678939,-0.0,0.0,-0.0,0.0,210.78371302846335,502298.3236076353,1353,53000.0,1239.904194285078,-1526.972821220898,2372468.2009277362,1050.0,1420650.0,379.15910145867383,1074157.2753004527,-2849.3191866434427,76225.82345015841,0.0,0.0,999.5449932179833,1220577.4036573144,-56.35772925411249,1507.6985198125458,-1239.904194285078,-5428486.206412541,true,true,9.656220663,11905.538915398949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1354,0.9045448037369034,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6525941.336805386,5104241.336805377,1421700.0,7618212.306894897,-1092270.9700896477,0.95,0.25,22.0,1354,0.0,0.1,0.0,0.0,1050.0,1421700.0,13125.0,17771250.0,13125.0,17771250.0,true,1354,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4601732.229484654,-1029.1204812566145,5104241.336805377,-1239.904194285078,4601732.229484654,-0.0,0.0,-0.0,0.0,210.78371302846335,502509.10732066375,1354,53000.0,1239.904194285078,-2222.0491012945886,2370246.1518264418,1050.0,1421700.0,356.1604100305612,1074513.4357104832,-3488.128717760699,72737.69473239771,0.0,0.0,978.9121837055446,1221556.3158410199,-68.9929772699956,1438.7055425425501,-1239.904194285078,-5429726.110606826,true,true,9.432697036,11914.971612434949,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1355,0.9045447921255594,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6525962.216324129,5103212.216324121,1422750.0,7618233.155063011,-1092270.938739019,0.95,0.25,22.0,1355,0.0,0.1,0.0,0.0,1050.0,1422750.0,13125.0,17784375.0,13125.0,17784375.0,true,1355,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4600492.325290369,-1029.1204812566145,5103212.216324121,-1239.904194285078,4600492.325290369,-0.0,0.0,-0.0,0.0,210.78371302846335,502719.8910336922,1355,53000.0,1239.904194285078,-2875.55105248454,2367370.600773957,1050.0,1422750.0,329.3381255727985,1074842.773836056,-4077.924714833771,68659.77001756393,0.0,0.0,953.6943053954699,1222510.0101464153,-80.65876861903739,1358.0467739235128,-1239.904194285078,-5430966.014801111,true,true,9.164468684,11924.13608111895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1356,0.9045447805142154,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6525983.095842873,5102183.095842864,1423800.0,7618254.003231125,-1092270.9073883903,0.95,0.25,22.0,1356,0.0,0.1,0.0,0.0,1050.0,1423800.0,13125.0,17797500.0,13125.0,17797500.0,true,1356,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4599252.421096084,-1029.1204812566145,5102183.095842864,-1239.904194285078,4599252.421096084,-0.0,0.0,-0.0,0.0,210.78371302846335,502930.6747467207,1356,53000.0,1239.904194285078,-2141.4768738310177,2365229.123900126,1050.0,1423800.0,303.8974718512377,1075146.6713079072,-3308.412469145871,65351.35754841806,0.0,0.0,928.4764271366769,1223438.486573552,-65.43830367306121,1292.6084702504515,-1239.904194285078,-5432205.918995396,true,true,8.940945058,11933.07702617695,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1357,0.9045447689028714,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6526003.975361616,5101153.975361608,1424850.0,7618274.851399239,-1092270.8760377616,0.95,0.25,22.0,1357,0.0,0.1,0.0,0.0,1050.0,1424850.0,13125.0,17810625.0,13125.0,17810625.0,true,1357,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4598012.516901799,-1029.1204812566145,5101153.975361608,-1239.904194285078,4598012.516901799,-0.0,0.0,-0.0,0.0,210.78371302846335,503141.4584597492,1357,53000.0,1239.904194285078,-1447.1729103777225,2363781.9509897484,1050.0,1424850.0,284.08452394851,1075430.7558318558,-2587.9137566251725,62763.44379179289,0.0,0.0,907.8436176755199,1224346.3301912276,-51.18729537657991,1241.4211748738717,-1239.904194285078,-5433445.823189681,true,true,8.762126157,11941.83915233395,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1358,0.9045447572915274,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6526024.85488036,5100124.854880352,1425900.0,7618295.699567353,-1092270.8446871329,0.95,0.25,22.0,1358,0.0,0.1,0.0,0.0,1050.0,1425900.0,13125.0,17823750.0,13125.0,17823750.0,true,1358,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4596772.612707513,-1029.1204812566145,5100124.854880352,-1239.904194285078,4596772.612707513,-0.0,0.0,-0.0,0.0,210.78371302846335,503352.24217277765,1358,53000.0,1239.904194285078,-5856.156367521869,2357925.7946222266,1050.0,1425900.0,253.00956772255745,1075683.7653995783,-6847.188484694943,55916.25530709795,0.0,0.0,873.4556018727367,1225219.7857931003,-135.4330524222192,1105.9881224516525,-1239.904194285078,-5434685.727383967,true,true,8.270374179,11950.10952651295,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1359,0.9045447456801834,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6526045.734399104,5099095.734399095,1426950.0,7618316.547735468,-1092270.8133365042,0.95,0.25,22.0,1359,0.0,0.1,0.0,0.0,1050.0,1426950.0,13125.0,17836875.0,13125.0,17836875.0,true,1359,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4595532.708513228,-1029.1204812566145,5099095.734399095,-1239.904194285078,4595532.708513228,-0.0,0.0,-0.0,0.0,210.78371302846335,503563.0258858061,1359,53000.0,1239.904194285078,-4959.207655949414,2352966.586966277,1050.0,1426950.0,213.4369075676791,1075897.202307146,-5881.62218089252,50034.63312620543,0.0,0.0,825.312379728328,1226045.0981728286,-116.33476235290054,989.653360098752,-1239.904194285078,-5435925.631578252,true,true,7.823326926,11957.93285343895,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1360,0.9045447340688394,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6526066.613917847,5098066.613917839,1428000.0,7618337.395903582,-1092270.7819858755,0.95,0.25,22.0,1360,0.0,0.1,0.0,0.0,1050.0,1428000.0,13125.0,17850000.0,13125.0,17850000.0,true,1360,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4594292.804318943,-1029.1204812566145,5098066.613917839,-1239.904194285078,4594292.804318943,-0.0,0.0,-0.0,0.0,210.78371302846335,503773.8095988346,1360,53000.0,1239.904194285078,-4705.471661298749,2348261.1153049786,1050.0,1428000.0,179.80375974717285,1076077.0060668932,-5554.865393004261,44479.767733201166,0.0,0.0,779.461691957096,1226824.5598647858,-109.8717199987569,879.7816400999951,-1239.904194285078,-5437165.535772537,true,true,7.376279673,11965.30913311195,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1361,0.9045447224574954,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6526087.493436591,5097037.493436582,1429050.0,7618358.244071696,-1092270.7506352467,0.95,0.25,22.0,1361,0.0,0.1,0.0,0.0,1050.0,1429050.0,13125.0,17863125.0,13125.0,17863125.0,true,1361,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4593052.900124658,-1029.1204812566145,5097037.493436582,-1239.904194285078,4593052.900124658,-0.0,0.0,-0.0,0.0,210.78371302846335,503984.5933118631,1361,53000.0,1239.904194285078,-4448.002716617246,2343813.1125883614,1050.0,1429050.0,149.9035619574934,1076226.9096288506,-5228.10860511599,39251.65912808518,0.0,0.0,733.6110041858642,1227558.1708689716,-103.40867764461345,776.3729624553816,-1239.904194285078,-5438405.439966822,true,true,6.92923242,11972.23836553195,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1362,0.9045447108461514,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6526108.372955334,5096008.372955326,1430100.0,7618379.09223981,-1092270.719284618,0.95,0.25,22.0,1362,0.0,0.1,0.0,0.0,1050.0,1430100.0,13125.0,17876250.0,13125.0,17876250.0,true,1362,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4591812.995930373,-1029.1204812566145,5096008.372955326,-1239.904194285078,4591812.995930373,-0.0,0.0,-0.0,0.0,210.78371302846335,504195.37702489155,1362,53000.0,1239.904194285078,-6578.7478414809775,2337234.3647468803,1050.0,1430100.0,117.44325124026616,1076344.352880091,-7229.493925267009,32022.16520281817,0.0,0.0,676.2976444974653,1228234.468513469,-142.99481195170017,633.3781505036815,-1239.904194285078,-5439645.344161107,true,true,6.258661541,11978.49702707295,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1363,0.9045446992348074,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6526129.252474078,5094979.25247407,1431150.0,7618399.940407924,-1092270.6879339893,0.95,0.25,22.0,1363,0.0,0.1,0.0,0.0,1050.0,1431150.0,13125.0,17889375.0,13125.0,17889375.0,true,1363,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4590573.091736088,-1029.1204812566145,5094979.25247407,-1239.904194285078,4590573.091736088,-0.0,0.0,-0.0,0.0,210.78371302846335,504406.16073792,1363,53000.0,1239.904194285078,-11851.130446321733,2325383.2343005585,1050.0,1431150.0,71.47958849493283,1076415.8324685858,-12253.379543617482,19768.785659200686,0.0,0.0,573.1335970378345,1228807.6021105067,-242.36408823701717,391.01406226666427,-1239.904194285078,-5440885.248355392,true,true,4.917519782,11983.41454685495,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1364,0.9045446876234634,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6526150.131992822,5093950.131992813,1432200.0,7618420.788576039,-1092270.6565833606,0.95,0.25,22.0,1364,0.0,0.1,0.0,0.0,1050.0,1432200.0,13125.0,17902500.0,13125.0,17902500.0,true,1364,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4589333.187541802,-1029.1204812566145,5093950.131992813,-1239.904194285078,4589333.187541802,-0.0,0.0,-0.0,0.0,210.78371302846335,504616.9444509485,1364,53000.0,1239.904194285078,-9029.805802114774,2316353.4284984437,1050.0,1432200.0,31.377823833832018,1076447.2102924197,-9312.568452623022,10456.217206577665,0.0,0.0,435.581533724139,1229243.183644231,-184.19670704972378,206.81735521694048,-1239.904194285078,-5442125.1525496775,true,true,3.576378023,11986.990924877951,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1365,0.9045446760121194,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6526171.011511565,5092921.011511557,1433250.0,7618441.636744153,-1092270.625232732,0.95,0.25,22.0,1365,0.0,0.1,0.0,0.0,1050.0,1433250.0,13125.0,17915625.0,13125.0,17915625.0,true,1365,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4588093.283347517,-1029.1204812566145,5092921.011511557,-1239.904194285078,4588093.283347517,-0.0,0.0,-0.0,0.0,210.78371302846335,504827.728163977,1365,53000.0,1239.904194285078,-5844.766271000988,2310508.6622274425,1050.0,1433250.0,10.52164903334698,1076457.731941453,-6038.46543660839,4417.751769969275,0.0,0.0,302.61453920807935,1229545.798183439,-119.4370226340245,87.38033258291598,-1239.904194285078,-5443365.056743963,true,true,2.324645715,11989.315570592951,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1366,0.9045446644007754,666.0,0.0,20.87951874338546,-1029.1204812566145,1050.0,20.848168114641638,0.031350628743822016,6526191.891030309,5091891.8910303,1434300.0,7618462.484912267,-1092270.5938821032,0.95,0.25,22.0,1366,0.0,0.1,0.0,0.0,1050.0,1434300.0,13125.0,17928750.0,13125.0,17928750.0,true,1366,0.83,53000.0,1239.904194285078,0.0,-1239.904194285078,4586853.379153232,-1029.1204812566145,5091891.8910303,-1239.904194285078,4586853.379153232,-0.0,0.0,-0.0,0.0,210.78371302846335,505038.51187700545,1366,53000.0,1239.904194285078,-3285.2064874917533,2307223.4557399508,1050.0,1434300.0,2.0884986214778967,1076459.8204400744,-3396.636808731775,1021.1149612375002,0.0,0.0,176.52514786283268,1229722.3233313018,-67.1833252442888,20.197007338627188,-1239.904194285078,-5444604.960938248,true,true,1.117618132,11990.433188724952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1367,0.9045445346374106,666.0,0.0,233.3404826818363,-816.6595173181637,1050.0,232.99012159672844,0.35036108510786235,6526425.231512991,5091075.231512982,1435350.0,7618695.475033863,-1092270.2435210182,0.95,0.25,22.0,1367,0.0,0.1,0.0,0.0,1050.0,1435350.0,13125.0,17941875.0,13125.0,17941875.0,true,1367,0.83,53000.0,1239.904194285078,0.0,-983.9271292989924,4585869.452023933,-816.6595173181637,5091075.231512982,-983.9271292989924,4585869.452023933,-0.0,0.0,-0.0,0.0,167.26761198082875,505205.7794889863,1367,53000.0,1239.904194285078,-983.9271292989924,2306239.528610652,1050.0,1435350.0,0.07147958843737143,1076459.891919663,-1021.1149612372011,2.991100700455718e-10,0.0,0.0,57.31335968839894,1229779.6366909903,-20.19700733862757,-3.836930773104541e-13,-983.9271292989924,-5445588.888067547,true,true,0.0,11990.433188724952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1368,0.90454395072016,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6527475.231512991,5091075.231512982,1436400.0,7619743.898457287,-1092268.6669444416,0.95,0.25,22.0,1368,0.0,0.1,0.0,0.0,1050.0,1436400.0,13125.0,17955000.0,13125.0,17955000.0,true,1368,0.83,53000.0,1239.904194285078,0.0,0.0,4585869.452023933,0.0,5091075.231512982,0.0,4585869.452023933,-0.0,0.0,-0.0,0.0,0.0,505205.7794889863,1368,53000.0,1239.904194285078,0.0,2306239.528610652,1050.0,1436400.0,0.0,1076459.891919663,0.0,2.991100700455718e-10,0.0,0.0,0.0,1229779.6366909903,0.0,-3.836930773104541e-13,0.0,-5445588.888067547,true,true,0.0,11990.433188724952,0.0,1.206 -0.0,98950.0,1050.0,100000.0,0.0,1369,0.9045433668029095,666.0,0.0,1050.0,0.0,1050.0,1048.4234234234234,1.5765765765765767,6528525.231512991,5091075.231512982,1437450.0,7620792.32188071,-1092267.090367865,0.95,0.25,22.0,1369,0.0,0.1,0.0,0.0,1050.0,1437450.0,13125.0,17968125.0,13125.0,17968125.0,true,1369,0.83,53000.0,1239.904194285078,0.0,0.0,4585869.452023933,0.0,5091075.231512982,0.0,4585869.452023933,-0.0,0.0,-0.0,0.0,0.0,505205.7794889863,1369,53000.0,1239.904194285078,0.0,2306239.528610652,1050.0,1437450.0,0.0,1076459.891919663,0.0,2.991100700455718e-10,0.0,0.0,0.0,1229779.6366909903,0.0,-3.836930773104541e-13,0.0,-5445588.888067547,true,true,0.0,11990.433188724952,0.0,1.206 +veh.pt_type.ConventionalVehicle.fc.history.i,veh.pt_type.ConventionalVehicle.fc.history.pwr_out_max_watts,veh.pt_type.ConventionalVehicle.fc.history.pwr_prop_max_watts,veh.pt_type.ConventionalVehicle.fc.history.eff,veh.pt_type.ConventionalVehicle.fc.history.pwr_propulsion_watts,veh.pt_type.ConventionalVehicle.fc.history.energy_propulsion_joules,veh.pt_type.ConventionalVehicle.fc.history.pwr_aux_watts,veh.pt_type.ConventionalVehicle.fc.history.energy_aux_joules,veh.pt_type.ConventionalVehicle.fc.history.pwr_fuel_watts,veh.pt_type.ConventionalVehicle.fc.history.energy_fuel_joules,veh.pt_type.ConventionalVehicle.fc.history.pwr_loss_watts,veh.pt_type.ConventionalVehicle.fc.history.energy_loss_joules,veh.pt_type.ConventionalVehicle.fc.history.fc_on,veh.history.i,veh.history.pwr_prop_fwd_max_watts,veh.history.pwr_prop_bwd_max_watts,veh.history.pwr_tractive_watts,veh.history.energy_tractive_joules,veh.history.pwr_aux_watts,veh.history.energy_aux_joules,veh.history.pwr_drag_watts,veh.history.energy_drag_joules,veh.history.pwr_accel_watts,veh.history.energy_accel_joules,veh.history.pwr_ascent_watts,veh.history.energy_ascent_joules,veh.history.pwr_rr_watts,veh.history.energy_rr_joules,veh.history.pwr_whl_inertia_watts,veh.history.energy_whl_inertia_joules,veh.history.pwr_brake_watts,veh.history.energy_brake_joules,veh.history.curr_pwr_met,veh.history.all_curr_pwr_met,veh.history.speed_ach_meters_per_second,veh.history.dist_meters,veh.history.grade_curr,veh.history.air_density_kilograms_per_cubic_meter,cyc.time_seconds,cyc.speed_meters_per_second,cyc.dist_meters,cyc.grade,cyc.elev_meters,cyc.pwr_max_chrg_watts +0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,false,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,true,true,0.0,0.0,0.0,1.2,0.0,0.0,0.0,0.0,121.92,0.0 +1,21750.0,21050.0,0.12,0.0,0.0,700.0,700.0,6999.999999999999,6999.999999999999,6999.999999999999,6999.999999999999,true,1,21050.0,0.0,0.0,0.0,700.0,700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,1.0,0.0,0.0,0.0,121.92,0.0 +2,22450.0,21750.0,0.12,0.0,0.0,700.0,1400.0,6999.999999999999,13999.999999999998,6999.999999999999,13999.999999999998,true,2,21750.0,0.0,0.0,0.0,700.0,1400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,2.0,0.0,0.0,0.0,121.92,0.0 +3,22450.0,21750.0,0.12,0.0,0.0,700.0,2100.0,6999.999999999999,20999.999999999996,6999.999999999999,20999.999999999996,true,3,21750.0,0.0,0.0,0.0,700.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,true,true,0.0,0.0,0.0,1.2,3.0,0.0,0.0,0.0,121.92,0.0 +4,22450.0,21750.0,0.12,0.0,0.0,700.0,2800.0,6999.999999999999,27999.999999999996,6999.999999999999,27999.999999999996,true,4,21750.0,0.0,0.0,0.0,700.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,true,true,0.0,0.0,0.0,1.2,4.0,0.0,0.0,0.0,121.92,0.0 +5,22450.0,21750.0,0.12,0.0,0.0,700.0,3500.0,6999.999999999999,34999.99999999999,6999.999999999999,34999.99999999999,true,5,21750.0,0.0,0.0,0.0,700.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,true,true,0.0,0.0,0.0,1.2,5.0,0.0,0.0,0.0,121.92,0.0 +6,22450.0,21750.0,0.12,0.0,0.0,700.0,4200.0,6999.999999999999,41999.99999999999,6999.999999999999,41999.99999999999,true,6,21750.0,0.0,0.0,0.0,700.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,true,true,0.0,0.0,0.0,1.2,6.0,0.0,0.0,0.0,121.92,0.0 +7,22450.0,21750.0,0.12,0.0,0.0,700.0,4900.0,6999.999999999999,48999.99999999999,6999.999999999999,48999.99999999999,true,7,21750.0,0.0,0.0,0.0,700.0,4900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,7.0,0.0,0.0,0.0,121.92,0.0 +8,22450.0,21750.0,0.12,0.0,0.0,700.0,5600.0,6999.999999999999,55999.99999999999,6999.999999999999,55999.99999999999,true,8,21750.0,0.0,0.0,0.0,700.0,5600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,8.0,0.0,0.0,0.0,121.92,0.0 +9,22450.0,21750.0,0.12,0.0,0.0,700.0,6300.0,6999.999999999999,62999.99999999999,6999.999999999999,62999.99999999999,true,9,21750.0,0.0,0.0,0.0,700.0,6300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,9.0,0.0,0.0,0.0,121.92,0.0 +10,22450.0,21750.0,0.12,0.0,0.0,700.0,7000.0,6999.999999999999,69999.99999999999,6999.999999999999,69999.99999999999,true,10,21750.0,0.0,0.0,0.0,700.0,7000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,10.0,0.0,0.0,0.0,121.92,0.0 +11,22450.0,21750.0,0.12,0.0,0.0,700.0,7700.0,6999.999999999999,76999.99999999999,6999.999999999999,76999.99999999999,true,11,21750.0,0.0,0.0,0.0,700.0,7700.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,11.0,0.0,0.0,0.0,121.92,0.0 +12,22450.0,21750.0,0.12,0.0,0.0,700.0,8400.0,6999.999999999999,83999.99999999999,6999.999999999999,83999.99999999999,true,12,21750.0,0.0,0.0,0.0,700.0,8400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,12.0,0.0,0.0,0.0,121.92,0.0 +13,22450.0,21750.0,0.12,0.0,0.0,700.0,9100.0,6999.999999999999,90999.99999999999,6999.999999999999,90999.99999999999,true,13,21750.0,0.0,0.0,0.0,700.0,9100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,13.0,0.0,0.0,0.0,121.92,0.0 +14,22450.0,21750.0,0.12,0.0,0.0,700.0,9800.0,6999.999999999999,97999.99999999999,6999.999999999999,97999.99999999999,true,14,21750.0,0.0,0.0,0.0,700.0,9800.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,14.0,0.0,0.0,0.0,121.92,0.0 +15,22450.0,21750.0,0.12,0.0,0.0,700.0,10500.0,6999.999999999999,104999.99999999999,6999.999999999999,104999.99999999999,true,15,21750.0,0.0,0.0,0.0,700.0,10500.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,15.0,0.0,0.0,0.0,121.92,0.0 +16,22450.0,21750.0,0.12,0.0,0.0,700.0,11200.0,6999.999999999999,111999.99999999999,6999.999999999999,111999.99999999999,true,16,21750.0,0.0,0.0,0.0,700.0,11200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,16.0,0.0,0.0,0.0,121.92,0.0 +17,22450.0,21750.0,0.12,0.0,0.0,700.0,11900.0,6999.999999999999,118999.99999999999,6999.999999999999,118999.99999999999,true,17,21750.0,0.0,0.0,0.0,700.0,11900.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,17.0,0.0,0.0,0.0,121.92,0.0 +18,22450.0,21750.0,0.12,0.0,0.0,700.0,12600.0,6999.999999999999,125999.99999999999,6999.999999999999,125999.99999999999,true,18,21750.0,0.0,0.0,0.0,700.0,12600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,18.0,0.0,0.0,0.0,121.92,0.0 +19,22450.0,21750.0,0.12,0.0,0.0,700.0,13300.0,6999.999999999999,132999.99999999997,6999.999999999999,132999.99999999997,true,19,21750.0,0.0,0.0,0.0,700.0,13300.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,19.0,0.0,0.0,0.0,121.92,0.0 +20,22450.0,21750.0,0.12,0.0,0.0,700.0,14000.0,6999.999999999999,139999.99999999997,6999.999999999999,139999.99999999997,true,20,21750.0,0.0,0.0,0.0,700.0,14000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,true,true,0.0,0.0,0.0,1.2,20.0,0.0,0.0,0.0,121.92,0.0 +21,22450.0,21750.0,0.16,1582.3017468428363,1582.3017468428363,700.0,14700.0,14264.385917767726,154264.3859177677,12682.084170924889,152682.08417092485,true,21,21750.0,0.0,1582.3017468428363,1582.3017468428363,700.0,14700.0,0.1507348699615692,0.1507348699615692,1478.7445436315438,1478.7445436315438,0.0,0.0,75.65039550190235,75.65039550190235,27.75607283942872,27.75607283942872,-1582.3017468428363,-1582.3017468428363,true,true,1.341141759,1.341141759,0.0,1.2,21.0,1.341141759,1.341141759,0.0,121.92,0.0 +22,24032.301746842837,23332.301746842837,0.22,4548.67417551717,6130.975922360006,700.0,15400.0,23857.609888714407,178121.99580648213,19308.935713197236,171991.01988412207,true,22,23332.301746842837,0.0,4548.67417551717,6130.975922360006,700.0,15400.0,3.9356818698463263,4.086416739807896,4240.710738200853,5719.455281832396,0.0,0.0,224.4295066161584,300.0799021180608,79.59824883031244,107.35432166974117,-4548.67417551717,-6130.975922360006,true,true,2.637578792,3.978720551,0.0,1.2,22.0,2.637578792,3.978720551,0.0,121.92,0.0 +23,26998.674175517168,26298.674175517168,0.22,6935.941038971996,13066.916961332001,700.0,16100.0,34708.822904418164,212830.8187109003,27772.88186544617,199763.90174956823,true,23,26298.674175517168,0.0,6935.941038971996,13066.916961332001,700.0,16100.0,17.01978120805835,21.106197947866246,6432.538762775781,12151.994044608178,0.0,0.0,365.64357817458347,665.7234802926442,120.7389168135726,228.09323848331377,-6935.941038971996,-13066.916961332001,true,true,3.844606375,7.823326926,0.0,1.2,23.0,3.844606375,7.823326926,0.0,121.92,0.0 +24,29385.941038971996,28685.941038971996,0.28,10309.295439637051,23376.212400969052,700.0,16800.0,39318.91228441804,252149.73099531833,29009.616844780987,228773.5185943492,true,24,28685.941038971996,0.0,10309.295439637051,23376.212400969052,700.0,16800.0,45.335471659438724,66.44166960730497,9577.335486630982,21729.32953123916,0.0,0.0,506.8576497330085,1172.5811300256528,179.7668316136226,407.8600700969364,-10309.295439637051,-23376.212400969052,true,true,5.141043408,12.964370334,0.0,1.2,24.0,5.141043408,12.964370334,0.0,121.92,0.0 +25,32759.29543963705,32059.29543963705,0.33,12838.647493599667,36214.85989456872,700.0,17500.0,41026.20452605959,293175.93552137795,28187.557032459925,256961.07562680915,true,25,32059.29543963705,0.0,12838.647493599667,36214.85989456872,700.0,17500.0,95.87581836348754,162.3174879707925,11869.389529590659,33598.71906082982,0.0,0.0,650.5934011245748,1823.1745311502277,222.788744520946,630.6488146178824,-12838.647493599667,-36214.85989456872,true,true,6.392775716,19.35714605,0.0,1.2,25.0,6.392775716,19.35714605,0.0,121.92,0.0 +26,35288.64749359967,34588.64749359967,0.33,14534.912563606673,50749.772458175394,700.0,18200.0,46166.40170789901,339342.33722927695,31631.489144292333,288592.56477110146,true,26,34588.64749359967,0.0,14534.912563606673,50749.772458175394,700.0,18200.0,169.5562286331612,331.8737166039537,13328.417485452268,46927.13654628208,0.0,0.0,786.7641130167175,2609.9386441669453,250.17473650452703,880.8235511224094,-14534.912563606673,-50749.772458175394,true,true,7.555098574,26.912244624,0.0,1.2,26.0,7.555098574,26.912244624,0.0,121.92,0.0 +27,36984.912563606675,36284.912563606675,0.16,3375.615784478795,54125.38824265419,700.0,18900.0,25472.598652992467,364814.9358822694,22096.98286851367,310689.54763961514,true,27,36284.912563606675,0.0,3375.615784478795,54125.38824265419,700.0,18900.0,223.32034202459195,555.1940586285457,2247.691703276772,49174.82824955886,0.0,0.0,862.4145085186199,3472.353152685565,42.1892306588113,923.0127817812207,-3375.615784478795,-54125.38824265419,true,true,7.733917475,34.646162099,0.0,1.2,27.0,7.733917475,34.646162099,0.0,121.92,0.0 +28,25825.615784478796,25125.615784478796,0.22,5880.792147952983,60006.18039060717,700.0,19600.0,29912.691581604468,394727.6274638739,24031.899433651484,334721.4470732666,true,28,25125.615784478796,0.0,5880.792147952983,60006.18039060717,700.0,19600.0,247.66221466551207,802.8562732940577,4653.116157521396,53827.94440708026,0.0,0.0,892.6746666855363,4365.027819371101,87.33910908053836,1010.3518908617591,-5880.792147952983,-60006.18039060717,true,true,8.091555277,42.737717376,0.0,1.2,28.0,8.091555277,42.737717376,0.0,121.92,0.0 +29,28330.792147952983,27630.792147952983,0.35,18190.705554432236,78196.88594503941,700.0,20300.0,53973.44444123496,448701.07190510887,35782.73888680273,370504.18596006936,true,29,27630.792147952983,0.0,18190.705554432236,78196.88594503941,700.0,20300.0,326.0957531679815,1128.9520264620392,16575.083283264168,70403.02769034443,0.0,0.0,978.4117815764107,5343.439600947511,311.11473642367656,1321.4666272854356,-18190.705554432236,-78196.88594503941,true,true,9.253878135,51.991595511,0.0,1.2,29.0,9.253878135,51.991595511,0.0,121.92,0.0 +30,40640.705554432236,39940.705554432236,0.28,8592.031050466514,86788.91699550592,700.0,21000.0,33185.825180237545,481886.8970853464,24593.79412977103,395097.98008984036,true,30,39940.705554432236,0.0,8592.031050466514,86788.91699550592,700.0,21000.0,425.5470026970294,1554.4990291590686,6966.5298484538425,77369.55753879827,0.0,0.0,1069.1922561899753,6412.631857137487,130.76194312566773,1452.2285704111034,-8592.031050466514,-86788.91699550592,true,true,9.700925388,61.692520899,0.0,1.2,30.0,9.700925388,61.692520899,0.0,121.92,0.0 +31,31042.031050466514,30342.031050466514,0.22,6758.170621854996,93547.08761736091,700.0,21700.0,33900.77555388635,515787.67263923277,27142.604932031354,422240.5850218717,true,31,30342.031050466514,0.0,6758.170621854996,93547.08761736091,700.0,21700.0,478.8127806573266,2033.3118098163952,5072.0936996015325,82441.6512383998,0.0,0.0,1112.0608133533751,7524.692670490862,95.2033282427622,1547.4318986538656,-6758.170621854996,-93547.08761736091,true,true,10.01385846,71.706379359,0.0,1.2,31.0,10.01385846,71.706379359,0.0,121.92,0.0 +32,29208.170621854995,28508.170621854995,0.16,2389.1569314204653,95936.24454878138,700.0,22400.0,19307.230821377907,535094.9034606107,16918.073889957443,439158.6589118292,true,32,28508.170621854995,0.0,2389.1569314204653,95936.24454878138,700.0,22400.0,505.34618197425993,2538.657991790655,737.729299526981,83179.38053792679,0.0,0.0,1132.2342521313194,8656.92692262218,13.847197787905301,1561.279096441771,-2389.1569314204653,-95936.24454878138,true,true,10.05856319,81.764942549,0.0,1.2,32.0,10.05856319,81.764942549,0.0,121.92,0.0 +33,24839.156931420464,24139.156931420464,0.12,0.0,95936.24454878138,700.0,23100.0,6999.999999999999,542094.9034606107,6999.999999999999,446158.6589118292,true,33,24139.156931420464,0.0,-1366.2655047793128,94569.97904400207,700.0,23100.0,495.2842780645463,3033.9422698552016,-2931.2002913922315,80248.18024653455,0.0,0.0,1124.6692128575255,9781.596135479705,-55.01870430915308,1506.2603921326179,-0.0,-95936.24454878138,true,true,9.879744289,91.644686838,0.0,1.2,33.0,9.879744289,91.644686838,0.0,121.92,0.0 +34,22450.0,21750.0,0.12,0.0,95936.24454878138,700.0,23800.0,6999.999999999999,549094.9034606107,6999.999999999999,453158.6589118292,true,34,21750.0,0.0,-2816.732128701576,91753.2469153005,700.0,23800.0,462.7105843371715,3496.652854192373,-4298.217475635412,75949.96277089915,0.0,0.0,1099.4524143568917,10881.048549836598,-80.67765176022748,1425.5827403723904,-0.0,-95936.24454878138,true,true,9.611515937,101.25620277499999,0.0,1.2,34.0,9.611515937,101.25620277499999,0.0,121.92,0.0 +35,22450.0,21750.0,0.12,0.0,95936.24454878138,700.0,24500.0,6999.999999999999,556094.9034606107,6999.999999999999,460158.6589118292,true,35,21750.0,0.0,-2763.635819134994,88989.61109616549,700.0,24500.0,425.54700262967737,3922.1998568220506,-4179.917911968478,71770.04485893066,0.0,0.0,1069.1922561335675,11950.240805970165,-78.4571659297614,1347.125574442629,-0.0,-95936.24454878138,true,true,9.343287585,110.59949035999999,0.0,1.2,35.0,9.343287585,110.59949035999999,0.0,121.92,0.0 +36,22450.0,21750.0,0.12,0.0,95936.24454878138,700.0,25200.0,6999.999999999999,563094.9034606107,6999.999999999999,467158.6589118292,true,36,21750.0,0.0,-2021.8497593505545,86967.76133681493,700.0,25200.0,393.2784242142161,4315.478281036267,-3392.8971943978986,68377.14766453276,0.0,0.0,1041.4537777997925,12991.694583769957,-63.6847669666647,1283.4408074759642,-0.0,-95936.24454878138,true,true,9.119763959,119.71925431899999,0.0,1.2,36.0,9.119763959,119.71925431899999,0.0,121.92,0.0 +37,22450.0,21750.0,0.12,0.0,95936.24454878138,700.0,25900.0,6999.999999999999,570094.9034606107,6999.999999999999,474158.6589118292,true,37,21750.0,0.0,-2661.022581377675,84306.73875543725,700.0,25900.0,362.6837732755098,4678.162054311777,-3963.035378873108,64414.112285659656,0.0,0.0,1013.715299466017,14005.409883235974,-74.3862752460937,1209.0545322298706,-0.0,-95936.24454878138,true,true,8.851535607,128.57078992599997,0.0,1.2,37.0,8.851535607,128.57078992599997,0.0,121.92,0.0 +38,22450.0,21750.0,0.12,0.0,95936.24454878138,700.0,26600.0,6999.999999999999,577094.9034606107,6999.999999999999,481158.6589118292,true,38,21750.0,0.0,-16041.556722582209,68265.18203285505,700.0,26600.0,278.22325173678536,4956.385306048563,-16929.98196515015,47484.1303205095,0.0,0.0,927.9781845751426,14933.388067811116,-317.7761937439876,891.278338485883,-0.0,-95936.24454878138,true,true,7.599803299,136.17059322499998,0.0,1.2,38.0,7.599803299,136.17059322499998,0.0,121.92,0.0 +39,22450.0,21750.0,0.12,0.0,95936.24454878138,700.0,27300.0,6999.999999999999,584094.9034606107,6999.999999999999,488158.6589118292,true,39,21750.0,0.0,-10227.743746523283,58037.43828633177,700.0,27300.0,181.22663028815575,5137.611936336718,-11006.788546724434,36477.34177378507,0.0,0.0,804.4158719615207,15737.803939772637,-206.59770204852575,684.6806364373572,-0.0,-95936.24454878138,true,true,6.661004068,142.831597293,0.0,1.2,39.0,6.661004068,142.831597293,0.0,121.92,0.0 +40,22450.0,21750.0,0.12,899.2008208968095,96835.44536967819,700.0,28000.0,13326.673507473413,597421.5769680841,12427.472686576604,500586.1315984058,true,40,21750.0,0.0,899.2008208968095,58936.639107228584,700.0,28000.0,147.74022576969827,5285.3521621064165,0.0,36477.34177378507,0.0,0.0,751.4605951271112,16489.264534899747,0.0,684.6806364373572,-899.2008208968095,-96835.44536967819,true,true,6.661004068,149.492601361,0.0,1.2,40.0,6.661004068,149.492601361,0.0,121.92,0.0 +41,23349.20082089681,22649.20082089681,0.16,2422.795169259456,99258.24053893764,700.0,28700.0,19517.4698078716,616939.0467759557,17094.674638612145,517680.8062370179,true,41,22649.20082089681,0.0,2422.795169259456,61359.43427648804,700.0,28700.0,152.24724862761119,5437.5994107340275,1483.673692852741,37961.01546663781,0.0,0.0,759.0256346829422,17248.290169582688,27.848593096162,712.5292295335191,-2422.795169259456,-99258.24053893764,true,true,6.795118244,156.287719605,0.0,1.2,41.0,6.795118244,156.287719605,0.0,121.92,0.0 +42,24872.795169259458,24172.795169259458,0.16,2477.342438046,101735.58297698364,700.0,29400.0,19858.390237787502,636797.4370137432,17381.0477997415,535061.8540367594,true,42,24172.795169259458,0.0,2477.342438046,63836.77671453404,700.0,29400.0,161.53442592814852,5599.133836662176,1513.2485837694687,39474.26405040728,0.0,0.0,774.1557137946041,18022.44588337729,28.40371455377847,740.9329440872976,-2477.342438046,-101735.58297698364,true,true,6.92923242,163.216952025,0.0,1.2,42.0,6.92923242,163.216952025,0.0,121.92,0.0 +43,24927.342438046,24227.342438046,0.16,3605.1996785533393,105340.78265553698,700.0,30100.0,26907.49799095837,663704.9350047016,23302.29831240503,558364.1523491644,true,43,24227.342438046,0.0,3605.1996785533393,67441.97639308737,700.0,30100.0,174.49445370915268,5773.628290371328,2587.802944923363,42062.06699533064,0.0,0.0,794.3291525725485,18816.77503594984,48.573127348274625,789.5060714355723,-3605.1996785533393,-105340.78265553698,true,true,7.152756046,170.36970807100002,0.0,1.2,43.0,7.152756046,170.36970807100002,0.0,121.92,0.0 +44,26055.19967855334,25355.19967855334,0.28,7131.765499248158,112472.54815478514,700.0,30800.0,27970.59106874342,691675.526073445,20838.82556949526,579202.9779186596,true,44,25355.19967855334,0.0,7131.765499248158,74573.74189233553,700.0,30800.0,202.4575361968895,5976.085826568217,5982.34319834801,48044.410193678654,0.0,0.0,834.6760301284371,19651.451066078276,112.28873457482169,901.7948060103939,-7131.765499248158,-112472.54815478514,true,true,7.644508024,178.01421609500002,0.0,1.2,44.0,7.644508024,178.01421609500002,0.0,121.92,0.0 +45,29581.76549924816,28881.76549924816,0.33,13296.643798304784,125769.19195308992,700.0,31500.0,42414.0721160751,734089.5981895201,29117.428317770315,608320.4062364299,true,45,28881.76549924816,0.0,13296.643798304784,87870.38569064031,700.0,31500.0,264.83518156402664,6240.9210081322435,11895.678325388006,59940.08851906666,0.0,0.0,912.8481054634808,20564.299171541756,223.28218588927055,1125.0769918996646,-13296.643798304784,-125769.19195308992,true,true,8.53860253,186.55281862500001,0.0,1.2,45.0,8.53860253,186.55281862500001,0.0,121.92,0.0 +46,35746.64379830478,35046.64379830478,0.33,14834.471243104097,140603.66319619401,700.0,32200.0,47074.15528213362,781163.7534716537,32239.684039029526,640560.0902754595,true,46,35046.64379830478,0.0,14834.471243104097,102704.8569337444,700.0,32200.0,362.6837732755098,6603.604781407754,13210.117919727141,73150.2064387938,0.0,0.0,1013.715299466017,21578.014471007773,247.95425063542908,1373.0312425350937,-14834.471243104097,-140603.66319619401,true,true,9.432697036,195.98551566100002,0.0,1.2,46.0,9.432697036,195.98551566100002,0.0,121.92,0.0 +47,37284.4712431041,36584.4712431041,0.33,13304.221306129886,153907.8845023239,700.0,32900.0,42437.03426099965,823600.7877326533,29132.812954869765,669692.9032303293,true,47,36584.4712431041,0.0,13304.221306129886,116009.07823987429,700.0,32900.0,469.10741487460365,7072.712196282358,11514.490830357088,84664.69726915089,0.0,0.0,1104.495774023174,22682.510245030946,216.12728687502045,1589.1585294101142,-13304.221306129886,-153907.8845023239,true,true,10.14797264,206.13348830100003,0.0,1.2,47.0,10.14797264,206.13348830100003,0.0,121.92,0.0 +48,35754.22130612988,35054.22130612988,0.16,3205.82521352916,157113.70971585307,700.0,33600.0,24411.407584557248,848012.1953172105,21205.58237102809,690898.4856013574,true,48,35054.22130612988,0.0,3205.82521352916,119214.90345340344,700.0,33600.0,529.3519216802664,7602.064117962624,1498.4611269910556,86163.15839614194,0.0,0.0,1149.8860112453451,23832.39625627629,28.126153612492594,1617.2846830226067,-3205.82521352916,-157113.70971585307,true,true,10.23738209,216.37087039100004,0.0,1.2,48.0,10.23738209,216.37087039100004,0.0,121.92,0.0 +49,25655.82521352916,24955.82521352916,0.12,152.65065232206337,157266.36036817514,700.0,34300.0,7105.422102683861,855117.6174198943,6952.771450361798,697851.2570517192,true,49,24955.82521352916,0.0,152.65065232206337,119367.5541057255,700.0,34300.0,529.3519216802664,8131.41603964289,-1498.4611269910556,84664.69726915089,0.0,0.0,1149.8860112453451,24982.282267521634,-28.126153612492594,1589.1585294101142,-152.65065232206337,-157266.36036817514,true,true,10.14797264,226.51884303100005,0.0,1.2,49.0,10.14797264,226.51884303100005,0.0,121.92,0.0 +50,22602.650652322063,21902.650652322063,0.12,903.0218562019214,158169.38222437707,700.0,35000.0,13358.515468349346,868476.1328882437,12455.493612147424,710306.7506638666,true,50,21902.650652322063,0.0,903.0218562019214,120270.57596192742,700.0,35000.0,518.9727711998624,8650.388810842753,-744.301332020297,83920.39593713058,0.0,0.0,1142.3209720279585,26124.603239549593,-13.970555005602682,1575.1879744045116,-903.0218562019214,-158169.38222437707,true,true,10.10326792,236.62211095100005,0.0,1.2,50.0,10.10326792,236.62211095100005,0.0,121.92,0.0 +51,23353.02185620192,22653.02185620192,0.12,0.0,158169.38222437707,700.0,35700.0,6999.999999999999,875476.1328882437,6999.999999999999,717306.7506638666,true,51,22653.02185620192,0.0,-7973.542590226248,112297.03337170117,700.0,35700.0,472.32782111892396,9122.716631961677,-9376.883522412647,74543.51241471793,0.0,0.0,1107.01745419476,27231.620693744353,-176.00434312728353,1399.183631277228,-0.0,-158169.38222437707,true,true,9.522106487,246.14421743800006,0.0,1.2,51.0,9.522106487,246.14421743800006,0.0,121.92,0.0 +52,22450.0,21750.0,0.12,0.0,158169.38222437707,700.0,36400.0,6999.999999999999,882476.1328882437,6999.999999999999,724306.7506638666,true,52,21750.0,0.0,-14133.648371823203,98163.38499987796,700.0,36400.0,365.39710704870873,9488.113739010387,-15229.425748096373,59314.08666662156,0.0,0.0,1016.2369793555656,28247.85767309992,-285.8567101311042,1113.3269211461238,-0.0,-158169.38222437707,true,true,8.493897805,254.63811524300004,0.0,1.2,52.0,8.493897805,254.63811524300004,0.0,121.92,0.0 +53,22450.0,21750.0,0.12,0.0,158169.38222437707,700.0,37100.0,6999.999999999999,889476.1328882437,6999.999999999999,731306.7506638666,true,53,21750.0,0.0,-10308.23569025964,87855.14930961833,700.0,37100.0,262.64647218866696,9750.760211199055,-11269.676472942918,48044.41019367864,0.0,0.0,910.3264256303395,29158.18409873026,-211.53211513572967,901.7948060103942,-0.0,-158169.38222437707,true,true,7.644508024,262.282623267,0.0,1.2,53.0,7.644508024,262.282623267,0.0,121.92,0.0 +54,22450.0,21750.0,0.12,0.0,158169.38222437707,700.0,37800.0,6999.999999999999,896476.1328882437,6999.999999999999,738306.7506638666,true,54,21750.0,0.0,-6130.783282829987,81724.36602678834,700.0,37800.0,198.80974120473107,9949.569952403786,-7027.322668585171,41017.08752509347,0.0,0.0,829.6326704621547,29987.816769192414,-131.90302591170146,769.8917800986927,-0.0,-158169.38222437707,true,true,7.063346596,269.345969863,0.0,1.2,54.0,7.063346596,269.345969863,0.0,121.92,0.0 +55,22450.0,21750.0,0.12,973.0124194411575,159142.39464381823,700.0,38500.0,13941.770162009645,910417.9030502533,12968.757742568487,751275.5084064351,true,55,21750.0,0.0,973.0124194411575,82697.3784462295,700.0,38500.0,176.16158697906042,10125.731539382847,0.0,41017.08752509347,0.0,0.0,796.8508324620971,30784.66760165451,0.0,769.8917800986927,-973.0124194411575,-159142.39464381823,true,true,7.063346596,276.40931645899997,0.0,1.2,55.0,7.063346596,276.40931645899997,0.0,121.92,0.0 +56,23423.01241944116,22723.01241944116,0.28,11708.956318782679,170851.3509626009,700.0,39200.0,44317.70113850956,954735.6041887628,32608.744819726882,783884.253226162,true,56,22723.01241944116,0.0,11708.956318782679,94406.33476501217,700.0,39200.0,209.8864428817867,10335.617982264634,10458.010011398097,51475.097536491565,0.0,0.0,844.7627495738168,31629.430351228326,196.297114928978,966.1888950276707,-11708.956318782679,-170851.3509626009,true,true,7.912736376,284.32205283499997,0.0,1.2,56.0,7.912736376,284.32205283499997,0.0,121.92,0.0 +57,34158.95631878268,33458.95631878268,0.33,14421.91437254683,185273.26533514773,700.0,39900.0,45823.9829471116,1000559.5871358744,31402.06857456477,815286.3218007268,true,57,33458.95631878268,0.0,14421.91437254683,108828.249137559,700.0,39900.0,294.40404265661095,10630.022024921245,12939.014749168073,64414.112285659634,0.0,0.0,945.6299435199458,32575.060294748273,242.86563720220002,1209.0545322298708,-14421.91437254683,-185273.26533514773,true,true,8.851535607,293.173588442,0.0,1.2,57.0,8.851535607,293.173588442,0.0,121.92,0.0 +58,36871.91437254683,36171.91437254683,0.33,13913.942659439106,199187.20799458685,700.0,40600.0,44284.674725573044,1044844.2618614475,30370.73206613394,845657.0538668608,true,58,36171.91437254683,0.0,13913.942659439106,122742.19179699812,700.0,40600.0,396.1420908999493,11026.164115821195,12244.004827620138,76658.11711327978,0.0,0.0,1043.975457689341,33619.035752437616,229.82028322967764,1438.8748154595485,-13913.942659439106,-199187.20799458685,true,true,9.656220663,302.829809105,0.0,1.2,58.0,9.656220663,302.829809105,0.0,121.92,0.0 +59,36363.942659439104,35663.942659439104,0.33,13630.1302933977,212817.33828798454,700.0,41300.0,43424.637252720306,1088268.8991141678,29794.506959322607,875451.5608261834,true,59,35663.942659439104,0.0,13630.1302933977,136372.3220903958,700.0,41300.0,501.9772191785647,11528.14133499976,11777.378800679639,88435.49591395941,0.0,0.0,1129.7125727494379,34748.74832518705,221.0617007900585,1659.936516249607,-13630.1302933977,-212817.33828798454,true,true,10.37149627,313.201305375,0.0,1.2,59.0,10.37149627,313.201305375,0.0,121.92,0.0 +60,36080.1302933977,35380.1302933977,0.28,9724.058131041074,222541.3964190256,700.0,42000.0,37228.779039432404,1125497.6781536,27504.72090839133,902956.2817345747,true,60,35380.1302933977,0.0,9724.058131041074,146096.38022143688,700.0,42000.0,594.5453562226755,12122.686691222436,7788.054543387607,96223.55045734702,0.0,0.0,1195.2762488059607,35944.02457399301,146.18198262483082,1806.1184988744378,-9724.058131041074,-222541.3964190256,true,true,10.81854352,324.019848895,0.0,1.2,60.0,10.81854352,324.019848895,0.0,121.92,0.0 +61,32174.058131041074,31474.058131041074,0.22,5146.810086648385,227688.206505674,700.0,42700.0,26576.409484765383,1152074.0876383656,21429.599398117,924385.8811326917,true,61,31474.058131041074,0.0,5146.810086648385,151243.19030808526,700.0,42700.0,648.7978948956069,12771.484586118042,3207.232587723856,99430.78304507089,0.0,0.0,1230.579766469937,37174.604340462945,60.19983755898447,1866.3183364334222,-5146.810086648385,-227688.206505674,true,true,10.99736242,335.017211315,0.0,1.2,61.0,10.99736242,335.017211315,0.0,121.92,0.0 +62,27596.810086648384,26896.810086648384,0.16,4411.077495763773,232099.28400143777,700.0,43400.0,31944.234348523583,1184018.3219868892,27533.15685275981,951919.0379854515,true,62,26896.810086648384,0.0,4411.077495763773,155654.26780384904,700.0,43400.0,677.1198774048249,13448.604463522866,2439.9285711970974,101870.71161626799,0.0,0.0,1248.2315255839626,38422.83586604691,45.79752157788761,1912.11585801131,-4411.077495763773,-232099.28400143777,true,true,11.1314766,346.148687915,0.0,1.2,62.0,11.1314766,346.148687915,0.0,121.92,0.0 +63,26861.077495763773,26161.077495763773,0.16,2787.2569516784074,234886.54095311617,700.0,44100.0,21795.355947990047,1205813.6779348792,19008.09899631164,970927.1369817632,true,63,26161.077495763773,0.0,2787.2569516784074,158441.52475552744,700.0,44100.0,693.6679086095177,14142.272372132384,819.8815995946654,102690.59321586265,0.0,0.0,1258.318244916527,39681.154110963435,15.389198557696954,1927.505056569007,-2787.2569516784074,-234886.54095311617,true,true,11.17618132,357.324869235,0.0,1.2,63.0,11.17618132,357.324869235,0.0,121.92,0.0 +64,25237.256951678406,24537.256951678406,0.12,0.0,234886.54095311617,700.0,44800.0,6999.999999999999,1212813.6779348792,6999.999999999999,977927.1369817632,true,64,24537.256951678406,0.0,-1389.011756041923,157052.5129994855,700.0,44800.0,681.2319297503583,14823.504301882742,-3259.8101707917626,99430.78304507089,0.0,0.0,1250.7532051350663,40931.9073160985,-61.18672013558456,1866.3183364334222,-0.0,-234886.54095311617,true,true,10.99736242,368.322231655,0.0,1.2,64.0,10.99736242,368.322231655,0.0,121.92,0.0 +65,22450.0,21750.0,0.12,1077.1022625800954,235963.64321569627,700.0,45500.0,14809.185521500796,1227622.86345638,13732.0832589207,991659.2202406839,true,65,21750.0,0.0,1077.1022625800954,158129.6152620656,700.0,45500.0,660.8371395676611,15484.341441450402,-806.7372052978224,98624.04583977307,0.0,0.0,1238.1448062513978,42170.052122349894,-15.142477941141186,1851.1758584922811,-1077.1022625800954,-235963.64321569627,true,true,10.9526577,379.27488935499997,0.0,1.2,65.0,10.9526577,379.27488935499997,0.0,121.92,0.0 +66,23527.102262580094,22827.102262580094,0.16,3552.6568866333982,239516.30010232967,700.0,46200.0,26579.10554145874,1254201.968997839,23026.44865482534,1014685.6688955092,true,66,22827.102262580094,0.0,3552.6568866333982,161682.272148699,700.0,46200.0,664.8830704654139,16149.224511915816,1616.7606903639685,100240.80653013704,0.0,0.0,1240.6664863665762,43410.718608716474,30.346639437439478,1881.5224979297207,-3552.6568866333982,-239516.30010232967,true,true,11.04206715,390.31695650499995,0.0,1.2,66.0,11.04206715,390.31695650499995,0.0,121.92,0.0 +67,26002.6568866334,25302.6568866334,0.16,2753.9266436844505,242270.22674601412,700.0,46900.0,21587.041523027816,1275789.0105208666,18833.114879343364,1033518.7837748525,true,67,25302.6568866334,0.0,2753.9266436844505,164436.19879238345,700.0,46900.0,677.1198774048249,16826.344389320642,813.3094024462439,101054.11593258329,0.0,0.0,1248.2315255839626,44658.95013430044,15.265838249418884,1896.7883361791396,-2753.9266436844505,-242270.22674601412,true,true,11.08677187,401.40372837499996,0.0,1.2,67.0,11.08677187,401.40372837499996,0.0,121.92,0.0 +68,25203.926643684452,24503.926643684452,0.12,1096.7761622931248,243367.00290830724,700.0,47600.0,14973.13468577604,1290762.1452066426,13876.358523482915,1047395.1422983354,true,68,24503.926643684452,0.0,1096.7761622931248,165532.97495467658,700.0,47600.0,677.1198774048249,17503.464266725467,-813.3094024462439,100240.80653013704,0.0,0.0,1248.2315255839626,45907.1816598844,-15.265838249418884,1881.5224979297207,-1096.7761622931248,-243367.00290830724,true,true,11.04206715,412.44579552499994,0.0,1.2,68.0,11.04206715,412.44579552499994,0.0,121.92,0.0 +69,23546.776162293125,22846.776162293125,0.12,1086.9060001570858,244453.90890846433,700.0,48300.0,14890.883334642382,1305653.0285412848,13803.977334485297,1061199.1196328208,true,69,22846.776162293125,0.0,1086.9060001570858,166619.88095483367,700.0,48300.0,668.9454808018501,18172.409747527316,-810.0234850661462,99430.78304507089,0.0,0.0,1243.1881659176802,47150.36982580208,-15.204161496298292,1866.3183364334225,-1086.9060001570858,-244453.90890846433,true,true,10.99736242,423.44315794499994,0.0,1.2,69.0,10.99736242,423.44315794499994,0.0,121.92,0.0 +70,23536.906000157087,22836.906000157087,0.16,1905.5495553610397,246359.45846382537,700.0,49000.0,16284.684721006499,1321937.7132622914,14379.135165645459,1075578.2547984663,true,70,22836.906000157087,0.0,1905.5495553610397,168525.4305101947,700.0,49000.0,664.883069558538,18837.292817085854,0.0,99430.78304507089,0.0,0.0,1240.6664858025017,48391.036311604585,0.0,1866.3183364334225,-1905.5495553610397,-246359.45846382537,true,true,10.99736242,434.44052036499994,0.0,1.2,70.0,10.99736242,434.44052036499994,0.0,121.92,0.0 +71,24355.549555361038,23655.549555361038,0.22,6098.251137998609,252457.70960182397,700.0,49700.0,30901.141536357314,1352838.8547986487,24802.890398358704,1100381.145196825,true,71,23655.549555361038,0.0,6098.251137998609,174623.6816481933,700.0,49700.0,685.3605973496816,19522.653414435536,4082.9780530950543,103513.76109816594,0.0,0.0,1253.2748852502448,49644.31119685483,76.63760230362826,1942.9559387370507,-6098.251137998609,-252457.70960182397,true,true,11.22088605,445.66140641499993,0.0,1.2,71.0,11.22088605,445.66140641499993,0.0,121.92,0.0 +72,28548.25113799861,27848.25113799861,0.22,6249.370054845396,258707.07965666938,700.0,50400.0,31588.04570384271,1384426.9005024915,25338.675648997312,1125719.8208458223,true,72,27848.25113799861,0.0,6249.370054845396,180873.0517030387,700.0,50400.0,727.5684262605905,20250.221840696126,4165.130342136687,107678.89144030263,0.0,0.0,1278.4916835816568,50922.80288043649,78.17960286646121,2021.135541603512,-6249.370054845396,-258707.07965666938,true,true,11.44440967,457.10581608499996,0.0,1.2,72.0,11.44440967,457.10581608499996,0.0,121.92,0.0 +73,28699.370054845396,27999.370054845396,0.16,2906.033357902997,261613.11301457236,700.0,51100.0,22537.70848689373,1406964.6089893852,19631.675128990733,1145351.4959748131,true,73,27999.370054845396,0.0,2906.033357902997,183779.0850609417,700.0,51100.0,753.7061539879172,21003.927994684043,842.8844781589164,108521.77591846154,0.0,0.0,1293.6217625805036,52216.42464301699,15.820963175659735,2036.9565047791716,-2906.033357902997,-261613.11301457236,true,true,11.4891144,468.59493048499996,0.0,1.2,73.0,11.4891144,468.59493048499996,0.0,121.92,0.0 +74,25356.033357902998,24656.033357902998,0.12,0.0,261613.11301457236,700.0,51800.0,6999.999999999999,1413964.6089893852,6999.999999999999,1152351.4959748131,true,74,24656.033357902998,0.0,-532.5691910464533,183246.51586989523,700.0,51800.0,744.9252002765171,21748.85319496056,-2518.7949487392134,106002.98096972232,0.0,0.0,1288.5784029142212,53505.00304593121,-47.27784549797812,1989.6786592811934,-0.0,-261613.11301457236,true,true,11.35500022,479.949930705,0.0,1.2,74.0,11.35500022,479.949930705,0.0,121.92,0.0 +75,22450.0,21750.0,0.12,0.0,261613.11301457236,700.0,52500.0,6999.999999999999,1420964.6089893852,6999.999999999999,1159351.4959748131,true,75,21750.0,0.0,-2230.9438135086234,181015.57205638662,700.0,52500.0,710.4833769665152,22459.336571927077,-4132.269353454347,101870.71161626797,0.0,0.0,1268.404964249092,54773.408010180305,-77.56280126988347,1912.11585801131,-0.0,-261613.11301457236,true,true,11.1314766,491.08140730499997,0.0,1.2,75.0,11.1314766,491.08140730499997,0.0,121.92,0.0 +76,22450.0,21750.0,0.16,2787.2569516784074,264400.3699662508,700.0,53200.0,21795.355947990047,1442759.9649373752,19008.09899631164,1178359.5949711248,true,76,21750.0,0.0,2787.2569516784074,183802.82900806502,700.0,53200.0,693.6679086095177,23153.004480536594,819.8815995946654,102690.59321586264,0.0,0.0,1258.318244916527,56031.72625509683,15.389198557696954,1927.505056569007,-2787.2569516784074,-264400.3699662508,true,true,11.17618132,502.257588625,0.0,1.2,76.0,11.17618132,502.257588625,0.0,121.92,0.0 +77,25237.256951678406,24537.256951678406,0.22,5360.217282231827,269760.5872484826,700.0,53900.0,27546.44219196285,1470306.407129338,22186.224909731023,1200545.8198808557,true,77,24537.256951678406,0.0,5360.217282231827,189163.04629029686,700.0,53900.0,714.7292818597632,23867.733762396358,3312.3877538596817,106002.98096972232,0.0,0.0,1270.9266438001957,57302.652898897024,62.173602712186515,1989.6786592811934,-5360.217282231827,-269760.5872484826,true,true,11.35500022,513.612588845,0.0,1.2,77.0,11.35500022,513.612588845,0.0,121.92,0.0 +78,27810.217282231828,27110.217282231828,0.28,7216.541435594298,276977.12868407695,700.0,54600.0,28273.362269979632,1498579.7693993177,21056.820834385333,1221602.640715241,true,78,27110.217282231828,0.0,7216.541435594298,196379.58772589115,700.0,54600.0,758.1223902526021,24625.85615264896,5067.164790159327,111070.14575988165,0.0,0.0,1296.143442695682,58598.79634159271,95.110812486687,2084.7894717678805,-7216.541435594298,-276977.12868407695,true,true,11.62322858,525.235817425,0.0,1.2,78.0,11.62322858,525.235817425,0.0,121.92,0.0 +79,29666.5414355943,28966.5414355943,0.16,2096.2560632399773,279073.38474731694,700.0,55300.0,17476.600395249858,1516056.3697945676,15380.344332009881,1236982.9850472508,true,79,28966.5414355943,0.0,2096.2560632399773,198475.84378913112,700.0,55300.0,784.9825409813739,25410.838693630336,0.0,111070.14575988165,0.0,0.0,1311.2735222586036,59910.06986385131,0.0,2084.7894717678805,-2096.2560632399773,-279073.38474731694,true,true,11.62322858,536.8590460050001,0.0,1.2,79.0,11.62322858,536.8590460050001,0.0,121.92,0.0 +80,24546.256063239976,23846.256063239976,0.12,0.0,279073.38474731694,700.0,56000.0,6999.999999999999,1523056.3697945676,6999.999999999999,1243982.9850472508,true,80,23846.256063239976,0.0,-521.0197902472254,197954.8239988839,700.0,56000.0,771.4745356844536,26182.31322931479,-2548.369841420113,108521.77591846154,0.0,0.0,1303.708482477143,61213.77834632846,-47.832966988708876,2036.9565047791716,-0.0,-279073.38474731694,true,true,11.4891144,548.348160405,0.0,1.2,80.0,11.4891144,548.348160405,0.0,121.92,0.0 +81,22450.0,21750.0,0.22,5550.489175997324,284623.87392331427,700.0,56700.0,28411.314436351473,1551467.684230919,22860.825260354148,1266843.810307605,true,81,21750.0,0.0,5550.489175997324,203505.31317488122,700.0,56700.0,775.9598410216155,26958.273070336407,3404.3985256986293,111926.17444416018,0.0,0.0,1306.230162028247,62520.0085083567,63.9006472488328,2100.8571520280043,-5550.489175997324,-284623.87392331427,true,true,11.6679333,560.016093705,0.0,1.2,81.0,11.6679333,560.016093705,0.0,121.92,0.0 +82,28000.489175997325,27300.489175997325,0.28,7456.101838406588,292079.97576172085,700.0,57400.0,29128.935137166383,1580596.6193680854,21672.833298759797,1288516.6436063647,true,82,27300.489175997325,0.0,7456.101838406588,210961.4150132878,700.0,57400.0,821.7727455422701,27780.04581587868,5205.180756800284,117131.35520096046,0.0,0.0,1331.4469603596585,63851.45546871636,97.70137570437558,2198.55852773238,-7456.101838406588,-292079.97576172085,true,true,11.93616165,571.952255355,0.0,1.2,82.0,11.93616165,571.952255355,0.0,121.92,0.0 +83,29906.10183840659,29206.10183840659,0.28,9513.62521861918,301593.60098034004,700.0,58100.0,36477.232923639924,1617073.8522917253,26963.607705020746,1315480.2513113855,true,83,29206.10183840659,0.0,9513.62521861918,220475.04023190698,700.0,58100.0,888.8896008336417,28668.93541671232,7124.262549804632,124255.61775076509,0.0,0.0,1366.750478023635,65218.205946739996,133.72258995727063,2332.2811176896503,-9513.62521861918,-301593.60098034004,true,true,12.29379945,584.2460548050001,0.0,1.2,83.0,12.29379945,584.2460548050001,0.0,121.92,0.0 +84,31963.625218619178,31263.625218619178,0.33,12729.920897925458,314323.5218782655,700.0,58800.0,40696.72999371351,1657770.582285439,27966.809095788052,1343447.0604071736,true,84,31263.625218619178,0.0,12729.920897925458,233204.96112983243,700.0,58800.0,985.6859122891258,29654.621329001446,10139.258450508301,134394.87620127338,0.0,0.0,1414.6623951353547,66632.86834187535,190.31413999267747,2522.595257682328,-12729.920897925458,-314323.5218782655,true,true,12.78555143,597.0316062350001,0.0,1.2,84.0,12.78555143,597.0316062350001,0.0,121.92,0.0 +85,35179.92089792546,34479.92089792546,0.28,9327.968707076194,323651.4905853417,700.0,59500.0,35814.17395384354,1693584.7562392824,26486.20524676735,1369933.2656539408,true,85,34479.92089792546,0.0,9327.968707076194,242532.92983690862,700.0,59500.0,1083.6415709486257,30738.26289995007,6659.2796542950355,141054.15585556842,0.0,0.0,1460.0526326959703,68092.92097457132,124.99484913656153,2647.5901068188896,-9327.968707076194,-323651.4905853417,true,true,13.09848451,610.1300907450002,0.0,1.2,85.0,13.09848451,610.1300907450002,0.0,121.92,0.0 +86,31777.968707076194,31077.968707076194,0.28,7589.0808636865495,331240.57144902827,700.0,60200.0,29603.860227451958,1723188.6164667343,22014.77936376541,1391948.0450177062,true,86,31077.968707076194,0.0,7589.0808636865495,250122.01070059516,700.0,60200.0,1152.424304661724,31890.687204611793,4855.211327191917,145909.36718276032,0.0,0.0,1490.312791257739,69583.23376582905,91.13244057516951,2738.722547394059,-7589.0808636865495,-331240.57144902827,true,true,13.32200814,623.4520988850002,0.0,1.2,86.0,13.32200814,623.4520988850002,0.0,121.92,0.0 +87,30039.080863686548,29339.080863686548,0.22,5718.3252689580195,336958.89671798627,700.0,60900.0,29174.205767990996,1752362.8222347253,23455.880499032977,1415403.9255167393,true,87,29339.080863686548,0.0,5718.3252689580195,255840.33596955318,700.0,60900.0,1199.8596076708636,33090.54681228266,2952.5598083759955,148861.9269911363,0.0,0.0,1510.4862299228682,71093.71999575192,55.419622988292,2794.1421703823507,-5718.3252689580195,-336958.89671798627,true,true,13.45612231,636.9082211950001,0.0,1.2,87.0,13.45612231,636.9082211950001,0.0,121.92,0.0 +88,28168.32526895802,27468.32526895802,0.22,5800.003833042742,342758.900551029,700.0,61600.0,29545.471968376103,1781908.2942031014,23745.46813533336,1439149.3936520726,true,88,27468.32526895802,0.0,5800.003833042742,261640.33980259593,700.0,61600.0,1236.2778554234199,34326.824667706074,2982.134920107009,151844.0619112433,0.0,0.0,1525.6163089217155,72619.33630467363,55.97474859059799,2850.116918972949,-5800.003833042742,-342758.900551029,true,true,13.59023649,650.4984576850002,0.0,1.2,88.0,13.59023649,650.4984576850002,0.0,121.92,0.0 +89,28250.00383304274,27550.00383304274,0.22,5882.411500824958,348641.312051854,700.0,62300.0,29920.052276477083,1811828.3464795784,24037.640775652126,1463187.0344277248,true,89,27550.00383304274,0.0,5882.411500824958,267522.75130342087,700.0,62300.0,1273.4256599366233,35600.250327642694,3011.7095871221964,154855.7714983655,0.0,0.0,1540.7463879205625,74160.0826925942,56.52986584557609,2906.6467848185252,-5882.411500824958,-348641.312051854,true,true,13.72435066,664.2228083450002,0.0,1.2,89.0,13.72435066,664.2228083450002,0.0,121.92,0.0 +90,28332.411500824957,27632.411500824957,0.16,2840.586833433226,351481.8988852872,700.0,63000.0,22128.667708957662,1833957.014188536,19288.080875524436,1482475.115303249,true,90,27632.411500824957,0.0,2840.586833433226,270363.3381368541,700.0,63000.0,1292.275406295277,36892.52573393797,0.0,154855.7714983655,0.0,0.0,1548.3114271379488,75708.39411973214,0.0,2906.6467848185252,-2840.586833433226,-351481.8988852872,true,true,13.72435066,677.9471590050002,0.0,1.2,90.0,13.72435066,677.9471590050002,0.0,121.92,0.0 +91,25290.586833433226,24590.586833433226,0.12,774.1156409877715,352256.014526275,700.0,63700.0,12284.29700823143,1846241.3111967675,11510.181367243658,1493985.2966704927,true,91,24590.586833433226,0.0,774.1156409877715,271137.4537778419,700.0,63700.0,1279.6883971490586,38172.21413108703,-2011.0925648434115,152844.67893352208,0.0,0.0,1543.2680674716664,77251.66218720381,-37.748258789542064,2868.8985260289833,-774.1156409877715,-352256.014526275,true,true,13.63494121,691.5821002150002,0.0,1.2,91.0,13.63494121,691.5821002150002,0.0,121.92,0.0 +92,23224.115640987773,22524.115640987773,0.16,1777.2659488675613,354033.2804751425,700.0,64400.0,15482.912180422258,1861724.2233771898,13705.646231554696,1507690.9429020474,true,92,22524.115640987773,0.0,1777.2659488675613,272914.7197267094,700.0,64400.0,1260.9615499481,39433.17568103513,-1000.6170222787847,151844.0619112433,0.0,0.0,1535.70302825428,78787.36521545809,-18.781607056034026,2850.1169189729494,-1777.2659488675613,-354033.2804751425,true,true,13.59023649,705.1723367050002,0.0,1.2,92.0,13.59023649,705.1723367050002,0.0,121.92,0.0 +93,24227.26594886756,23527.26594886756,0.16,1763.1876284690957,355796.4681036116,700.0,65100.0,15394.922677931847,1877119.1460551217,13631.735049462752,1521322.67795151,true,93,23527.26594886756,0.0,1763.1876284690957,274677.9073551785,700.0,65100.0,1248.5790377680642,40681.75471880319,-997.3311467976091,150846.7307644457,0.0,0.0,1530.6596685879977,80318.02488404608,-18.719931089357086,2831.3969878835924,-1763.1876284690957,-355796.4681036116,true,true,13.54553176,718.7178684650003,0.0,1.2,93.0,13.54553176,718.7178684650003,0.0,121.92,0.0 +94,24213.187628469095,23513.187628469095,0.16,3795.289784243028,359591.75788785465,700.0,65800.0,28095.561151518927,1905214.7072066406,24300.2713672759,1545622.949318786,true,94,23513.187628469095,0.0,3795.289784243028,278473.19713942154,700.0,65800.0,1248.5790377680642,41930.33375657126,997.3311467976091,151844.0619112433,0.0,0.0,1530.6596685879977,81848.68455263408,18.719931089357086,2850.1169189729494,-3795.289784243028,-359591.75788785465,true,true,13.59023649,732.3081049550003,0.0,1.2,94.0,13.59023649,732.3081049550003,0.0,121.92,0.0 +95,26245.28978424303,25545.28978424303,0.22,6920.638115351538,366512.3960032062,700.0,66500.0,34639.26416068881,1939853.9713673294,27718.626045337267,1573341.575364123,true,95,25545.28978424303,0.0,6920.638115351538,285393.8352547731,700.0,66500.0,1279.6883985522622,43210.02215512352,4022.1851311568576,155866.24704240015,0.0,0.0,1543.268068035741,83391.95262066982,75.49651760667783,2925.6134365796274,-6920.638115351538,-366512.3960032062,true,true,13.76905539,746.0771603450003,0.0,1.2,95.0,13.76905539,746.0771603450003,0.0,121.92,0.0 +96,29370.63811535154,28670.63811535154,0.12,0.0,366512.3960032062,700.0,67200.0,6999.999999999999,1946853.9713673294,6999.999999999999,1580341.575364123,true,96,28670.63811535154,0.0,-1274.7251821755322,284119.11007259757,700.0,67200.0,1279.6883985522622,44489.71055367579,-4022.1851311568576,151844.0619112433,0.0,0.0,1543.268068035741,84935.22068870557,-75.49651760667783,2850.1169189729494,-0.0,-366512.3960032062,true,true,13.59023649,759.6673968350003,0.0,1.2,96.0,13.59023649,759.6673968350003,0.0,121.92,0.0 +97,22450.0,21750.0,0.12,0.0,366512.3960032062,700.0,67900.0,6999.999999999999,1953853.9713673294,6999.999999999999,1587341.575364123,true,97,21750.0,0.0,-2302.1464589006464,281816.9636136969,700.0,67900.0,1224.0577349410696,45713.768288616855,-4953.7942976494605,146890.26761359384,0.0,0.0,1520.5729492554333,86455.793637961,-92.98284544768867,2757.1340735252606,-0.0,-366512.3960032062,true,true,13.36671286,773.0341096950003,0.0,1.2,97.0,13.36671286,773.0341096950003,0.0,121.92,0.0 +98,22450.0,21750.0,0.12,0.0,366512.3960032062,700.0,68600.0,6999.999999999999,1960853.9713673294,6999.999999999999,1594341.575364123,true,98,21750.0,0.0,-1309.2206214637627,280507.74299223314,700.0,68600.0,1170.0631476267868,46883.83143624364,-3903.885567783944,142986.3820458099,0.0,0.0,1497.8778304751252,87953.67146843614,-73.27603178173038,2683.85804174353,-0.0,-366512.3960032062,true,true,13.18789396,786.2220036550003,0.0,1.2,98.0,13.18789396,786.2220036550003,0.0,121.92,0.0 +99,22450.0,21750.0,0.22,5637.369474930293,372149.7654781365,700.0,69300.0,28806.224886046788,1989660.196253376,23168.855411116496,1617510.4307752396,true,99,21750.0,0.0,5637.369474930293,286145.1124671634,700.0,69300.0,1164.1636814053415,48047.995117648985,2922.985136950401,145909.3671827603,0.0,0.0,1495.3561509240212,89449.02761936016,54.864505650529075,2738.7225473940593,-5637.369474930293,-372149.7654781365,true,true,13.32200814,799.5440117950003,0.0,1.2,99.0,13.32200814,799.5440117950003,0.0,121.92,0.0 +100,28087.369474930292,27387.369474930292,0.28,7757.486020111994,379907.2514982485,700.0,70000.0,30205.30721468569,2019865.5034680618,22447.8211945737,1639958.2519698134,true,100,27387.369474930292,0.0,7757.486020111994,293902.5984872754,700.0,70000.0,1211.9184083479158,49259.913525996904,4937.363581685395,150846.7307644457,0.0,0.0,1515.5295895891506,90964.5572089493,92.6744404895329,2831.3969878835924,-7757.486020111994,-379907.2514982485,true,true,13.54553176,813.0895435550003,0.0,1.2,100.0,13.54553176,813.0895435550003,0.0,121.92,0.0 +101,30207.486020111995,29507.486020111995,0.22,6889.698626431081,386796.95012467954,700.0,70700.0,34498.63012014128,2054364.133588203,27608.9314937102,1667567.1834635236,true,101,29507.486020111995,0.0,6889.698626431081,300792.2971137065,700.0,70700.0,1267.183387770959,50527.09691376786,4009.0407339198055,154855.7714983655,0.0,0.0,1538.224707805384,92502.78191675468,75.24979693493317,2906.6467848185257,-6889.698626431081,-386796.95012467954,true,true,13.72435066,826.8138942150003,0.0,1.2,101.0,13.72435066,826.8138942150003,0.0,121.92,0.0 +102,29339.69862643108,28639.69862643108,0.22,4920.531410030969,391717.4815347105,700.0,71400.0,25547.87004559531,2079912.0036337983,20627.33863556434,1688194.522099088,true,102,28639.69862643108,0.0,4920.531410030969,305712.82852373744,700.0,71400.0,1304.9446831827092,51832.04159695057,2024.2369606103357,156880.00845897585,0.0,0.0,1553.3547868042313,94056.13670355892,37.99497943369265,2944.6417642522183,-4920.531410030969,-391717.4815347105,true,true,13.81376011,840.6276543250003,0.0,1.2,102.0,13.81376011,840.6276543250003,0.0,121.92,0.0 +103,27370.53141003097,26670.53141003097,0.16,3921.1610187734263,395638.64255348395,700.0,72100.0,28882.25636733391,2108794.2600011323,24961.095348560484,1713155.6174476484,true,103,26670.53141003097,0.0,3921.1610187734263,309633.9895425109,700.0,72100.0,1324.1034374375272,53156.1450343881,1017.0477426532339,157897.05620162908,0.0,0.0,1560.919826585692,95617.05653014462,19.09001209697313,2963.7317763491915,-3921.1610187734263,-395638.64255348395,true,true,13.85846484,854.4861191650003,0.0,1.2,103.0,13.85846484,854.4861191650003,0.0,121.92,0.0 +104,26371.161018773426,25671.161018773426,0.16,1848.885509273012,397487.528062757,700.0,72800.0,15930.534432956323,2124724.7944340887,14081.648923683311,1727237.2663713316,true,104,25671.161018773426,0.0,1848.885509273012,311482.8750517839,700.0,72800.0,1324.1034374375272,54480.24847182563,-1017.0477426532339,156880.00845897585,0.0,0.0,1560.919826585692,97177.97635673032,-19.09001209697313,2944.6417642522183,-1848.885509273012,-397487.528062757,true,true,13.81376011,868.2998792750003,0.0,1.2,104.0,13.81376011,868.2998792750003,0.0,121.92,0.0 +105,24298.885509273012,23598.885509273012,0.12,0.0,397487.528062757,700.0,73500.0,6999.999999999999,2131724.7944340887,6999.999999999999,1734237.2663713316,true,105,23598.885509273012,0.0,-2298.7100097182256,309184.1650420657,700.0,73500.0,1285.9716357067307,55766.22010753236,-5035.946547732532,151844.0619112433,0.0,0.0,1545.7897475868447,98723.76610431715,-94.52484527926875,2850.1169189729494,-0.0,-397487.528062757,true,true,13.59023649,881.8901157650004,0.0,1.2,105.0,13.59023649,881.8901157650004,0.0,121.92,0.0 +106,22450.0,21750.0,0.12,0.0,397487.528062757,700.0,74200.0,6999.999999999999,2138724.7944340887,6999.999999999999,1741237.2663713316,true,106,21750.0,0.0,-3310.059840522043,305874.10520154366,700.0,74200.0,1217.9779898355223,56984.19809736788,-5934.694728483004,145909.3671827603,0.0,0.0,1518.0512697043291,100241.81737402148,-111.39437157888999,2738.7225473940593,-0.0,-397487.528062757,true,true,13.32200814,895.2121239050003,0.0,1.2,106.0,13.32200814,895.2121239050003,0.0,121.92,0.0 +107,22450.0,21750.0,0.16,3692.6358921581455,401180.16395491513,700.0,74900.0,27453.974325988405,2166178.768760077,23761.33843383026,1764998.604805162,true,107,21750.0,0.0,3692.6358921581455,309566.7410937018,700.0,74900.0,1187.8810649368147,58172.0791623047,980.9004308335434,146890.26761359384,0.0,0.0,1505.442870256586,101747.26024427808,18.411526131201306,2757.1340735252606,-3692.6358921581455,-401180.16395491513,true,true,13.36671286,908.5788367650003,0.0,1.2,107.0,13.36671286,908.5788367650003,0.0,121.92,0.0 +108,26142.635892158145,25442.635892158145,0.22,5745.4709912691305,406925.63494618423,700.0,75600.0,29297.595414859683,2195476.364174937,23552.124423590554,1788550.7292287524,true,108,25442.635892158145,0.0,5745.4709912691305,315312.2120849709,700.0,75600.0,1211.9184083479163,59383.99757065262,2962.418325721488,149852.68593931533,0.0,0.0,1515.5295895891506,103262.78983386722,55.60466761057527,2812.738741135836,-5745.4709912691305,-406925.63494618423,true,true,13.50082704,922.0796638050003,0.0,1.2,108.0,13.50082704,922.0796638050003,0.0,121.92,0.0 +109,28195.470991269132,27495.470991269132,0.28,7893.658180935239,414819.2931271195,700.0,76300.0,30691.636360482993,2226168.0005354197,22797.978179547754,1811348.7074083001,true,109,27495.470991269132,0.0,7893.658180935239,323205.87026590615,700.0,76300.0,1260.9615499481006,60644.95912060072,5003.085559050169,154855.7714983655,0.0,0.0,1535.7030282542803,104798.49286212151,93.90804368268951,2906.6467848185252,-7893.658180935239,-414819.2931271195,true,true,13.72435066,935.8040144650004,0.0,1.2,109.0,13.72435066,935.8040144650004,0.0,121.92,0.0 +110,30343.65818093524,29643.65818093524,0.28,8065.711574227025,422885.0047013465,700.0,77000.0,31306.112765096517,2257474.1133005163,23240.401190869492,1834589.1085991696,true,110,29643.65818093524,0.0,8065.711574227025,331271.5818401332,700.0,77000.0,1324.1034374375272,61969.06255803825,5085.2382582594255,159941.00975662493,0.0,0.0,1560.919826585692,106359.4126887072,95.45005194438004,3002.0968367629052,-8065.711574227025,-422885.0047013465,true,true,13.94787429,949.7518887550003,0.0,1.2,110.0,13.94787429,949.7518887550003,0.0,121.92,0.0 +111,30515.711574227025,29815.711574227025,0.28,9311.916479103667,432196.9211804502,700.0,77700.0,35756.84456822738,2293230.9578687437,26444.928089123714,1861034.0366882933,true,111,29815.711574227025,0.0,9311.916479103667,340583.49831923685,700.0,77700.0,1395.9556293758296,63365.018187414076,6210.72703958951,166151.73679621445,0.0,0.0,1588.658305032282,107948.07099373949,116.57550510604513,3118.6723418689503,-9311.916479103667,-432196.9211804502,true,true,14.21610264,963.9679913950004,0.0,1.2,111.0,14.21610264,963.9679913950004,0.0,121.92,0.0 +112,31761.916479103667,31061.916479103667,0.28,7362.522815271387,439559.4439957216,700.0,78400.0,28794.72434025495,2322025.6822089986,21432.201524983564,1882466.238213277,true,112,31061.916479103667,0.0,7362.522815271387,347946.02113450825,700.0,78400.0,1463.4904333883908,64828.508620802466,4206.206671894521,170357.94346810898,0.0,0.0,1613.8751033636938,109561.94609710318,78.95060662478151,3197.6229484937317,-7362.522815271387,-439559.4439957216,true,true,14.39492154,978.3629129350004,0.0,1.2,112.0,14.39492154,978.3629129350004,0.0,121.92,0.0 +113,29812.522815271386,29112.522815271386,0.22,5296.7086849480675,444856.1526806696,700.0,79100.0,27257.76674976394,2349283.4489587625,21961.058064815872,1904427.2962780928,true,113,29112.522815271386,0.0,5296.7086849480675,353242.7298194563,700.0,79100.0,1505.0381887091826,66333.54680951165,2122.8199295977283,172480.7633977067,0.0,0.0,1629.005182362541,111190.95127946572,39.84538427861551,3237.4683327723474,-5296.7086849480675,-444856.1526806696,true,true,14.48433099,992.8472439250004,0.0,1.2,113.0,14.48433099,992.8472439250004,0.0,121.92,0.0 +114,27746.70868494807,27046.70868494807,0.12,971.3780571953798,445827.530737865,700.0,79800.0,13928.150476628165,2363211.5994353904,12956.772419432786,1917384.0686975257,true,114,27046.70868494807,0.0,971.3780571953798,354214.1078766517,700.0,79800.0,1505.0381887091826,67838.58499822083,-2122.8199295977283,170357.94346810898,0.0,0.0,1629.005182362541,112819.95646182826,-39.84538427861551,3197.6229484937317,-971.3780571953798,-445827.530737865,true,true,14.39492154,1007.2421654650004,0.0,1.2,114.0,14.39492154,1007.2421654650004,0.0,121.92,0.0 +115,23421.37805719538,22721.37805719538,0.12,0.0,445827.530737865,700.0,80500.0,6999.999999999999,2370211.5994353904,6999.999999999999,1924384.0686975257,true,115,22721.37805719538,0.0,-2280.0825717534512,351934.0253048982,700.0,80500.0,1456.6410361310805,69295.22603435192,-5249.542976005601,165108.40049210336,0.0,0.0,1611.35342381259,114431.30988564085,-98.53405569152058,3099.088892802211,-0.0,-445827.530737865,true,true,14.17139792,1021.4135633850004,0.0,1.2,115.0,14.17139792,1021.4135633850004,0.0,121.92,0.0 +116,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,81200.0,6999.999999999999,2377211.5994353904,6999.999999999999,1931384.0686975257,true,116,21750.0,0.0,-28545.38724175339,323388.6380631448,700.0,81200.0,1224.0577349410696,70519.28376929299,-30713.52429083001,134394.87620127335,0.0,0.0,1520.5729492554333,115951.88283489629,-576.4936351198833,2522.5952576823274,-0.0,-445827.530737865,true,true,12.78555143,1034.1991148150005,0.0,1.2,116.0,12.78555143,1034.1991148150005,0.0,121.92,0.0 +117,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,81900.0,6999.999999999999,2384211.5994353904,6999.999999999999,1938384.0686975257,true,117,21750.0,0.0,-27540.077314602393,295848.5607485424,700.0,81900.0,874.2109896093021,71393.49475890229,-29224.92122544256,105169.9549758308,0.0,0.0,1359.1854388062488,117311.06827370253,-548.5525175753874,1974.04274010694,-0.0,-445827.530737865,true,true,11.3102955,1045.5094103150004,0.0,1.2,117.0,11.3102955,1045.5094103150004,0.0,121.92,0.0 +118,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,82600.0,6999.999999999999,2391211.5994353904,6999.999999999999,1945384.0686975257,true,118,21750.0,0.0,-24344.19746131878,271504.3632872236,700.0,82600.0,590.790343991441,71984.28510289373,-25646.359550655226,79523.59542517558,0.0,0.0,1192.754568916412,118503.82284261895,-481.38282357140747,1492.6599165355326,-0.0,-445827.530737865,true,true,9.835039564,1055.3444498790004,0.0,1.2,118.0,9.835039564,1055.3444498790004,0.0,121.92,0.0 +119,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,83300.0,6999.999999999999,2398211.5994353904,6999.999999999999,1952384.0686975257,true,119,21750.0,0.0,-21079.30139580568,250425.06189141795,700.0,83300.0,376.38576837612885,72360.67087126986,-22067.79773598453,57455.797689191044,0.0,0.0,1026.323698744538,119530.14654136349,-414.21312694181347,1078.4467895937191,-0.0,-445827.530737865,true,true,8.359783629,1063.7042335080005,0.0,1.2,119.0,8.359783629,1063.7042335080005,0.0,121.92,0.0 +120,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,84000.0,6999.999999999999,2405211.5994353904,6999.999999999999,1959384.0686975257,true,120,21750.0,0.0,-17755.019416343515,232670.04247507444,700.0,84000.0,221.36711401084736,72582.03798528071,-18489.23592859103,38966.561760600016,0.0,0.0,859.8928286854788,120390.03937004897,-347.0434304488127,731.4033591449064,-0.0,-445827.530737865,true,true,6.884527695,1070.5887612030006,0.0,1.2,120.0,6.884527695,1070.5887612030006,0.0,121.92,0.0 +121,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,84700.0,6999.999999999999,2412211.5994353904,6999.999999999999,1966384.0686975257,true,121,21750.0,0.0,-14380.981690699482,218289.06078437495,700.0,84700.0,116.1042313636879,72698.1422166444,-14910.674146263293,24055.887614336723,0.0,0.0,693.4619586264195,121083.50132867538,-279.87373442629723,451.52962471860917,-0.0,-445827.530737865,true,true,5.40927176,1075.9980329630005,0.0,1.2,121.0,5.40927176,1075.9980329630005,0.0,121.92,0.0 +122,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,85400.0,6999.999999999999,2419211.5994353904,6999.999999999999,1973384.0686975257,true,122,21750.0,0.0,-10966.818328770627,207322.2424556043,700.0,85400.0,50.96697105401443,72749.10918769841,-11332.11235018982,12723.775264146903,0.0,0.0,527.0310885109528,121610.53241718633,-212.70403814577358,238.8255865728356,-0.0,-445827.530737865,true,true,3.934015825,1079.9320487880004,0.0,1.2,122.0,3.934015825,1079.9320487880004,0.0,121.92,0.0 +123,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,86100.0,6999.999999999999,2426211.5994353904,6999.999999999999,1980384.0686975257,true,123,21750.0,0.0,-7522.159489651946,199800.08296595237,700.0,86100.0,16.325183758988782,72765.4343714574,-7753.5505500734635,4970.22471407344,0.0,0.0,360.6002184518937,121971.13263563822,-145.534341789365,93.2912447834706,-0.0,-445827.530737865,true,true,2.458759891,1082.3908086790004,0.0,1.2,123.0,2.458759891,1082.3908086790004,0.0,121.92,0.0 +124,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,86800.0,6999.999999999999,2433211.5994353904,6999.999999999999,1987384.0686975257,true,124,21750.0,0.0,-4056.6353376199945,195743.4476283324,700.0,86800.0,2.548720086007173,72767.98309154341,-4174.988760468579,795.2359536048607,0.0,0.0,194.16934839283448,122165.30198403106,-78.36464563025704,14.926599153213559,-0.0,-445827.530737865,true,true,0.983503956,1083.3743126350005,0.0,1.2,124.0,0.983503956,1083.3743126350005,0.0,121.92,0.0 +125,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,87500.0,6999.999999999999,2440211.5994353904,6999.999999999999,1994384.0686975257,true,125,21750.0,0.0,-754.6261507241741,194988.8214776082,700.0,87500.0,0.05944536638567728,72768.0425369098,-795.2359536048966,-3.5925040720030665e-11,0.0,0.0,55.476956667550574,122220.77894069861,-14.926599153213761,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,125.0,0.0,1083.3743126350005,0.0,121.92,0.0 +126,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,88200.0,6999.999999999999,2447211.5994353904,6999.999999999999,2001384.0686975257,true,126,21750.0,0.0,0.0,194988.8214776082,700.0,88200.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,126.0,0.0,1083.3743126350005,0.0,121.92,0.0 +127,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,88900.0,6999.999999999999,2454211.5994353904,6999.999999999999,2008384.0686975257,true,127,21750.0,0.0,0.0,194988.8214776082,700.0,88900.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,127.0,0.0,1083.3743126350005,0.0,121.92,0.0 +128,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,89600.0,6999.999999999999,2461211.5994353904,6999.999999999999,2015384.0686975257,true,128,21750.0,0.0,0.0,194988.8214776082,700.0,89600.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,128.0,0.0,1083.3743126350005,0.0,121.92,0.0 +129,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,90300.0,6999.999999999999,2468211.5994353904,6999.999999999999,2022384.0686975257,true,129,21750.0,0.0,0.0,194988.8214776082,700.0,90300.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,129.0,0.0,1083.3743126350005,0.0,121.92,0.0 +130,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,91000.0,6999.999999999999,2475211.5994353904,6999.999999999999,2029384.0686975257,true,130,21750.0,0.0,0.0,194988.8214776082,700.0,91000.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,130.0,0.0,1083.3743126350005,0.0,121.92,0.0 +131,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,91700.0,6999.999999999999,2482211.5994353904,6999.999999999999,2036384.0686975257,true,131,21750.0,0.0,0.0,194988.8214776082,700.0,91700.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,131.0,0.0,1083.3743126350005,0.0,121.92,0.0 +132,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,92400.0,6999.999999999999,2489211.5994353904,6999.999999999999,2043384.0686975257,true,132,21750.0,0.0,0.0,194988.8214776082,700.0,92400.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,132.0,0.0,1083.3743126350005,0.0,121.92,0.0 +133,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,93100.0,6999.999999999999,2496211.5994353904,6999.999999999999,2050384.0686975257,true,133,21750.0,0.0,0.0,194988.8214776082,700.0,93100.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,133.0,0.0,1083.3743126350005,0.0,121.92,0.0 +134,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,93800.0,6999.999999999999,2503211.5994353904,6999.999999999999,2057384.0686975257,true,134,21750.0,0.0,0.0,194988.8214776082,700.0,93800.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,134.0,0.0,1083.3743126350005,0.0,121.92,0.0 +135,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,94500.0,6999.999999999999,2510211.5994353904,6999.999999999999,2064384.0686975257,true,135,21750.0,0.0,0.0,194988.8214776082,700.0,94500.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,135.0,0.0,1083.3743126350005,0.0,121.92,0.0 +136,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,95200.0,6999.999999999999,2517211.5994353904,6999.999999999999,2071384.0686975257,true,136,21750.0,0.0,0.0,194988.8214776082,700.0,95200.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,136.0,0.0,1083.3743126350005,0.0,121.92,0.0 +137,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,95900.0,6999.999999999999,2524211.5994353904,6999.999999999999,2078384.0686975257,true,137,21750.0,0.0,0.0,194988.8214776082,700.0,95900.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,137.0,0.0,1083.3743126350005,0.0,121.92,0.0 +138,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,96600.0,6999.999999999999,2531211.5994353904,6999.999999999999,2085384.0686975257,true,138,21750.0,0.0,0.0,194988.8214776082,700.0,96600.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,138.0,0.0,1083.3743126350005,0.0,121.92,0.0 +139,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,97300.0,6999.999999999999,2538211.5994353904,6999.999999999999,2092384.0686975257,true,139,21750.0,0.0,0.0,194988.8214776082,700.0,97300.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,139.0,0.0,1083.3743126350005,0.0,121.92,0.0 +140,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,98000.0,6999.999999999999,2545211.5994353904,6999.999999999999,2099384.0686975257,true,140,21750.0,0.0,0.0,194988.8214776082,700.0,98000.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,140.0,0.0,1083.3743126350005,0.0,121.92,0.0 +141,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,98700.0,6999.999999999999,2552211.5994353904,6999.999999999999,2106384.0686975257,true,141,21750.0,0.0,0.0,194988.8214776082,700.0,98700.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,141.0,0.0,1083.3743126350005,0.0,121.92,0.0 +142,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,99400.0,6999.999999999999,2559211.5994353904,6999.999999999999,2113384.0686975257,true,142,21750.0,0.0,0.0,194988.8214776082,700.0,99400.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,142.0,0.0,1083.3743126350005,0.0,121.92,0.0 +143,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,100100.0,6999.999999999999,2566211.5994353904,6999.999999999999,2120384.0686975257,true,143,21750.0,0.0,0.0,194988.8214776082,700.0,100100.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,143.0,0.0,1083.3743126350005,0.0,121.92,0.0 +144,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,100800.0,6999.999999999999,2573211.5994353904,6999.999999999999,2127384.0686975257,true,144,21750.0,0.0,0.0,194988.8214776082,700.0,100800.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,144.0,0.0,1083.3743126350005,0.0,121.92,0.0 +145,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,101500.0,6999.999999999999,2580211.5994353904,6999.999999999999,2134384.0686975257,true,145,21750.0,0.0,0.0,194988.8214776082,700.0,101500.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,145.0,0.0,1083.3743126350005,0.0,121.92,0.0 +146,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,102200.0,6999.999999999999,2587211.5994353904,6999.999999999999,2141384.0686975257,true,146,21750.0,0.0,0.0,194988.8214776082,700.0,102200.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,146.0,0.0,1083.3743126350005,0.0,121.92,0.0 +147,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,102900.0,6999.999999999999,2594211.5994353904,6999.999999999999,2148384.0686975257,true,147,21750.0,0.0,0.0,194988.8214776082,700.0,102900.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,147.0,0.0,1083.3743126350005,0.0,121.92,0.0 +148,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,103600.0,6999.999999999999,2601211.5994353904,6999.999999999999,2155384.0686975257,true,148,21750.0,0.0,0.0,194988.8214776082,700.0,103600.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,148.0,0.0,1083.3743126350005,0.0,121.92,0.0 +149,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,104300.0,6999.999999999999,2608211.5994353904,6999.999999999999,2162384.0686975257,true,149,21750.0,0.0,0.0,194988.8214776082,700.0,104300.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,149.0,0.0,1083.3743126350005,0.0,121.92,0.0 +150,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,105000.0,6999.999999999999,2615211.5994353904,6999.999999999999,2169384.0686975257,true,150,21750.0,0.0,0.0,194988.8214776082,700.0,105000.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,150.0,0.0,1083.3743126350005,0.0,121.92,0.0 +151,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,105700.0,6999.999999999999,2622211.5994353904,6999.999999999999,2176384.0686975257,true,151,21750.0,0.0,0.0,194988.8214776082,700.0,105700.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,151.0,0.0,1083.3743126350005,0.0,121.92,0.0 +152,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,106400.0,6999.999999999999,2629211.5994353904,6999.999999999999,2183384.0686975257,true,152,21750.0,0.0,0.0,194988.8214776082,700.0,106400.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,152.0,0.0,1083.3743126350005,0.0,121.92,0.0 +153,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,107100.0,6999.999999999999,2636211.5994353904,6999.999999999999,2190384.0686975257,true,153,21750.0,0.0,0.0,194988.8214776082,700.0,107100.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,153.0,0.0,1083.3743126350005,0.0,121.92,0.0 +154,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,107800.0,6999.999999999999,2643211.5994353904,6999.999999999999,2197384.0686975257,true,154,21750.0,0.0,0.0,194988.8214776082,700.0,107800.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,154.0,0.0,1083.3743126350005,0.0,121.92,0.0 +155,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,108500.0,6999.999999999999,2650211.5994353904,6999.999999999999,2204384.0686975257,true,155,21750.0,0.0,0.0,194988.8214776082,700.0,108500.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,155.0,0.0,1083.3743126350005,0.0,121.92,0.0 +156,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,109200.0,6999.999999999999,2657211.5994353904,6999.999999999999,2211384.0686975257,true,156,21750.0,0.0,0.0,194988.8214776082,700.0,109200.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,156.0,0.0,1083.3743126350005,0.0,121.92,0.0 +157,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,109900.0,6999.999999999999,2664211.5994353904,6999.999999999999,2218384.0686975257,true,157,21750.0,0.0,0.0,194988.8214776082,700.0,109900.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,157.0,0.0,1083.3743126350005,0.0,121.92,0.0 +158,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,110600.0,6999.999999999999,2671211.5994353904,6999.999999999999,2225384.0686975257,true,158,21750.0,0.0,0.0,194988.8214776082,700.0,110600.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,158.0,0.0,1083.3743126350005,0.0,121.92,0.0 +159,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,111300.0,6999.999999999999,2678211.5994353904,6999.999999999999,2232384.0686975257,true,159,21750.0,0.0,0.0,194988.8214776082,700.0,111300.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,159.0,0.0,1083.3743126350005,0.0,121.92,0.0 +160,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,112000.0,6999.999999999999,2685211.5994353904,6999.999999999999,2239384.0686975257,true,160,21750.0,0.0,0.0,194988.8214776082,700.0,112000.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,160.0,0.0,1083.3743126350005,0.0,121.92,0.0 +161,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,112700.0,6999.999999999999,2692211.5994353904,6999.999999999999,2246384.0686975257,true,161,21750.0,0.0,0.0,194988.8214776082,700.0,112700.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,161.0,0.0,1083.3743126350005,0.0,121.92,0.0 +162,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,113400.0,6999.999999999999,2699211.5994353904,6999.999999999999,2253384.0686975257,true,162,21750.0,0.0,0.0,194988.8214776082,700.0,113400.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,162.0,0.0,1083.3743126350005,0.0,121.92,0.0 +163,22450.0,21750.0,0.12,0.0,445827.530737865,700.0,114100.0,6999.999999999999,2706211.5994353904,6999.999999999999,2260384.0686975257,true,163,21750.0,0.0,0.0,194988.8214776082,700.0,114100.0,0.0,72768.0425369098,0.0,-3.5925040720030665e-11,0.0,0.0,0.0,122220.77894069861,0.0,-2.0250467969162855e-13,-0.0,-445827.530737865,true,true,0.0,1083.3743126350005,0.0,1.2,163.0,0.0,1083.3743126350005,0.0,121.92,0.0 +164,22450.0,21750.0,0.16,1906.2818093466954,447733.8125472117,700.0,114800.0,16289.261308416846,2722500.860743807,14382.97949907015,2274767.0481965956,true,164,21750.0,0.0,1906.2818093466954,196895.1032869549,700.0,114800.0,0.20062811195964725,72768.24316502175,1789.2808980367404,1789.2808980367045,0.0,0.0,83.21543505773333,122303.99437575635,33.58484814026184,33.58484814026164,-1906.2818093466954,-447733.8125472117,true,true,1.475255935,1084.8495685700004,0.0,1.2,164.0,1.475255935,1084.8495685700004,0.0,121.92,0.0 +165,24356.281809346696,23656.281809346696,0.22,5723.66049772453,453457.47304493625,700.0,115500.0,29198.45680783877,2751699.317551646,23474.79631011424,2298241.84450671,true,165,23656.281809346696,0.0,5723.66049772453,202618.7637846794,700.0,115500.0,5.4169590192385995,72773.66012404098,5367.842689258775,7157.123587295479,0.0,0.0,249.64630511679252,122553.64068087314,100.75454432972379,134.33939246998543,-5723.66049772453,-453457.47304493625,true,true,2.950511869,1087.8000804390003,0.0,1.2,165.0,2.950511869,1087.8000804390003,0.0,121.92,0.0 +166,28173.66049772453,27473.66049772453,0.28,9555.484417564168,463012.95746250043,700.0,116200.0,36626.73006272917,2788326.047614375,27071.245645165,2325313.090151875,true,166,27473.66049772453,0.0,9555.484417564168,212174.2482022436,700.0,116200.0,25.078513974556593,72798.73863801554,8946.404487757982,16103.528075053462,0.0,0.0,416.0771751758517,122969.717856049,167.9242406557784,302.2636331257638,-9555.484417564168,-463012.95746250043,true,true,4.425767804,1092.2258482430004,0.0,1.2,166.0,4.425767804,1092.2258482430004,0.0,121.92,0.0 +167,32005.48441756417,31305.48441756417,0.33,13411.383698459842,476424.34116096026,700.0,116900.0,42761.76878321164,2831087.816397587,29350.3850847518,2354663.475236627,true,167,31305.48441756417,0.0,13411.383698459842,225585.63190070342,700.0,116900.0,68.81544234218501,72867.55408035772,12524.966274128567,28628.49434918203,0.0,0.0,582.5080452349109,123552.2259012839,235.09393675417851,537.3575698799423,-13411.383698459842,-476424.34116096026,true,true,5.901023738,1098.1268719810005,0.0,1.2,167.0,5.901023738,1098.1268719810005,0.0,121.92,0.0 +168,35861.383698459846,35161.383698459846,0.33,17300.988519430877,493725.3296803911,700.0,117600.0,54548.45005888144,2885636.2664564685,37247.46153945057,2391910.9367760774,true,168,35161.383698459846,0.0,17300.988519430877,242886.6204201343,700.0,117600.0,146.25789348639523,73013.81197384412,16103.528077479215,44732.02242666125,0.0,0.0,748.9389152939701,124301.16481657788,302.2636331712946,839.6212030512369,-17300.988519430877,-493725.3296803911,true,true,7.376279673,1105.5031516540005,0.0,1.2,168.0,7.376279673,1105.5031516540005,0.0,121.92,0.0 +169,39750.98851943087,39050.98851943087,0.35,21233.928990301494,514959.2586706926,700.0,118300.0,62668.368543718556,2948304.635000187,41434.43955341706,2433345.3763294946,true,169,39050.98851943087,0.0,21233.928990301494,264120.5494104358,700.0,118300.0,267.0360167714588,73280.84799061557,19682.089858998374,64414.11228565962,0.0,0.0,915.3697853530293,125216.5346019309,369.43332917863336,1209.0545322298703,-21233.928990301494,-514959.2586706926,true,true,8.851535607,1114.3546872610004,0.0,1.2,169.0,8.851535607,1114.3546872610004,0.0,121.92,0.0 +170,43683.928990301494,42983.928990301494,0.35,18345.528916425174,533304.7875871178,700.0,119000.0,54415.796904071925,3002720.4319042587,36070.26798764675,2469415.6443171413,true,170,42983.928990301494,0.0,18345.528916425174,282466.07832686097,700.0,119000.0,413.6164828441106,73694.46447345968,16561.938881175596,80976.05116683521,0.0,0.0,1059.1055367445954,126275.6401386755,310.86801566086996,1519.9225478907404,-18345.528916425174,-533304.7875871178,true,true,9.924449014,1124.2791362750004,0.0,1.2,170.0,9.924449014,1124.2791362750004,0.0,121.92,0.0 +171,40795.52891642517,40095.52891642517,0.35,18079.43071423799,551384.2183013557,700.0,119700.0,53655.51632639427,3056375.948230653,35576.085612156276,2504991.7299292977,true,171,40095.52891642517,0.0,18079.43071423799,300545.50904109894,700.0,119700.0,561.3178138376351,74255.78228729732,16044.378378340822,97020.42954517604,0.0,0.0,1172.5811302512827,127448.22126892679,301.15339180825026,1821.0759396989906,-18079.43071423799,-551384.2183013557,true,true,10.86324825,1135.1423845250004,0.0,1.2,171.0,10.86324825,1135.1423845250004,0.0,121.92,0.0 +172,40529.43071423799,39829.43071423799,0.33,14544.683650085059,565928.9019514407,700.0,120400.0,46196.01106086381,3102571.959291517,31651.327410778755,2536643.0573400767,true,172,39829.43071423799,0.0,14544.683650085059,315090.192691184,700.0,120400.0,702.0420791574303,74957.82436645475,12347.51676147383,109367.94630664987,0.0,0.0,1263.3616045828096,128711.5828735096,231.76320487098926,2052.83914456998,-14544.683650085059,-565928.9019514407,true,true,11.53381912,1146.6762036450004,0.0,1.2,172.0,11.53381912,1146.6762036450004,0.0,121.92,0.0 +173,36994.68365008506,36294.68365008506,0.28,7353.014097389737,573281.9160488305,700.0,121100.0,28760.76463353477,3131332.7239250517,21407.750536145035,2558050.807876222,true,173,36294.68365008506,0.0,7353.014097389737,322443.20678857376,700.0,121100.0,794.0749119206697,75751.89927837542,5146.031167701478,114513.97747435136,0.0,0.0,1316.3168813608117,130027.8997548704,96.59113640677788,2149.430280976758,-7353.014097389737,-573281.9160488305,true,true,11.80204748,1158.4782511250005,0.0,1.2,173.0,11.80204748,1158.4782511250005,0.0,121.92,0.0 +174,29803.014097389736,29103.014097389736,0.12,0.0,573281.9160488305,700.0,121800.0,6999.999999999999,3138332.7239250517,6999.999999999999,2565050.807876222,true,174,29103.014097389736,0.0,-4001.3601296987567,318441.846658875,700.0,121800.0,789.5200005789524,76541.41927895437,-5992.20155588983,108521.77591846153,0.0,0.0,1313.7952018097076,131341.69495668012,-112.47377619758674,2036.9565047791712,-0.0,-573281.9160488305,true,true,11.4891144,1169.9673655250006,0.0,1.2,174.0,11.4891144,1169.9673655250006,0.0,121.92,0.0 +175,22450.0,21750.0,0.12,0.0,573281.9160488305,700.0,122500.0,6999.999999999999,3145332.7239250517,6999.999999999999,2572050.807876222,true,175,21750.0,0.0,-3089.1199603271734,315352.72669854783,700.0,122500.0,731.8820623137153,77273.30134126809,-5008.014820295603,103513.76109816592,0.0,0.0,1281.0133636968353,132622.70832037696,-94.00056604212095,1942.9559387370502,-0.0,-573281.9160488305,true,true,11.22088605,1181.1882515750005,0.0,1.2,175.0,11.22088605,1181.1882515750005,0.0,121.92,0.0 +176,22450.0,21750.0,0.12,0.0,573281.9160488305,700.0,123200.0,6999.999999999999,3152332.7239250517,6999.999999999999,2579050.807876222,true,176,21750.0,0.0,-1389.0855306893413,313963.6411678585,700.0,123200.0,689.5059127814737,77962.80725404956,-3272.9545680289084,100240.80653013702,0.0,0.0,1255.7965653654232,133878.50488574238,-61.43344080732996,1881.5224979297202,-0.0,-573281.9160488305,true,true,11.04206715,1192.2303187250006,0.0,1.2,176.0,11.04206715,1192.2303187250006,0.0,121.92,0.0 +177,22450.0,21750.0,0.16,4434.404726964829,577716.3207757953,700.0,123900.0,32090.02954353018,3184422.753468582,27655.624816565352,2606706.432692787,true,177,21750.0,0.0,4434.404726964829,318398.0458948233,700.0,123900.0,685.3605973496816,78648.16785139925,2449.7866857256167,102690.59321586264,0.0,0.0,1253.2748852502448,135131.77977099264,45.98255863928627,1927.5050565690065,-4434.404726964829,-577716.3207757953,true,true,11.17618132,1203.4065000450007,0.0,1.2,177.0,11.17618132,1203.4065000450007,0.0,121.92,0.0 +178,26884.40472696483,26184.40472696483,0.16,3652.7227241482133,581369.0434999435,700.0,124600.0,27204.517025926332,3211627.270494508,23551.794301778118,2630258.226994565,true,178,26184.40472696483,0.0,3652.7227241482133,322050.7686189715,700.0,124600.0,706.2543199339497,79354.42217133321,1649.621679046332,104340.21489490898,0.0,0.0,1265.8832841339135,136397.66305512656,30.96344103401797,1958.4684976030244,-3652.7227241482133,-581369.0434999435,true,true,11.26559077,1214.6720908150007,0.0,1.2,178.0,11.26559077,1214.6720908150007,0.0,121.92,0.0 +179,26102.722724148214,25402.722724148214,0.16,3693.2180129643757,585062.2615129078,700.0,125300.0,27457.612581027348,3239084.8830755353,23764.394568062973,2654022.621562628,true,179,25402.722724148214,0.0,3693.2180129643757,325743.98663193587,700.0,125300.0,723.2717730063798,80077.69394433958,1662.7660748133496,106002.98096972232,0.0,0.0,1275.9700034664781,137673.63305859303,31.21016167816855,1989.678659281193,-3693.2180129643757,-585062.2615129078,true,true,11.35500022,1226.0270910350007,0.0,1.2,179.0,11.35500022,1226.0270910350007,0.0,121.92,0.0 +180,26143.218012964375,25443.218012964375,0.22,5468.533006183692,590530.7945190915,700.0,126000.0,28038.786391744055,3267123.669467279,22570.25338556036,2676592.8749481887,true,180,25443.218012964375,0.0,5468.533006183692,331212.51963811956,700.0,126000.0,749.3071015020143,80827.00104584159,3364.965336927565,109367.94630664989,0.0,0.0,1291.1000824653254,138964.73314105836,63.16048528878698,2052.83914456998,-5468.533006183692,-590530.7945190915,true,true,11.53381912,1237.5609101550008,0.0,1.2,180.0,11.53381912,1237.5609101550008,0.0,121.92,0.0 +181,27918.533006183694,27218.533006183694,0.33,14587.897557672813,605118.6920767643,700.0,126700.0,46326.96229597822,3313450.6317632576,31739.06473830541,2708331.939686494,true,181,27218.533006183694,0.0,14587.897557672813,345800.41719579237,700.0,126700.0,831.1464892479959,81658.14753508959,12191.42734584454,121559.37365249443,0.0,0.0,1336.490320025941,140301.2234610843,228.83340255433612,2281.672547124316,-14587.897557672813,-605118.6920767643,true,true,12.15968528,1249.7205954350009,0.0,1.2,181.0,12.15968528,1249.7205954350009,0.0,121.92,0.0 +182,37037.89755767281,36337.89755767281,0.12,0.0,605118.6920767643,700.0,127400.0,6999.999999999999,3320450.6317632576,6999.999999999999,2715331.939686494,true,182,36337.89755767281,0.0,-4073.4933080071623,341726.92388778523,700.0,127400.0,864.5155776914997,82522.6631127811,-6176.223099567749,115383.15055292667,0.0,0.0,1354.1420791399664,141655.36554022427,-115.92786527087931,2165.7446818534368,-0.0,-605118.6920767643,true,true,11.8467522,1261.567347635001,0.0,1.2,182.0,11.8467522,1261.567347635001,0.0,121.92,0.0 +183,22450.0,21750.0,0.12,0.0,605118.6920767643,700.0,128100.0,6999.999999999999,3327450.6317632576,6999.999999999999,2722331.939686494,true,183,21750.0,0.0,-19140.415422658145,322586.5084651271,700.0,128100.0,718.9920700098693,83241.65518279097,-20743.499795791122,94639.65075713555,0.0,0.0,1273.4483239153742,142928.81386413964,-389.3560207922659,1776.3886610611708,-0.0,-605118.6920767643,true,true,10.72913407,1272.296481705001,0.0,1.2,183.0,10.72913407,1272.296481705001,0.0,121.92,0.0 +184,22450.0,21750.0,0.12,0.0,605118.6920767643,700.0,128800.0,6999.999999999999,3334450.6317632576,6999.999999999999,2729331.939686494,true,184,21750.0,0.0,-8415.967309445401,314170.5411556817,700.0,128800.0,568.5918204984025,83810.24700328938,-9974.953487984681,84664.69726915087,0.0,0.0,1177.624489691935,144106.43835383156,-187.23013165105692,1589.1585294101137,-0.0,-605118.6920767643,true,true,10.14797264,1282.444454345001,0.0,1.2,184.0,10.14797264,1282.444454345001,0.0,121.92,0.0 +185,22450.0,21750.0,0.12,0.0,605118.6920767643,700.0,129500.0,6999.999999999999,3341450.6317632576,6999.999999999999,2736331.939686494,true,185,21750.0,0.0,-21777.142686125895,292393.39846955583,700.0,129500.0,416.577926150566,84226.82492943994,-22826.886584838263,61837.81068431261,0.0,0.0,1061.6272165777368,145168.0655704093,-428.46124401593653,1160.6972853941772,-0.0,-605118.6920767643,true,true,8.672716706,1291.1171710510012,0.0,1.2,185.0,8.672716706,1291.1171710510012,0.0,121.92,0.0 +186,22450.0,21750.0,0.12,0.0,605118.6920767643,700.0,130200.0,6999.999999999999,3348450.6317632576,6999.999999999999,2743331.939686494,true,186,21750.0,0.0,-9336.595068141385,283056.8034014144,700.0,130200.0,285.08324591519505,84511.90817535514,-10362.713147821047,51475.097536491565,0.0,0.0,935.5432241309736,146103.60879454025,-194.50839036650697,966.1888950276702,-0.0,-605118.6920767643,true,true,7.912736376,1299.0299074270013,0.0,1.2,186.0,7.912736376,1299.0299074270013,0.0,121.92,0.0 +187,22450.0,21750.0,0.12,0.0,605118.6920767643,700.0,130900.0,6999.999999999999,3355450.6317632576,6999.999999999999,2750331.939686494,true,187,21750.0,0.0,-1803.5554538672159,281253.2479475472,700.0,130900.0,237.31557782264315,84749.2237531778,-2867.121358058867,48607.9761784327,0.0,0.0,880.0662674634231,146983.6750620037,-53.81594109441542,912.3729539332548,-0.0,-605118.6920767643,true,true,7.68921275,1306.7191201770013,0.0,1.2,187.0,7.68921275,1306.7191201770013,0.0,121.92,0.0 +188,22450.0,21750.0,0.22,6453.669458101839,611572.3615348662,700.0,131600.0,32516.67935500836,3387967.311118266,26063.009896906522,2776394.9495834005,true,188,21750.0,0.0,6453.669458101839,287706.91740564903,700.0,131600.0,245.56930567339705,84994.7930588512,5219.968228647543,53827.94440708024,0.0,0.0,890.1529868523952,147873.82804885608,97.97893692850403,1010.3518908617589,-6453.669458101839,-611572.3615348662,true,true,8.091555277,1314.8106754540013,0.0,1.2,188.0,8.091555277,1314.8106754540013,0.0,121.92,0.0 +189,28903.66945810184,28203.66945810184,0.16,4273.005164087254,615845.3666989534,700.0,132300.0,31081.282275545338,3419048.5933938115,26808.277111458083,2803203.2266948586,true,189,28203.66945810184,0.0,4273.005164087254,291979.92256973626,700.0,132300.0,275.96128521508103,85270.75434406627,3014.9958255062224,56842.940232586465,0.0,0.0,925.4565047420015,148799.2845535981,56.59154862394952,1066.9434394857085,-4273.005164087254,-615845.3666989534,true,true,8.315078904,1323.1257543580014,0.0,1.2,189.0,8.315078904,1323.1257543580014,0.0,121.92,0.0 +190,26723.005164087255,26023.005164087255,0.28,10340.146658245229,626185.5133571987,700.0,133000.0,39429.09520801867,3458477.68860183,29088.948549773442,2832292.175244632,true,190,26023.005164087255,0.0,10340.146658245229,302320.0692279815,700.0,133000.0,321.0789840964187,85591.83332816268,8879.039454968335,65721.9796875548,0.0,0.0,973.3684219101285,149772.65297550822,166.65979727034525,1233.6032367560538,-10340.146658245229,-626185.5133571987,true,true,8.940945058,1332.0666994160013,0.0,1.2,190.0,8.940945058,1332.0666994160013,0.0,121.92,0.0 +191,32790.14665824523,32090.146658245227,0.33,17024.093158490457,643209.6065156892,700.0,133700.0,53709.373207546836,3512187.061809377,36685.28004905638,2868977.4552936885,true,191,32090.146658245227,0.0,17024.093158490457,319344.16238647193,700.0,133700.0,419.5534716080467,86011.38679977073,15254.071479280437,80976.05116683524,0.0,0.0,1064.1488964672853,150836.8018719755,286.31931113468664,1519.9225478907404,-17024.093158490457,-643209.6065156892,true,true,9.924449014,1341.9911484300012,0.0,1.2,191.0,9.924449014,1341.9911484300012,0.0,121.92,0.0 +192,39474.09315849046,38774.09315849046,0.35,19725.464294282152,662935.0708099713,700.0,134400.0,58358.46941223472,3570545.5312216114,38633.00511795257,2907610.460411641,true,192,38774.09315849046,0.0,19725.464294282152,339069.62668075407,700.0,134400.0,568.5918208252248,86579.97862059595,17647.99467293782,98624.04583977305,0.0,0.0,1177.624489917565,152014.42636189307,331.25331060154025,1851.1758584922807,-19725.464294282152,-662935.0708099713,true,true,10.9526577,1352.9438061300011,0.0,1.2,192.0,10.9526577,1352.9438061300011,0.0,121.92,0.0 +193,42175.46429428215,41475.46429428215,0.36,26360.28421368211,689295.3550236534,700.0,135100.0,75167.45614911697,3645712.9873707285,48807.17193543486,2956417.6323470757,true,193,41475.46429428215,0.0,26360.28421368211,365429.9108944362,700.0,135100.0,775.9598410216155,87355.93846161757,23830.78967989042,122454.83551966347,0.0,0.0,1306.230162028247,153320.65652392132,447.3045307418266,2298.4803892341074,-26360.28421368211,-689295.3550236534,true,true,12.20439,1365.1481961300012,0.0,1.2,193.0,12.20439,1365.1481961300012,0.0,121.92,0.0 +194,48810.28421368211,48110.28421368211,0.36,33495.82904212111,722791.1840657744,700.0,135800.0,94988.41400589199,3740701.4013766204,61492.584963770874,3017910.217310847,true,194,48110.28421368211,0.0,33495.82904212111,398925.7399365573,700.0,135800.0,1078.0365388867967,88433.97500050436,30389.84341385865,152844.6789335221,0.0,0.0,1457.5309525807918,154778.18747650212,570.4181367948753,2868.898526028983,-33495.82904212111,-722791.1840657744,true,true,13.63494121,1378.7831373400013,0.0,1.2,194.0,13.63494121,1378.7831373400013,0.0,121.92,0.0 +195,55945.82904212111,55245.82904212111,0.36,35216.04536528364,758007.229431058,700.0,136500.0,99766.79268134345,3840468.194057964,64550.74731605981,3082460.9646269064,true,195,55245.82904212111,0.0,35216.04536528364,434141.7853018409,700.0,136500.0,1463.4904333883908,89897.46543389275,31546.550274430578,184391.22920795268,0.0,0.0,1613.8751033636938,156392.0625798658,592.1295541009748,3461.0280801299577,-35216.04536528364,-758007.229431058,true,true,14.97608297,1393.7592203100014,0.0,1.2,195.0,14.97608297,1393.7592203100014,0.0,121.92,0.0 +196,57666.04536528364,56966.04536528364,0.36,35148.91510810411,793156.1445391622,700.0,137200.0,99580.31974473366,3940048.5138026974,64431.404636629544,3146892.369263536,true,196,56966.04536528364,0.0,35148.91510810411,469290.70040994504,700.0,137200.0,1890.3764581555254,91787.84189204828,30920.5483139305,215311.7775218832,0.0,0.0,1757.6108546988526,158149.67343456464,580.3794813192384,4041.4075614491962,-35148.91510810411,-793156.1445391622,true,true,16.18311055,1409.9423308600014,0.0,1.2,196.0,16.18311055,1409.9423308600014,0.0,121.92,0.0 +197,57598.91510810411,56898.91510810411,0.35,17603.557770330954,810759.7023094931,700.0,137900.0,52295.87934380273,3992344.3931465,34692.321573471774,3181584.6908370075,true,197,56898.91510810411,0.0,17603.557770330954,486894.258180276,700.0,137900.0,2216.725836376511,94004.5677284248,13284.055189946921,228595.83271183012,0.0,0.0,1853.4346889222913,160003.10812348692,249.34205508522933,4290.7496165344255,-17603.557770330954,-810759.7023094931,true,true,16.67486253,1426.6171933900014,0.0,1.2,197.0,16.67486253,1426.6171933900014,0.0,121.92,0.0 +198,40053.557770330954,39353.557770330954,0.36,30084.800898687445,840844.5032081805,700.0,138600.0,85513.33582968735,4077857.7289761873,55428.5349309999,3237013.2257680073,true,198,39353.557770330954,0.0,30084.800898687445,516979.0590789635,700.0,138600.0,2509.2057552207084,96513.7734836455,25171.51833700349,253767.3510488336,0.0,0.0,1931.60676459578,161934.7148880827,472.4700418674672,4763.219658401893,-30084.800898687445,-840844.5032081805,true,true,17.56895704,1444.1861504300014,0.0,1.2,198.0,17.56895704,1444.1861504300014,0.0,121.92,0.0 +199,52534.80089868745,51834.80089868745,0.35,20878.462423132547,861722.965631313,700.0,139300.0,61652.74978037871,4139510.478756566,40774.28735724617,3277787.5131252534,true,199,51834.80089868745,0.0,20878.462423132547,537857.521502096,700.0,139300.0,2836.9954558516133,99350.76893949712,15733.84183450869,269501.1928833423,0.0,0.0,2012.3005198203725,163947.01540790306,295.3246129518697,5058.544271353762,-20878.462423132547,-861722.965631313,true,true,18.10541374,1462.2915641700013,0.0,1.2,199.0,18.10541374,1462.2915641700013,0.0,121.92,0.0 +200,43328.46242313254,42628.46242313254,0.36,27351.259714179887,889074.225345493,700.0,140000.0,77920.16587272192,4217430.6446292875,50568.90615854203,3328356.419283795,true,200,42628.46242313254,0.0,27351.259714179887,565208.7812162759,700.0,140000.0,3146.227394224947,102496.99633372207,21714.542251758998,291215.73513510125,0.0,0.0,2082.9075557123997,166029.92296361545,407.582512483542,5466.126783837304,-27351.259714179887,-889074.225345493,true,true,18.82068935,1481.1122535200013,0.0,1.2,200.0,18.82068935,1481.1122535200013,0.0,121.92,0.0 +201,49801.25971417989,49101.25971417989,0.36,25720.088576128564,914794.3139216215,700.0,140700.0,73389.13493369045,4290819.779562978,47669.04635756189,3376025.465641357,true,201,49101.25971417989,0.0,25720.088576128564,590928.8697924045,700.0,140700.0,3501.6381099404584,105998.63444366252,19690.304987565803,310906.04012266704,0.0,0.0,2158.5579512707095,168188.48091488617,369.58752735159464,5835.714311188899,-25720.088576128564,-914794.3139216215,true,true,19.4465555,1500.5588090200013,0.0,1.2,201.0,19.4465555,1500.5588090200013,0.0,121.92,0.0 +202,48170.08857612856,47470.08857612856,0.36,29846.121750281847,944640.4356719034,700.0,141400.0,84850.33819522736,4375670.117758205,55004.216444945516,3431029.6820863024,true,202,47470.08857612856,0.0,29846.121750281847,620774.9915426864,700.0,141400.0,3882.8546354272885,109881.4890790898,23291.869777609292,334197.90990027634,0.0,0.0,2234.208346829019,170422.6892617152,437.1889904162494,6272.903301605148,-29846.121750281847,-944640.4356719034,true,true,20.16183111,1520.7206401300014,0.0,1.2,202.0,20.16183111,1520.7206401300014,0.0,121.92,0.0 +203,52296.12175028185,51596.12175028185,0.35,20242.371023780957,964882.8066956843,700.0,142100.0,59835.345782231314,4435505.463540437,39592.97475845036,3470622.656844753,true,203,51596.12175028185,0.0,20242.371023780957,641017.3625664674,700.0,142100.0,4220.900330240998,114102.3894093308,13471.362531923885,347669.2724322002,0.0,0.0,2297.250342939586,172719.93960465476,252.85781867648708,6525.761120281635,-20242.371023780957,-964882.8066956843,true,true,20.56417363,1541.2848137600013,0.0,1.2,203.0,20.56417363,1541.2848137600013,0.0,121.92,0.0 +204,42692.37102378096,41992.37102378096,0.35,19228.708883652595,984111.5155793369,700.0,142800.0,56939.16823900741,4492444.631779444,37710.45935535482,3508333.1162001076,true,204,41992.37102378096,0.0,19228.708883652595,660246.07145012,700.0,142800.0,4461.633525392412,118564.02293472321,12197.999692211702,359867.2721244119,0.0,0.0,2340.118900385023,175060.05850503978,228.95676566345475,6754.71788594509,-19228.708883652595,-984111.5155793369,true,true,20.92181144,1562.2066252000013,0.0,1.2,204.0,20.92181144,1562.2066252000013,0.0,121.92,0.0 +205,41678.708883652595,40978.708883652595,0.35,18108.789102495004,1002220.3046818319,700.0,143500.0,53739.39743570001,4546184.029215144,35630.608333205004,3543963.7245333125,true,205,40978.708883652595,0.0,18108.789102495004,678354.8605526149,700.0,143500.0,4681.500180067494,123245.5231147907,10845.769454683572,370713.0415790955,0.0,0.0,2377.944098164178,177438.00260320396,203.57536957976183,6958.293255524852,-18108.789102495004,-1002220.3046818319,true,true,21.23474451,1583.4413697100013,0.0,1.2,205.0,21.23474451,1583.4413697100013,0.0,121.92,0.0 +206,40558.78910249501,39858.78910249501,0.28,7182.125819542411,1009402.4305013743,700.0,144200.0,28150.44935550861,4574334.478570652,20968.3235359662,3564932.0480692787,true,206,39858.78910249501,0.0,7182.125819542411,685536.9863721573,700.0,144200.0,4786.529962828282,128032.05307761898,0.0,370713.0415790955,0.0,0.0,2395.595856714129,179833.59845991808,0.0,6958.293255524852,-7182.125819542411,-1009402.4305013743,true,true,21.23474451,1604.6761142200012,0.0,1.2,206.0,21.23474451,1604.6761142200012,0.0,121.92,0.0 +207,29632.12581954241,28932.12581954241,0.16,3973.22073380627,1013375.6512351806,700.0,144900.0,29207.629586289186,4603542.108156942,25234.408852482917,3590166.456921762,true,207,28932.12581954241,0.0,3973.22073380627,689510.2071059636,700.0,144900.0,4756.362846414472,132788.41592403347,-3115.2218166199136,367597.81976247556,0.0,0.0,2390.5524970478464,182224.15095696592,-58.47279303613522,6899.820462488717,-3973.22073380627,-1013375.6512351806,true,true,21.14533506,1625.8214492800012,0.0,1.2,207.0,21.14533506,1625.8214492800012,0.0,121.92,0.0 +208,26423.22073380627,25723.22073380627,0.22,5512.512249204856,1018888.1634843855,700.0,145600.0,28238.692041840255,4631780.800198782,22726.179792635397,3612892.6367143975,true,208,25723.22073380627,0.0,5512.512249204856,695022.7193551685,700.0,145600.0,4711.350250816254,137499.76617484973,-1552.6815864214939,366045.13817605405,0.0,0.0,2382.9874578304607,184607.13841479638,-29.143873020364406,6870.676589468352,-5512.512249204856,-1018888.1634843855,true,true,21.10063034,1646.922079620001,0.0,1.2,208.0,21.10063034,1646.922079620001,0.0,121.92,0.0 +209,27962.512249204854,27262.512249204854,0.16,3888.437026921985,1022776.6005113075,700.0,146300.0,28677.731418262407,4660458.5316170445,24789.294391340423,3637681.931105738,true,209,27262.512249204854,0.0,3888.437026921985,698911.1563820905,700.0,146300.0,4666.622544097138,142166.38871894687,-3095.505223704521,362949.63295234955,0.0,0.0,2375.422418613074,186982.56083340946,-58.10271208370657,6812.573877384646,-3888.437026921985,-1022776.6005113075,true,true,21.01122089,1667.9333005100011,0.0,1.2,209.0,21.01122089,1667.9333005100011,0.0,121.92,0.0 +210,26338.437026921987,25638.437026921987,0.22,7007.34095577213,1029783.9414670796,700.0,147000.0,35033.36798078241,4695491.899597827,28026.027025010277,3665707.9581307485,true,210,25638.437026921987,0.0,7007.34095577213,705918.4973378626,700.0,147000.0,4636.961896825338,146803.35061577221,0.0,362949.63295234955,0.0,0.0,2370.3790589467917,189352.93989235625,0.0,6812.573877384646,-7007.34095577213,-1029783.9414670796,true,true,21.01122089,1688.9445214000011,0.0,1.2,210.0,21.01122089,1688.9445214000011,0.0,121.92,0.0 +211,29457.34095577213,28757.34095577213,0.22,7007.34095577213,1036791.2824228517,700.0,147700.0,35033.36798078241,4730525.267578609,28026.027025010277,3693733.985155759,true,211,28757.34095577213,0.0,7007.34095577213,712925.8382936347,700.0,147700.0,4636.961896825338,151440.31251259756,0.0,362949.63295234955,0.0,0.0,2370.3790589467917,191723.31895130305,0.0,6812.573877384646,-7007.34095577213,-1036791.2824228517,true,true,21.01122089,1709.9557422900011,0.0,1.2,211.0,21.01122089,1709.9557422900011,0.0,121.92,0.0 +212,29457.34095577213,28757.34095577213,0.22,7007.34095577213,1043798.6233786237,700.0,148400.0,35033.36798078241,4765558.635559391,28026.027025010277,3721760.0121807694,true,212,28757.34095577213,0.0,7007.34095577213,719933.1792494068,700.0,148400.0,4636.961896825338,156077.2744094229,0.0,362949.63295234955,0.0,0.0,2370.3790589467917,194093.69801024985,0.0,6812.573877384646,-7007.34095577213,-1043798.6233786237,true,true,21.01122089,1730.9669631800011,0.0,1.2,212.0,21.01122089,1730.9669631800011,0.0,121.92,0.0 +213,29457.34095577213,28757.34095577213,0.22,7007.34095577213,1050805.964334396,700.0,149100.0,35033.36798078241,4800592.003540173,28026.027025010277,3749786.03920578,true,213,28757.34095577213,0.0,7007.34095577213,726940.5202051789,700.0,149100.0,4636.961896825338,160714.23630624826,0.0,362949.63295234955,0.0,0.0,2370.3790589467917,196464.07706919665,0.0,6812.573877384646,-7007.34095577213,-1050805.964334396,true,true,21.01122089,1751.9781840700011,0.0,1.2,213.0,21.01122089,1751.9781840700011,0.0,121.92,0.0 +214,29457.34095577213,28757.34095577213,0.28,10195.65289849844,1061001.6172328943,700.0,149800.0,38913.04606606585,4839505.049606239,28717.39316756741,3778503.432373347,true,214,28757.34095577213,0.0,10195.65289849844,737136.1731036773,700.0,149800.0,4666.622544097138,165380.8588503454,3095.505223704521,366045.13817605405,0.0,0.0,2375.422418613074,198839.49948780972,58.10271208370657,6870.676589468352,-10195.65289849844,-1061001.6172328943,true,true,21.10063034,1773.078814410001,0.0,1.2,214.0,21.10063034,1773.078814410001,0.0,121.92,0.0 +215,32645.65289849844,31945.65289849844,0.28,10278.830942747154,1071280.4481756415,700.0,150500.0,39210.11050981126,4878715.16011605,28931.279567064106,3807434.7119404115,true,215,31945.65289849844,0.0,10278.830942747154,747415.0040464245,700.0,150500.0,4726.322752602074,170107.18160294747,3108.649619471585,369153.7877955256,0.0,0.0,2385.5091379456385,201225.00862575535,58.349432727857526,6929.02602219621,-10278.830942747154,-1071280.4481756415,true,true,21.19003979,1794.268854200001,0.0,1.2,215.0,21.19003979,1794.268854200001,0.0,121.92,0.0 +216,32728.830942747154,32028.830942747154,0.33,15211.263868372287,1086491.7120440137,700.0,151200.0,48215.951116279655,4926931.11123233,33004.687247907365,3840439.3991883188,true,216,32028.830942747154,0.0,15211.263868372287,762626.2679147968,700.0,151200.0,4832.01938643268,174939.20098938016,7829.130604110655,376982.9183996363,0.0,0.0,2403.1608964955894,203628.16952225094,146.95298133336095,7075.979003529571,-15211.263868372287,-1086491.7120440137,true,true,21.41356341,1815.682417610001,0.0,1.2,216.0,21.41356341,1815.682417610001,0.0,121.92,0.0 +217,37661.26386837229,36961.26386837229,0.33,17113.955793952955,1103605.6678379667,700.0,151900.0,53981.68422409986,4980912.79545643,36867.728430146904,3877307.1276184656,true,217,36961.26386837229,0.0,17113.955793952955,779740.2237087497,700.0,151900.0,5001.278829909474,179940.47981928964,9503.398555571433,386486.31695520773,0.0,0.0,2430.8993749421797,206059.06889719312,178.37903352986842,7254.358037059439,-17113.955793952955,-1103605.6678379667,true,true,21.68179177,1837.364209380001,0.0,1.2,217.0,21.68179177,1837.364209380001,0.0,121.92,0.0 +218,39563.955793952955,38863.955793952955,0.33,17453.83997433275,1121059.5078122995,700.0,152600.0,55011.63628585682,5035924.431742286,37557.79631152407,3914864.92392999,true,218,38863.955793952955,0.0,17453.83997433275,797194.0636830825,700.0,152600.0,5190.383162733616,185130.86298202325,9621.69776537684,396108.01472058456,0.0,0.0,2461.1595335039488,208520.22843069708,180.599512718346,7434.957549777785,-17453.83997433275,-1121059.5078122995,true,true,21.95002012,1859.3142295000011,0.0,1.2,218.0,21.95002012,1859.3142295000011,0.0,121.92,0.0 +219,39903.839974332746,39203.839974332746,0.33,14439.760612369195,1135499.2684246688,700.0,153300.0,45878.06246172483,5081802.494204011,31438.301849355637,3946303.2257793453,true,219,39203.839974332746,0.0,14439.760612369195,811633.8242954516,700.0,153300.0,5351.563846414803,190482.42682843804,6480.187155752717,402588.2018763373,0.0,0.0,2486.376331835361,211006.60476253246,121.6332783663133,7556.590828144098,-14439.760612369195,-1135499.2684246688,true,true,22.12883902,1881.4430685200011,0.0,1.2,219.0,22.12883902,1881.4430685200011,0.0,121.92,0.0 +220,36889.760612369195,36189.760612369195,0.33,16336.121207531512,1151835.3896322004,700.0,154000.0,51624.60971979246,5133427.103923803,35288.48851226095,3981591.714291606,true,220,36189.760612369195,0.0,16336.121207531512,827969.9455029832,700.0,154000.0,5499.449372234767,195981.8762006728,8174.170987113224,410762.3728634505,0.0,0.0,2509.0714500515933,213515.67621258405,153.42939813192748,7710.020226276026,-16336.121207531512,-1151835.3896322004,true,true,22.35236264,1903.795431160001,0.0,1.2,220.0,22.35236264,1903.795431160001,0.0,121.92,0.0 +221,38786.12120753151,38086.12120753151,0.35,18324.27471825478,1170159.6643504552,700.0,154700.0,54355.07062358509,5187782.174547388,36030.795905330306,4017622.5101969363,true,221,38086.12120753151,0.0,18324.27471825478,846294.220221238,700.0,154700.0,5683.867015732121,201665.74321640492,9917.447039872739,420679.81990332325,0.0,0.0,2536.809928498184,216052.48614108222,186.15073415173518,7896.170960427761,-18324.27471825478,-1170159.6643504552,true,true,22.620591,1926.4160221600011,0.0,1.2,221.0,22.620591,1926.4160221600011,0.0,121.92,0.0 +222,40774.274718254776,40074.274718254776,0.33,15219.77040768701,1185379.434758142,700.0,155400.0,48241.728508142456,5236023.903055531,33021.95810045545,4050644.4682973917,true,222,40074.274718254776,0.0,15219.77040768701,861513.990628925,700.0,155400.0,5855.056498509723,207520.79971491464,6677.353093727456,427357.1729970507,0.0,0.0,2562.0267273936706,218614.5128684759,125.33408805616126,8021.505048483922,-15219.77040768701,-1185379.434758142,true,true,22.7994099,1949.2154320600011,0.0,1.2,222.0,22.7994099,1949.2154320600011,0.0,121.92,0.0 +223,37669.770407687014,36969.770407687014,0.33,17175.441518684725,1202554.8762768267,700.0,156100.0,54168.00460207492,5290191.907657606,36992.563083390196,4087637.031380782,true,223,36969.770407687014,0.0,17175.441518684725,878689.4321476098,700.0,156100.0,6012.03585886536,213532.83557378,8420.628404068704,435777.8014011194,0.0,0.0,2584.721845609903,221199.2347140858,158.05541014075965,8179.560458624682,-17175.441518684725,-1202554.8762768267,true,true,23.02293352,1972.238365580001,0.0,1.2,223.0,23.02293352,1972.238365580001,0.0,121.92,0.0 +224,39625.441518684725,38925.441518684725,0.35,20991.418515152127,1223546.2947919788,700.0,156800.0,61975.481471863226,5352167.389129469,40984.0629567111,4128621.094337493,true,224,38925.441518684725,0.0,20991.418515152127,899680.850662762,700.0,156800.0,6225.671986535996,219758.507560316,11926.8963755212,447704.6977766406,0.0,0.0,2614.9820036075976,223814.21671769337,223.86814948733362,8403.428608112015,-20991.418515152127,-1223546.2947919788,true,true,23.3358666,1995.574232180001,0.0,1.2,224.0,23.3358666,1995.574232180001,0.0,121.92,0.0 +225,43441.41851515212,42741.41851515212,0.36,26837.54590323643,1250383.8406952152,700.0,157500.0,76493.18306454565,5428660.572194015,49655.63716130922,4178276.7314988025,true,225,42741.41851515212,0.0,26837.54590323643,926518.3965659984,700.0,157500.0,6536.899358195787,226295.40691851178,17317.741533250064,465022.4393098907,0.0,0.0,2657.850561053035,226472.0672787464,325.05445073754447,8728.48305884956,-26837.54590323643,-1250383.8406952152,true,true,23.78291385,2019.3571460300009,0.0,1.2,225.0,23.78291385,2019.3571460300009,0.0,121.92,0.0 +226,49287.54590323643,48587.54590323643,0.36,25767.337997361774,1276151.178692577,700.0,158200.0,73520.38332600493,5502180.95552002,47753.04532864316,4226029.776827445,true,226,48587.54590323643,0.0,25767.337997361774,952285.7345633602,700.0,158200.0,6896.82381775248,233192.23073626426,15866.92903827989,480889.36834817054,0.0,0.0,2705.762478164754,229177.82975691115,297.82266316464796,9026.30572201421,-25767.337997361774,-1276151.178692577,true,true,24.18525638,2043.542402410001,0.0,1.2,226.0,24.18525638,2043.542402410001,0.0,121.92,0.0 +227,48217.33799736177,47517.33799736177,0.35,19008.976968647446,1295160.1556612244,700.0,158900.0,56311.36276756413,5558492.318287584,37302.385798916686,4263332.1626263615,true,227,47517.33799736177,0.0,19008.976968647446,971294.7115320077,700.0,158900.0,7170.320997969006,240362.55173423328,8929.974131830124,489819.3424800007,0.0,0.0,2741.0659963928056,231918.89575330395,167.61584245551103,9193.92156446972,-19008.976968647446,-1295160.1556612244,true,true,24.40878001,2067.951182420001,0.0,1.2,227.0,24.40878001,2067.951182420001,0.0,121.92,0.0 +228,41458.97696864745,40758.97696864745,0.33,15589.769799174197,1310749.9254603987,700.0,159600.0,49362.938785376355,5607855.25707296,33773.16898620216,4297105.331612564,true,228,40758.97696864745,0.0,15589.769799174197,986884.4813311818,700.0,159600.0,7329.803357415685,247692.35509164896,5397.417345321454,495216.75982532214,0.0,0.0,2761.239435057935,234680.1351883619,101.30966137912259,9295.231225848842,-15589.769799174197,-1310749.9254603987,true,true,24.54289418,2092.494076600001,0.0,1.2,228.0,24.54289418,2092.494076600001,0.0,121.92,0.0 +229,38039.769799174195,37339.769799174195,0.28,12021.354745789216,1322771.2802061879,700.0,160300.0,45433.40980639005,5653288.66687935,33412.05506060083,4330517.386673165,true,229,37339.769799174195,0.0,12021.354745789216,998905.836076971,700.0,160300.0,7410.423756875152,255102.77884852412,1805.7115820253287,497022.4714073475,0.0,0.0,2771.3261543904996,237451.4613427524,33.893252498236684,9329.12447834708,-12021.354745789216,-1322771.2802061879,true,true,24.58759891,2117.081675510001,0.0,1.2,229.0,24.58759891,2117.081675510001,0.0,121.92,0.0 +230,34471.35474578921,33771.35474578921,0.28,8342.145076742087,1331113.42528293,700.0,161000.0,32293.375274078877,5685582.042153429,23951.23019733679,4354468.616870501,true,230,33771.35474578921,0.0,8342.145076742087,1007247.9811537131,700.0,161000.0,7410.423756875152,262513.20260539924,-1805.7115820253287,495216.75982532214,0.0,0.0,2771.3261543904996,240222.78749714288,-33.893252498236684,9295.231225848842,-8342.145076742087,-1331113.42528293,true,true,24.54289418,2141.624569690001,0.0,1.2,230.0,24.54289418,2141.624569690001,0.0,121.92,0.0 +231,30792.145076742087,30092.145076742087,0.22,4592.315785773044,1335705.7410687031,700.0,161700.0,24055.980844422927,5709638.022997852,19463.665058649884,4373932.281929151,true,231,30092.145076742087,0.0,4592.315785773044,1011840.2969394862,700.0,161700.0,7329.803357415685,269843.0059628149,-5397.417345321454,489819.3424800007,0.0,0.0,2761.239435057935,242984.02693220082,-101.30966137912259,9193.92156446972,-4592.315785773044,-1335705.7410687031,true,true,24.40878001,2166.033349700001,0.0,1.2,231.0,24.40878001,2166.033349700001,0.0,121.92,0.0 +232,27042.315785773044,26342.315785773044,0.28,10023.397700721078,1345729.1387694243,700.0,162400.0,38297.848931146706,5747935.871928999,28274.451230425628,4402206.733159577,true,232,26342.315785773044,0.0,10023.397700721078,1021863.6946402072,700.0,162400.0,7269.72330488053,277112.72926769545,0.0,489819.3424800007,0.0,0.0,2753.6743958405486,245737.70132804138,0.0,9193.92156446972,-10023.397700721078,-1345729.1387694243,true,true,24.40878001,2190.442129710001,0.0,1.2,232.0,24.40878001,2190.442129710001,0.0,121.92,0.0 +233,32473.397700721078,31773.397700721078,0.33,13730.928158492225,1359460.0669279166,700.0,163100.0,43730.08532876432,5791665.9572577635,29999.157170272094,4432205.890329849,true,233,31773.397700721078,0.0,13730.928158492225,1035594.6227986994,700.0,163100.0,7309.740040578978,284422.46930827445,3594.9922657898123,493414.3347457905,0.0,0.0,2758.717755506831,248496.41908354821,67.47809661660416,9261.399661086323,-13730.928158492225,-1359460.0669279166,true,true,24.49818946,2214.940319170001,0.0,1.2,233.0,24.49818946,2214.940319170001,0.0,121.92,0.0 +234,36180.92815849223,35480.92815849223,0.33,15700.563591834098,1375160.6305197508,700.0,163800.0,49698.67755101242,5841364.634808776,33998.11395917832,4466204.004289027,true,234,35480.92815849223,0.0,15700.563591834098,1051295.1863905336,700.0,163800.0,7410.423756875152,291832.8930651496,5417.133938236893,498831.46868402744,0.0,0.0,2771.3261543904996,251267.7452379387,101.67974233155273,9363.079403417876,-15700.563591834098,-1375160.6305197508,true,true,24.63230363,2239.572622800001,0.0,1.2,234.0,24.63230363,2239.572622800001,0.0,121.92,0.0 +235,38150.5635918341,37450.5635918341,0.35,17747.193791717145,1392907.8243114678,700.0,164500.0,52706.267976334704,5894070.90278511,34959.07418461756,4501163.078473645,true,235,37450.5635918341,0.0,17747.193791717145,1069042.3801822506,700.0,164500.0,7552.928040810659,299385.8211059603,7268.851312673977,506100.31999670144,0.0,0.0,2788.9779135045246,254056.72315144324,136.43652472798456,9499.51592814586,-17747.193791717145,-1392907.8243114678,true,true,24.81112254,2264.383745340001,0.0,1.2,235.0,24.81112254,2264.383745340001,0.0,121.92,0.0 +236,40197.193791717145,39497.193791717145,0.33,14203.357361162041,1407111.18167263,700.0,165200.0,45161.688973218304,5939232.5917583285,30958.331612056263,4532121.410085701,true,236,39497.193791717145,0.0,14203.357361162041,1083245.7375434127,700.0,165200.0,7676.51898108913,307062.3400870494,3654.142047476386,509754.4620441778,0.0,0.0,2804.107993067447,256860.83114451068,68.58833952907825,9568.104267674938,-14203.357361162041,-1407111.18167263,true,true,24.90053199,2289.2842773300013,0.0,1.2,236.0,24.90053199,2289.2842773300013,0.0,121.92,0.0 +237,36653.35736116204,35953.35736116204,0.35,18106.323049480496,1425217.5047221105,700.0,165900.0,53732.35156994428,5992964.943328273,35626.028520463784,4567747.438606165,true,237,35953.35736116204,0.0,18106.323049480496,1101352.0605928933,700.0,165900.0,7801.45085416991,314863.7909412193,7347.717282253684,517102.1793264315,0.0,0.0,2819.238072066294,259680.069216577,137.91684099060788,9706.021108665547,-18106.323049480496,-1425217.5047221105,true,true,25.07935089,2314.3636282200014,0.0,1.2,237.0,25.07935089,2314.3636282200014,0.0,121.92,0.0 +238,40556.323049480496,39856.323049480496,0.33,14525.002787213256,1439742.5075093238,700.0,166600.0,46136.37208246441,6039101.315410737,31611.369295251156,4599358.807901417,true,238,39856.323049480496,0.0,14525.002787213256,1115877.0633801066,700.0,166600.0,7927.730899909383,322791.5218411287,3693.575234777205,520795.75456120865,0.0,0.0,2834.368151065141,262514.4373676421,69.32850146152813,9775.349610127076,-14525.002787213256,-1439742.5075093238,true,true,25.16876034,2339.5323885600014,0.0,1.2,238.0,25.16876034,2339.5323885600014,0.0,121.92,0.0 +239,36975.002787213256,36275.002787213256,0.33,16550.43962862732,1456292.9471379512,700.0,167300.0,52274.05948068884,6091375.3748914255,35723.61985206152,4635082.427753478,true,239,36275.002787213256,0.0,16550.43962862732,1132427.503008734,700.0,167300.0,8033.999342978164,330825.5211841069,5565.008386204887,526360.7629474135,0.0,0.0,2846.9765499488094,265361.4139175909,104.45534949545944,9879.804959622536,-16550.43962862732,-1456292.9471379512,true,true,25.30287451,2364.8352630700015,0.0,1.2,239.0,25.30287451,2364.8352630700015,0.0,121.92,0.0 +240,39000.43962862732,38300.43962862732,0.33,12873.274972302195,1469166.2221102533,700.0,168000.0,41131.13627970362,6132506.5111711295,28257.861307401425,4663340.2890608795,true,240,38300.43962862732,0.0,12873.274972302195,1145300.777981036,700.0,168000.0,8119.694617010051,338945.21580111695,1861.5752706507171,528222.3382180642,0.0,0.0,2857.063269281374,268218.4771868723,34.94181536005417,9914.74677498259,-12873.274972302195,-1469166.2221102533,true,true,25.34757924,2390.1828423100014,0.0,1.2,240.0,25.34757924,2390.1828423100014,0.0,121.92,0.0 +241,35323.2749723022,34623.2749723022,0.28,11000.798182807039,1480167.0202930602,700.0,168700.0,41788.564938596566,6174295.076109726,30787.766755789526,4694128.055816669,true,241,34623.2749723022,0.0,11000.798182807039,1156301.576163843,700.0,168700.0,8141.213233410486,347086.42903452745,0.0,528222.3382180642,0.0,0.0,2859.5849493965525,271078.0621362688,0.0,9914.74677498259,-11000.798182807039,-1480167.0202930602,true,true,25.34757924,2415.5304215500014,0.0,1.2,241.0,25.34757924,2415.5304215500014,0.0,121.92,0.0 +242,33450.79818280704,32750.79818280704,0.28,7163.069577778055,1487330.0898708382,700.0,169400.0,28082.391349207337,6202377.467458934,20919.321771429284,4715047.377588098,true,242,32750.79818280704,0.0,7163.069577778055,1163464.645741621,700.0,169400.0,8098.213957108948,355184.6429916364,-3719.864026311334,524502.4741917528,0.0,0.0,2854.54158973027,273932.60372599907,-69.82194274983004,9844.92483223276,-7163.069577778055,-1487330.0898708382,true,true,25.25816979,2440.7885913400014,0.0,1.2,242.0,25.25816979,2440.7885913400014,0.0,121.92,0.0 +243,29613.069577778057,28913.069577778057,0.28,10904.864583645154,1498234.9544544835,700.0,170100.0,41445.944941589834,6243823.412400523,30541.08035794468,4745588.4579460425,true,243,28913.069577778057,0.0,10904.864583645154,1174369.5103252663,700.0,170100.0,8055.366353581167,363240.0093452176,0.0,524502.4741917528,0.0,0.0,2849.4982300639876,276782.10195606307,0.0,9844.92483223276,-10904.864583645154,-1498234.9544544835,true,true,25.25816979,2466.0467611300014,0.0,1.2,243.0,25.25816979,2466.0467611300014,0.0,121.92,0.0 +244,33354.864583645154,32654.864583645154,0.28,10904.864583645154,1509139.8190381287,700.0,170800.0,41445.944941589834,6285269.357342113,30541.08035794468,4776129.538303987,true,244,32654.864583645154,0.0,10904.864583645154,1185274.3749089115,700.0,170800.0,8055.366353581167,371295.3756987988,0.0,524502.4741917528,0.0,0.0,2849.4982300639876,279631.60018612706,0.0,9844.92483223276,-10904.864583645154,-1509139.8190381287,true,true,25.25816979,2491.3049309200014,0.0,1.2,244.0,25.25816979,2491.3049309200014,0.0,121.92,0.0 +245,33354.864583645154,32654.864583645154,0.28,10904.864583645154,1520044.683621774,700.0,171500.0,41445.944941589834,6326715.302283702,30541.08035794468,4806670.618661932,true,245,32654.864583645154,0.0,10904.864583645154,1196179.2394925568,700.0,171500.0,8055.366353581167,379350.74205238,0.0,524502.4741917528,0.0,0.0,2849.4982300639876,282481.09841619106,0.0,9844.92483223276,-10904.864583645154,-1520044.683621774,true,true,25.25816979,2516.5631007100014,0.0,1.2,245.0,25.25816979,2516.5631007100014,0.0,121.92,0.0 +246,33354.864583645154,32654.864583645154,0.28,10904.864583645154,1530949.5482054192,700.0,172200.0,41445.944941589834,6368161.247225292,30541.08035794468,4837211.699019876,true,246,32654.864583645154,0.0,10904.864583645154,1207084.104076202,700.0,172200.0,8055.366353581167,387406.1084059612,0.0,524502.4741917528,0.0,0.0,2849.4982300639876,285330.59664625506,0.0,9844.92483223276,-10904.864583645154,-1530949.5482054192,true,true,25.25816979,2541.8212705000014,0.0,1.2,246.0,25.25816979,2541.8212705000014,0.0,121.92,0.0 +247,33354.864583645154,32654.864583645154,0.28,10904.864583645154,1541854.4127890645,700.0,172900.0,41445.944941589834,6409607.192166882,30541.08035794468,4867752.779377821,true,247,32654.864583645154,0.0,10904.864583645154,1217988.9686598473,700.0,172900.0,8055.366353581167,395461.4747595424,0.0,524502.4741917528,0.0,0.0,2849.4982300639876,288180.09487631905,0.0,9844.92483223276,-10904.864583645154,-1541854.4127890645,true,true,25.25816979,2567.0794402900015,0.0,1.2,247.0,25.25816979,2567.0794402900015,0.0,121.92,0.0 +248,33354.864583645154,32654.864583645154,0.28,8991.154365870763,1550845.5671549353,700.0,173600.0,34611.26559239558,6444218.457759277,25620.11122652482,4893372.890604346,true,248,32654.864583645154,0.0,8991.154365870763,1226980.1230257181,700.0,173600.0,8033.999342978164,403495.47410252056,-1855.0030720320276,522647.47111972084,0.0,0.0,2846.9765499488094,291027.07142626785,-34.8184550241824,9810.106377208578,-8991.154365870763,-1550845.5671549353,true,true,25.21346506,2592.2929053500015,0.0,1.2,248.0,25.21346506,2592.2929053500015,0.0,121.92,0.0 +249,31441.154365870763,30741.154365870763,0.22,5136.421920986426,1555981.9890759217,700.0,174300.0,26529.1905499383,6470747.648309215,21392.768628951875,4914765.659233298,true,249,30741.154365870763,0.0,5136.421920986426,1232116.5449467045,700.0,174300.0,7948.9091522026565,411444.3832547232,-5545.291793289447,517102.1793264314,0.0,0.0,2836.889830616245,293863.9612568841,-104.0852685430293,9706.021108665549,-5136.421920986426,-1555981.9890759217,true,true,25.07935089,2617.3722562400017,0.0,1.2,249.0,25.07935089,2617.3722562400017,0.0,121.92,0.0 +250,27586.421920986424,26886.421920986424,0.22,5024.915989212608,1561006.9050651344,700.0,175000.0,26022.345405511856,6496769.9937147265,20997.42941629925,4935763.088649597,true,250,26886.421920986424,0.0,5024.915989212608,1237141.4609359172,700.0,175000.0,7822.403707615906,419266.78696233913,-5515.717315186754,511586.4620112447,0.0,0.0,2821.759751617398,296685.7210085015,-103.5301548339413,9602.490953831608,-5024.915989212608,-1561006.9050651344,true,true,24.94523671,2642.3174929500015,0.0,1.2,250.0,24.94523671,2642.3174929500015,0.0,121.92,0.0 +251,27474.915989212608,26774.915989212608,0.12,0.0,1561006.9050651344,700.0,175700.0,6999.999999999999,6503769.9937147265,6999.999999999999,4942763.088649597,true,251,26774.915989212608,0.0,-2583.305583547867,1234558.1553523694,700.0,175700.0,7614.556341361246,426881.3433037004,-12754.993327217295,498831.4686840274,0.0,0.0,2796.542952721911,299482.2639612234,-239.4115504137294,9363.079403417878,-0.0,-1561006.9050651344,true,true,24.63230363,2666.9497965800015,0.0,1.2,251.0,24.63230363,2666.9497965800015,0.0,121.92,0.0 +252,22450.0,21750.0,0.12,955.0388172725116,1561961.943882407,700.0,176400.0,13791.990143937597,6517561.9838586645,12836.951326665087,4955600.0399762625,true,252,21750.0,0.0,955.0388172725116,1235513.194169642,700.0,176400.0,7370.040065523158,434251.38336922356,-9012.126204026707,489819.3424800007,0.0,0.0,2766.282794724217,302248.54675594764,-169.1578389481569,9193.921564469721,-955.0388172725116,-1561961.943882407,true,true,24.40878001,2691.3585765900016,0.0,1.2,252.0,24.40878001,2691.3585765900016,0.0,121.92,0.0 +253,23405.03881727251,22705.03881727251,0.16,2648.9488063742347,1564610.8926887813,700.0,177100.0,20930.930039838968,6538492.913898503,18281.981233464732,4973882.021209727,true,253,22705.03881727251,0.0,2648.9488063742347,1238162.1429760163,700.0,177100.0,7190.128505445909,441441.51187466946,-7150.551344278899,482668.7911357218,0.0,0.0,2743.5876765079843,304992.13443245564,-134.21603130075994,9059.70553316896,-2648.9488063742347,-1564610.8926887813,true,true,24.22996111,2715.588537700002,0.0,1.2,253.0,24.22996111,2715.588537700002,0.0,121.92,0.0 +254,25098.948806374236,24398.948806374236,0.22,6177.989550939192,1570788.8822397206,700.0,177800.0,31263.58886790542,6569756.502766409,25085.599316966225,4998967.620526693,true,254,24398.948806374236,0.0,6177.989550939192,1244340.1325269556,700.0,177800.0,7071.828966603202,448513.3408412727,-3555.5590784889932,479113.2320572328,0.0,0.0,2728.457597509137,307720.5920299648,-66.73793468415427,8992.967598484807,-6177.989550939192,-1570788.8822397206,true,true,24.14055166,2739.7290893600016,0.0,1.2,254.0,24.14055166,2739.7290893600016,0.0,121.92,0.0 +255,28627.989550939194,27927.989550939194,0.16,4281.7548353930015,1575070.6370751136,700.0,178500.0,31135.96772120626,6600892.470487615,26854.212885813256,5025821.833412506,true,255,27927.989550939194,0.0,4281.7548353930015,1248621.8873623486,700.0,178500.0,6974.2430148906715,455487.5838561633,-5308.693073036055,473804.5389841968,0.0,0.0,2715.849198061394,310436.4412280262,-99.64430452300941,8893.323293961797,-4281.7548353930015,-1575070.6370751136,true,true,24.00643748,2763.7355268400015,0.0,1.2,255.0,24.00643748,2763.7355268400015,0.0,121.92,0.0 +256,26731.754835393003,26031.754835393003,0.28,7806.503001240814,1582877.1400763544,700.0,179200.0,30380.36786157433,6631272.83834919,22573.864860333517,5048395.698272839,true,256,26031.754835393003,0.0,7806.503001240814,1256428.3903635894,700.0,179200.0,6896.823822065856,462384.40767822915,-1762.9918966410187,472041.54708755575,0.0,0.0,2705.762478728829,313142.203706755,-33.091402912852246,8860.231891048945,-7806.503001240814,-1582877.1400763544,true,true,23.96173276,2787.6972596000014,0.0,1.2,256.0,23.96173276,2787.6972596000014,0.0,121.92,0.0 +257,30256.503001240813,29556.503001240813,0.33,15044.560876464668,1597921.700952819,700.0,179900.0,47710.79053474141,6678983.628883931,32666.229658276745,5081061.927931116,true,257,29556.503001240813,0.0,15044.560876464668,1271472.951240054,700.0,179900.0,6935.461400708035,469319.86907893716,5298.834380744538,477340.3814683003,0.0,0.0,2710.805838395111,315853.0095451501,99.4592566169838,8959.691147665928,-15044.560876464668,-1597921.700952819,true,true,24.09584693,2811.7931065300013,0.0,1.2,257.0,24.09584693,2811.7931065300013,0.0,121.92,0.0 +258,37494.56087646467,36794.56087646467,0.28,11540.188530065943,1609461.8894828851,700.0,180600.0,43714.959035949796,6722698.587919881,32174.770505883855,5113236.698437,true,258,36794.56087646467,0.0,11540.188530065943,1283013.1397701201,700.0,180600.0,7013.168932586854,476333.038011524,1772.8505889325352,479113.2320572328,0.0,0.0,2720.892557727676,318573.9021028778,33.276450818877855,8992.967598484805,-11540.188530065943,-1609461.8894828851,true,true,24.14055166,2835.933658190001,0.0,1.2,258.0,24.14055166,2835.933658190001,0.0,121.92,0.0 +259,33990.18853006594,33290.18853006594,0.28,11587.64975363081,1621049.539236516,700.0,181300.0,43884.46340582432,6766583.051325705,32296.81365219351,5145533.512089193,true,259,33290.18853006594,0.0,11587.64975363081,1294600.789523751,700.0,181300.0,7052.23942176968,483385.2774332937,1776.1362909377685,480889.3683481706,0.0,0.0,2725.9359173939583,321299.83802027174,33.33812352940316,9026.30572201421,-11587.64975363081,-1621049.539236516,true,true,24.18525638,2860.118914570001,0.0,1.2,259.0,24.18525638,2860.118914570001,0.0,121.92,0.0 +260,34037.64975363081,33337.64975363081,0.28,9800.286559162223,1630849.8257956782,700.0,182000.0,37501.02342557936,6804084.074751284,27700.736866417137,5173234.24895561,true,260,33337.64975363081,0.0,9800.286559162223,1304401.0760829132,700.0,182000.0,7071.828962217161,490457.10639551084,0.0,480889.3683481706,0.0,0.0,2728.457596945062,324028.2956172168,0.0,9026.30572201421,-9800.286559162223,-1630849.8257956782,true,true,24.18525638,2884.3041709500008,0.0,1.2,260.0,24.18525638,2884.3041709500008,0.0,121.92,0.0 +261,32250.286559162225,31550.286559162225,0.16,4315.681179085232,1635165.5069747635,700.0,182700.0,31348.007369282695,6835432.082120567,27032.326190197462,5200266.575145808,true,261,31550.286559162225,0.0,4315.681179085232,1308716.7572619985,700.0,182700.0,7013.168932586852,497470.2753280977,-5318.550973659884,475570.8173745107,0.0,0.0,2720.8925577276755,326749.1881749445,-99.82933756941095,8926.476384444799,-4315.681179085232,-1635165.5069747635,true,true,24.05114221,2908.3553131600006,0.0,1.2,261.0,24.05114221,2908.3553131600006,0.0,121.92,0.0 +262,26765.68117908523,26065.68117908523,0.16,2403.1609146076134,1637568.667889371,700.0,183400.0,19394.755716297583,6854826.837836864,16991.59480168997,5217258.1699474985,true,262,26065.68117908523,0.0,2403.1609146076134,1311119.918176606,700.0,183400.0,6877.558960178172,504347.83428827586,-7045.3965706689305,468525.4208038418,0.0,0.0,2703.2407986136504,329452.4289735581,-132.24227351527915,8794.23411092952,-2403.1609146076134,-1637568.667889371,true,true,23.8723233,2932.2276364600007,0.0,1.2,262.0,23.8723233,2932.2276364600007,0.0,121.92,0.0 +263,24853.160914607615,24153.160914607615,0.16,2283.723350332086,1639852.3912397032,700.0,184100.0,18648.270939575537,6873475.10877644,16364.547589243452,5233622.717536742,true,263,24153.160914607615,0.0,2283.723350332086,1313403.6415269382,700.0,184100.0,6724.729966598496,511072.56425487436,-6992.818592135086,461532.6022117067,0.0,0.0,2683.0673593844467,332135.49633294257,-131.25538351577077,8662.978727413749,-2283.723350332086,-1639852.3912397032,true,true,23.6935044,2955.921140860001,0.0,1.2,263.0,23.6935044,2955.921140860001,0.0,121.92,0.0 +264,24733.723350332086,24033.723350332086,0.16,2166.566375051294,1642018.9576147546,700.0,184800.0,17916.039844070587,6891391.1486205105,15749.473469019293,5249372.191005761,true,264,24033.723350332086,0.0,2166.566375051294,1315570.2079019896,700.0,184800.0,6574.181964338157,517646.74621921254,-6940.241009067015,454592.3612026397,0.0,0.0,2662.8939207193166,334798.3902536619,-130.26850093916545,8532.710226474583,-2166.566375051294,-1642018.9576147546,true,true,23.5146855,2979.4358263600006,0.0,1.2,264.0,23.5146855,2979.4358263600006,0.0,121.92,0.0 +265,24616.566375051294,23916.566375051294,0.12,284.90774192002755,1642303.8653566747,700.0,185500.0,8207.56451600023,6899598.713136511,7922.656774080202,5257294.847779841,true,265,23916.566375051294,0.0,284.90774192002755,1315855.1156439097,700.0,185500.0,6407.5206020327405,524054.26682124526,-8601.363843659363,445990.99735898036,0.0,0.0,2640.198802503084,337438.58905616496,-161.44781895643413,8371.262407518148,-284.90774192002755,-1642303.8653566747,true,true,23.29116188,3002.7269882400005,0.0,1.2,265.0,23.29116188,3002.7269882400005,0.0,121.92,0.0 +266,22734.907741920026,22034.907741920026,0.33,14253.67040886373,1656557.5357655385,700.0,186200.0,45314.15275413251,6944912.865890644,31060.48234526878,5288355.33012511,true,266,22034.907741920026,0.0,14253.67040886373,1330108.7860527735,700.0,186200.0,6370.871383797401,530425.1382050427,5150.959932776452,451141.9572917568,0.0,0.0,2635.1554428368013,340073.74449900177,96.68364945307559,8467.946056971225,-14253.67040886373,-1656557.5357655385,true,true,23.42527605,3026.1522642900004,0.0,1.2,266.0,23.42527605,3026.1522642900004,0.0,121.92,0.0 +267,36703.670408863734,36003.670408863734,0.16,1995.0702465475279,1658552.606012086,700.0,186900.0,16844.18904092205,6961757.054931565,14849.118794374523,5303204.448919484,true,267,36003.670408863734,0.0,1995.0702465475279,1332103.856299321,700.0,186900.0,6352.599295365358,536777.7375004081,-6861.374634465189,444280.5826572916,0.0,0.0,2632.6337627216235,342706.3782617234,-128.78817707426418,8339.15787989696,-1995.0702465475279,-1658552.606012086,true,true,23.24645715,3049.3987214400004,0.0,1.2,267.0,23.24645715,3049.3987214400004,0.0,121.92,0.0 +268,24445.070246547526,23745.070246547526,0.28,7142.61705590324,1665695.223067989,700.0,187600.0,28009.346628225852,6989766.401559791,20866.729572322613,5324071.178491807,true,268,23745.070246547526,0.0,7142.61705590324,1339246.4733552241,700.0,187600.0,6261.762752862826,543039.500253271,-1707.12822051195,442573.45443677966,0.0,0.0,2620.0253638379545,345326.40362556133,-32.042840285590316,8307.11503961137,-7142.61705590324,-1665695.223067989,true,true,23.20175243,3072.6004738700003,0.0,1.2,268.0,23.20175243,3072.6004738700003,0.0,121.92,0.0 +269,29592.61705590324,28892.61705590324,0.22,5351.839491370046,1671047.0625593592,700.0,188300.0,27508.3613244093,7017274.7628842,22156.521833039253,5346227.7003248455,true,269,28892.61705590324,0.0,5351.839491370046,1344598.3128465943,700.0,188300.0,6207.678728172924,549247.1789814439,-3404.39890646357,439169.0555303161,0.0,0.0,2612.460324056494,347938.86394961784,-63.90065439580226,8243.214385215568,-5351.839491370046,-1671047.0625593592,true,true,23.11234297,3095.7128168400004,0.0,1.2,269.0,23.11234297,3095.7128168400004,0.0,121.92,0.0 +270,27801.839491370047,27101.839491370047,0.22,5283.517921241528,1676330.5804806007,700.0,189000.0,27197.808732916037,7044472.571617115,21914.29081167451,5368141.99113652,true,270,27101.839491370047,0.0,5283.517921241528,1349881.8307678357,700.0,189000.0,6136.052372869176,555383.2313543131,-3391.254129196618,435777.80140111945,0.0,0.0,2602.373604159854,350541.2375537777,-63.65392659088444,8179.560458624684,-5283.517921241528,-1676330.5804806007,true,true,23.02293352,3118.7357503600006,0.0,1.2,270.0,23.02293352,3118.7357503600006,0.0,121.92,0.0 +271,27733.517921241528,27033.517921241528,0.28,10443.864548263782,1686774.4450288645,700.0,189700.0,39799.51624379922,7084272.087860915,29355.65169553544,5397497.642832056,true,271,27033.517921241528,0.0,10443.864548263782,1360325.6953160996,700.0,189700.0,6118.232292105494,561501.4636464185,1693.9842047749257,437471.78560589434,0.0,0.0,2599.8519246087503,353141.08947838645,31.796126774612166,8211.356585399295,-10443.864548263782,-1686774.4450288645,true,true,23.06763825,3141.8033886100006,0.0,1.2,271.0,23.06763825,3141.8033886100006,0.0,121.92,0.0 +272,32893.86454826378,32193.86454826378,0.28,12240.816860602199,1699015.2618894668,700.0,190400.0,46217.20307357928,7130489.290934494,33976.38621297708,5431474.029045032,true,272,32193.86454826378,0.0,12240.816860602199,1372566.5121767018,700.0,190400.0,6171.7962814701095,567673.2599278886,3397.8263278151207,440869.6119337095,0.0,0.0,2607.4169643902114,355748.50644277665,63.7772869267577,8275.133872326052,-12240.816860602199,-1699015.2618894668,true,true,23.1570477,3164.9604363100007,0.0,1.2,272.0,23.1570477,3164.9604363100007,0.0,121.92,0.0 +273,34690.8168606022,33990.8168606022,0.33,14099.302077163706,1713114.5639666305,700.0,191100.0,44846.369930799105,7175335.660865293,30747.0678536354,5462221.0968986675,true,273,33990.8168606022,0.0,14099.302077163706,1386665.8142538655,700.0,191100.0,6261.762752862826,573935.0226807515,5121.385425270829,445990.9973589803,0.0,0.0,2620.0253638379545,358368.5318066146,96.12853519209577,8371.262407518148,-14099.302077163706,-1713114.5639666305,true,true,23.29116188,3188.2515981900005,0.0,1.2,273.0,23.29116188,3188.2515981900005,0.0,121.92,0.0 +274,36549.30207716371,35849.30207716371,0.33,16030.409528623552,1729144.973495254,700.0,191800.0,50698.210692798646,7226033.871558092,34667.80116417509,5496888.898062843,true,274,35849.30207716371,0.0,16030.409528623552,1402696.223782489,700.0,191800.0,6389.178476223273,580324.2011569748,6874.519031702288,452865.5163906826,0.0,0.0,2637.6771229519804,361006.2089295666,129.03489774600922,8500.297305264157,-16030.409528623552,-1729144.973495254,true,true,23.46998078,3211.7215789700003,0.0,1.2,274.0,23.46998078,3211.7215789700003,0.0,121.92,0.0 +275,38480.40952862355,37780.40952862355,0.35,18045.66247821762,1747190.6359734717,700.0,192500.0,53559.03565205034,7279592.907210142,35513.37317383272,5532402.271236676,true,275,37780.40952862355,0.0,18045.66247821762,1420741.8862607067,700.0,192500.0,6555.522993875727,586879.7241508506,8667.08582102409,461532.6022117067,0.0,0.0,2660.372241168213,363666.58117073483,162.68142214959036,8662.978727413747,-18045.66247821762,-1747190.6359734717,true,true,23.6935044,3235.4150833700005,0.0,1.2,275.0,23.6935044,3235.4150833700005,0.0,121.92,0.0 +276,40495.66247821762,39795.66247821762,0.35,18342.759656331826,1765533.3956298034,700.0,193200.0,54407.884732376646,7334000.791942519,36065.12507604482,5568467.396312721,true,276,39795.66247821762,0.0,18342.759656331826,1439084.6459170384,700.0,193200.0,6743.708499190419,593623.432650041,8749.238684153715,470281.8408958604,0.0,0.0,2685.589039499625,366352.1702102345,164.2234334880662,8827.202160901814,-18342.759656331826,-1765533.3956298034,true,true,23.91702803,3259.3321114000005,0.0,1.2,276.0,23.91702803,3259.3321114000005,0.0,121.92,0.0 +277,40792.75965633182,40092.75965633182,0.35,18643.423838058552,1784176.819467862,700.0,193900.0,55266.925251595865,7389267.717194115,36623.50141353731,5605090.897726258,true,277,40092.75965633182,0.0,18643.423838058552,1457728.069755097,700.0,193900.0,6935.461400708035,600558.894050749,8831.391161372416,479113.2320572328,0.0,0.0,2710.805838395111,369062.97604862956,165.7654375829915,8992.967598484805,-18643.423838058552,-1784176.819467862,true,true,24.14055166,3283.4726630600003,0.0,1.2,277.0,24.14055166,3283.4726630600003,0.0,121.92,0.0 +278,41093.42383805855,40393.42383805855,0.36,26361.87320434186,1810538.6926722038,700.0,194600.0,75171.87001206072,7464439.587206176,48809.99680771887,5653900.894533977,true,278,40393.42383805855,0.0,26361.87320434186,1484089.9429594388,700.0,194600.0,7209.972452829387,607768.8665035784,16103.527768089347,495216.75982532214,0.0,0.0,2746.109356059088,371809.08540468867,302.2636273640368,9295.231225848842,-26361.87320434186,-1810538.6926722038,true,true,24.54289418,3308.0155572400004,0.0,1.2,278.0,24.54289418,3308.0155572400004,0.0,121.92,0.0 +279,48811.87320434186,48111.87320434186,0.35,19504.547176320335,1830043.239848524,700.0,195300.0,57727.27764662953,7522166.864852805,38222.730470309194,5692123.625004286,true,279,48111.87320434186,0.0,19504.547176320335,1503594.490135759,700.0,195300.0,7491.633161205073,615260.4996647835,9061.418092439995,504278.17791776214,0.0,0.0,2781.412873723064,374590.49827841175,170.08304895220277,9465.314274801045,-19504.547176320335,-1830043.239848524,true,true,24.76641781,3332.7819750500003,0.0,1.2,279.0,24.76641781,3332.7819750500003,0.0,121.92,0.0 +280,41954.54717632034,41254.54717632034,0.33,14150.272823050775,1844193.512671575,700.0,196000.0,45000.8267365175,7567167.691589322,30850.553913466723,5722974.178917753,true,280,41254.54717632034,0.0,14150.272823050775,1517744.76295881,700.0,196000.0,7635.173362162595,622895.673026946,3647.5698488578832,507925.74776662,0.0,0.0,2799.06463283709,377389.5629112488,68.464979193205,9533.77925399425,-14150.272823050775,-1844193.512671575,true,true,24.85582726,3357.63780231,0.0,1.2,280.0,24.85582726,3357.63780231,0.0,121.92,0.0 +281,36600.27282305078,35900.27282305078,0.35,18046.095169316977,1862239.607840892,700.0,196700.0,53560.271912334225,7620727.963501656,35514.17674301725,5758488.35566077,true,281,35900.27282305078,0.0,18046.095169316977,1535790.858128127,700.0,196700.0,7759.657452145687,630655.3304790917,7334.572885016492,515260.3206516365,0.0,0.0,2814.194711835937,380203.75762308476,137.67012031886284,9671.449374313112,-18046.095169316977,-1862239.607840892,true,true,25.03464616,3382.6724484700003,0.0,1.2,281.0,25.03464616,3382.6724484700003,0.0,121.92,0.0 +282,40496.09516931698,39796.09516931698,0.28,10667.675474959171,1872907.2833158511,700.0,197400.0,40598.84098199703,7661326.804483653,29931.165507037862,5788419.521167808,true,282,39796.09516931698,0.0,10667.675474959171,1546458.5336030861,700.0,197400.0,7843.3940437906695,638498.7245228824,0.0,515260.3206516365,0.0,0.0,2824.2814311685015,383028.03905425326,0.0,9671.449374313112,-10667.675474959171,-1872907.2833158511,true,true,25.03464616,3407.7070946300005,0.0,1.2,282.0,25.03464616,3407.7070946300005,0.0,121.92,0.0 +283,33117.67547495917,32417.67547495917,0.22,6877.871860116038,1879785.1551759671,700.0,198100.0,34444.87209143653,7695771.67657509,27567.000231320497,5815986.521399128,true,283,32417.67547495917,0.0,6877.871860116038,1553336.4054632022,700.0,198100.0,7801.450849487151,646300.1753723695,-3673.8586403918252,511586.4620112447,0.0,0.0,2819.238071502219,385847.2771257555,-68.9584204815069,9602.490953831604,-6877.871860116038,-1879785.1551759671,true,true,24.94523671,3432.6523313400003,0.0,1.2,283.0,24.94523671,3432.6523313400003,0.0,121.92,0.0 +284,29327.871860116036,28627.871860116036,0.12,0.0,1879785.1551759671,700.0,198800.0,6999.999999999999,7702771.67657509,6999.999999999999,5822986.521399128,true,284,28627.871860116036,0.0,-713.8664891534008,1552622.5389740488,700.0,198800.0,7635.173362162592,653935.348734532,-10942.709546573462,500643.7524646712,0.0,0.0,2799.0646328370894,388646.3417585926,-205.39493757962094,9397.096016251984,-0.0,-1879785.1551759671,true,true,24.67700836,3457.3293397,0.0,1.2,284.0,24.67700836,3457.3293397,0.0,121.92,0.0 +285,22450.0,21750.0,0.12,0.0,1879785.1551759671,700.0,199500.0,6999.999999999999,7709771.67657509,6999.999999999999,5829986.521399128,true,285,21750.0,0.0,-2717.4752928201515,1549905.0636812286,700.0,199500.0,7370.040065523158,661305.3888000551,-12616.977169458767,488026.77529521246,0.0,0.0,2766.282794724217,391412.6245533168,-236.8209836087585,9160.275032643225,-0.0,-1879785.1551759671,true,true,24.36407528,3481.6934149800004,0.0,1.2,285.0,24.36407528,3481.6934149800004,0.0,121.92,0.0 +286,22450.0,21750.0,0.12,0.0,1879785.1551759671,700.0,200200.0,6999.999999999999,7716771.67657509,6999.999999999999,5836986.521399128,true,286,21750.0,0.0,-6507.09601008738,1543397.9676711413,700.0,200200.0,7052.23942176968,668357.6282218248,-15985.228207656735,472041.54708755575,0.0,0.0,2725.9359173939583,394138.56047071074,-300.0431415942827,8860.231891048943,-0.0,-1879785.1551759671,true,true,23.96173276,3505.6551477400003,0.0,1.2,286.0,23.96173276,3505.6551477400003,0.0,121.92,0.0 +287,22450.0,21750.0,0.12,0.0,1879785.1551759671,700.0,200900.0,6999.999999999999,7723771.67657509,6999.999999999999,5843986.521399128,true,287,21750.0,0.0,-10192.454871857957,1533205.5127992833,700.0,200900.0,6668.0080900688445,675025.6363118936,-19176.03069687315,452865.5163906826,0.0,0.0,2675.502320731135,396814.06279144186,-359.9345857847864,8500.297305264157,-0.0,-1879785.1551759671,true,true,23.46998078,3529.12512852,0.0,1.2,287.0,23.46998078,3529.12512852,0.0,121.92,0.0 +288,22450.0,21750.0,0.12,0.0,1879785.1551759671,700.0,201600.0,6999.999999999999,7730771.67657509,6999.999999999999,5850986.521399128,true,288,21750.0,0.0,-8506.044473066871,1524699.4683262163,700.0,201600.0,6279.86031974671,681305.4966316402,-17087.714989563163,435777.80140111945,0.0,0.0,2622.547043389058,399436.6098348309,-320.73684663947483,8179.560458624683,-0.0,-1879785.1551759671,true,true,23.02293352,3552.1480620400002,0.0,1.2,288.0,23.02293352,3552.1480620400002,0.0,121.92,0.0 +289,22450.0,21750.0,0.28,8697.776986886134,1888482.9321628532,700.0,202300.0,33563.48923887905,7764335.1658139685,24865.71225199291,5875852.233651121,true,289,21750.0,0.0,8697.776986886134,1533397.2453131024,700.0,202300.0,6100.446742392562,687405.9433740329,0.0,435777.80140111945,0.0,0.0,2597.330244493572,402033.9400793245,0.0,8179.560458624683,-8697.776986886134,-1888482.9321628532,true,true,23.02293352,3575.1709955600004,0.0,1.2,289.0,23.02293352,3575.1709955600004,0.0,121.92,0.0 +290,31147.776986886136,30447.776986886136,0.28,8697.776986886134,1897180.7091497392,700.0,203000.0,33563.48923887905,7797898.655052847,24865.71225199291,5900717.945903114,true,290,30447.776986886136,0.0,8697.776986886134,1542095.0222999884,700.0,203000.0,6100.446742392562,693506.3901164255,0.0,435777.80140111945,0.0,0.0,2597.330244493572,404631.270323818,0.0,8179.560458624683,-8697.776986886134,-1897180.7091497392,true,true,23.02293352,3598.1939290800005,0.0,1.2,290.0,23.02293352,3598.1939290800005,0.0,121.92,0.0 +291,31147.776986886136,30447.776986886136,0.16,1747.2499947227952,1898927.9591444621,700.0,203700.0,15295.31246701747,7813193.967519864,13548.062472294674,5914266.008375409,true,291,30447.776986886136,0.0,1747.2499947227952,1543842.2722947113,700.0,203700.0,6029.649231903335,699536.0393483288,-6743.075071092229,429034.7263300272,0.0,0.0,2587.2435251610073,407218.513848979,-126.56769124931749,8052.9927673753655,-1747.2499947227952,-1898927.9591444621,true,true,22.84411462,3621.0380437000003,0.0,1.2,291.0,22.84411462,3621.0380437000003,0.0,121.92,0.0 +292,24197.249994722795,23497.249994722795,0.12,0.0,1898927.9591444621,700.0,204400.0,6999.999999999999,7820193.967519864,6999.999999999999,5921266.008375409,true,292,23497.249994722795,0.0,-8601.6481732743,1535240.624121437,700.0,204400.0,5786.174187887924,705322.2135362168,-16627.660751808584,412407.0655782186,0.0,0.0,2551.940007497031,409770.45385647606,-312.1016168506692,7740.891150524696,-0.0,-1898927.9591444621,true,true,22.39706737,3643.4351110700004,0.0,1.2,292.0,22.39706737,3643.4351110700004,0.0,121.92,0.0 +293,22450.0,21750.0,0.22,6448.17591861605,1905376.1350630783,700.0,205100.0,32491.708720982046,7852685.6762408465,26043.532802365997,5947309.541177775,true,293,21750.0,0.0,6448.17591861605,1541688.8000400532,700.0,205100.0,5599.538028582365,710921.7515647991,-1644.6927147680865,410762.3728634505,0.0,0.0,2524.2015290504405,412294.6553855265,-30.870924248669432,7710.020226276027,-6448.17591861605,-1905376.1350630783,true,true,22.35236264,3665.7874737100005,0.0,1.2,293.0,22.35236264,3665.7874737100005,0.0,121.92,0.0 +294,28898.17591861605,28198.17591861605,0.28,9799.303196649562,1915175.4382597278,700.0,205800.0,37497.51141660557,7890183.187657452,27698.20821995601,5975007.74939773,true,294,28198.17591861605,0.0,9799.303196649562,1551488.1032367027,700.0,205800.0,5599.538028582365,716521.2895933815,1644.6927147680865,412407.0655782186,0.0,0.0,2524.2015290504405,414818.8569145769,30.870924248669432,7740.891150524696,-9799.303196649562,-1915175.4382597278,true,true,22.39706737,3688.1845410800006,0.0,1.2,294.0,22.39706737,3688.1845410800006,0.0,121.92,0.0 +295,32249.303196649562,31549.303196649562,0.22,6448.17591861605,1921623.614178344,700.0,206500.0,32491.708720982046,7922674.896378434,26043.532802365997,6001051.282200096,true,295,31549.303196649562,0.0,6448.17591861605,1557936.2791553189,700.0,206500.0,5599.538028582365,722120.8276219638,-1644.6927147680865,410762.3728634505,0.0,0.0,2524.2015290504405,417343.0584436273,-30.870924248669432,7710.020226276027,-6448.17591861605,-1921623.614178344,true,true,22.35236264,3710.5369037200007,0.0,1.2,295.0,22.35236264,3710.5369037200007,0.0,121.92,0.0 +296,28898.17591861605,28198.17591861605,0.16,1358.8644097444867,1922982.4785880884,700.0,207200.0,12867.902560903041,7935542.798939337,11509.038151158555,6012560.320351255,true,296,28198.17591861605,0.0,1358.8644097444867,1559295.1435650634,700.0,207200.0,5516.047294818749,727636.8749167826,-6545.9091331174905,404216.463730333,0.0,0.0,2511.5931296026974,419854.65157323005,-122.86688155946955,7587.1533447165575,-1358.8644097444867,-1922982.4785880884,true,true,22.17354374,3732.7104474600005,0.0,1.2,296.0,22.17354374,3732.7104474600005,0.0,121.92,0.0 +297,23808.864409744485,23108.864409744485,0.22,6273.550991191495,1929256.02957928,700.0,207900.0,31697.95905087043,7967240.7579902075,25424.408059678935,6037984.728410934,true,297,23108.864409744485,0.0,6273.550991191495,1565568.694556255,700.0,207900.0,5433.390631040657,733070.2655478233,-1628.2618539957336,402588.2018763373,0.0,0.0,2498.984730719029,422353.63630394905,-30.562516572457934,7556.5908281441,-6273.550991191495,-1929256.02957928,true,true,22.12883902,3754.8392864800007,0.0,1.2,297.0,22.12883902,3754.8392864800007,0.0,121.92,0.0 +298,28723.550991191496,28023.550991191496,0.28,7913.422070406525,1937169.4516496866,700.0,208600.0,30762.2216800233,7998002.979670231,22848.799609616777,6060833.5280205505,true,298,28023.550991191496,0.0,7913.422070406525,1573482.1166266615,700.0,208600.0,5416.9590192385995,738487.2245670619,0.0,402588.2018763373,0.0,0.0,2496.463051167925,424850.09935511695,0.0,7556.5908281441,-7913.422070406525,-1937169.4516496866,true,true,22.12883902,3776.968125500001,0.0,1.2,298.0,22.12883902,3776.968125500001,0.0,121.92,0.0 +299,30363.422070406523,29663.422070406523,0.28,7913.422070406525,1945082.8737200932,700.0,209300.0,30762.2216800233,8028765.201350255,22848.799609616777,6083682.327630167,true,299,29663.422070406523,0.0,7913.422070406525,1581395.538697068,700.0,209300.0,5416.9590192385995,743904.1835863005,0.0,402588.2018763373,0.0,0.0,2496.463051167925,427346.56240628485,0.0,7556.5908281441,-7913.422070406525,-1945082.8737200932,true,true,22.12883902,3799.096964520001,0.0,1.2,299.0,22.12883902,3799.096964520001,0.0,121.92,0.0 +300,30363.422070406523,29663.422070406523,0.12,1236.1197441311333,1946318.9934642243,700.0,210000.0,16134.331201092778,8044899.532551347,14898.211456961646,6098580.539087129,true,300,29663.422070406523,0.0,1236.1197441311333,1582631.6584411992,700.0,210000.0,5351.563846414803,749255.7474327153,-6480.187155752717,396108.01472058456,0.0,0.0,2486.376331835361,429832.9387381202,-121.6332783663133,7434.957549777787,-1236.1197441311333,-1946318.9934642243,true,true,21.95002012,3821.046984640001,0.0,1.2,300.0,21.95002012,3821.046984640001,0.0,121.92,0.0 +301,23686.119744131134,22986.119744131134,0.12,0.0,1946318.9934642243,700.0,210700.0,6999.999999999999,8051899.532551347,6999.999999999999,6105580.539087129,true,301,22986.119744131134,0.0,-506.91592236735323,1582124.742518832,700.0,210700.0,5206.353559388085,754462.1009921033,-8026.296897123215,388081.71782346134,0.0,0.0,2463.6812130550525,432296.61995117523,-150.65379768727655,7284.30375209051,-0.0,-1946318.9934642243,true,true,21.72649649,3842.773481130001,0.0,1.2,301.0,21.72649649,3842.773481130001,0.0,121.92,0.0 +302,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,211400.0,6999.999999999999,8058899.532551347,6999.999999999999,6112580.539087129,true,302,21750.0,0.0,-606.6750751261679,1581518.0674437059,700.0,211400.0,5048.116724210708,759510.217716314,-7944.144419904093,380137.57340355724,0.0,0.0,2438.4644141595663,434735.0843653348,-149.11179359234828,7135.1919584981615,-0.0,-1946318.9934642243,true,true,21.50297286,3864.276453990001,0.0,1.2,302.0,21.50297286,3864.276453990001,0.0,121.92,0.0 +303,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,212100.0,6999.999999999999,8065899.532551347,6999.999999999999,6119580.539087129,true,303,21750.0,0.0,-7121.770313604745,1574396.2971301011,700.0,212100.0,4832.01938643268,764342.2371027467,-14092.435227503207,366045.13817605405,0.0,0.0,2403.1608964955894,437138.2452618304,-264.515369029808,6870.676589468353,-0.0,-1946318.9934642243,true,true,21.10063034,3885.377084330001,0.0,1.2,303.0,21.10063034,3885.377084330001,0.0,121.92,0.0 +304,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,212800.0,6999.999999999999,8072899.532551347,6999.999999999999,6126580.539087129,true,304,21750.0,0.0,-10292.261747427488,1564104.0353826736,700.0,212800.0,4534.139706600961,768876.3768093477,-16862.617002191924,349182.52117386216,0.0,0.0,2352.727299832766,439490.97256166313,-316.5117516692918,6554.164837799061,-0.0,-1946318.9934642243,true,true,20.60887836,3905.9859626900006,0.0,1.2,304.0,20.60887836,3905.9859626900006,0.0,121.92,0.0 +305,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,213500.0,6999.999999999999,8079899.532551347,6999.999999999999,6133580.539087129,true,305,21750.0,0.0,-10255.896801006511,1553848.138581667,700.0,213500.0,4220.900330240996,773097.2771395886,-16464.999022155116,332717.52215170703,0.0,0.0,2297.2503429395856,441788.2229046027,-309.04845203197704,6245.1163857670845,-0.0,-1946318.9934642243,true,true,20.11712638,3926.103089070001,0.0,1.2,305.0,20.11712638,3926.103089070001,0.0,121.92,0.0 +306,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,214200.0,6999.999999999999,8086899.532551347,6999.999999999999,6140580.539087129,true,306,21750.0,0.0,-11688.506707337881,1542159.6318743292,700.0,214200.0,3909.2087626089387,777006.4859021975,-17508.335276281618,315209.1868754254,0.0,0.0,2239.2517064953017,444027.474611098,-328.63190016050356,5916.484485606581,-0.0,-1946318.9934642243,true,true,19.58066968,3945.683758750001,0.0,1.2,306.0,19.58066968,3945.683758750001,0.0,121.92,0.0 +307,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,214900.0,6999.999999999999,8093899.532551347,6999.999999999999,6147580.539087129,true,307,21750.0,0.0,-11575.420637716466,1530584.2112366126,700.0,214900.0,3600.73527700565,780607.2211792032,-17035.137341809237,298174.04953361617,0.0,0.0,2178.731389935839,446206.20600103383,-319.74996284871855,5596.734522757863,-0.0,-1946318.9934642243,true,true,19.04421297,3964.727971720001,0.0,1.2,307.0,19.04421297,3964.727971720001,0.0,121.92,0.0 +308,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,215600.0,6999.999999999999,8100899.532551347,6999.999999999999,6154580.539087129,true,308,21750.0,0.0,-10043.655878446818,1520540.5553581659,700.0,215600.0,3320.76355143765,783927.9847306409,-15199.850599538468,282974.1989340777,0.0,0.0,2120.7327534915544,448326.9387545254,-285.3015838375548,5311.432938920308,-0.0,-1946318.9934642243,true,true,18.552461,3983.280432720001,0.0,1.2,308.0,18.552461,3983.280432720001,0.0,121.92,0.0 +309,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,216300.0,6999.999999999999,8107899.532551347,6999.999999999999,6161580.539087129,true,309,21750.0,0.0,-11312.472022033726,1509228.083336132,700.0,216300.0,3055.6941114922033,786983.6788421331,-16128.174012570968,266846.0249215067,0.0,0.0,2062.7341170472705,450389.67287157266,-302.7262380022311,5008.706700918076,-0.0,-1946318.9934642243,true,true,18.01600429,4001.2964370100012,0.0,1.2,309.0,18.01600429,4001.2964370100012,0.0,121.92,0.0 +310,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,217000.0,6999.999999999999,8114899.532551347,6999.999999999999,6168580.539087129,true,310,21750.0,0.0,-19023.69340536229,1490204.3899307698,700.0,217000.0,2731.672425089387,789715.3512672225,-23305.013847006212,243541.01107450048,0.0,0.0,1987.083721488961,452376.7565930616,-437.4357049344245,4571.270995983652,-0.0,-1946318.9934642243,true,true,17.21131924,4018.5077562500014,0.0,1.2,310.0,17.21131924,4018.5077562500014,0.0,121.92,0.0 +311,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,217700.0,6999.999999999999,8121899.532551347,6999.999999999999,6175580.539087129,true,311,21750.0,0.0,-14650.279431987678,1475554.110498782,700.0,217700.0,2402.6517185178827,792118.0029857404,-18607.535520411107,224933.47555408938,0.0,0.0,1903.8682867132645,454280.62487977487,-349.26391680771457,4222.007079175937,-0.0,-1946318.9934642243,true,true,16.54074836,4035.0485046100016,0.0,1.2,311.0,16.54074836,4035.0485046100016,0.0,121.92,0.0 +312,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,218400.0,6999.999999999999,8128899.532551347,6999.999999999999,6182580.539087129,true,312,21750.0,0.0,-17832.044392475622,1457722.0661063064,700.0,218400.0,2101.171777899927,794219.1747636404,-21353.07132773848,203580.4042263509,0.0,0.0,1820.6528513734938,456101.27773114835,-400.7976940105636,3821.2093851653735,-0.0,-1946318.9934642243,true,true,15.7360633,4050.7845679100014,0.0,1.2,312.0,15.7360633,4050.7845679100014,0.0,121.92,0.0 +313,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,219100.0,6999.999999999999,8135899.532551347,6999.999999999999,6189580.539087129,true,313,21750.0,0.0,-12595.822913552433,1445126.243192754,700.0,219100.0,1833.991161573839,796053.1659252142,-15871.85799153213,187708.54623481876,0.0,0.0,1739.9590961489016,457841.23682729725,-297.91517974304213,3523.2942054223313,-0.0,-1946318.9934642243,true,true,15.11019715,4065.8947650600016,0.0,1.2,313.0,15.11019715,4065.8947650600016,0.0,121.92,0.0 +314,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,219800.0,6999.999999999999,8142899.532551347,6999.999999999999,6196580.539087129,true,314,21750.0,0.0,-11128.369288531278,1433997.8739042226,700.0,219800.0,1627.0112335759954,797680.1771587902,-14161.443604452255,173547.1026303665,0.0,0.0,1671.8737403720527,459513.1105676693,-265.810658027069,3257.483547395262,-0.0,-1946318.9934642243,true,true,14.52903572,4080.423800780002,0.0,1.2,314.0,14.52903572,4080.423800780002,0.0,121.92,0.0 +315,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,220500.0,6999.999999999999,8149899.532551347,6999.999999999999,6203580.539087129,true,315,21750.0,0.0,-7635.527661191851,1426362.3462430309,700.0,220500.0,1463.4904349229294,799143.6675937132,-10515.51668341161,163031.5859469549,0.0,0.0,1613.8751039277686,461126.98567159707,-197.37651663093877,3060.1070307643236,-0.0,-1946318.9934642243,true,true,14.08198847,4094.5057892500017,0.0,1.2,315.0,14.08198847,4094.5057892500017,0.0,121.92,0.0 +316,22450.0,21750.0,0.12,0.0,1946318.9934642243,700.0,221200.0,6999.999999999999,8156899.532551347,6999.999999999999,6210580.539087129,true,316,21750.0,0.0,-6452.426137001081,1419909.9201060298,700.0,221200.0,1336.9795575097173,800480.6471512229,-9183.003668016738,153848.58227893818,0.0,0.0,1565.9631868160488,462692.9488584131,-172.36521331010988,2887.7418174542136,-0.0,-1946318.9934642243,true,true,13.67964594,4108.185435190002,0.0,1.2,316.0,13.67964594,4108.185435190002,0.0,121.92,0.0 +317,22450.0,21750.0,0.16,1791.4254110157972,1948110.41887524,700.0,221900.0,15571.408818848731,8172470.941370196,13779.983407832933,6224360.5224949615,true,317,21750.0,0.0,1791.4254110157972,1421701.3455170456,700.0,221900.0,1273.4256599366233,801754.0728111595,-1003.9033454161585,152844.67893352202,0.0,0.0,1540.7463879205625,464233.69524633366,-18.843291425230344,2868.8985260289833,-1791.4254110157972,-1948110.41887524,true,true,13.63494121,4121.820376400002,0.0,1.2,317.0,13.63494121,4121.820376400002,0.0,121.92,0.0 +318,24241.425411015796,23541.425411015796,0.12,0.0,1948110.41887524,700.0,222600.0,6999.999999999999,8179470.941370196,6999.999999999999,6231360.5224949615,true,318,23541.425411015796,0.0,-2301.6216481087577,1419399.7238689368,700.0,222600.0,1236.2778554234199,802990.3506665829,-4970.224570367782,147874.45436315425,0.0,0.0,1525.6163089217155,465759.3115552554,-93.29124208611101,2775.607283942872,-0.0,-1948110.41887524,true,true,13.41141759,4135.231793990002,0.0,1.2,318.0,13.41141759,4135.231793990002,0.0,121.92,0.0 +319,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,223300.0,6999.999999999999,8186470.941370196,6999.999999999999,6238360.5224949615,true,319,21750.0,0.0,-7241.573199475978,1412158.1506694609,700.0,223300.0,1146.5843271551485,804136.9349937381,-9693.992157469927,138180.4622056843,0.0,0.0,1487.7911111425606,467247.1026663979,-181.95648030376034,2593.650803639112,-0.0,-1948110.41887524,true,true,12.96437033,4148.196164320002,0.0,1.2,319.0,12.96437033,4148.196164320002,0.0,121.92,0.0 +320,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,224000.0,6999.999999999999,8193470.941370196,6999.999999999999,6245360.5224949615,true,320,21750.0,0.0,-11754.544233399183,1400403.6064360617,700.0,224000.0,1006.9207930016913,805143.8557867397,-13924.844454919332,124255.61775076497,0.0,0.0,1424.7491144679193,468671.85178086587,-261.36968594946114,2332.2811176896507,-0.0,-1948110.41887524,true,true,12.29379945,4160.489963770002,0.0,1.2,320.0,12.29379945,4160.489963770002,0.0,121.92,0.0 +321,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,224700.0,6999.999999999999,8200470.941370196,6999.999999999999,6252360.5224949615,true,321,21750.0,0.0,-21519.50873027726,1378884.0977057845,700.0,224700.0,798.6473085031513,805942.5030952429,-23201.501818181812,101054.11593258315,0.0,0.0,1318.8385609119155,469990.6903417778,-435.492781510511,1896.7883361791396,-0.0,-1948110.41887524,true,true,11.08677187,4171.576735640002,0.0,1.2,321.0,11.08677187,4171.576735640002,0.0,121.92,0.0 +322,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,225400.0,6999.999999999999,8207470.941370196,6999.999999999999,6259360.5224949615,true,322,21750.0,0.0,-23853.714877267474,1355030.3828285171,700.0,225400.0,554.1061100332748,806496.6092052761,-25104.153161684146,75949.962770899,0.0,0.0,1167.537770190148,471158.22811196797,-471.2055958067488,1425.5827403723908,-0.0,-1948110.41887524,true,true,9.611515937,4181.188251577002,0.0,1.2,322.0,9.611515937,4181.188251577002,0.0,121.92,0.0 +323,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,226100.0,6999.999999999999,8214470.941370196,6999.999999999999,6266360.5224949615,true,323,21750.0,0.0,-8297.802994690179,1346732.579833827,700.0,226100.0,401.91106046378957,806898.5202657399,-9569.120241261311,66380.8425296377,0.0,0.0,1049.0188173556232,472207.2469293236,-179.6126312482815,1245.9701091241093,-0.0,-1948110.41887524,true,true,8.985649783,4190.173901360002,0.0,1.2,323.0,8.985649783,4190.173901360002,0.0,121.92,0.0 +324,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,226800.0,6999.999999999999,8221470.941370196,6999.999999999999,6273360.5224949615,true,324,21750.0,0.0,-5236.863107145133,1341495.716726682,700.0,226800.0,336.28551968509396,807234.805785425,-6440.754010571166,59940.08851906653,0.0,0.0,988.4985009653828,473195.74543028895,-120.89311722444432,1125.076991899665,-0.0,-1948110.41887524,true,true,8.53860253,4198.712503890002,0.0,1.2,324.0,8.53860253,4198.712503890002,0.0,121.92,0.0 +325,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,227500.0,6999.999999999999,8228470.941370196,6999.999999999999,6280360.5224949615,true,325,21750.0,0.0,-2531.377681856543,1338964.3390448254,700.0,227500.0,296.76556123792494,807531.5713466629,-3706.7196441430333,56233.36887492349,0.0,0.0,948.1516234094943,474143.8970536984,-69.57522236092908,1055.501769538736,-0.0,-1948110.41887524,true,true,8.270374179,4206.982878069002,0.0,1.2,325.0,8.270374179,4206.982878069002,0.0,121.92,0.0 +326,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,228200.0,6999.999999999999,8235470.941370196,6999.999999999999,6287360.5224949615,true,326,21750.0,0.0,-7768.49865737744,1331195.840387448,700.0,228200.0,249.7669815144495,807781.3383281773,-8749.238554414122,47484.13032050937,0.0,0.0,895.1963465750848,475039.09340027353,-164.2234310528525,891.2783384858835,-0.0,-1948110.41887524,true,true,7.599803299,4214.582681368002,0.0,1.2,326.0,7.599803299,4214.582681368002,0.0,121.92,0.0 +327,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,228900.0,6999.999999999999,8242470.941370196,6999.999999999999,6294360.5224949615,true,327,21750.0,0.0,-7149.019585495776,1324046.8208019522,700.0,228900.0,191.64612793185066,807972.9844561092,-8009.866270102224,39474.264050407146,0.0,0.0,819.5459510731826,475858.6393513467,-150.34539439858528,740.9329440872982,-0.0,-1948110.41887524,true,true,6.92923242,4221.511913788002,0.0,1.2,327.0,6.92923242,4221.511913788002,0.0,121.92,0.0 +328,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,229600.0,6999.999999999999,8249470.941370196,6999.999999999999,6301360.5224949615,true,328,21750.0,0.0,-13232.04902721372,1310814.7717747383,700.0,229600.0,122.55303196360123,808095.5374880729,-13801.615737253274,25672.64831315387,0.0,0.0,706.0703578485328,476564.70970919525,-259.05667977258054,481.8762643147177,-0.0,-1948110.41887524,true,true,5.588090661,4227.100004449002,0.0,1.2,328.0,5.588090661,4227.100004449002,0.0,121.92,0.0 +329,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,230300.0,6999.999999999999,8256470.941370196,6999.999999999999,6308360.5224949615,true,329,21750.0,0.0,-5972.106817900539,1304842.664956838,700.0,230300.0,70.61837652601933,808166.1558645989,-6508.1190388034165,19164.529274350454,0.0,0.0,587.5514049011932,477152.26111409644,-122.157560524335,359.7187037903827,-0.0,-1948110.41887524,true,true,4.828110331,4231.928114780002,0.0,1.2,329.0,4.828110331,4231.928114780002,0.0,121.92,0.0 +330,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,231000.0,6999.999999999999,8263470.941370196,6999.999999999999,6315360.5224949615,true,330,21750.0,0.0,-8300.183204624753,1296542.481752213,700.0,231000.0,37.095695148119944,808203.251559747,-8649.012525517928,10515.516748832526,0.0,0.0,474.07581167654354,477626.336925773,-162.342185931489,197.37651785889366,-0.0,-1948110.41887524,true,true,3.576378023,4235.504492803002,0.0,1.2,330.0,3.576378023,4235.504492803002,0.0,121.92,0.0 +331,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,231700.0,6999.999999999999,8270470.941370196,6999.999999999999,6322360.5224949615,true,331,21750.0,0.0,-6683.582200277575,1289858.8995519355,700.0,231700.0,11.435657220630493,808214.6872169677,-6886.020419309164,3629.496329523362,0.0,0.0,320.25334089600506,477946.590266669,-129.2507790850466,68.12573877384708,-0.0,-1948110.41887524,true,true,2.101122089,4237.6056148920015,0.0,1.2,331.0,2.101122089,4237.6056148920015,0.0,121.92,0.0 +332,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,232400.0,6999.999999999999,8277470.941370196,6999.999999999999,6329360.5224949615,true,332,21750.0,0.0,-3214.4500578050133,1286644.4494941304,700.0,232400.0,1.2671833891650057,808215.9544003569,-3307.458629116223,322.0377004071388,0.0,0.0,153.82247083694585,478100.4127375059,-62.081082914900776,6.0446558589462995,-0.0,-1948110.41887524,true,true,0.625866154,4238.231481046001,0.0,1.2,332.0,0.625866154,4238.231481046001,0.0,121.92,0.0 +333,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,233100.0,6999.999999999999,8284470.941370196,6999.999999999999,6336360.5224949615,true,333,21750.0,0.0,-292.76351924762054,1286351.685974883,700.0,233100.0,0.01531912899177865,808215.9697194858,-322.0377004072729,-1.340936250926461e-10,0.0,0.0,35.30351788960627,478135.7162553955,-6.044655858945696,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,333.0,0.0,4238.231481046001,0.0,121.92,0.0 +334,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,233800.0,6999.999999999999,8291470.941370196,6999.999999999999,6343360.5224949615,true,334,21750.0,0.0,0.0,1286351.685974883,700.0,233800.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,334.0,0.0,4238.231481046001,0.0,121.92,0.0 +335,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,234500.0,6999.999999999999,8298470.941370196,6999.999999999999,6350360.5224949615,true,335,21750.0,0.0,0.0,1286351.685974883,700.0,234500.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,335.0,0.0,4238.231481046001,0.0,121.92,0.0 +336,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,235200.0,6999.999999999999,8305470.941370196,6999.999999999999,6357360.5224949615,true,336,21750.0,0.0,0.0,1286351.685974883,700.0,235200.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,336.0,0.0,4238.231481046001,0.0,121.92,0.0 +337,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,235900.0,6999.999999999999,8312470.941370196,6999.999999999999,6364360.5224949615,true,337,21750.0,0.0,0.0,1286351.685974883,700.0,235900.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,337.0,0.0,4238.231481046001,0.0,121.92,0.0 +338,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,236600.0,6999.999999999999,8319470.941370196,6999.999999999999,6371360.5224949615,true,338,21750.0,0.0,0.0,1286351.685974883,700.0,236600.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,338.0,0.0,4238.231481046001,0.0,121.92,0.0 +339,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,237300.0,6999.999999999999,8326470.941370196,6999.999999999999,6378360.5224949615,true,339,21750.0,0.0,0.0,1286351.685974883,700.0,237300.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,339.0,0.0,4238.231481046001,0.0,121.92,0.0 +340,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,238000.0,6999.999999999999,8333470.941370196,6999.999999999999,6385360.5224949615,true,340,21750.0,0.0,0.0,1286351.685974883,700.0,238000.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,340.0,0.0,4238.231481046001,0.0,121.92,0.0 +341,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,238700.0,6999.999999999999,8340470.941370196,6999.999999999999,6392360.5224949615,true,341,21750.0,0.0,0.0,1286351.685974883,700.0,238700.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,341.0,0.0,4238.231481046001,0.0,121.92,0.0 +342,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,239400.0,6999.999999999999,8347470.941370196,6999.999999999999,6399360.5224949615,true,342,21750.0,0.0,0.0,1286351.685974883,700.0,239400.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,342.0,0.0,4238.231481046001,0.0,121.92,0.0 +343,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,240100.0,6999.999999999999,8354470.941370196,6999.999999999999,6406360.5224949615,true,343,21750.0,0.0,0.0,1286351.685974883,700.0,240100.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,343.0,0.0,4238.231481046001,0.0,121.92,0.0 +344,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,240800.0,6999.999999999999,8361470.941370196,6999.999999999999,6413360.5224949615,true,344,21750.0,0.0,0.0,1286351.685974883,700.0,240800.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,344.0,0.0,4238.231481046001,0.0,121.92,0.0 +345,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,241500.0,6999.999999999999,8368470.941370196,6999.999999999999,6420360.5224949615,true,345,21750.0,0.0,0.0,1286351.685974883,700.0,241500.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,345.0,0.0,4238.231481046001,0.0,121.92,0.0 +346,22450.0,21750.0,0.12,0.0,1948110.41887524,700.0,242200.0,6999.999999999999,8375470.941370196,6999.999999999999,6427360.5224949615,true,346,21750.0,0.0,0.0,1286351.685974883,700.0,242200.0,0.0,808215.9697194858,0.0,-1.340936250926461e-10,0.0,0.0,0.0,478135.7162553955,0.0,6.039613253960852e-13,-0.0,-1948110.41887524,true,true,0.0,4238.231481046001,0.0,1.2,346.0,0.0,4238.231481046001,0.0,121.92,0.0 +347,22450.0,21750.0,0.12,192.61133865925922,1948303.0302138992,700.0,242900.0,7438.427822160494,8382909.369192356,7245.816483501234,6434606.338978463,true,347,21750.0,0.0,192.61133865925922,1286544.297313542,700.0,242900.0,0.005582772961539599,808215.9753022589,164.30494929239373,164.30494929225964,0.0,0.0,25.216798500634113,478160.9330538961,3.084008093269858,3.084008093270462,-192.61133865925922,-1948303.0302138992,true,true,0.447047253,4238.678528299001,0.0,1.2,347.0,0.447047253,4238.678528299001,0.0,121.92,0.0 +348,22642.61133865926,21942.61133865926,0.16,3062.1130402689923,1951365.143254168,700.0,243600.0,23513.2065016812,8406422.575694038,20451.09346141221,6455057.432439875,true,348,21942.61133865926,0.0,3062.1130402689923,1289606.410353811,700.0,243600.0,0.8311464892479955,808216.8064487481,2873.6935602792555,3037.998509571515,0.0,0.0,133.64903200259408,478294.5820858987,53.93930149789451,57.023309591164974,-3062.1130402689923,-1951365.143254168,true,true,1.922303187,4240.600831486001,0.0,1.2,348.0,1.922303187,4240.600831486001,0.0,121.92,0.0 +349,25512.113040268992,24812.113040268992,0.22,6882.852117033748,1958247.9953712018,700.0,244300.0,34467.50962288067,8440890.085316919,27584.657505846924,6482642.089945721,true,349,24812.113040268992,0.0,6882.852117033748,1296489.2624708447,700.0,244300.0,9.407860092076065,808226.2143088402,6452.2553570878035,9490.25386665932,0.0,0.0,300.0799020616533,478594.6619879604,121.10899779221543,178.1323073833804,-6882.852117033748,-1958247.9953712018,true,true,3.397559122,4243.998390608001,0.0,1.2,349.0,3.397559122,4243.998390608001,0.0,121.92,0.0 +350,29332.852117033748,28632.852117033748,0.28,10720.95464424452,1968968.9500154464,700.0,245000.0,40789.12372944471,8481679.209046364,30068.169085200192,6512710.259030921,true,350,28632.852117033748,0.0,10720.95464424452,1307210.2171150893,700.0,245000.0,35.348024833374936,808261.5623336736,10030.817153161288,19521.071019820607,0.0,0.0,466.51077217712,479061.17276013753,188.27869407273917,366.4110014561196,-10720.95464424452,-1968968.9500154464,true,true,4.872815057,4248.871205665,0.0,1.2,350.0,4.872815057,4248.871205665,0.0,121.92,0.0 +351,33170.95464424452,32470.95464424452,0.33,14586.050761252875,1983555.0007766993,700.0,245700.0,46321.365943190525,8528000.574989554,31735.31518193765,6544445.574212859,true,351,32470.95464424452,0.0,14586.050761252875,1321796.2678763422,700.0,245700.0,88.28179006255239,808349.8441237361,13609.3789387968,33130.449958617406,0.0,0.0,632.9416422361792,479694.1144023737,255.44839015734206,621.8593916134616,-14586.050761252875,-1983555.0007766993,true,true,6.348070991,4255.219276656,0.0,1.2,351.0,6.348070991,4255.219276656,0.0,121.92,0.0 +352,37036.050761252875,36336.050761252875,0.33,17314.35528739078,2000869.35606409,700.0,246400.0,54588.955416335695,8582589.530405888,37274.60012894492,6581720.174341804,true,352,36336.050761252875,0.0,17314.35528739078,1339110.623163733,700.0,246400.0,174.49445370915268,808524.3385774452,16044.378290941317,49174.82824955872,0.0,0.0,794.3291525725485,480488.4435549463,301.1533901677597,923.0127817812213,-17314.35528739078,-2000869.35606409,true,true,7.733917475,4262.953194131001,0.0,1.2,352.0,7.733917475,4262.953194131001,0.0,121.92,0.0 +353,39764.355287390776,39064.355287390776,0.35,18088.0471326447,2018957.4031967348,700.0,247100.0,53680.134664699144,8636269.665070588,35592.087532054444,6617312.261873859,true,353,39064.355287390776,0.0,18088.0471326447,1357198.6702963777,700.0,247100.0,289.7186558202516,808814.0572332655,16547.15143799595,65721.97968755467,0.0,0.0,940.5865838536635,481429.0301387999,310.59045497483316,1233.6032367560545,-18088.0471326447,-2018957.4031967348,true,true,8.940945058,4271.894139189,0.0,1.2,353.0,8.940945058,4271.894139189,0.0,121.92,0.0 +354,40538.0471326447,39838.0471326447,0.35,19285.355701401975,2038242.758898137,700.0,247800.0,57101.01628971993,8693370.681360308,37815.66058831796,6655127.9224621765,true,354,39838.0471326447,0.0,19285.355701401975,1376484.0259977798,700.0,247800.0,428.56505532117353,809242.6222885867,17457.400850371967,83179.38053792664,0.0,0.0,1071.7139360231163,482500.74407482304,327.675859685717,1561.2790964417713,-19285.355701401975,-2038242.758898137,true,true,10.05856319,4281.952702379001,0.0,1.2,354.0,10.05856319,4281.952702379001,0.0,121.92,0.0 +355,41735.355701401975,41035.355701401975,0.28,10995.583359983271,2049238.3422581202,700.0,248500.0,41769.940571368825,8735140.621931678,30774.357211385555,6685902.279673562,true,355,41035.355701401975,0.0,10995.583359983271,1387479.609357763,700.0,248500.0,550.5235384176184,809793.1458270043,9109.066323849152,92288.4468617758,0.0,0.0,1165.0160902441917,483665.7601650672,170.9774074723095,1732.256503914081,-10995.583359983271,-2049238.3422581202,true,true,10.59501989,4292.547722269001,0.0,1.2,355.0,10.59501989,4292.547722269001,0.0,121.92,0.0 +356,33445.58335998327,32745.58335998327,0.33,14163.876057676349,2063402.2183157965,700.0,249200.0,45042.048659625296,8780182.670591302,30878.172601948947,6716780.452275511,true,356,32745.58335998327,0.0,14163.876057676349,1401643.4854154394,700.0,249200.0,652.7945848333108,810445.9404118377,12051.768033133052,104340.21489490884,0.0,0.0,1233.1014460210408,484898.8616110883,226.2119936889441,1958.468497603025,-14163.876057676349,-2063402.2183157965,true,true,11.26559077,4303.813313039001,0.0,1.2,356.0,11.26559077,4303.813313039001,0.0,121.92,0.0 +357,36613.876057676345,35913.876057676345,0.33,14221.237302321955,2077623.4556181184,700.0,249900.0,45215.870613096835,8825398.541204398,30994.63331077488,6747775.085586286,true,357,35913.876057676345,0.0,14221.237302321955,1415864.7227177613,700.0,249900.0,775.9598410216155,811221.9002528592,11915.395030327696,116255.60992523654,0.0,0.0,1306.230162028247,486205.0917731165,223.6522689443973,2182.120766547422,-14221.237302321955,-2077623.4556181184,true,true,11.89145693,4315.704769969,0.0,1.2,357.0,11.89145693,4315.704769969,0.0,121.92,0.0 +358,36671.237302321955,35971.237302321955,0.33,16027.340347908204,2093650.7959660266,700.0,250600.0,50688.91014517638,8876087.451349575,34661.569797268174,6782436.655383554,true,358,35971.237302321955,0.0,16027.340347908204,1431892.0630656695,700.0,250600.0,913.7175056328553,812135.6177584921,13481.221099989114,129736.83102522565,0.0,0.0,1379.3588780354528,487584.45065115194,253.04286425078251,2435.163630798205,-16027.340347908204,-2093650.7959660266,true,true,12.56202781,4328.266797779,0.0,1.2,358.0,12.56202781,4328.266797779,0.0,121.92,0.0 +359,38477.340347908204,37777.340347908204,0.35,21038.072836240506,2114688.868802267,700.0,251300.0,62108.77953211574,8938196.230881691,41070.70669587523,6823507.362079429,true,359,37777.340347908204,0.0,21038.072836240506,1452930.13590191,700.0,251300.0,1094.9098522409515,813230.527610733,18137.62333792856,147874.45436315422,0.0,0.0,1465.0959929263272,489049.5466440783,340.4436531446674,2775.607283942872,-21038.072836240506,-2114688.868802267,true,true,13.41141759,4341.678215369,0.0,1.2,359.0,13.41141759,4341.678215369,0.0,121.92,0.0 +360,43488.072836240506,42788.072836240506,0.28,10929.740292158585,2125618.6090944256,700.0,252000.0,41534.78675770923,8979731.0176394,30605.046465550648,6854112.40854498,true,360,42788.072836240506,0.0,10929.740292158585,1463859.8761940687,700.0,252000.0,1254.7601115728003,814485.2877223059,7991.792679245855,155866.24704240006,0.0,0.0,1533.1813487031761,490582.72799278144,150.00615263675482,2925.613436579627,-10929.740292158585,-2125618.6090944256,true,true,13.76905539,4355.447270759,0.0,1.2,360.0,13.76905539,4355.447270759,0.0,121.92,0.0 +361,33379.74029215859,32679.74029215859,0.28,11286.034749559318,2136904.6438439847,700.0,252700.0,42807.266962711845,9022538.284602113,31521.23221315253,6885633.640758133,true,361,32679.74029215859,0.0,11286.034749559318,1475145.910943628,700.0,252700.0,1356.4498290652896,815841.7375513711,8202.103011517436,164068.3500539175,0.0,0.0,1573.528226033435,492156.2562188149,153.95368294315742,3079.567119522784,-11286.034749559318,-2136904.6438439847,true,true,14.12669319,4369.573963949,0.0,1.2,361.0,14.12669319,4369.573963949,0.0,121.92,0.0 +362,33736.034749559316,33036.034749559316,0.28,8380.654858856404,2145285.298702841,700.0,253400.0,32430.91021020144,9054969.194812315,24050.255351345037,6909683.896109478,true,362,33036.034749559316,0.0,8380.654858856404,1483526.5658024845,700.0,253400.0,1443.006419639009,817284.7439710101,5233.112715783436,169301.46276970094,0.0,0.0,1606.3100641463075,493762.56628296117,98.22565928765192,3177.792778810436,-8380.654858856404,-2145285.298702841,true,true,14.35021682,4383.9241807690005,0.0,1.2,362.0,14.35021682,4383.9241807690005,0.0,121.92,0.0 +363,30830.654858856404,30130.654858856404,0.28,10767.154120225496,2156052.4528230666,700.0,254100.0,40954.121857948194,9095923.316670263,30186.967737722698,6939870.863847201,true,363,30130.654858856404,0.0,10767.154120225496,1494293.71992271,700.0,254100.0,1526.1037391279024,818810.847710138,7464.373674501998,176765.83644420293,0.0,0.0,1636.5702221440017,495399.1365051052,140.10648445159347,3317.8992632620298,-10767.154120225496,-2156052.4528230666,true,true,14.66314989,4398.587330659,0.0,1.2,363.0,14.66314989,4398.587330659,0.0,121.92,0.0 +364,33217.154120225496,32517.154120225496,0.28,12200.481406647934,2168252.9342297143,700.0,254800.0,46073.14788088547,9141996.464551149,33872.66647423754,6973743.530321438,true,364,32517.154120225496,0.0,12200.481406647934,1506494.201329358,700.0,254800.0,1634.3843842005958,820445.2320943385,8727.879089179143,185493.71553338208,0.0,0.0,1674.3954199231566,497073.53192502836,163.82251334503954,3481.7217766070694,-12200.481406647934,-2168252.9342297143,true,true,15.0207877,4413.608118359,0.0,1.2,364.0,15.0207877,4413.608118359,0.0,121.92,0.0 +365,34650.48140664793,33950.48140664793,0.33,13739.691259379668,2181992.625489094,700.0,255500.0,43756.64017993838,9185753.104731087,30016.948920558716,7003760.479241997,true,365,33950.48140664793,0.0,13739.691259379668,1520233.8925887377,700.0,255500.0,1763.1582833188538,822208.3903776574,10070.25014633088,195563.96567971297,0.0,0.0,1717.2639773685937,498790.79590239696,189.01885236134012,3670.7406289684095,-13739.691259379668,-2181992.625489094,true,true,15.42313022,4429.031248579,0.0,1.2,365.0,15.42313022,4429.031248579,0.0,121.92,0.0 +366,36189.691259379666,35489.691259379666,0.22,4741.115189544704,2186733.7406786387,700.0,256200.0,24732.341770657746,9210485.446501745,19991.226581113042,7023751.70582311,true,366,35489.691259379666,0.0,4741.115189544704,1524975.0077782823,700.0,256200.0,1841.9765971658976,824050.3669748233,1135.3473185223263,196699.31299823528,0.0,0.0,1742.4807757000056,500533.27667809697,21.310498156473894,3692.0511271248834,-4741.115189544704,-2186733.7406786387,true,true,15.46783495,4444.499083529,0.0,1.2,366.0,15.46783495,4444.499083529,0.0,121.92,0.0 +367,27191.115189544704,26491.115189544704,0.22,7116.77750503031,2193850.518183669,700.0,256900.0,35530.80684104686,9246016.253342792,28414.029336016552,7052165.735159127,true,367,26491.115189544704,0.0,7116.77750503031,1532091.7852833127,700.0,256900.0,1874.1501416412598,825924.5171164646,3425.758297089213,200125.0712953245,0.0,0.0,1752.5674955966447,502285.8441736936,64.3015707031929,3756.352697828076,-7116.77750503031,-2193850.518183669,true,true,15.60194913,4460.101032659,0.0,1.2,367.0,15.60194913,4460.101032659,0.0,121.92,0.0 +368,29566.77750503031,28866.77750503031,0.16,2481.2861597536635,2196331.804343423,700.0,257600.0,19883.038498460395,9265899.291841254,17401.75233870673,7069567.487497834,true,368,28866.77750503031,0.0,2481.2861597536635,1534573.0714430662,700.0,257600.0,1890.3764599755755,827814.8935764402,-1145.2056168176591,198979.86567850685,0.0,0.0,1757.610855262927,504043.4550289565,-21.49553866718006,3734.857159160896,-2481.2861597536635,-2196331.804343423,true,true,15.5572444,4475.658277059,0.0,1.2,368.0,15.5572444,4475.658277059,0.0,121.92,0.0 +369,24931.286159753665,24231.286159753665,0.12,125.52454853938366,2196457.3288919623,700.0,258300.0,6999.999999999999,9272899.291841254,6874.475451460616,7076441.962949295,true,369,24231.286159753665,0.0,125.52454853938366,1534698.5959916057,700.0,258300.0,1858.016942159463,829672.9105185997,-3415.8999987938805,195563.96567971297,0.0,0.0,1747.524135366288,505790.97916432284,-64.11653019248674,3670.7406289684095,-125.52454853938366,-2196457.3288919623,true,true,15.42313022,4491.081407279,0.0,1.2,369.0,15.42313022,4491.081407279,0.0,121.92,0.0 +370,22575.524548539383,21875.524548539383,0.22,5911.65104974759,2202368.97994171,700.0,259000.0,30052.9593170345,9302952.251158288,24141.30826728691,7100583.271216582,true,370,21875.524548539383,0.0,5911.65104974759,1540610.2470413533,700.0,259000.0,1849.985180723188,831522.8956993228,2273.980736721436,197837.9464164344,0.0,0.0,1745.002455815184,507535.98162013805,42.68267648778144,3713.423305456191,-5911.65104974759,-2202368.97994171,true,true,15.51253968,4506.593946959,0.0,1.2,370.0,15.51253968,4506.593946959,0.0,121.92,0.0 +371,28361.65104974759,27661.65104974759,0.33,13102.134456384767,2215471.114398095,700.0,259700.0,41824.649867832624,9344776.90102612,28722.515411447857,7129305.786628029,true,371,27661.65104974759,0.0,13102.134456384767,1553712.381497738,700.0,259700.0,1931.351418159294,833454.2471174821,9227.365890162357,207065.31230659675,0.0,0.0,1770.2192547106702,509306.2008748487,173.19789335244565,3886.6211988086366,-13102.134456384767,-2215471.114398095,true,true,15.87017748,4522.464124439,0.0,1.2,371.0,15.87017748,4522.464124439,0.0,121.92,0.0 +372,35552.13445638477,34852.13445638477,0.28,9827.804112874552,2225298.9185109693,700.0,260400.0,37599.300403123394,9382376.201429244,27771.49629024884,7157077.282918278,true,372,34852.13445638477,0.0,9827.804112874552,1563540.1856106124,700.0,260400.0,2040.6479698735973,835494.8950873557,5873.90176464599,212939.21407124275,0.0,0.0,1803.0010922594684,511109.2019671082,110.25328609549629,3996.8744849041327,-9827.804112874552,-2225298.9185109693,true,true,16.0937011,4538.557825539,0.0,1.2,372.0,16.0937011,4538.557825539,0.0,121.92,0.0 +373,32277.804112874554,31577.804112874554,0.16,3899.3683303844296,2229198.286841354,700.0,261100.0,28746.052064902688,9411122.253494147,24846.683734518258,7181923.966652797,true,373,31577.804112874554,0.0,3899.3683303844296,1567439.5539409968,700.0,261100.0,2083.7588392412927,837578.6539265971,0.0,212939.21407124275,0.0,0.0,1815.609491143137,512924.8114582513,0.0,3996.8744849041327,-3899.3683303844296,-2229198.286841354,true,true,16.0937011,4554.651526639,0.0,1.2,373.0,16.0937011,4554.651526639,0.0,121.92,0.0 +374,26349.36833038443,25649.36833038443,0.16,3899.3683303844296,2233097.6551717385,700.0,261800.0,28746.052064902688,9439868.30555905,24846.683734518258,7206770.650387315,true,374,25649.36833038443,0.0,3899.3683303844296,1571338.9222713811,700.0,261800.0,2083.7588392412927,839662.4127658384,0.0,212939.21407124275,0.0,0.0,1815.609491143137,514740.42094939447,0.0,3996.8744849041327,-3899.3683303844296,-2233097.6551717385,true,true,16.0937011,4570.745227738999,0.0,1.2,374.0,16.0937011,4570.745227738999,0.0,121.92,0.0 +375,26349.36833038443,25649.36833038443,0.16,3899.3683303844296,2236997.023502123,700.0,262500.0,28746.052064902688,9468614.357623953,24846.683734518258,7231617.334121834,true,375,25649.36833038443,0.0,3899.3683303844296,1575238.2906017655,700.0,262500.0,2083.7588392412927,841746.1716050798,0.0,212939.21407124275,0.0,0.0,1815.609491143137,516556.0304405376,0.0,3996.8744849041327,-3899.3683303844296,-2236997.023502123,true,true,16.0937011,4586.838928838999,0.0,1.2,375.0,16.0937011,4586.838928838999,0.0,121.92,0.0 +376,26349.36833038443,25649.36833038443,0.16,3899.3683303844296,2240896.3918325077,700.0,263200.0,28746.052064902688,9497360.409688856,24846.683734518258,7256464.017856352,true,376,25649.36833038443,0.0,3899.3683303844296,1579137.6589321499,700.0,263200.0,2083.7588392412927,843829.9304443211,0.0,212939.21407124275,0.0,0.0,1815.609491143137,518371.63993168075,0.0,3996.8744849041327,-3899.3683303844296,-2240896.3918325077,true,true,16.0937011,4602.932629938999,0.0,1.2,376.0,16.0937011,4602.932629938999,0.0,121.92,0.0 +377,26349.36833038443,25649.36833038443,0.16,3899.3683303844296,2244795.7601628923,700.0,263900.0,28746.052064902688,9526106.46175376,24846.683734518258,7281310.7015908705,true,377,25649.36833038443,0.0,3899.3683303844296,1583037.0272625342,700.0,263900.0,2083.7588392412927,845913.6892835625,0.0,212939.21407124275,0.0,0.0,1815.609491143137,520187.2494228239,0.0,3996.8744849041327,-3899.3683303844296,-2244795.7601628923,true,true,16.0937011,4619.026331038998,0.0,1.2,377.0,16.0937011,4619.026331038998,0.0,121.92,0.0 +378,26349.36833038443,25649.36833038443,0.22,5117.4589134998905,2249913.2190763922,700.0,264600.0,26442.995061363137,9552549.456815124,21325.536147863248,7302636.237738734,true,378,25649.36833038443,0.0,5117.4589134998905,1588154.4861760342,700.0,264600.0,2092.453233030159,848006.1425165926,1184.6388085290018,214123.85287977176,0.0,0.0,1818.1311712583154,522005.38059408223,22.23570068241439,4019.1101855865472,-5117.4589134998905,-2249913.2190763922,true,true,16.13840583,4635.164736868998,0.0,1.2,378.0,16.13840583,4635.164736868998,0.0,121.92,0.0 +379,27567.45891349989,26867.45891349989,0.28,7596.400477304247,2257509.6195536964,700.0,265300.0,29630.00170465802,9582179.458519781,22033.601227353774,7324669.838966087,true,379,26867.45891349989,0.0,7596.400477304247,1595750.8866533386,700.0,265300.0,2127.4726519919045,850133.6151685845,3573.6327560833283,217697.4856358551,0.0,0.0,1828.217891154955,523833.59848523716,67.0771780740596,4086.187363660607,-7596.400477304247,-2257509.6195536964,true,true,16.27252001,4651.437256878999,0.0,1.2,379.0,16.27252001,4651.437256878999,0.0,121.92,0.0 +380,30046.400477304247,29346.400477304247,0.22,5221.450595019953,2262731.070148716,700.0,266000.0,26915.684522817966,9609095.1430426,21694.233927798014,7346364.072893886,true,380,29346.400477304247,0.0,5221.450595019953,1600972.3372483584,700.0,266000.0,2162.8806299989774,852296.4957985835,1197.78293820149,218895.2685740566,0.0,0.0,1838.3046104875193,525671.9030957246,22.48241633196647,4108.669779992573,-5221.450595019953,-2262731.070148716,true,true,16.31722473,4667.7544816089985,0.0,1.2,380.0,16.31722473,4667.7544816089985,0.0,121.92,0.0 +381,27671.450595019953,26971.450595019953,0.16,2780.91988595304,2265511.990034669,700.0,266700.0,21755.7492872065,9630850.892329806,18974.82940125346,7365338.90229514,true,381,26971.450595019953,0.0,2780.91988595304,1603753.2571343114,700.0,266700.0,2162.8806299989774,854459.3764285825,-1197.78293820149,217697.4856358551,0.0,0.0,1838.3046104875193,527510.2077062122,-22.48241633196647,4086.187363660607,-2780.91988595304,-2265511.990034669,true,true,16.27252001,4684.027001618999,0.0,1.2,381.0,16.27252001,4684.027001618999,0.0,121.92,0.0 +382,25230.91988595304,24530.91988595304,0.12,0.0,2265511.990034669,700.0,267400.0,6999.999999999999,9637850.892329806,6999.999999999999,7372338.90229514,true,382,24530.91988595304,0.0,-903.2067794240579,1602850.0503548873,700.0,267400.0,2118.68145290497,856578.0578814874,-4758.27156461233,212939.21407124275,0.0,0.0,1825.696211039776,529335.903917252,-89.31287875647399,3996.874484904133,-0.0,-2265511.990034669,true,true,16.0937011,4700.1207027189985,0.0,1.2,382.0,16.0937011,4700.1207027189985,0.0,121.92,0.0 +383,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,268100.0,6999.999999999999,9644850.892329806,6999.999999999999,7379338.90229514,true,383,21750.0,0.0,-6911.714226089681,1595938.3361287976,700.0,268100.0,2006.5905763045803,858584.648457792,-10513.873501261145,202425.3405699816,0.0,0.0,1792.9143729269035,531128.8182901789,-197.34567406001952,3799.5288108441137,-0.0,-2265511.990034669,true,true,15.69135858,4715.812061298999,0.0,1.2,383.0,15.69135858,4715.812061298999,0.0,121.92,0.0 +384,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,268800.0,6999.999999999999,9651850.892329806,6999.999999999999,7386338.90229514,true,384,21750.0,0.0,-7988.328393078898,1587950.0077357187,700.0,268800.0,1849.985180723188,860434.6336385151,-11369.902666273734,191055.43790370788,0.0,0.0,1745.002455815184,532873.8207459941,-213.4133633435361,3586.1154475005774,-0.0,-2265511.990034669,true,true,15.24431132,4731.0563726189985,0.0,1.2,384.0,15.24431132,4731.0563726189985,0.0,121.92,0.0 +385,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,269500.0,6999.999999999999,9658850.892329806,6999.999999999999,7393338.90229514,true,385,21750.0,0.0,-3360.0338457506355,1584589.9738899681,700.0,269500.0,1724.6066394544264,862159.2402779695,-6664.208695755293,184391.2292079526,0.0,0.0,1704.6555779208506,534578.476323915,-125.0873673706192,3461.028080129958,-0.0,-2265511.990034669,true,true,14.97608297,4746.032455588998,0.0,1.2,385.0,14.97608297,4746.032455588998,0.0,121.92,0.0 +386,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,270200.0,6999.999999999999,9665850.892329806,6999.999999999999,7400338.90229514,true,386,21750.0,0.0,-19650.767001602173,1564939.206888366,700.0,270200.0,1526.1037391279024,863685.3440170974,-22393.12150056489,161998.1077073877,0.0,0.0,1636.5702221440017,536215.046546059,-420.3194623091883,3040.70861782077,-0.0,-2265511.990034669,true,true,14.03728374,4760.069739328998,0.0,1.2,386.0,14.03728374,4760.069739328998,0.0,121.92,0.0 +387,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,270900.0,6999.999999999999,9672850.892329806,6999.999999999999,7407338.90229514,true,387,21750.0,0.0,-21511.45100856412,1543427.755879802,700.0,270900.0,1230.1576785143975,864915.5016956117,-23817.6455017034,138180.4622056843,0.0,0.0,1523.094628806537,537738.1411748655,-447.05781418165793,2593.6508036391124,-0.0,-2265511.990034669,true,true,12.96437033,4773.034109658998,0.0,1.2,387.0,12.96437033,4773.034109658998,0.0,121.92,0.0 +388,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,271600.0,6999.999999999999,9679850.892329806,6999.999999999999,7414338.90229514,true,388,21750.0,0.0,-27922.30420409955,1515505.4516757024,700.0,271600.0,913.7175045118892,865829.2192001237,-29658.686287222878,108521.77591846143,0.0,0.0,1379.3588774713783,539117.500052337,-556.6942988599402,2036.956504779172,-0.0,-2265511.990034669,true,true,11.4891144,4784.5232240589985,0.0,1.2,388.0,11.4891144,4784.5232240589985,0.0,121.92,0.0 +389,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,272300.0,6999.999999999999,9686850.892329806,6999.999999999999,7421338.90229514,true,389,21750.0,0.0,-20137.0983107687,1495368.3533649337,700.0,272300.0,644.8175513132537,866474.0367514369,-21604.457725878707,86917.31819258272,0.0,0.0,1228.0580869188332,540345.5581392557,-405.5162231220798,1631.4402816570923,-0.0,-2265511.990034669,true,true,10.28208682,4794.805310878998,0.0,1.2,389.0,10.28208682,4794.805310878998,0.0,121.92,0.0 +390,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,273000.0,6999.999999999999,9693850.892329806,6999.999999999999,7428338.90229514,true,390,21750.0,0.0,-18024.330890034693,1477344.022474899,700.0,273000.0,453.224789004163,866927.2615404411,-19208.89166703187,67708.42652555085,0.0,0.0,1091.8873750266903,541437.4455142824,-360.55138703367516,1270.8888946234172,-0.0,-2265511.990034669,true,true,9.075059234,4803.880370112998,0.0,1.2,390.0,9.075059234,4803.880370112998,0.0,121.92,0.0 +391,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,273700.0,6999.999999999999,9700850.892329806,6999.999999999999,7435338.90229514,true,391,21750.0,0.0,-16461.72584128818,1460882.2966336107,700.0,273700.0,301.5264160522402,867228.7879564933,-17390.035824050905,50318.39070149994,0.0,0.0,953.1949831321842,542390.6404974146,-326.4114164216998,944.4774782017173,-0.0,-2265511.990034669,true,true,7.823326926,4811.703697038998,0.0,1.2,391.0,7.823326926,4811.703697038998,0.0,121.92,0.0 +392,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,274400.0,6999.999999999999,9707850.892329806,6999.999999999999,7442338.90229514,true,392,21750.0,0.0,-15079.46604951411,1445802.8305840967,700.0,274400.0,182.93630428863926,867411.724260782,-15773.275128762001,34545.11557273794,0.0,0.0,806.9375518510693,543197.5780492657,-296.06477689181855,648.4127013098987,-0.0,-2265511.990034669,true,true,6.482185167,4818.1858822059985,0.0,1.2,392.0,6.482185167,4818.1858822059985,0.0,121.92,0.0 +393,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,275100.0,6999.999999999999,9714850.892329806,6999.999999999999,7449338.90229514,true,393,21750.0,0.0,-10317.379948164375,1435485.4506359324,700.0,275100.0,103.89331120861812,867515.6175719906,-10885.202883454172,23659.912689283767,0.0,0.0,668.2451601257854,543865.8232093914,-204.31553604460507,444.0971652652936,-0.0,-2265511.990034669,true,true,5.364567035,4823.550449240998,0.0,1.2,393.0,5.364567035,4823.550449240998,0.0,121.92,0.0 +394,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,275800.0,6999.999999999999,9721850.892329806,6999.999999999999,7456338.90229514,true,394,21750.0,0.0,-10862.834186987779,1424622.6164489447,700.0,275800.0,49.517761362493665,867565.1353333531,-11223.671084377205,12436.241604906561,0.0,0.0,521.9877288446705,544387.8109382361,-210.66859281773674,233.42857244755686,-0.0,-2265511.990034669,true,true,3.8893111,4827.439760340998,0.0,1.2,394.0,3.8893111,4827.439760340998,0.0,121.92,0.0 +395,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,276500.0,6999.999999999999,9728850.892329806,6999.999999999999,7463338.90229514,true,395,21750.0,0.0,-7417.4015756171175,1417205.2148733276,700.0,276500.0,15.64974639433723,867580.7850797474,-7645.109284334358,4791.132320572204,0.0,0.0,355.55685878561127,544743.3677970216,-143.49889646270796,89.9296759848489,-0.0,-2265511.990034669,true,true,2.414055166,4829.853815506998,0.0,1.2,395.0,2.414055166,4829.853815506998,0.0,121.92,0.0 +396,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,277200.0,6999.999999999999,9735850.892329806,6999.999999999999,7470338.90229514,true,396,21750.0,0.0,-3951.395473889536,1413253.819399438,700.0,277200.0,2.3552323420958343,867583.1403120896,-4066.547494655964,724.5848259162399,0.0,0.0,189.12598872655212,544932.4937857481,-76.32920030222022,13.600475682628684,-0.0,-2265511.990034669,true,true,0.938799231,4830.7926147379985,0.0,1.2,396.0,0.938799231,4830.7926147379985,0.0,121.92,0.0 +397,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,277900.0,6999.999999999999,9742850.892329806,6999.999999999999,7477338.90229514,true,397,21750.0,0.0,-685.1783227042351,1412568.6410767338,700.0,277900.0,0.05170206034725294,867583.19201415,-724.5848259163639,-1.240323399542831e-10,0.0,0.0,52.955276834409396,544985.4490625826,-13.600475682627815,8.686384944667225e-13,-0.0,-2265511.990034669,true,true,0.0,4830.7926147379985,0.0,1.2,397.0,0.0,4830.7926147379985,0.0,121.92,0.0 +398,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,278600.0,6999.999999999999,9749850.892329806,6999.999999999999,7484338.90229514,true,398,21750.0,0.0,0.0,1412568.6410767338,700.0,278600.0,0.0,867583.19201415,0.0,-1.240323399542831e-10,0.0,0.0,0.0,544985.4490625826,0.0,8.686384944667225e-13,-0.0,-2265511.990034669,true,true,0.0,4830.7926147379985,0.0,1.2,398.0,0.0,4830.7926147379985,0.0,121.92,0.0 +399,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,279300.0,6999.999999999999,9756850.892329806,6999.999999999999,7491338.90229514,true,399,21750.0,0.0,0.0,1412568.6410767338,700.0,279300.0,0.0,867583.19201415,0.0,-1.240323399542831e-10,0.0,0.0,0.0,544985.4490625826,0.0,8.686384944667225e-13,-0.0,-2265511.990034669,true,true,0.0,4830.7926147379985,0.0,1.2,399.0,0.0,4830.7926147379985,0.0,121.92,0.0 +400,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,280000.0,6999.999999999999,9763850.892329806,6999.999999999999,7498338.90229514,true,400,21750.0,0.0,0.0,1412568.6410767338,700.0,280000.0,0.0,867583.19201415,0.0,-1.240323399542831e-10,0.0,0.0,0.0,544985.4490625826,0.0,8.686384944667225e-13,-0.0,-2265511.990034669,true,true,0.0,4830.7926147379985,0.0,1.2,400.0,0.0,4830.7926147379985,0.0,121.92,0.0 +401,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,280700.0,6999.999999999999,9770850.892329806,6999.999999999999,7505338.90229514,true,401,21750.0,0.0,0.0,1412568.6410767338,700.0,280700.0,0.0,867583.19201415,0.0,-1.240323399542831e-10,0.0,0.0,0.0,544985.4490625826,0.0,8.686384944667225e-13,-0.0,-2265511.990034669,true,true,0.0,4830.7926147379985,0.0,1.2,401.0,0.0,4830.7926147379985,0.0,121.92,0.0 +402,22450.0,21750.0,0.12,0.0,2265511.990034669,700.0,281400.0,6999.999999999999,9777850.892329806,6999.999999999999,7512338.90229514,true,402,21750.0,0.0,0.0,1412568.6410767338,700.0,281400.0,0.0,867583.19201415,0.0,-1.240323399542831e-10,0.0,0.0,0.0,544985.4490625826,0.0,8.686384944667225e-13,-0.0,-2265511.990034669,true,true,0.0,4830.7926147379985,0.0,1.2,402.0,0.0,4830.7926147379985,0.0,121.92,0.0 +403,22450.0,21750.0,0.12,1197.2111512470485,2266709.201185916,700.0,282100.0,15810.092927058738,9793660.985256866,14612.88177581169,7526951.784070951,true,403,21750.0,0.0,1197.2111512470485,1413765.852227981,700.0,282100.0,0.09812281762267175,867583.2901369676,1110.701457598817,1110.7014575986927,0.0,0.0,65.56367611293018,545051.0127386955,20.847894717678805,20.847894717679672,-1197.2111512470485,-2266709.201185916,true,true,1.162322858,4831.954937595999,0.0,1.2,403.0,1.162322858,4831.954937595999,0.0,121.92,0.0 +404,23647.211151247047,22947.211151247047,0.22,4913.031558856481,2271622.2327447725,700.0,282800.0,25513.779812984005,9819174.76506985,20600.748254127524,7547552.532325079,true,404,22947.211151247047,0.0,4913.031558856481,1418678.8837868373,700.0,282800.0,3.4285204436521077,867586.7186574112,4608.75382423358,5719.455281832274,0.0,0.0,214.34278722718622,545265.3555259227,86.50642695206237,107.35432166974203,-4913.031558856481,-2271622.2327447725,true,true,2.637578792,4834.592516387998,0.0,1.2,404.0,2.637578792,4834.592516387998,0.0,121.92,0.0 +405,27363.03155885648,26663.03155885648,0.28,8740.986616512542,2280363.219361285,700.0,283500.0,33717.809344687645,9852892.574414538,24976.822728175102,7572529.3550532535,true,405,26663.03155885648,0.0,8740.986616512542,1427419.8704033499,700.0,283500.0,19.22121373960082,867605.9398711508,8187.315622218238,13906.77090405051,0.0,0.0,380.77365728624545,545646.1291832089,153.6761232684589,261.03044493820096,-8740.986616512542,-2280363.219361285,true,true,4.112834727,4838.705351114998,0.0,1.2,405.0,4.112834727,4838.705351114998,0.0,121.92,0.0 +406,31190.986616512542,30490.986616512542,0.33,12590.974277317093,2292954.1936386023,700.0,284200.0,40275.679628233614,9893168.254042773,27684.70535091652,7600214.06040417,true,406,30490.986616512542,0.0,12590.974277317093,1440010.844680667,700.0,284200.0,57.04652149190129,867662.9863926427,11765.87740910337,25672.64831315388,0.0,0.0,547.2045273453047,546193.3337105542,220.845819376517,481.87626431471796,-12590.974277317093,-2292954.1936386023,true,true,5.588090661,4844.293441775998,0.0,1.2,406.0,5.588090661,4844.293441775998,0.0,121.92,0.0 +407,35040.974277317095,34340.974277317095,0.33,16472.62471819264,2309426.818356795,700.0,284900.0,52038.25672179588,9945206.510764569,35565.63200360324,7635779.692407774,true,407,34340.974277317095,0.0,16472.62471819264,1456483.4693988597,700.0,284900.0,126.53459306482492,867789.5209857075,15344.439211939476,41017.08752509336,0.0,0.0,713.6353974043637,546906.9691079585,288.0155157839754,769.8917800986933,-16472.62471819264,-2309426.818356795,true,true,7.063346596,4851.356788371998,0.0,1.2,407.0,7.063346596,4851.356788371998,0.0,121.92,0.0 +408,38922.624718192645,38222.624718192645,0.35,20395.568051060214,2329822.386407855,700.0,285600.0,60273.05157445776,10005479.562339026,39877.48352339755,7675657.1759311715,true,408,38222.624718192645,0.0,20395.568051060214,1476879.0374499199,700.0,285600.0,237.31557782264315,868026.8365635301,18923.000993973175,59940.088519066536,0.0,0.0,880.0662674634231,547787.0353754219,355.185211800972,1125.0769918996652,-20395.568051060214,-2329822.386407855,true,true,8.53860253,4859.895390901998,0.0,1.2,408.0,8.53860253,4859.895390901998,0.0,121.92,0.0 +409,42845.56805106021,42145.56805106021,0.35,24369.434388134803,2354191.8207959896,700.0,286300.0,71626.95539467088,10077106.517733697,47257.52100653607,7722914.696937707,true,409,42145.56805106021,0.0,24369.434388134803,1501248.4718380547,700.0,286300.0,399.0196248070127,868425.8561883372,22501.562719333142,82441.65123839967,0.0,0.0,1046.497137240445,548833.5325126624,422.35490675420107,1547.4318986538663,-24369.434388134803,-2354191.8207959896,true,true,10.01385846,4869.909249361998,0.0,1.2,409.0,10.01385846,4869.909249361998,0.0,121.92,0.0 +410,46819.4343881348,46119.4343881348,0.35,22418.836739000824,2376610.6575349905,700.0,287000.0,66053.81925428807,10143160.336987985,43634.98251528725,7766549.679452995,true,410,46119.4343881348,0.0,22418.836739000824,1523667.3085770556,700.0,287000.0,594.5453553809423,869020.4015437182,20248.941977462855,102690.59321586252,0.0,0.0,1195.276248241886,550028.8087609042,380.07315791514094,1927.5050565690071,-22418.836739000824,-2376610.6575349905,true,true,11.17618132,4881.085430681998,0.0,1.2,410.0,11.17618132,4881.085430681998,0.0,121.92,0.0 +411,44868.83673900082,44168.83673900082,0.22,7081.170485947342,2383691.8280209377,700.0,287700.0,35368.9567543061,10178529.293742292,28287.786268358755,7794837.465721354,true,411,44168.83673900082,0.0,7081.170485947342,1530748.4790630029,700.0,287700.0,723.2717730063798,869743.6733167246,4988.298224439979,107678.8914403025,0.0,0.0,1275.9700034664781,551304.7787643707,93.6304850345049,2021.1355416035121,-7081.170485947342,-2383691.8280209377,true,true,11.44440967,4892.529840351998,0.0,1.2,411.0,11.44440967,4892.529840351998,0.0,121.92,0.0 +412,29531.170485947343,28831.170485947343,0.35,19062.74385977667,2402754.5718807145,700.0,288400.0,56464.982456504775,10234994.276198797,37402.2385967281,7832239.704318082,true,412,28831.170485947343,0.0,19062.74385977667,1549811.2229227796,700.0,288400.0,835.8599736510253,870579.5332903756,16576.72631046246,124255.61775076496,0.0,0.0,1339.011999577045,552643.7907639478,311.14557608613876,2332.2811176896507,-19062.74385977667,-2402754.5718807145,true,true,12.29379945,4904.823639801998,0.0,1.2,412.0,12.29379945,4904.823639801998,0.0,121.92,0.0 +413,41512.743859776674,40812.743859776674,0.33,16617.884048338405,2419372.455929053,700.0,289100.0,52478.43651011638,10287472.712708913,35860.552461777974,7868100.25677986,true,413,40812.743859776674,0.0,16617.884048338405,1566429.1069711181,700.0,289100.0,1006.9207930016913,871586.4540833773,13924.844454919332,138180.46220568428,0.0,0.0,1424.7491144679193,554068.5398784156,261.36968594946114,2593.650803639112,-16617.884048338405,-2419372.455929053,true,true,12.96437033,4917.788010131998,0.0,1.2,413.0,12.96437033,4917.788010131998,0.0,121.92,0.0 +414,39067.884048338405,38367.884048338405,0.33,12510.324076071396,2431882.7800051244,700.0,289800.0,40031.28507900423,10327503.997787917,27520.961002932832,7895621.217782793,true,414,38367.884048338405,0.0,12510.324076071396,1578939.4310471895,700.0,289800.0,1146.5843271551485,872733.0384105324,9693.992157469927,147874.45436315422,0.0,0.0,1487.7911111425606,555556.3309895582,181.95648030376034,2775.607283942872,-12510.324076071396,-2431882.7800051244,true,true,13.41141759,4931.199427721998,0.0,1.2,414.0,13.41141759,4931.199427721998,0.0,121.92,0.0 +415,34960.324076071396,34260.324076071396,0.16,3733.4555123585337,2435616.2355174827,700.0,290500.0,27709.096952240838,10355213.094740158,23975.641439882304,7919596.859222675,true,415,34260.324076071396,0.0,3733.4555123585337,1582672.886559548,700.0,290500.0,1211.9184083479158,873944.9568188803,987.4726279819884,148861.92699113622,0.0,0.0,1515.5295895891506,557071.8605791474,18.534886439479003,2794.142170382351,-3733.4555123585337,-2435616.2355174827,true,true,13.45612231,4944.655550031998,0.0,1.2,415.0,13.45612231,4944.655550031998,0.0,121.92,0.0 +416,26183.455512358534,25483.455512358534,0.16,1721.4404835155992,2437337.6760009984,700.0,291200.0,15134.003021972494,10370347.09776213,13412.562538456896,7933009.421761132,true,416,25483.455512358534,0.0,1721.4404835155992,1584394.3270430637,700.0,291200.0,1211.9184083479158,875156.8752272282,-987.4726279819884,147874.45436315422,0.0,0.0,1515.5295895891506,558587.3901687365,-18.534886439479003,2775.607283942872,-1721.4404835155992,-2437337.6760009984,true,true,13.41141759,4958.066967621999,0.0,1.2,416.0,13.41141759,4958.066967621999,0.0,121.92,0.0 +417,24171.4404835156,23471.4404835156,0.12,0.0,2437337.6760009984,700.0,291900.0,6999.999999999999,10377347.09776213,6999.999999999999,7940009.421761132,true,417,23471.4404835156,0.0,-304.61238277307257,1584089.7146602906,700.0,291900.0,1187.8810649368147,876344.756292165,-2942.7017313359215,144931.7526318183,0.0,0.0,1505.442870256586,560092.8330389931,-55.2345866305518,2720.3726973123203,-0.0,-2437337.6760009984,true,true,13.27730341,4971.344271031999,0.0,1.2,417.0,13.27730341,4971.344271031999,0.0,121.92,0.0 +418,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,292600.0,6999.999999999999,10384347.09776213,6999.999999999999,7947009.421761132,true,418,21750.0,0.0,-1316.0039284457243,1582773.7107318449,700.0,292600.0,1146.5843271551485,877491.3406193202,-3877.5967762500027,141054.1558555683,0.0,0.0,1487.7911111425606,561580.6241501357,-72.78259049343072,2647.5901068188896,-0.0,-2437337.6760009984,true,true,13.09848451,4984.442755541999,0.0,1.2,418.0,13.09848451,4984.442755541999,0.0,121.92,0.0 +419,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,293300.0,6999.999999999999,10391347.09776213,6999.999999999999,7954009.421761132,true,419,21750.0,0.0,-2302.643443114695,1580471.0672887303,700.0,293300.0,1094.9098509763026,878586.2504702965,-4773.058849973006,136281.0970055953,0.0,0.0,1465.0959923622527,563045.7201424979,-89.5904364802446,2557.999670338645,-0.0,-2437337.6760009984,true,true,12.87496088,4997.317716421999,0.0,1.2,419.0,12.87496088,4997.317716421999,0.0,121.92,0.0 +420,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,294000.0,6999.999999999999,10398347.09776213,6999.999999999999,7961009.421761132,true,420,21750.0,0.0,-5150.794459494244,1575320.272829236,700.0,294000.0,1023.0455557030148,879609.2960259995,-7466.016842686272,128815.08016290904,0.0,0.0,1432.3141542493802,564478.0342967473,-140.13732676036645,2417.862343578279,-0.0,-2437337.6760009984,true,true,12.51732308,5009.835039501999,0.0,1.2,420.0,12.51732308,5009.835039501999,0.0,121.92,0.0 +421,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,294700.0,6999.999999999999,10405347.09776213,6999.999999999999,7968009.421761132,true,421,21750.0,0.0,-24447.207424781835,1550873.0654044542,700.0,294700.0,831.1464892479959,880440.4425152475,-26124.4869470465,102690.59321586255,0.0,0.0,1336.490320025941,565814.5246167732,-490.3572870092716,1927.5050565690071,-0.0,-2437337.6760009984,true,true,11.17618132,5021.011220821999,0.0,1.2,421.0,11.17618132,5021.011220821999,0.0,121.92,0.0 +422,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,295400.0,6999.999999999999,10412347.09776213,6999.999999999999,7975009.421761132,true,422,21750.0,0.0,-24050.095853308183,1526822.969551146,700.0,295400.0,568.5918203349916,881009.0343355825,-25321.03567706439,77369.55753879817,0.0,0.0,1177.62448957912,566992.1491063524,-475.27648615790315,1452.228570411104,-0.0,-2437337.6760009984,true,true,9.700925388,5030.7121462099985,0.0,1.2,422.0,9.700925388,5030.7121462099985,0.0,121.92,0.0 +423,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,296100.0,6999.999999999999,10419347.09776213,6999.999999999999,7982009.421761132,true,423,21750.0,0.0,-20779.403202188907,1506043.5663489571,700.0,296100.0,359.9839052113553,881369.0182407938,-21742.47393612097,55627.0836026772,0.0,0.0,1011.1936196328759,568003.3427259852,-408.1067909121724,1044.1217794989316,-0.0,-2437337.6760009984,true,true,8.225669453,5038.937815662998,0.0,1.2,423.0,8.225669453,5038.937815662998,0.0,121.92,0.0 +424,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,296800.0,6999.999999999999,10426347.09776213,6999.999999999999,7989009.421761132,true,424,21750.0,0.0,-17450.200030915676,1488593.3663180415,700.0,296800.0,209.8864428817867,881578.9046836756,-18163.91212894797,37463.171473729235,0.0,0.0,844.7627495738168,568848.105475559,-340.9370944233103,703.1846850756212,-0.0,-2437337.6760009984,true,true,6.750413519,5045.688229181998,0.0,1.2,424.0,6.750413519,5045.688229181998,0.0,121.92,0.0 +425,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,297500.0,6999.999999999999,10433347.09776213,6999.999999999999,7996009.421761132,true,425,21750.0,0.0,-14072.116581136213,1474521.2497369053,700.0,297500.0,108.66928414542534,881687.5739678211,-14585.35034639974,22877.821127329495,0.0,0.0,678.3318795147576,569526.4373550738,-273.76739839665595,429.4172866789653,-0.0,-2437337.6760009984,true,true,5.275157584,5050.963386765999,0.0,1.2,425.0,5.275157584,5050.963386765999,0.0,121.92,0.0 +426,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,298200.0,6999.999999999999,10440347.09776213,6999.999999999999,8003009.421761132,true,426,21750.0,0.0,-10654.782956983334,1463866.466779922,700.0,298200.0,46.702279637999844,881734.2762474591,-11006.788544078177,11871.032583251317,0.0,0.0,511.90100945569833,570038.3383645294,-206.59770199885568,222.8195846801096,-0.0,-2437337.6760009984,true,true,3.79990165,5054.763288415998,0.0,1.2,426.0,3.79990165,5054.763288415998,0.0,121.92,0.0 +427,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,298900.0,6999.999999999999,10447347.09776213,6999.999999999999,8010009.421761132,true,427,21750.0,0.0,-7207.829343167757,1456658.637436754,700.0,298900.0,14.355279995238888,881748.6315274544,-7428.226756678495,4442.805826572822,0.0,0.0,345.4701393966391,570383.808503926,-139.42800588113943,83.39157879897019,-0.0,-2437337.6760009984,true,true,2.324645715,5057.087934130998,0.0,1.2,427.0,2.324645715,5057.087934130998,0.0,121.92,0.0 +428,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,299600.0,6999.999999999999,10454347.09776213,6999.999999999999,8017009.421761132,true,428,21750.0,0.0,-3740.885865073475,1452917.7515716807,700.0,299600.0,1.9981358509824507,881750.6296633054,-3849.6649606050146,593.1408659678077,0.0,0.0,179.03926928117252,570562.8477732072,-72.25830960061573,11.133269198354455,-0.0,-2437337.6760009984,true,true,0.84938978,5057.937323910998,0.0,1.2,428.0,0.84938978,5057.937323910998,0.0,121.92,0.0 +429,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,300300.0,6999.999999999999,10461347.09776213,6999.999999999999,8024009.421761132,true,429,21750.0,0.0,-556.3239258148875,1452361.4276458658,700.0,300300.0,0.03829223964852779,881750.667955545,-593.1408659679017,-9.401901479577646e-11,0.0,0.0,47.911917111719596,570610.759690319,-11.133269198353863,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,429.0,0.0,5057.937323910998,0.0,121.92,0.0 +430,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,301000.0,6999.999999999999,10468347.09776213,6999.999999999999,8031009.421761132,true,430,21750.0,0.0,0.0,1452361.4276458658,700.0,301000.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,430.0,0.0,5057.937323910998,0.0,121.92,0.0 +431,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,301700.0,6999.999999999999,10475347.09776213,6999.999999999999,8038009.421761132,true,431,21750.0,0.0,0.0,1452361.4276458658,700.0,301700.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,431.0,0.0,5057.937323910998,0.0,121.92,0.0 +432,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,302400.0,6999.999999999999,10482347.09776213,6999.999999999999,8045009.421761132,true,432,21750.0,0.0,0.0,1452361.4276458658,700.0,302400.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,432.0,0.0,5057.937323910998,0.0,121.92,0.0 +433,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,303100.0,6999.999999999999,10489347.09776213,6999.999999999999,8052009.421761132,true,433,21750.0,0.0,0.0,1452361.4276458658,700.0,303100.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,433.0,0.0,5057.937323910998,0.0,121.92,0.0 +434,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,303800.0,6999.999999999999,10496347.09776213,6999.999999999999,8059009.421761132,true,434,21750.0,0.0,0.0,1452361.4276458658,700.0,303800.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,434.0,0.0,5057.937323910998,0.0,121.92,0.0 +435,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,304500.0,6999.999999999999,10503347.09776213,6999.999999999999,8066009.421761132,true,435,21750.0,0.0,0.0,1452361.4276458658,700.0,304500.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,435.0,0.0,5057.937323910998,0.0,121.92,0.0 +436,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,305200.0,6999.999999999999,10510347.09776213,6999.999999999999,8073009.421761132,true,436,21750.0,0.0,0.0,1452361.4276458658,700.0,305200.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,436.0,0.0,5057.937323910998,0.0,121.92,0.0 +437,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,305900.0,6999.999999999999,10517347.09776213,6999.999999999999,8080009.421761132,true,437,21750.0,0.0,0.0,1452361.4276458658,700.0,305900.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,437.0,0.0,5057.937323910998,0.0,121.92,0.0 +438,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,306600.0,6999.999999999999,10524347.09776213,6999.999999999999,8087009.421761132,true,438,21750.0,0.0,0.0,1452361.4276458658,700.0,306600.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,438.0,0.0,5057.937323910998,0.0,121.92,0.0 +439,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,307300.0,6999.999999999999,10531347.09776213,6999.999999999999,8094009.421761132,true,439,21750.0,0.0,0.0,1452361.4276458658,700.0,307300.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,439.0,0.0,5057.937323910998,0.0,121.92,0.0 +440,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,308000.0,6999.999999999999,10538347.09776213,6999.999999999999,8101009.421761132,true,440,21750.0,0.0,0.0,1452361.4276458658,700.0,308000.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,440.0,0.0,5057.937323910998,0.0,121.92,0.0 +441,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,308700.0,6999.999999999999,10545347.09776213,6999.999999999999,8108009.421761132,true,441,21750.0,0.0,0.0,1452361.4276458658,700.0,308700.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,441.0,0.0,5057.937323910998,0.0,121.92,0.0 +442,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,309400.0,6999.999999999999,10552347.09776213,6999.999999999999,8115009.421761132,true,442,21750.0,0.0,0.0,1452361.4276458658,700.0,309400.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,442.0,0.0,5057.937323910998,0.0,121.92,0.0 +443,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,310100.0,6999.999999999999,10559347.09776213,6999.999999999999,8122009.421761132,true,443,21750.0,0.0,0.0,1452361.4276458658,700.0,310100.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,443.0,0.0,5057.937323910998,0.0,121.92,0.0 +444,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,310800.0,6999.999999999999,10566347.09776213,6999.999999999999,8129009.421761132,true,444,21750.0,0.0,0.0,1452361.4276458658,700.0,310800.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,444.0,0.0,5057.937323910998,0.0,121.92,0.0 +445,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,311500.0,6999.999999999999,10573347.09776213,6999.999999999999,8136009.421761132,true,445,21750.0,0.0,0.0,1452361.4276458658,700.0,311500.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,445.0,0.0,5057.937323910998,0.0,121.92,0.0 +446,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,312200.0,6999.999999999999,10580347.09776213,6999.999999999999,8143009.421761132,true,446,21750.0,0.0,0.0,1452361.4276458658,700.0,312200.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,446.0,0.0,5057.937323910998,0.0,121.92,0.0 +447,22450.0,21750.0,0.12,0.0,2437337.6760009984,700.0,312900.0,6999.999999999999,10587347.09776213,6999.999999999999,8150009.421761132,true,447,21750.0,0.0,0.0,1452361.4276458658,700.0,312900.0,0.0,881750.667955545,0.0,-9.401901479577646e-11,0.0,0.0,0.0,570610.759690319,0.0,5.915268275202834e-13,-0.0,-2437337.6760009984,true,true,0.0,5057.937323910998,0.0,1.2,447.0,0.0,5057.937323910998,0.0,121.92,0.0 +448,22450.0,21750.0,0.16,1906.2818093466954,2439243.957810345,700.0,313600.0,16289.261308416846,10603636.359070547,14382.97949907015,8164392.401260202,true,448,21750.0,0.0,1906.2818093466954,1454267.7094552126,700.0,313600.0,0.20062811195964725,881750.868583657,1789.2808980367404,1789.2808980366462,0.0,0.0,83.21543505773333,570693.9751253767,33.58484814026184,33.58484814026243,-1906.2818093466954,-2439243.957810345,true,true,1.475255935,5059.412579845998,0.0,1.2,448.0,1.475255935,5059.412579845998,0.0,121.92,0.0 +449,24356.281809346696,23656.281809346696,0.22,5723.66049772453,2444967.6183080697,700.0,314300.0,29198.45680783877,10632834.815878386,23474.79631011424,8187867.1975703165,true,449,23656.281809346696,0.0,5723.66049772453,1459991.3699529371,700.0,314300.0,5.4169590192385995,881756.2855426762,5367.842689258775,7157.123587295421,0.0,0.0,249.64630511679252,570943.6214304935,100.75454432972379,134.33939246998622,-5723.66049772453,-2444967.6183080697,true,true,2.950511869,5062.3630917149985,0.0,1.2,449.0,2.950511869,5062.3630917149985,0.0,121.92,0.0 +450,28173.66049772453,27473.66049772453,0.28,9555.484417564168,2454523.102725634,700.0,315000.0,36626.73006272917,10669461.545941114,27071.245645165,8214938.443215482,true,450,27473.66049772453,0.0,9555.484417564168,1469546.8543705014,700.0,315000.0,25.078513974556593,881781.3640566508,8946.404487757982,16103.528075053404,0.0,0.0,416.0771751758517,571359.6986056694,167.9242406557784,302.2636331257646,-9555.484417564168,-2454523.102725634,true,true,4.425767804,5066.788859518999,0.0,1.2,450.0,4.425767804,5066.788859518999,0.0,121.92,0.0 +451,32005.48441756417,31305.48441756417,0.33,13411.383698459842,2467934.4864240936,700.0,315700.0,42761.76878321164,10712223.314724326,29350.3850847518,8244288.828300234,true,451,31305.48441756417,0.0,13411.383698459842,1482958.2380689613,700.0,315700.0,68.81544234218501,881850.179498993,12524.966274128567,28628.494349181972,0.0,0.0,582.5080452349109,571942.2066509044,235.09393675417851,537.3575698799432,-13411.383698459842,-2467934.4864240936,true,true,5.901023738,5072.689883256999,0.0,1.2,451.0,5.901023738,5072.689883256999,0.0,121.92,0.0 +452,35861.383698459846,35161.383698459846,0.33,17300.988519430877,2485235.4749435247,700.0,316400.0,54548.45005888144,10766771.764783207,37247.46153945057,8281536.289839685,true,452,35161.383698459846,0.0,17300.988519430877,1500259.2265883922,700.0,316400.0,146.25789348639523,881996.4373924794,16103.528077479215,44732.02242666119,0.0,0.0,748.9389152939701,572691.1455661984,302.2636331712946,839.6212030512378,-17300.988519430877,-2485235.4749435247,true,true,7.376279673,5080.066162929998,0.0,1.2,452.0,7.376279673,5080.066162929998,0.0,121.92,0.0 +453,39750.98851943087,39050.98851943087,0.35,21233.928990301494,2506469.4039338264,700.0,317100.0,62668.368543718556,10829440.133326925,41434.43955341706,8322970.729393102,true,453,39050.98851943087,0.0,21233.928990301494,1521493.1555786936,700.0,317100.0,267.0360167714588,882263.4734092508,19682.089858998374,64414.11228565956,0.0,0.0,915.3697853530293,573606.5153515515,369.43332917863336,1209.0545322298713,-21233.928990301494,-2506469.4039338264,true,true,8.851535607,5088.917698536999,0.0,1.2,453.0,8.851535607,5088.917698536999,0.0,121.92,0.0 +454,43683.928990301494,42983.928990301494,0.35,25219.83527501273,2531689.239208839,700.0,317800.0,74056.6722143221,10903496.805541247,48836.83693930937,8371807.566332412,true,454,42983.928990301494,0.0,25219.83527501273,1546712.9908537064,700.0,317800.0,440.77996142374747,882704.2533706746,23260.65163324033,87674.76391889989,0.0,0.0,1081.8006552992736,574688.3160068507,436.60302504937886,1645.65755727925,-25219.83527501273,-2531689.239208839,true,true,10.32679154,5099.244490076999,0.0,1.2,454.0,10.32679154,5099.244490076999,0.0,121.92,0.0 +455,47669.83527501273,46969.83527501273,0.36,29268.337682137695,2560957.5768909766,700.0,318500.0,83245.38245038249,10986742.18799163,53977.04476824479,8425784.611100657,true,455,46969.83527501273,0.0,29268.337682137695,1575981.328535844,700.0,318500.0,677.1198774048249,883381.3732480794,26839.2135554514,114513.97747435128,0.0,0.0,1248.2315255839626,575936.5475324347,503.77272369750847,2149.4302809767587,-29268.337682137695,-2560957.5768909766,true,true,11.80204748,5111.046537556998,0.0,1.2,455.0,11.80204748,5111.046537556998,0.0,121.92,0.0 +456,51718.337682137695,51018.337682137695,0.33,14957.114080347374,2575914.690971324,700.0,319200.0,47445.800243476886,11034187.988235107,32488.68616312951,8458273.297263786,true,456,51018.337682137695,0.0,14957.114080347374,1590938.4426161915,700.0,319200.0,888.8896019342085,884270.2628500137,12467.459467303652,126981.43694165493,0.0,0.0,1366.7504785877097,577303.2980110224,234.0145325218045,2383.4448134985632,-14957.114080347374,-2575914.690971324,true,true,12.42791363,5123.4744511869985,0.0,1.2,456.0,12.42791363,5123.4744511869985,0.0,121.92,0.0 +457,37407.114080347375,36707.114080347375,0.33,14845.055517371675,2590759.746488696,700.0,319900.0,47106.22884052023,11081294.217075627,32261.173323148552,8490534.470586935,true,457,36707.114080347375,0.0,14845.055517371675,1605783.4981335632,700.0,319900.0,1028.4584845284012,885298.721334542,12153.63711943888,139135.07406109382,0.0,0.0,1434.8358343645587,578738.1338453869,228.12407903983691,2611.5688925384,-14845.055517371675,-2590759.746488696,true,true,13.00907506,5136.483526246999,0.0,1.2,457.0,13.00907506,5136.483526246999,0.0,121.92,0.0 +458,37295.05551737167,36595.05551737167,0.36,27115.60631092649,2617875.3527996223,700.0,320600.0,77265.57308590692,11158559.790161535,50149.96677498042,8540684.437361915,true,458,36595.05551737167,0.0,27115.60631092649,1632899.1044444896,700.0,320600.0,1242.4182978025492,886541.1396323446,23896.511885861124,163031.58594695496,0.0,0.0,1528.137989036894,580266.2718344238,448.5381382259236,3060.107030764324,-27115.60631092649,-2617875.3527996223,true,true,14.08198847,5150.565514716999,0.0,1.2,458.0,14.08198847,5150.565514716999,0.0,121.92,0.0 +459,49565.606310926494,48865.606310926494,0.35,19319.424806844458,2637194.777606467,700.0,321300.0,57198.35659098417,11215758.14675252,37878.93178413971,8578563.369146055,true,459,48865.606310926494,0.0,19319.424806844458,1652218.529251334,700.0,321300.0,1498.0596634881017,888039.1992958327,15896.503856718986,178928.08980367394,0.0,0.0,1626.4835033755116,581892.7553377993,298.37778326186145,3358.4848140261856,-19319.424806844458,-2637194.777606467,true,true,14.75255935,5165.3180740669995,0.0,1.2,459.0,14.75255935,5165.3180740669995,0.0,121.92,0.0 +460,41769.42480684446,41069.42480684446,0.28,10017.498919999123,2647212.276526466,700.0,322000.0,38276.78185713972,11254034.92860966,28259.282937140597,8606822.652083196,true,460,41069.42480684446,0.0,10017.498919999123,1662236.0281713333,700.0,322000.0,1649.1974475565214,889688.3967433892,6565.625729708203,185493.71553338214,0.0,0.0,1679.4387801535133,583572.1941179528,123.23696258088448,3481.7217766070703,-10017.498919999123,-2647212.276526466,true,true,15.0207877,5180.338861767,0.0,1.2,460.0,15.0207877,5180.338861767,0.0,121.92,0.0 +461,32467.498919999125,31767.498919999125,0.33,17250.677281375938,2664462.953807842,700.0,322700.0,54395.99176174527,11308430.920371406,37145.31448036933,8643967.966563566,true,461,31767.498919999125,0.0,17250.677281375938,1679486.7054527092,700.0,322700.0,1786.5627365472935,891474.9594799365,13486.150145124762,198979.8656785069,0.0,0.0,1724.8290171500546,585297.0231351029,253.13538255382687,3734.857159160897,-17250.677281375938,-2664462.953807842,true,true,15.5572444,5195.896106167,0.0,1.2,461.0,15.5572444,5195.896106167,0.0,121.92,0.0 +462,39700.67728137594,39000.67728137594,0.28,7179.496925021909,2671642.450732864,700.0,323400.0,28141.060446506817,11336571.980817912,20961.56352148491,8664929.530085051,true,462,39000.67728137594,0.0,7179.496925021909,1686666.2023777312,700.0,323400.0,1906.696166934726,893381.6556468712,3445.474891474757,202425.34056998166,0.0,0.0,1762.6542149292095,587059.6773500321,64.6716516832171,3799.528810844114,-7179.496925021909,-2671642.450732864,true,true,15.69135858,5211.587464747,0.0,1.2,462.0,15.69135858,5211.587464747,0.0,121.92,0.0 +463,29629.496925021907,28929.496925021907,0.28,9672.94136425953,2681315.3920971234,700.0,324100.0,37046.21915806975,11373618.199975982,27373.277793810215,8692302.807878861,true,463,28929.496925021907,0.0,9672.94136425953,1696339.1437419907,700.0,324100.0,1972.9142404816118,895354.5698873528,5808.179787281239,208233.5203572629,0.0,0.0,1782.827653594339,588842.5050036265,109.01968290233931,3908.5484937464535,-9672.94136425953,-2681315.3920971234,true,true,15.9148822,5227.502346947,0.0,1.2,463.0,15.9148822,5227.502346947,0.0,121.92,0.0 +464,32122.941364259532,31422.941364259532,0.28,9866.75889952037,2691182.1509966436,700.0,324800.0,37738.42464114417,11411356.624617126,27871.6657416238,8720174.473620486,true,464,31422.941364259532,0.0,9866.75889952037,1706205.902641511,700.0,324800.0,2057.8202332456162,897412.3901205984,5890.3325225089075,214123.85287977182,0.0,0.0,1808.0444519257505,590650.5494555522,110.5616918400946,4019.110185586548,-9866.75889952037,-2691182.1509966436,true,true,16.13840583,5243.640752777,0.0,1.2,464.0,16.13840583,5243.640752777,0.0,121.92,0.0 +465,32316.75889952037,31616.75889952037,0.16,2703.7098950770583,2693885.8608917207,700.0,325500.0,21273.186844231615,11432629.811461357,18569.476949154556,8738743.95056964,true,465,31616.75889952037,0.0,2703.7098950770583,1708909.6125365882,700.0,325500.0,2092.453233030159,899504.8433536285,-1184.6388085290018,212939.2140712428,0.0,0.0,1818.1311712583154,592468.6806268105,-22.23570068241439,3996.8744849041336,-2703.7098950770583,-2693885.8608917207,true,true,16.0937011,5259.734453876999,0.0,1.2,465.0,16.0937011,5259.734453876999,0.0,121.92,0.0 +466,25153.70989507706,24453.70989507706,0.22,5117.4589134998905,2699003.3198052207,700.0,326200.0,26442.995061363137,11459072.806522721,21325.536147863248,8760069.486717504,true,466,24453.70989507706,0.0,5117.4589134998905,1714027.0714500882,700.0,326200.0,2092.453233030159,901597.2965866587,1184.6388085290018,214123.85287977182,0.0,0.0,1818.1311712583154,594286.8117980688,22.23570068241439,4019.110185586548,-5117.4589134998905,-2699003.3198052207,true,true,16.13840583,5275.872859706999,0.0,1.2,466.0,16.13840583,5275.872859706999,0.0,121.92,0.0 +467,27567.45891349989,26867.45891349989,0.22,5143.311054287447,2704146.630859508,700.0,326900.0,26560.50479221567,11485633.311314937,21417.193737928224,8781486.680455431,true,467,26867.45891349989,0.0,5143.311054287447,1719170.3825043757,700.0,326900.0,2109.9145053888756,903707.2110920475,1187.9246421113255,215311.77752188314,0.0,0.0,1823.1745309245975,596109.9863289935,22.29737586264917,4041.407561449197,-5143.311054287447,-2704146.630859508,true,true,16.18311055,5292.055970256999,0.0,1.2,467.0,16.18311055,5292.055970256999,0.0,121.92,0.0 +468,27593.31105428745,26893.31105428745,0.16,1504.7280995709998,2705651.3589590793,700.0,327600.0,13779.550622318748,11499412.861937255,12274.822522747749,8793761.50297818,true,468,26893.31105428745,0.0,1504.7280995709998,1720675.1106039467,700.0,327600.0,2101.1717759469716,905808.3828679945,-2372.5634506403276,212939.2140712428,0.0,0.0,1820.6528508094193,597930.6391798028,-44.53307654506356,3996.8744849041336,-1504.7280995709998,-2705651.3589590793,true,true,16.0937011,5308.149671356999,0.0,1.2,468.0,16.0937011,5308.149671356999,0.0,121.92,0.0 +469,23954.728099571,23254.728099571,0.12,265.3283713363801,2705916.6873304155,700.0,328300.0,8044.403094469834,11507457.265031725,7779.074723133454,8801540.577701313,true,469,23254.728099571,0.0,265.3283713363801,1720940.4389752832,700.0,328300.0,2057.8202332456176,907866.2031012401,-3534.199302687979,209405.01476855483,0.0,0.0,1808.044451925751,599738.6836317286,-66.33701114700936,3930.537473757124,-265.3283713363801,-2705916.6873304155,true,true,15.95958693,5324.109258286999,0.0,1.2,469.0,15.95958693,5324.109258286999,0.0,121.92,0.0 +470,22715.32837133638,22015.32837133638,0.28,7466.400999006357,2713383.088329422,700.0,329000.0,29165.717853594128,11536622.98288532,21699.31685458777,8823239.894555902,true,470,22015.32837133638,0.0,7466.400999006357,1728406.8399742895,700.0,329000.0,2057.8202332456176,909924.0233344857,3534.199302687979,212939.2140712428,0.0,0.0,1808.044451925751,601546.7280836544,66.33701114700936,3996.8744849041336,-7466.400999006357,-2713383.088329422,true,true,16.0937011,5340.202959386998,0.0,1.2,470.0,16.0937011,5340.202959386998,0.0,121.92,0.0 +471,29916.400999006357,29216.400999006357,0.16,3899.3683303844296,2717282.4566598064,700.0,329700.0,28746.052064902688,11565369.034950223,24846.683734518258,8848086.57829042,true,471,29216.400999006357,0.0,3899.3683303844296,1732306.208304674,700.0,329700.0,2083.7588392412927,912007.782173727,0.0,212939.2140712428,0.0,0.0,1815.609491143137,603362.3375747976,0.0,3996.8744849041336,-3899.3683303844296,-2717282.4566598064,true,true,16.0937011,5356.296660486998,0.0,1.2,471.0,16.0937011,5356.296660486998,0.0,121.92,0.0 +472,26349.36833038443,25649.36833038443,0.12,0.0,2717282.4566598064,700.0,330400.0,6999.999999999999,11572369.034950223,6999.999999999999,8855086.57829042,true,472,25649.36833038443,0.0,-939.274824523879,1731366.93348015,700.0,330400.0,2049.2221088031347,914057.0042825302,-4705.693713979906,208233.5203572629,0.0,0.0,1805.522771810572,605167.8603466081,-88.3259911576802,3908.5484937464535,-0.0,-2717282.4566598064,true,true,15.9148822,5372.211542686998,0.0,1.2,472.0,15.9148822,5372.211542686998,0.0,121.92,0.0 +473,22450.0,21750.0,0.16,2609.3696036275833,2719891.826263434,700.0,331100.0,20683.560022672395,11593052.594972895,18074.19041904481,8873160.768709464,true,473,21750.0,0.0,2609.3696036275833,1733976.3030837777,700.0,331100.0,2006.5905763045803,916063.5948588348,-1168.2080506660843,207065.3123065968,0.0,0.0,1792.9143729269035,606960.774719535,-21.927294937816075,3886.6211988086375,-2609.3696036275833,-2719891.826263434,true,true,15.87017748,5388.081720166998,0.0,1.2,473.0,15.87017748,5388.081720166998,0.0,121.92,0.0 +474,25059.369603627583,24359.369603627583,0.16,2590.788091073834,2722482.6143545075,700.0,331800.0,20567.425569211464,11613620.020542108,17976.63747813763,8891137.406187601,true,474,24359.369603627583,0.0,2590.788091073834,1736567.0911748514,700.0,331800.0,1989.7049101613882,918053.2997689962,-1164.922212673377,205900.39009392343,0.0,0.0,1787.871013260621,608748.6457327956,-21.865619674798342,3864.755579133839,-2590.788091073834,-2722482.6143545075,true,true,15.82547275,5403.907192916998,0.0,1.2,474.0,15.82547275,5403.907192916998,0.0,121.92,0.0 +475,25040.788091073835,24340.788091073835,0.16,1381.3283565784388,2723863.942711086,700.0,332500.0,13008.30222861524,11626628.322770722,11626.973872036802,8902764.380059639,true,475,24340.788091073835,0.0,1381.3283565784388,1737948.41953143,700.0,332500.0,1964.5544446402337,920017.8542136364,-2319.9858675724904,203580.40422635095,0.0,0.0,1780.3059734791605,610528.9517062748,-43.546193968464955,3821.209385165374,-1381.3283565784388,-2723863.942711086,true,true,15.7360633,5419.6432562169975,0.0,1.2,475.0,15.7360633,5419.6432562169975,0.0,121.92,0.0 +476,23831.328356578437,23131.328356578437,0.16,3723.1683810241843,2727587.11109211,700.0,333200.0,27644.802381401154,11654273.125152124,23921.63400037697,8926686.014060017,true,476,23131.328356578437,0.0,3723.1683810241843,1741671.587912454,700.0,333200.0,1947.9057672113063,921965.7599808477,0.0,203580.40422635095,0.0,0.0,1775.262613812878,612304.2143200877,0.0,3821.209385165374,-3723.1683810241843,-2727587.11109211,true,true,15.7360633,5435.379319516997,0.0,1.2,476.0,15.7360633,5435.379319516997,0.0,121.92,0.0 +477,26173.168381024185,25473.168381024185,0.16,3723.1683810241843,2731310.2794731343,700.0,333900.0,27644.802381401154,11681917.927533526,23921.63400037697,8950607.648060394,true,477,25473.168381024185,0.0,3723.1683810241843,1745394.7562934782,700.0,333900.0,1947.9057672113063,923913.665748059,0.0,203580.40422635095,0.0,0.0,1775.262613812878,614079.4769339006,0.0,3821.209385165374,-3723.1683810241843,-2731310.2794731343,true,true,15.7360633,5451.115382816997,0.0,1.2,477.0,15.7360633,5451.115382816997,0.0,121.92,0.0 +478,26173.168381024185,25473.168381024185,0.16,3723.1683810241843,2735033.4478541585,700.0,334600.0,27644.802381401154,11709562.729914928,23921.63400037697,8974529.282060772,true,478,25473.168381024185,0.0,3723.1683810241843,1749117.9246745023,700.0,334600.0,1947.9057672113063,925861.5715152704,0.0,203580.40422635095,0.0,0.0,1775.262613812878,615854.7395477135,0.0,3821.209385165374,-3723.1683810241843,-2735033.4478541585,true,true,15.7360633,5466.851446116997,0.0,1.2,478.0,15.7360633,5466.851446116997,0.0,121.92,0.0 +479,26173.168381024185,25473.168381024185,0.16,3723.1683810241843,2738756.6162351826,700.0,335300.0,27644.802381401154,11737207.53229633,23921.63400037697,8998450.91606115,true,479,25473.168381024185,0.0,3723.1683810241843,1752841.0930555265,700.0,335300.0,1947.9057672113063,927809.4772824817,0.0,203580.40422635095,0.0,0.0,1775.262613812878,617630.0021615265,0.0,3821.209385165374,-3723.1683810241843,-2738756.6162351826,true,true,15.7360633,5482.587509416997,0.0,1.2,479.0,15.7360633,5482.587509416997,0.0,121.92,0.0 +480,26173.168381024185,25473.168381024185,0.16,3723.1683810241843,2742479.784616207,700.0,336000.0,27644.802381401154,11764852.334677732,23921.63400037697,9022372.550061528,true,480,25473.168381024185,0.0,3723.1683810241843,1756564.2614365506,700.0,336000.0,1947.9057672113063,929757.3830496931,0.0,203580.40422635095,0.0,0.0,1775.262613812878,619405.2647753394,0.0,3821.209385165374,-3723.1683810241843,-2742479.784616207,true,true,15.7360633,5498.323572716997,0.0,1.2,480.0,15.7360633,5498.323572716997,0.0,121.92,0.0 +481,26173.168381024185,25473.168381024185,0.16,1351.429725329824,2743831.2143415366,700.0,336700.0,12821.435783311397,11777673.770461043,11470.006057981573,9033842.556119509,true,481,25473.168381024185,0.0,1351.429725329824,1757915.6911618805,700.0,336700.0,1931.3514163130376,931688.7344660062,-2306.841471805496,201273.56275454545,0.0,0.0,1770.2192541465956,621175.484029486,-43.299473324313254,3777.909911841061,-1351.429725329824,-2743831.2143415366,true,true,15.64665385,5513.970226566997,0.0,1.2,481.0,15.64665385,5513.970226566997,0.0,121.92,0.0 +482,23801.429725329825,23101.429725329825,0.22,4864.203819526561,2748695.418161063,700.0,337400.0,25291.83554330255,11802965.606004346,20427.631723775987,9054270.187843286,true,482,23101.429725329825,0.0,4864.203819526561,1762779.894981407,700.0,337400.0,1923.1095304918078,933611.8439964979,1151.7778154362084,202425.34056998166,0.0,0.0,1767.697574595492,622943.1816040814,21.61889900305332,3799.528810844114,-4864.203819526561,-2748695.418161063,true,true,15.69135858,5529.661585146997,0.0,1.2,482.0,15.69135858,5529.661585146997,0.0,121.92,0.0 +483,27314.203819526563,26614.203819526563,0.22,4889.10198357224,2753584.5201446353,700.0,338100.0,25405.009016237454,11828370.615020584,20515.907032665215,9074786.09487595,true,483,26614.203819526563,0.0,4889.10198357224,1767668.9969649795,700.0,338100.0,1939.616818619918,935551.4608151178,1155.0636563692879,203580.40422635095,0.0,0.0,1772.740934261774,624715.9225383432,21.680574321259936,3821.209385165374,-4889.10198357224,-2753584.5201446353,true,true,15.7360633,5545.397648446997,0.0,1.2,483.0,15.7360633,5545.397648446997,0.0,121.92,0.0 +484,27339.10198357224,26639.10198357224,0.28,7306.061787965082,2760890.5819326006,700.0,338800.0,28593.077814161003,11856963.692834746,21287.01602619592,9096073.110902146,true,484,26639.10198357224,0.0,7306.061787965082,1774975.0587529445,700.0,338800.0,1972.9142404816118,937524.3750555994,3484.9080802458675,207065.3123065968,0.0,0.0,1782.827653594339,626498.7501919375,65.4118136432633,3886.6211988086375,-7306.061787965082,-2760890.5819326006,true,true,15.87017748,5561.267825926997,0.0,1.2,484.0,15.87017748,5561.267825926997,0.0,121.92,0.0 +485,29756.06178796508,29056.06178796508,0.12,205.42200018682001,2761096.0039327876,700.0,339500.0,7545.183334890167,11864508.876169637,7339.7613347033475,9103412.87223685,true,485,29056.06178796508,0.0,205.42200018682001,1775180.4807531312,700.0,339500.0,1972.9142404816118,939497.2892960809,-3484.9080802458675,203580.40422635095,0.0,0.0,1782.827653594339,628281.5778455319,-65.4118136432633,3821.209385165374,-205.42200018682001,-2761096.0039327876,true,true,15.7360633,5577.003889226997,0.0,1.2,485.0,15.7360633,5577.003889226997,0.0,121.92,0.0 +486,22655.42200018682,21955.42200018682,0.16,1351.429725329824,2762447.4336581174,700.0,340200.0,12821.435783311397,11877330.311952949,11470.006057981573,9114882.878294831,true,486,21955.42200018682,0.0,1351.429725329824,1776531.910478461,700.0,340200.0,1931.3514163130376,941428.640712394,-2306.841471805496,201273.56275454545,0.0,0.0,1770.2192541465956,630051.7970996784,-43.299473324313254,3777.909911841061,-1351.429725329824,-2762447.4336581174,true,true,15.64665385,5592.650543076997,0.0,1.2,486.0,15.64665385,5592.650543076997,0.0,121.92,0.0 +487,23801.429725329825,23101.429725329825,0.16,3680.0670184526443,2766127.50067657,700.0,340900.0,27375.418865329026,11904705.730818277,23695.35184687638,9138578.230141707,true,487,23101.429725329825,0.0,3680.0670184526443,1780211.9774969136,700.0,340900.0,1914.8911239723311,943343.5318363664,0.0,201273.56275454545,0.0,0.0,1765.1758944803134,631816.9729941587,0.0,3777.909911841061,-3680.0670184526443,-2766127.50067657,true,true,15.64665385,5608.297196926997,0.0,1.2,487.0,15.64665385,5608.297196926997,0.0,121.92,0.0 +488,26130.067018452646,25430.067018452646,0.16,3680.0670184526443,2769807.5676950226,700.0,341600.0,27375.418865329026,11932081.149683606,23695.35184687638,9162273.581988582,true,488,25430.067018452646,0.0,3680.0670184526443,1783892.0445153662,700.0,341600.0,1914.8911239723311,945258.4229603388,0.0,201273.56275454545,0.0,0.0,1765.1758944803134,633582.148888639,0.0,3777.909911841061,-3680.0670184526443,-2769807.5676950226,true,true,15.64665385,5623.943850776996,0.0,1.2,488.0,15.64665385,5623.943850776996,0.0,121.92,0.0 +489,26130.067018452646,25430.067018452646,0.16,1321.907328311409,2771129.475023334,700.0,342300.0,12636.920801946306,11944718.070485553,11315.013473634897,9173588.595462218,true,489,25430.067018452646,0.0,1321.907328311409,1785213.9518436776,700.0,342300.0,1898.52462221609,947156.9475825549,-2293.6970760385484,198979.8656785069,0.0,0.0,1760.1325348140313,635342.2814234531,-43.05275268016379,3734.857159160897,-1321.907328311409,-2771129.475023334,true,true,15.5572444,5639.501095176996,0.0,1.2,489.0,15.5572444,5639.501095176996,0.0,121.92,0.0 +490,23771.90732831141,23071.90732831141,0.16,1292.7590217385136,2772422.2340450725,700.0,343000.0,12454.74388586571,11957172.814371418,11161.984864127196,9184750.580326345,true,490,23071.90732831141,0.0,1292.7590217385136,1786506.710865416,700.0,343000.0,1866.0719185646146,949023.0195011195,-2280.5526802715544,196699.31299823534,0.0,0.0,1750.0458154814662,637092.3272389346,-42.80603203601284,3692.0511271248843,-1292.7590217385136,-2772422.2340450725,true,true,15.46783495,5654.968930126996,0.0,1.2,490.0,15.46783495,5654.968930126996,0.0,121.92,0.0 +491,23742.759021738515,23042.759021738515,0.16,2427.799556187103,2774850.0336012593,700.0,343700.0,19548.747226169395,11976721.561597588,17120.94766998229,9201871.527996328,true,491,23042.759021738515,0.0,2427.799556187103,1788934.5104216032,700.0,343700.0,1841.9765971658976,950864.9960982854,-1135.3473185223263,195563.96567971303,0.0,0.0,1742.4807757000056,638834.8080146345,-21.310498156473894,3670.7406289684104,-2427.799556187103,-2774850.0336012593,true,true,15.42313022,5670.392060346996,0.0,1.2,491.0,15.42313022,5670.392060346996,0.0,121.92,0.0 +492,24877.799556187103,24177.799556187103,0.12,0.0,2774850.0336012593,700.0,344400.0,6999.999999999999,11983721.561597588,6999.999999999999,9208871.527996328,true,492,24177.799556187103,0.0,-7912.304257927898,1781022.2061636753,700.0,344400.0,1755.4024654175291,952620.3985637029,-11172.73647176039,184391.22920795265,0.0,0.0,1714.7422972534152,640549.550311888,-209.71254883845145,3461.028080129959,-0.0,-2774850.0336012593,true,true,14.97608297,5685.368143316996,0.0,1.2,492.0,14.97608297,5685.368143316996,0.0,121.92,0.0 +493,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,345100.0,6999.999999999999,11990721.561597588,6999.999999999999,9215871.527996328,true,493,21750.0,0.0,-13225.442063415652,1767796.7641002596,700.0,345100.0,1568.8227043866557,954189.2212680896,-16142.961273674466,168248.26793427818,0.0,0.0,1651.7003011428487,642201.2506130309,-303.0037952706914,3158.024284859268,-0.0,-2774850.0336012593,true,true,14.30551209,5699.673655406996,0.0,1.2,493.0,14.30551209,5699.673655406996,0.0,121.92,0.0 +494,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,345800.0,6999.999999999999,11997721.561597588,6999.999999999999,9222871.527996328,true,494,21750.0,0.0,-16847.28031530191,1750949.4837849578,700.0,345800.0,1336.9795560649397,955526.2008241545,-19386.340943141906,148861.92699113628,0.0,0.0,1565.963186251974,643767.2137992828,-363.88211447691543,2794.1421703823526,-0.0,-2774850.0336012593,true,true,13.45612231,5713.129777716996,0.0,1.2,494.0,13.45612231,5713.129777716996,0.0,121.92,0.0 +495,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,346500.0,6999.999999999999,12004721.561597588,6999.999999999999,9229871.527996328,true,495,21750.0,0.0,-17863.12081169271,1733086.3629732651,700.0,346500.0,1094.9098509763026,956621.1106751309,-20046.84682822719,128815.08016290909,0.0,0.0,1465.0959923622527,645232.309791645,-376.27982680407257,2417.86234357828,-0.0,-2774850.0336012593,true,true,12.51732308,5725.647100796996,0.0,1.2,495.0,12.51732308,5725.647100796996,0.0,121.92,0.0 +496,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,347200.0,6999.999999999999,12011721.561597588,6999.999999999999,9236871.527996328,true,496,21750.0,0.0,-20184.28215907942,1712902.0808141858,700.0,347200.0,854.8921165506424,957476.0027916814,-21975.78691364645,106839.29324926264,0.0,0.0,1349.0987194736842,646581.4085111187,-412.4860814572975,2005.3762621209826,-0.0,-2774850.0336012593,true,true,11.39970495,5737.046805746996,0.0,1.2,496.0,11.39970495,5737.046805746996,0.0,121.92,0.0 +497,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,347900.0,6999.999999999999,12018721.561597588,6999.999999999999,9243871.527996328,true,497,21750.0,0.0,-22276.19352219301,1690625.8872919928,700.0,347900.0,617.4100270173163,958093.4128186988,-23659.912711335925,83179.38053792671,0.0,0.0,1210.4063278048077,647791.8148389235,-444.09716567920975,1561.2790964417727,-0.0,-2774850.0336012593,true,true,10.05856319,5747.1053689369965,0.0,1.2,497.0,10.05856319,5747.1053689369965,0.0,121.92,0.0 +498,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,348600.0,6999.999999999999,12025721.561597588,6999.999999999999,9250871.527996328,true,498,21750.0,0.0,-17628.27908759853,1672997.6082043943,700.0,348600.0,422.5431525800708,958515.9559712788,-18765.268252267128,64414.11228565959,0.0,0.0,1066.6705763004265,648858.485415224,-352.2245642119004,1209.0545322298724,-0.0,-2774850.0336012593,true,true,8.851535607,5755.956904543997,0.0,1.2,498.0,8.851535607,5755.956904543997,0.0,121.92,0.0 +499,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,349300.0,6999.999999999999,12032721.561597588,6999.999999999999,9257871.527996328,true,499,21750.0,0.0,-18869.11738605252,1654128.4908183417,700.0,349300.0,267.0360167714588,958782.9919880503,-19682.089858998374,44732.02242666122,0.0,0.0,915.3697853530293,649773.8552005771,-369.43332917863336,839.621203051239,-0.0,-2774850.0336012593,true,true,7.376279673,5763.333184216996,0.0,1.2,499.0,7.376279673,5763.333184216996,0.0,121.92,0.0 +500,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,350000.0,6999.999999999999,12039721.561597588,6999.999999999999,9264871.527996328,true,500,21750.0,0.0,-15510.594901870143,1638617.8959164715,700.0,350000.0,146.25789348639523,958929.2498815367,-16103.528077479215,28628.494349182005,0.0,0.0,748.9389152939701,650522.7941158711,-302.2636331712946,537.3575698799444,-0.0,-2774850.0336012593,true,true,5.901023738,5769.234207954996,0.0,1.2,500.0,5.901023738,5769.234207954996,0.0,121.92,0.0 +501,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,350700.0,6999.999999999999,12046721.561597588,6999.999999999999,9271871.527996328,true,501,21750.0,0.0,-10742.510142738533,1627875.385773733,700.0,350700.0,72.45252959651657,959001.7024111332,-11197.382285566087,17431.112063615918,0.0,0.0,592.5947646238831,651115.388880495,-210.17515139284373,327.1824184871007,-0.0,-2774850.0336012593,true,true,4.604586705,5773.838794659996,0.0,1.2,501.0,4.604586705,5773.838794659996,0.0,121.92,0.0 +502,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,351400.0,6999.999999999999,12053721.561597588,6999.999999999999,9278871.527996328,true,502,21750.0,0.0,-8609.636786965342,1619265.7489867676,700.0,351400.0,29.920173823541123,959031.6225849567,-8913.543495473776,8517.568568142142,0.0,0.0,441.2939736764858,651556.6828541715,-167.30743899159344,159.87497949550723,-0.0,-2774850.0336012593,true,true,3.218740221,5777.057534880996,0.0,1.2,502.0,3.218740221,5777.057534880996,0.0,121.92,0.0 +503,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,352100.0,6999.999999999999,12060721.561597588,6999.999999999999,9285871.527996328,true,503,21750.0,0.0,-5708.948692245342,1613556.8002945222,700.0,352100.0,7.843394048490194,959039.4659790052,-5888.689379463902,2628.87918867824,0.0,0.0,282.42814317325764,651839.1109973447,-110.53085000318764,49.344129492319595,-0.0,-2774850.0336012593,true,true,1.788189012,5778.845723892996,0.0,1.2,503.0,1.788189012,5778.845723892996,0.0,121.92,0.0 +504,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,352800.0,6999.999999999999,12067721.561597588,6999.999999999999,9292871.527996328,true,504,21750.0,0.0,-2384.0525216615906,1611172.7477728606,700.0,352800.0,0.6978466201924497,959040.1638256254,-2464.574239385906,164.3049492923342,0.0,0.0,126.08399250317055,651965.1949898478,-46.26012139904787,3.084008093271727,-0.0,-2774850.0336012593,true,true,0.447047253,5779.292771145996,0.0,1.2,504.0,0.447047253,5779.292771145996,0.0,121.92,0.0 +505,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,353500.0,6999.999999999999,12074721.561597588,6999.999999999999,9299871.527996328,true,505,21750.0,0.0,-142.16657611206796,1611030.5811967484,700.0,353500.0,0.005582772961539599,959040.1694083984,-164.30494929239373,-5.95434812566964e-11,0.0,0.0,25.216798500634113,651990.4117883485,-3.084008093269858,1.8691714842589136e-12,-0.0,-2774850.0336012593,true,true,0.0,5779.292771145996,0.0,1.2,505.0,0.0,5779.292771145996,0.0,121.92,0.0 +506,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,354200.0,6999.999999999999,12081721.561597588,6999.999999999999,9306871.527996328,true,506,21750.0,0.0,0.0,1611030.5811967484,700.0,354200.0,0.0,959040.1694083984,0.0,-5.95434812566964e-11,0.0,0.0,0.0,651990.4117883485,0.0,1.8691714842589136e-12,-0.0,-2774850.0336012593,true,true,0.0,5779.292771145996,0.0,1.2,506.0,0.0,5779.292771145996,0.0,121.92,0.0 +507,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,354900.0,6999.999999999999,12088721.561597588,6999.999999999999,9313871.527996328,true,507,21750.0,0.0,0.0,1611030.5811967484,700.0,354900.0,0.0,959040.1694083984,0.0,-5.95434812566964e-11,0.0,0.0,0.0,651990.4117883485,0.0,1.8691714842589136e-12,-0.0,-2774850.0336012593,true,true,0.0,5779.292771145996,0.0,1.2,507.0,0.0,5779.292771145996,0.0,121.92,0.0 +508,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,355600.0,6999.999999999999,12095721.561597588,6999.999999999999,9320871.527996328,true,508,21750.0,0.0,0.0,1611030.5811967484,700.0,355600.0,0.0,959040.1694083984,0.0,-5.95434812566964e-11,0.0,0.0,0.0,651990.4117883485,0.0,1.8691714842589136e-12,-0.0,-2774850.0336012593,true,true,0.0,5779.292771145996,0.0,1.2,508.0,0.0,5779.292771145996,0.0,121.92,0.0 +509,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,356300.0,6999.999999999999,12102721.561597588,6999.999999999999,9327871.527996328,true,509,21750.0,0.0,0.0,1611030.5811967484,700.0,356300.0,0.0,959040.1694083984,0.0,-5.95434812566964e-11,0.0,0.0,0.0,651990.4117883485,0.0,1.8691714842589136e-12,-0.0,-2774850.0336012593,true,true,0.0,5779.292771145996,0.0,1.2,509.0,0.0,5779.292771145996,0.0,121.92,0.0 +510,22450.0,21750.0,0.12,0.0,2774850.0336012593,700.0,357000.0,6999.999999999999,12109721.561597588,6999.999999999999,9334871.527996328,true,510,21750.0,0.0,0.0,1611030.5811967484,700.0,357000.0,0.0,959040.1694083984,0.0,-5.95434812566964e-11,0.0,0.0,0.0,651990.4117883485,0.0,1.8691714842589136e-12,-0.0,-2774850.0336012593,true,true,0.0,5779.292771145996,0.0,1.2,510.0,0.0,5779.292771145996,0.0,121.92,0.0 +511,22450.0,21750.0,0.12,271.3099032947347,2775121.343504554,700.0,357700.0,8094.249194122789,12117815.81079171,7822.939290828054,9342694.467287155,true,511,21750.0,0.0,271.3099032947347,1611301.8911000432,700.0,357700.0,0.009647031645171262,959040.1790554301,236.59912645179844,236.5991264517389,0.0,0.0,30.260158166916465,652020.6719465153,4.440971644374586,4.4409716443764555,-271.3099032947347,-2775121.343504554,true,true,0.536456703,5779.829227848996,0.0,1.2,511.0,0.536456703,5779.829227848996,0.0,121.92,0.0 +512,22721.309903294736,22021.309903294736,0.16,1928.5732016949007,2777049.916706249,700.0,358400.0,16428.58251059313,12134244.393302303,14500.009308898228,9357194.476596054,true,512,22021.309903294736,0.0,1928.5732016949007,1613230.4643017382,700.0,358400.0,0.5796202362755808,959040.7586756664,1776.136501093657,2012.7356275453958,0.0,0.0,118.51895289093216,652139.1908994062,33.33812747403601,37.77909911841246,-1928.5732016949007,-2777049.916706249,true,true,1.564665385,5781.393893233996,0.0,1.2,512.0,1.564665385,5781.393893233996,0.0,121.92,0.0 +513,24378.5732016949,23678.5732016949,0.16,3244.0222601283076,2780293.9389663776,700.0,359100.0,24650.13912580192,12158894.532428104,21406.11686567361,9378600.593461728,true,513,23678.5732016949,0.0,3244.0222601283076,1616474.4865618665,700.0,359100.0,4.06984148592776,959044.8285171523,2957.4890865280204,4970.224714073416,0.0,0.0,226.95118644929957,652366.1420858555,55.5121456650602,93.29124478347266,-3244.0222601283076,-2780293.9389663776,true,true,2.458759891,5783.852653124996,0.0,1.2,513.0,2.458759891,5783.852653124996,0.0,121.92,0.0 +514,25694.02226012831,24994.02226012831,0.16,2320.916101876878,2782614.8550682543,700.0,359800.0,18880.725636730487,12177775.258064834,16559.809534853608,9395160.402996581,true,514,24994.02226012831,0.0,2320.916101876878,1618795.4026637434,700.0,359800.0,9.647031672145568,959054.4755488245,1971.6593911411908,6941.884105214607,0.0,0.0,302.6015819512019,652668.7436678067,37.00809711233967,130.29934189581235,-2320.916101876878,-2782614.8550682543,true,true,2.905807144,5786.758460268997,0.0,1.2,514.0,2.905807144,5786.758460268997,0.0,121.92,0.0 +515,24770.91610187688,24070.91610187688,0.22,5418.762557010913,2788033.6176252654,700.0,360500.0,27812.557077322333,12205587.815142157,22393.79452031142,9417554.197516892,true,515,24070.91610187688,0.0,5418.762557010913,1624214.1652207542,700.0,360500.0,18.841858736766675,959073.3174075613,4929.148478036744,11871.032583251352,0.0,0.0,378.25197745310425,653046.9956452599,92.52024278429853,222.8195846801109,-5418.762557010913,-2788033.6176252654,true,true,3.79990165,5790.5583619189965,0.0,1.2,515.0,3.79990165,5790.5583619189965,0.0,121.92,0.0 +516,27868.762557010912,27168.762557010912,0.16,3822.24258947588,2791855.8602147414,700.0,361200.0,28264.01618422425,12233851.83132638,24441.773594748367,9441995.97111164,true,516,27168.762557010912,0.0,3822.24258947588,1628036.40781023,700.0,361200.0,33.10439770777699,959106.4218052691,3271.3115378902767,15142.344121141628,0.0,0.0,456.4240527881477,653503.419698048,61.40260108967827,284.2221857697892,-3822.24258947588,-2791855.8602147414,true,true,4.291653628,5794.8500155469965,0.0,1.2,516.0,4.291653628,5794.8500155469965,0.0,121.92,0.0 +517,26272.242589475878,25572.242589475878,0.16,3580.2593544557653,2795436.1195691973,700.0,361900.0,26751.620965348535,12260603.452291729,23171.36161089277,9465167.332722533,true,517,25572.242589475878,0.0,3580.2593544557653,1631616.667164686,700.0,361900.0,45.335471659438724,959151.7572769285,2972.2765267674104,18114.62064790904,0.0,0.0,506.8576497330085,654010.277347781,55.789706295908026,340.0118920656972,-3580.2593544557653,-2795436.1195691973,true,true,4.693996155,5799.544011701996,0.0,1.2,517.0,4.693996155,5799.544011701996,0.0,121.92,0.0 +518,26030.259354455768,25330.259354455768,0.22,5876.921138843526,2801313.040708041,700.0,362600.0,29895.096085652393,12290498.548377382,24018.174946808867,9489185.507669343,true,518,25330.259354455768,0.0,5876.921138843526,1637493.5883035294,700.0,362600.0,62.74715235032535,959214.5044292789,5152.603206516369,23267.223854425407,0.0,0.0,564.8562862337003,654575.1336340148,96.7144937431313,436.7263858088285,-5876.921138843526,-2801313.040708041,true,true,5.319862309,5804.863874010996,0.0,1.2,518.0,5.319862309,5804.863874010996,0.0,121.92,0.0 +519,28326.921138843525,27626.921138843525,0.28,9854.3954580135,2811167.436166054,700.0,363300.0,37694.269492905354,12328192.817870287,27839.874034891855,9517025.381704235,true,519,27626.921138843525,0.0,9854.3954580135,1647347.983761543,700.0,363300.0,96.99498012770194,959311.4994094066,8936.54619659277,32203.770051018175,0.0,0.0,653.1150810141235,655228.2487150289,167.73920027890438,604.4655860877328,-9854.3954580135,-2811167.436166054,true,true,6.258661541,5811.122535551996,0.0,1.2,519.0,6.258661541,5811.122535551996,0.0,121.92,0.0 +520,32304.3954580135,31604.3954580135,0.28,10950.576254370466,2822118.0124204247,700.0,364000.0,41609.200908465944,12369802.018778753,30658.624654095478,9547684.006358331,true,520,31604.3954580135,0.0,10950.576254370466,1658298.5600159133,700.0,364000.0,150.73486986041559,959462.234279267,9858.296944312408,42062.066995330584,0.0,0.0,756.5039548498011,655984.7526698787,185.04048534784127,789.5060714355741,-10950.576254370466,-2822118.0124204247,true,true,7.152756046,5818.275291597996,0.0,1.2,520.0,7.152756046,5818.275291597996,0.0,121.92,0.0 +521,33400.57625437046,32700.576254370462,0.28,10653.18756443077,2832771.1999848555,700.0,364700.0,40547.098444395604,12410349.117223147,29893.910879964835,9577577.917238295,true,521,32700.576254370462,0.0,10653.18756443077,1668951.747580344,700.0,364700.0,213.66809043763743,959675.9023697047,9413.030541160935,51475.09753649152,0.0,0.0,849.8061092400991,656834.5587791187,176.68282359209823,966.1888950276723,-10653.18756443077,-2832771.1999848555,true,true,7.912736376,5826.188027973996,0.0,1.2,521.0,7.912736376,5826.188027973996,0.0,121.92,0.0 +522,33103.18756443077,32403.187564430773,0.28,9187.544946205528,2841958.744931061,700.0,365400.0,35312.660522162594,12445661.77774531,26125.11557595707,9603703.032814251,true,522,32403.187564430773,0.0,9187.544946205528,1678139.2925265497,700.0,365400.0,275.96128521508103,959951.8636549198,7838.989130129992,59314.086666621515,0.0,0.0,925.4565047420015,657760.0152838607,147.13802611845313,1113.3269211461254,-9187.544946205528,-2841958.744931061,true,true,8.493897805,5834.681925778997,0.0,1.2,522.0,8.493897805,5834.681925778997,0.0,121.92,0.0 +523,31637.544946205526,30937.544946205526,0.28,8519.09433791525,2850477.839268976,700.0,366100.0,32925.33692112589,12478587.114666436,24406.24258321064,9628109.275397463,true,523,30937.544946205526,0.0,8519.09433791525,1686658.386864465,700.0,366100.0,333.71846578876995,960285.5821207085,7066.755863016254,66380.84252963777,0.0,0.0,985.9768211322418,658745.992104993,132.64318797798518,1245.9701091241106,-8519.09433791525,-2850477.839268976,true,true,8.985649783,5843.667575561996,0.0,1.2,523.0,8.985649783,5843.667575561996,0.0,121.92,0.0 +524,30969.094337915252,30269.094337915252,0.28,7615.720514805067,2858093.559783781,700.0,366800.0,29699.001838589524,12508286.116505025,22083.281323784457,9650192.556721248,true,524,30269.094337915252,0.0,7615.720514805067,1694274.10737927,700.0,366800.0,387.59255980816476,960673.1746805167,6077.640077434978,72458.48260707274,0.0,0.0,1036.41041813351,659782.4025231265,114.07745942841443,1360.047568552525,-7615.720514805067,-2858093.559783781,true,true,9.387992311,5853.055567872996,0.0,1.2,524.0,9.387992311,5853.055567872996,0.0,121.92,0.0 +525,30065.720514805067,29365.720514805067,0.28,8725.917030963501,2866819.4768147445,700.0,367500.0,33663.98939629822,12541950.105901323,24938.072365334716,9675130.629086582,true,525,29365.720514805067,0.0,8725.917030963501,1703000.0244102336,700.0,367500.0,443.8695295760429,961117.0442100927,7065.112818102812,79523.59542517556,0.0,0.0,1084.3223353016372,660866.7248584281,132.6123479830096,1492.6599165355346,-8725.917030963501,-2866819.4768147445,true,true,9.835039564,5862.890607436996,0.0,1.2,525.0,9.835039564,5862.890607436996,0.0,121.92,0.0 +526,31175.9170309635,30475.9170309635,0.28,9175.989251045345,2875995.46606579,700.0,368200.0,35271.3901823048,12577221.496083628,26095.400931259457,9701226.030017842,true,526,30475.9170309635,0.0,9175.989251045345,1712176.0136612789,700.0,368200.0,508.7301860444309,961625.7743961372,7393.722767407227,86917.31819258278,0.0,0.0,1134.7559324721278,662001.4807909003,138.78036512155848,1631.4402816570932,-9175.989251045345,-2875995.46606579,true,true,10.28208682,5873.172694256996,0.0,1.2,526.0,10.28208682,5873.172694256996,0.0,121.92,0.0 +527,31625.989251045343,30925.989251045343,0.28,8019.440964197521,2884014.907029988,700.0,368900.0,31140.860586419716,12608362.356670048,23121.419622222194,9724347.449640064,true,527,30925.989251045343,0.0,8019.440964197521,1720195.4546254764,700.0,368900.0,572.2522720471983,962198.0266681844,6151.577260108245,93068.89545269102,0.0,0.0,1180.1461698071134,663181.6269607074,115.46526223496363,1746.9055438920568,-8019.440964197521,-2884014.907029988,true,true,10.63972462,5883.812418876996,0.0,1.2,527.0,10.63972462,5883.812418876996,0.0,121.92,0.0 +528,30469.44096419752,29769.44096419752,0.28,7506.451038125303,2891521.358068113,700.0,369600.0,29308.753707590364,12637671.110377638,21802.30266946506,9746149.75230953,true,528,29769.44096419752,0.0,7506.451038125303,1727701.9056636016,700.0,369600.0,629.0589688568273,962827.0856370413,5555.1503870819815,98624.04583977301,0.0,0.0,1217.9713675862683,664399.5983282937,104.2703146002258,1851.1758584922827,-7506.451038125303,-2891521.358068113,true,true,10.9526577,5894.765076576996,0.0,1.2,528.0,10.9526577,5894.765076576996,0.0,121.92,0.0 +529,29956.451038125302,29256.451038125302,0.22,5226.34002793786,2896747.698096051,700.0,370300.0,26937.909217899363,12664609.019595537,21711.569189961505,9767861.321499491,true,529,29256.451038125302,0.0,5226.34002793786,1732928.2456915395,700.0,370300.0,673.0244058910527,963500.1100429323,3246.6657764949196,101870.71161626793,0.0,0.0,1245.7098460328586,665645.3081743266,60.939999519028795,1912.1158580113115,-5226.34002793786,-2896747.698096051,true,true,11.1314766,5905.896553176995,0.0,1.2,529.0,11.1314766,5905.896553176995,0.0,121.92,0.0 +530,27676.340027937862,26976.340027937862,0.16,2787.2569516784074,2899534.9550477294,700.0,371000.0,21795.355947990047,12686404.375543527,19008.09899631164,9786869.420495803,true,530,26976.340027937862,0.0,2787.2569516784074,1735715.5026432178,700.0,371000.0,693.6679086095177,964193.7779515418,819.8815995946654,102690.5932158626,0.0,0.0,1258.318244916527,666903.626419243,15.389198557696954,1927.5050565690085,-2787.2569516784074,-2899534.9550477294,true,true,11.17618132,5917.0727344969955,0.0,1.2,530.0,11.17618132,5917.0727344969955,0.0,121.92,0.0 +531,25237.256951678406,24537.256951678406,0.16,1958.6865437234733,2901493.641591453,700.0,371700.0,16616.79089827171,12703021.166441798,14658.104354548235,9801527.52485035,true,531,24537.256951678406,0.0,1958.6865437234733,1737674.1891869414,700.0,371700.0,697.846619255842,964891.6245707977,0.0,102690.5932158626,0.0,0.0,1260.8399244676311,668164.4663437107,0.0,1927.5050565690085,-1958.6865437234733,-2901493.641591453,true,true,11.17618132,5928.248915816996,0.0,1.2,531.0,11.17618132,5928.248915816996,0.0,121.92,0.0 +532,24408.686543723474,23708.686543723474,0.16,1958.6865437234733,2903452.3281351766,700.0,372400.0,16616.79089827171,12719637.95734007,14658.104354548235,9816185.629204897,true,532,23708.686543723474,0.0,1958.6865437234733,1739632.875730665,700.0,372400.0,697.846619255842,965589.4711900535,0.0,102690.5932158626,0.0,0.0,1260.8399244676311,669425.3062681783,0.0,1927.5050565690085,-1958.6865437234733,-2903452.3281351766,true,true,11.17618132,5939.425097136996,0.0,1.2,532.0,11.17618132,5939.425097136996,0.0,121.92,0.0 +533,24408.686543723474,23708.686543723474,0.16,1958.6865437234733,2905411.0146789,700.0,373100.0,16616.79089827171,12736254.74823834,14658.104354548235,9830843.733559445,true,533,23708.686543723474,0.0,1958.6865437234733,1741591.5622743885,700.0,373100.0,697.846619255842,966287.3178093093,0.0,102690.5932158626,0.0,0.0,1260.8399244676311,670686.1461926459,0.0,1927.5050565690085,-1958.6865437234733,-2905411.0146789,true,true,11.17618132,5950.601278456996,0.0,1.2,533.0,11.17618132,5950.601278456996,0.0,121.92,0.0 +534,24408.686543723474,23708.686543723474,0.16,1958.6865437234733,2907369.7012226237,700.0,373800.0,16616.79089827171,12752871.53913661,14658.104354548235,9845501.837913992,true,534,23708.686543723474,0.0,1958.6865437234733,1743550.248818112,700.0,373800.0,697.846619255842,966985.1644285652,0.0,102690.5932158626,0.0,0.0,1260.8399244676311,671946.9861171135,0.0,1927.5050565690085,-1958.6865437234733,-2907369.7012226237,true,true,11.17618132,5961.777459776996,0.0,1.2,534.0,11.17618132,5961.777459776996,0.0,121.92,0.0 +535,24408.686543723474,23708.686543723474,0.16,1958.6865437234733,2909328.3877663473,700.0,374500.0,16616.79089827171,12769488.330034882,14658.104354548235,9860159.94226854,true,535,23708.686543723474,0.0,1958.6865437234733,1745508.9353618356,700.0,374500.0,697.846619255842,967683.011047821,0.0,102690.5932158626,0.0,0.0,1260.8399244676311,673207.8260415811,0.0,1927.5050565690085,-1958.6865437234733,-2909328.3877663473,true,true,11.17618132,5972.953641096996,0.0,1.2,535.0,11.17618132,5972.953641096996,0.0,121.92,0.0 +536,24408.686543723474,23708.686543723474,0.22,7081.170485947342,2916409.5582522945,700.0,375200.0,35368.9567543061,12804857.286789188,28287.786268358755,9888447.728536898,true,536,23708.686543723474,0.0,7081.170485947342,1752590.105847783,700.0,375200.0,723.2717730063798,968406.2828208274,4988.298224439979,107678.89144030257,0.0,0.0,1275.9700034664781,674483.7960450476,93.6304850345049,2021.1355416035135,-7081.170485947342,-2916409.5582522945,true,true,11.44440967,5984.398050766996,0.0,1.2,536.0,11.44440967,5984.398050766996,0.0,121.92,0.0 +537,29531.170485947343,28831.170485947343,0.16,3775.0243007081554,2920184.5825530025,700.0,375900.0,27968.901879425972,12832826.188668614,24193.877578717817,9912641.606115617,true,537,28831.170485947343,0.0,3775.0243007081554,1756365.1301484911,700.0,375900.0,758.1223892628102,969164.4052100902,1689.0548663472682,109367.94630664984,0.0,0.0,1296.1434421316078,675779.9394871792,31.703602966468594,2052.839144569982,-3775.0243007081554,-2920184.5825530025,true,true,11.53381912,5995.931869886996,0.0,1.2,537.0,11.53381912,5995.931869886996,0.0,121.92,0.0 +538,26225.024300708155,25525.024300708155,0.16,3816.3397834795237,2924000.922336482,700.0,376600.0,28227.12364674702,12861053.312315362,24410.783863267494,9937052.389978884,true,538,25525.024300708155,0.0,3816.3397834795237,1760181.4699319706,700.0,376600.0,775.9598410216155,969940.3650511118,1702.1994532317615,111070.1457598816,0.0,0.0,1306.230162028247,677086.1696492074,31.950327197900013,2084.7894717678823,-3816.3397834795237,-2924000.922336482,true,true,11.62322858,6007.555098466995,0.0,1.2,538.0,11.62322858,6007.555098466995,0.0,121.92,0.0 +539,26266.339783479525,25566.339783479525,0.12,0.0,2924000.922336482,700.0,377300.0,6999.999999999999,12868053.312315362,6999.999999999999,9944052.389978884,true,539,25566.339783479525,0.0,-1386.7149002740316,1758794.7550316965,700.0,377300.0,767.0065471074023,970707.3715982191,-3391.2543195790295,107678.89144030257,0.0,0.0,1301.1868023619645,678387.3564515694,-63.65393016436861,2021.1355416035137,-0.0,-2924000.922336482,true,true,11.44440967,6018.999508136995,0.0,1.2,539.0,11.44440967,6018.999508136995,0.0,121.92,0.0 +540,22450.0,21750.0,0.12,0.0,2924000.922336482,700.0,378000.0,6999.999999999999,12875053.312315362,6999.999999999999,9951052.389978884,true,540,21750.0,0.0,-1388.4481649144773,1757406.306866782,700.0,378000.0,731.8820613468961,971439.253659566,-3338.676545393647,104340.21489490892,0.0,0.0,1281.0133631327606,679668.3698147021,-62.66704400048694,1958.468497603027,-0.0,-2924000.922336482,true,true,11.26559077,6030.265098906995,0.0,1.2,540.0,11.26559077,6030.265098906995,0.0,121.92,0.0 +541,22450.0,21750.0,0.12,291.55248398751326,2924292.4748204695,700.0,378700.0,8262.93736656261,12883316.249681924,7971.3848825750965,9959023.774861459,true,541,21750.0,0.0,291.55248398751326,1757697.8593507695,700.0,378700.0,706.2543199339497,972145.5079795,-1649.621679046332,102690.59321586258,0.0,0.0,1265.8832841339135,680934.2530988359,-30.96344103401797,1927.505056569009,-291.55248398751326,-2924292.4748204695,true,true,11.17618132,6041.441280226995,0.0,1.2,541.0,11.17618132,6041.441280226995,0.0,121.92,0.0 +542,22741.552483987514,22041.552483987514,0.16,1958.6865437234733,2926251.161364193,700.0,379400.0,16616.79089827171,12899933.040580194,14658.104354548235,9973681.879216006,true,542,22041.552483987514,0.0,1958.6865437234733,1759656.545894493,700.0,379400.0,697.846619255842,972843.3545987558,0.0,102690.59321586258,0.0,0.0,1260.8399244676311,682195.0930233035,0.0,1927.505056569009,-1958.6865437234733,-2926251.161364193,true,true,11.17618132,6052.617461546995,0.0,1.2,542.0,11.17618132,6052.617461546995,0.0,121.92,0.0 +543,24408.686543723474,23708.686543723474,0.16,1958.6865437234733,2928209.8479079166,700.0,380100.0,16616.79089827171,12916549.831478465,14658.104354548235,9988339.983570553,true,543,23708.686543723474,0.0,1958.6865437234733,1761615.2324382167,700.0,380100.0,697.846619255842,973541.2012180117,0.0,102690.59321586258,0.0,0.0,1260.8399244676311,683455.9329477712,0.0,1927.505056569009,-1958.6865437234733,-2928209.8479079166,true,true,11.17618132,6063.7936428669955,0.0,1.2,543.0,11.17618132,6063.7936428669955,0.0,121.92,0.0 +544,24408.686543723474,23708.686543723474,0.12,0.0,2928209.8479079166,700.0,380800.0,6999.999999999999,12923549.831478465,6999.999999999999,9995339.983570553,true,544,23708.686543723474,0.0,-3042.6744113287614,1758572.558026888,700.0,380800.0,673.0244049767887,974214.2256229884,-4869.998662537182,97820.5945533254,0.0,0.0,1245.7098454687841,684701.6427932399,-91.40999923715228,1836.0950573318567,-0.0,-2928209.8479079166,true,true,10.90795297,6074.701595836996,0.0,1.2,544.0,10.90795297,6074.701595836996,0.0,121.92,0.0 +545,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,381500.0,6999.999999999999,12930549.831478465,6999.999999999999,10002339.983570553,true,545,21750.0,0.0,-8540.153960767497,1750032.4040661205,700.0,381500.0,598.3162453535352,974812.541868342,-10145.83063442549,87674.7639188999,0.0,0.0,1197.7979283570644,685899.4407215969,-190.43750005260483,1645.6575572792517,-0.0,-2928209.8479079166,true,true,10.32679154,6085.028387376996,0.0,1.2,545.0,10.32679154,6085.028387376996,0.0,121.92,0.0 +546,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,382200.0,6999.999999999999,12937549.831478465,6999.999999999999,10009339.983570553,true,546,21750.0,0.0,-22174.674041566686,1727857.7300245538,700.0,382200.0,440.77996142374747,975253.3218297657,-23260.65163324033,64414.112285659576,0.0,0.0,1081.8006552992736,686981.2413768962,-436.60302504937886,1209.0545322298728,-0.0,-2928209.8479079166,true,true,8.851535607,6093.879922983996,0.0,1.2,546.0,8.851535607,6093.879922983996,0.0,121.92,0.0 +547,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,382900.0,6999.999999999999,12944549.831478465,6999.999999999999,10016339.983570553,true,547,21750.0,0.0,-18869.11738605252,1708988.6126385012,700.0,382900.0,267.0360167714588,975520.3578465371,-19682.089858998374,44732.022426661206,0.0,0.0,915.3697853530293,687896.6111622492,-369.43332917863336,839.6212030512395,-0.0,-2928209.8479079166,true,true,7.376279673,6101.256202656996,0.0,1.2,547.0,7.376279673,6101.256202656996,0.0,121.92,0.0 +548,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,383600.0,6999.999999999999,12951549.831478465,6999.999999999999,10023339.983570553,true,548,21750.0,0.0,-15510.594901870143,1693478.017736631,700.0,383600.0,146.25789348639523,975666.6157400236,-16103.528077479215,28628.49434918199,0.0,0.0,748.9389152939701,688645.5500775432,-302.2636331712946,537.3575698799449,-0.0,-2928209.8479079166,true,true,5.901023738,6107.157226394996,0.0,1.2,548.0,5.901023738,6107.157226394996,0.0,121.92,0.0 +549,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,384300.0,6999.999999999999,12958549.831478465,6999.999999999999,10030339.983570553,true,549,21750.0,0.0,-12108.736723305648,1681369.2810133253,700.0,384300.0,68.81544234218501,975735.4311823657,-12524.966274128567,16103.528075053424,0.0,0.0,582.5080452349109,689228.0581227782,-235.09393675417851,302.2636331257664,-0.0,-2928209.8479079166,true,true,4.425767804,6111.582994198996,0.0,1.2,549.0,4.425767804,6111.582994198996,0.0,121.92,0.0 +550,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,385000.0,6999.999999999999,12965549.831478465,6999.999999999999,10037339.983570553,true,550,21750.0,0.0,-8673.173039263353,1672696.107974062,700.0,385000.0,25.078513974556593,975760.5096963403,-8946.404487757982,7157.123587295442,0.0,0.0,416.0771751758517,689644.1352979541,-167.9242406557784,134.33939246998798,-0.0,-2928209.8479079166,true,true,2.950511869,6114.533506067996,0.0,1.2,550.0,2.950511869,6114.533506067996,0.0,121.92,0.0 +551,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,385700.0,6999.999999999999,12972549.831478465,6999.999999999999,10044339.983570553,true,551,21750.0,0.0,-5213.533969452467,1667482.5740046096,700.0,385700.0,5.4169590192385995,975765.9266553596,-5367.842689258775,1789.2808980366672,0.0,0.0,249.64630511679252,689893.7816030709,-100.75454432972379,33.5848481402642,-0.0,-2928209.8479079166,true,true,1.475255935,6116.008762002996,0.0,1.2,551.0,1.475255935,6116.008762002996,0.0,121.92,0.0 +552,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,386400.0,6999.999999999999,12979549.831478465,6999.999999999999,10051339.983570553,true,552,21750.0,0.0,-1739.4496830073092,1665743.1243216023,700.0,386400.0,0.20062811195964725,975766.1272834715,-1789.2808980367404,-7.321432349272072e-11,0.0,0.0,83.21543505773333,689976.9970381287,-33.58484814026184,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,552.0,0.0,6116.008762002996,0.0,121.92,0.0 +553,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,387100.0,6999.999999999999,12986549.831478465,6999.999999999999,10058339.983570553,true,553,21750.0,0.0,0.0,1665743.1243216023,700.0,387100.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,553.0,0.0,6116.008762002996,0.0,121.92,0.0 +554,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,387800.0,6999.999999999999,12993549.831478465,6999.999999999999,10065339.983570553,true,554,21750.0,0.0,0.0,1665743.1243216023,700.0,387800.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,554.0,0.0,6116.008762002996,0.0,121.92,0.0 +555,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,388500.0,6999.999999999999,13000549.831478465,6999.999999999999,10072339.983570553,true,555,21750.0,0.0,0.0,1665743.1243216023,700.0,388500.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,555.0,0.0,6116.008762002996,0.0,121.92,0.0 +556,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,389200.0,6999.999999999999,13007549.831478465,6999.999999999999,10079339.983570553,true,556,21750.0,0.0,0.0,1665743.1243216023,700.0,389200.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,556.0,0.0,6116.008762002996,0.0,121.92,0.0 +557,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,389900.0,6999.999999999999,13014549.831478465,6999.999999999999,10086339.983570553,true,557,21750.0,0.0,0.0,1665743.1243216023,700.0,389900.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,557.0,0.0,6116.008762002996,0.0,121.92,0.0 +558,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,390600.0,6999.999999999999,13021549.831478465,6999.999999999999,10093339.983570553,true,558,21750.0,0.0,0.0,1665743.1243216023,700.0,390600.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,558.0,0.0,6116.008762002996,0.0,121.92,0.0 +559,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,391300.0,6999.999999999999,13028549.831478465,6999.999999999999,10100339.983570553,true,559,21750.0,0.0,0.0,1665743.1243216023,700.0,391300.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,559.0,0.0,6116.008762002996,0.0,121.92,0.0 +560,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,392000.0,6999.999999999999,13035549.831478465,6999.999999999999,10107339.983570553,true,560,21750.0,0.0,0.0,1665743.1243216023,700.0,392000.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,560.0,0.0,6116.008762002996,0.0,121.92,0.0 +561,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,392700.0,6999.999999999999,13042549.831478465,6999.999999999999,10114339.983570553,true,561,21750.0,0.0,0.0,1665743.1243216023,700.0,392700.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,561.0,0.0,6116.008762002996,0.0,121.92,0.0 +562,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,393400.0,6999.999999999999,13049549.831478465,6999.999999999999,10121339.983570553,true,562,21750.0,0.0,0.0,1665743.1243216023,700.0,393400.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,562.0,0.0,6116.008762002996,0.0,121.92,0.0 +563,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,394100.0,6999.999999999999,13056549.831478465,6999.999999999999,10128339.983570553,true,563,21750.0,0.0,0.0,1665743.1243216023,700.0,394100.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,563.0,0.0,6116.008762002996,0.0,121.92,0.0 +564,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,394800.0,6999.999999999999,13063549.831478465,6999.999999999999,10135339.983570553,true,564,21750.0,0.0,0.0,1665743.1243216023,700.0,394800.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,564.0,0.0,6116.008762002996,0.0,121.92,0.0 +565,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,395500.0,6999.999999999999,13070549.831478465,6999.999999999999,10142339.983570553,true,565,21750.0,0.0,0.0,1665743.1243216023,700.0,395500.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,565.0,0.0,6116.008762002996,0.0,121.92,0.0 +566,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,396200.0,6999.999999999999,13077549.831478465,6999.999999999999,10149339.983570553,true,566,21750.0,0.0,0.0,1665743.1243216023,700.0,396200.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,566.0,0.0,6116.008762002996,0.0,121.92,0.0 +567,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,396900.0,6999.999999999999,13084549.831478465,6999.999999999999,10156339.983570553,true,567,21750.0,0.0,0.0,1665743.1243216023,700.0,396900.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,567.0,0.0,6116.008762002996,0.0,121.92,0.0 +568,22450.0,21750.0,0.12,0.0,2928209.8479079166,700.0,397600.0,6999.999999999999,13091549.831478465,6999.999999999999,10163339.983570553,true,568,21750.0,0.0,0.0,1665743.1243216023,700.0,397600.0,0.0,975766.1272834715,0.0,-7.321432349272072e-11,0.0,0.0,0.0,689976.9970381287,0.0,2.3590018827235326e-12,-0.0,-2928209.8479079166,true,true,0.0,6116.008762002996,0.0,1.2,568.0,0.0,6116.008762002996,0.0,121.92,0.0 +569,22450.0,21750.0,0.16,1906.2818093466954,2930116.1297172634,700.0,398300.0,16289.261308416846,13107839.092786882,14382.97949907015,10177722.963069623,true,569,21750.0,0.0,1906.2818093466954,1667649.406130949,700.0,398300.0,0.20062811195964725,975766.3279115835,1789.2808980367404,1789.2808980366672,0.0,0.0,83.21543505773333,690060.2124731864,33.58484814026184,33.5848481402642,-1906.2818093466954,-2930116.1297172634,true,true,1.475255935,6117.484017937996,0.0,1.2,569.0,1.475255935,6117.484017937996,0.0,121.92,0.0 +570,24356.281809346696,23656.281809346696,0.22,5723.66049772453,2935839.790214988,700.0,399000.0,29198.45680783877,13137037.54959472,23474.79631011424,10201197.759379737,true,570,23656.281809346696,0.0,5723.66049772453,1673373.0666286736,700.0,399000.0,5.4169590192385995,975771.7448706027,5367.842689258775,7157.123587295442,0.0,0.0,249.64630511679252,690309.8587783033,100.75454432972379,134.33939246998798,-5723.66049772453,-2935839.790214988,true,true,2.950511869,6120.434529806997,0.0,1.2,570.0,2.950511869,6120.434529806997,0.0,121.92,0.0 +571,28173.66049772453,27473.66049772453,0.28,9555.484417564168,2945395.274632552,700.0,399700.0,36626.73006272917,13173664.27965745,27071.245645165,10228269.005024903,true,571,27473.66049772453,0.0,9555.484417564168,1682928.5510462378,700.0,399700.0,25.078513974556593,975796.8233845773,8946.404487757982,16103.528075053424,0.0,0.0,416.0771751758517,690725.9359534791,167.9242406557784,302.2636331257664,-9555.484417564168,-2945395.274632552,true,true,4.425767804,6124.860297610997,0.0,1.2,571.0,4.425767804,6124.860297610997,0.0,121.92,0.0 +572,32005.48441756417,31305.48441756417,0.33,12527.450224882503,2957922.7248574346,700.0,400400.0,40083.182499643946,13213747.462157093,27555.732274761445,10255824.737299664,true,572,31305.48441756417,0.0,12527.450224882503,1695456.0012711203,700.0,400400.0,67.04345905122716,975863.8668436285,11664.00834580517,27767.536420858596,0.0,0.0,577.4646855686286,691303.4006390477,218.93373445747787,521.1973675832443,-12527.450224882503,-2957922.7248574346,true,true,5.811614288,6130.671911898997,0.0,1.2,572.0,5.811614288,6130.671911898997,0.0,121.92,0.0 +573,34977.4502248825,34277.4502248825,0.28,8205.255421006263,2966127.9802784408,700.0,401100.0,31804.483646450935,13245551.945803544,23599.228225444673,10279423.96552511,true,573,34277.4502248825,0.0,8205.255421006263,1703661.2566921266,700.0,401100.0,117.37543434072575,975981.2422779691,7255.706550990407,35023.242971849,0.0,0.0,695.9836384595608,691999.3842775073,136.18979721556966,657.387164798814,-8205.255421006263,-2966127.9802784408,true,true,6.526889892,6137.198801790997,0.0,1.2,573.0,6.526889892,6137.198801790997,0.0,121.92,0.0 +574,30655.255421006263,29955.255421006263,0.28,8102.538013772258,2974230.518292213,700.0,401800.0,31437.635763472343,13276989.581567015,23335.097749700086,10302759.06327481,true,574,29955.255421006263,0.0,8102.538013772258,1711763.794705899,700.0,401800.0,159.9610497488726,976141.203327718,7038.8240234815685,42062.06699533057,0.0,0.0,771.6340339050556,692771.0183114124,132.11890663676073,789.5060714355747,-8102.538013772258,-2974230.518292213,true,true,7.152756046,6144.351557836997,0.0,1.2,574.0,7.152756046,6144.351557836997,0.0,121.92,0.0 +575,30552.538013772257,29852.538013772257,0.22,6556.618054280121,2980787.136346493,700.0,402500.0,32984.6275194551,13309974.20908647,26428.009465174975,10329187.072739985,true,575,29852.538013772257,0.0,6556.618054280121,1718320.412760179,700.0,402500.0,200.62811175565412,976341.8314394737,5422.063325178861,47484.13032050943,0.0,0.0,832.154350295296,693603.1726617077,101.77226705031065,891.2783384858853,-6556.618054280121,-2980787.136346493,true,true,7.599803299,6151.951361135997,0.0,1.2,575.0,7.599803299,6151.951361135997,0.0,121.92,0.0 +576,29006.618054280123,28306.618054280123,0.12,1076.7964571030475,2981863.932803596,700.0,403200.0,14806.637142525396,13324780.846228996,13729.840685422349,10342916.913425406,true,576,28306.618054280123,0.0,1076.7964571030475,1719397.209217282,700.0,403200.0,219.42530830711746,976561.2567477808,0.0,47484.13032050943,0.0,0.0,857.3711487959301,694460.5438105037,0.0,891.2783384858853,-1076.7964571030475,-2981863.932803596,true,true,7.599803299,6159.551164434997,0.0,1.2,576.0,7.599803299,6159.551164434997,0.0,121.92,0.0 +577,23526.796457103046,22826.796457103046,0.12,1076.7964571030475,2982940.729260699,700.0,403900.0,14806.637142525396,13339587.483371522,13729.840685422349,10356646.754110828,true,577,22826.796457103046,0.0,1076.7964571030475,1720474.005674385,700.0,403900.0,219.42530830711746,976780.682056088,0.0,47484.13032050943,0.0,0.0,857.3711487959301,695317.9149592996,0.0,891.2783384858853,-1076.7964571030475,-2982940.729260699,true,true,7.599803299,6167.150967733997,0.0,1.2,577.0,7.599803299,6167.150967733997,0.0,121.92,0.0 +578,23526.796457103046,22826.796457103046,0.16,3986.687963977576,2986927.4172246763,700.0,404600.0,29291.79977485985,13368879.283146381,25305.111810882274,10381951.86592171,true,578,22826.796457103046,0.0,3986.687963977576,1724460.6936383627,700.0,404600.0,229.24889519672996,977009.9309512847,2834.2603809905618,50318.39070149999,0.0,0.0,869.9795480744509,696187.894507374,53.19913971583344,944.4774782017188,-3986.687963977576,-2986927.4172246763,true,true,7.823326926,6174.974294659997,0.0,1.2,578.0,7.823326926,6174.974294659997,0.0,121.92,0.0 +579,26436.687963977576,25736.687963977576,0.16,2309.537779830974,2989236.955004507,700.0,405300.0,18809.61112394359,13387688.894270325,16500.073344112614,10398451.939265823,true,579,25736.687963977576,0.0,2309.537779830974,1726770.2314181936,700.0,405300.0,243.48822099425288,977253.419172279,1156.706834991513,51475.09753649151,0.0,0.0,887.631307019254,697075.5258143933,21.711416825954146,966.188895027673,-2309.537779830974,-2989236.955004507,true,true,7.912736376,6182.887031035997,0.0,1.2,579.0,7.912736376,6182.887031035997,0.0,121.92,0.0 +580,24759.537779830975,24059.537779830975,0.12,1140.3368813510483,2990377.2918858584,700.0,406000.0,15336.140677925403,13403025.03494825,14195.803796574355,10412647.743062397,true,580,24059.537779830975,0.0,1140.3368813510483,1727910.5682995445,700.0,406000.0,247.66221466551207,977501.0813869445,0.0,51475.09753649151,0.0,0.0,892.6746666855363,697968.2004810788,0.0,966.188895027673,-1140.3368813510483,-2990377.2918858584,true,true,7.912736376,6190.799767411997,0.0,1.2,580.0,7.912736376,6190.799767411997,0.0,121.92,0.0 +581,23590.33688135105,22890.33688135105,0.12,0.0,2990377.2918858584,700.0,406700.0,6999.999999999999,13410025.03494825,6999.999999999999,10419647.743062397,true,581,22890.33688135105,0.0,-47.298723803960314,1727863.2695757404,700.0,406700.0,243.48822099425288,977744.5696079388,-1156.706834991513,50318.39070149999,0.0,0.0,887.631307019254,698855.8317880981,-21.711416825954146,944.4774782017188,-0.0,-2990377.2918858584,true,true,7.823326926,6198.623094337997,0.0,1.2,581.0,7.823326926,6198.623094337997,0.0,121.92,0.0 +582,22450.0,21750.0,0.12,0.0,2990377.2918858584,700.0,407400.0,6999.999999999999,13417025.03494825,6999.999999999999,10426647.743062397,true,582,21750.0,0.0,-1788.2310774352143,1726075.0384983052,700.0,407400.0,229.24889519672996,977973.8185031355,-2834.2603809905618,47484.13032050943,0.0,0.0,869.9795480744509,699725.8113361725,-53.19913971583344,891.2783384858853,-0.0,-2990377.2918858584,true,true,7.599803299,6206.222897636997,0.0,1.2,582.0,7.599803299,6206.222897636997,0.0,121.92,0.0 +583,22450.0,21750.0,0.12,504.89579887553424,2990882.187684734,700.0,408100.0,10040.798323962785,13427065.833272213,9535.902525087251,10436183.645587485,true,583,21750.0,0.0,504.89579887553424,1726579.9342971807,700.0,408100.0,217.49489150363712,978191.3133946391,-556.9937742274183,46927.13654628201,0.0,0.0,854.8494689627888,700580.6608051353,-10.454787363473482,880.8235511224119,-504.89579887553424,-2990882.187684734,true,true,7.555098574,6213.777996210997,0.0,1.2,583.0,7.555098574,6213.777996210997,0.0,121.92,0.0 +584,22954.895798875536,22254.895798875536,0.12,0.0,2990882.187684734,700.0,408800.0,6999.999999999999,13434065.833272213,6999.999999999999,10443183.645587485,true,584,22254.895798875536,0.0,-627.6098301315064,1725952.3244670492,700.0,408800.0,209.8864428817867,978401.1998375208,-1651.264741233881,45275.871805048126,0.0,0.0,844.7627495738168,701425.4235547091,-30.994281353228892,849.829269769183,-0.0,-2990882.187684734,true,true,7.420984398,6221.198980608997,0.0,1.2,584.0,7.420984398,6221.198980608997,0.0,121.92,0.0 +585,22450.0,21750.0,0.16,3308.7636528096036,2994190.9513375433,700.0,409500.0,25054.77283006002,13459120.606102273,21746.009177250417,10464929.654764736,true,585,21750.0,0.0,3308.7636528096036,1729261.0881198589,700.0,409500.0,211.77163922464374,978612.9714767454,2208.2585154612993,47484.13032050942,0.0,0.0,847.2844294069579,702272.707984116,41.44906871670238,891.2783384858855,-3308.7636528096036,-2994190.9513375433,true,true,7.599803299,6228.798783907997,0.0,1.2,585.0,7.599803299,6228.798783907997,0.0,121.92,0.0 +586,25758.763652809605,25058.763652809605,0.16,1652.0562832900152,2995843.0076208333,700.0,410200.0,14700.351770562593,13473820.957872836,13048.295487272577,10477977.95025201,true,586,25058.763652809605,0.0,1652.0562832900152,1730913.144403149,700.0,410200.0,221.36711396728347,978834.3385907128,560.2798731691493,48044.410193678574,0.0,0.0,859.8928286290713,703132.6008127452,10.516467524511034,901.7948060103965,-1652.0562832900152,-2995843.0076208333,true,true,7.644508024,6236.443291931997,0.0,1.2,586.0,7.644508024,6236.443291931997,0.0,121.92,0.0 +587,24102.056283290014,23402.056283290014,0.12,510.46360190269445,2996353.471222736,700.0,410900.0,10087.196682522454,13483908.154555358,9576.733080619759,10487554.68333263,true,587,23402.056283290014,0.0,510.46360190269445,1731423.6080050515,700.0,410900.0,221.36711396728347,979055.7057046801,-560.2798731691493,47484.13032050942,0.0,0.0,859.8928286290713,703992.4936413743,-10.516467524511034,891.2783384858855,-510.46360190269445,-2996353.471222736,true,true,7.599803299,6244.043095230997,0.0,1.2,587.0,7.599803299,6244.043095230997,0.0,121.92,0.0 +588,22960.463601902695,22260.463601902695,0.12,0.0,2996353.471222736,700.0,411600.0,6999.999999999999,13490908.154555358,6999.999999999999,10494554.68333263,true,588,22260.463601902695,0.0,-1190.6515155464,1730232.956489505,700.0,411600.0,211.77163922464374,979267.4773439047,-2208.2585154612993,45275.871805048126,0.0,0.0,847.2844294069579,704839.7780707813,-41.44906871670238,849.829269769183,-0.0,-2996353.471222736,true,true,7.420984398,6251.464079628997,0.0,1.2,588.0,7.420984398,6251.464079628997,0.0,121.92,0.0 +589,22450.0,21750.0,0.12,483.07612131791245,2996836.5473440536,700.0,412300.0,9858.967677649272,13500767.122233007,9375.89155633136,10503930.574888961,true,589,21750.0,0.0,483.07612131791245,1730716.032610823,700.0,412300.0,202.45753623793578,979469.9348801426,-543.8493783869245,44732.0224266612,0.0,0.0,834.6760301848446,705674.4541009661,-10.208066717943383,839.6212030512396,-483.07612131791245,-2996836.5473440536,true,true,7.376279673,6258.840359301997,0.0,1.2,589.0,7.376279673,6258.840359301997,0.0,121.92,0.0 +590,22933.076121317914,22233.076121317914,0.12,1032.7824621481561,2997869.3298062016,700.0,413000.0,14439.853851234635,13515206.976084242,13407.071389086479,10517337.646278048,true,590,22233.076121317914,0.0,1032.7824621481561,1731748.8150729712,700.0,413000.0,200.62811179645269,979670.562991939,0.0,44732.0224266612,0.0,0.0,832.1543503517034,706506.6084513178,0.0,839.6212030512396,-1032.7824621481561,-2997869.3298062016,true,true,7.376279673,6266.216638974996,0.0,1.2,590.0,7.376279673,6266.216638974996,0.0,121.92,0.0 +591,23482.782462148156,22782.782462148156,0.16,1591.1910115276485,2999460.520817729,700.0,413700.0,14319.943822047804,13529526.91990629,12728.752810520156,10530066.399088569,true,591,22782.782462148156,0.0,1591.1910115276485,1733340.0060844987,700.0,413700.0,202.45753623793578,979873.0205281769,543.8493783869245,45275.871805048126,0.0,0.0,834.6760301848446,707341.2844815026,10.208066717943383,849.829269769183,-1591.1910115276485,-2999460.520817729,true,true,7.420984398,6273.637623372996,0.0,1.2,591.0,7.420984398,6273.637623372996,0.0,121.92,0.0 +592,24041.191011527648,23341.191011527648,0.16,3308.7636528096036,3002769.2844705386,700.0,414400.0,25054.77283006002,13554581.69273635,21746.009177250417,10551812.40826582,true,592,23341.191011527648,0.0,3308.7636528096036,1736648.7697373084,700.0,414400.0,211.77163922464374,980084.7921674015,2208.2585154612993,47484.13032050942,0.0,0.0,847.2844294069579,708188.5689109096,41.44906871670238,891.2783384858855,-3308.7636528096036,-3002769.2844705386,true,true,7.599803299,6281.237426671996,0.0,1.2,592.0,7.599803299,6281.237426671996,0.0,121.92,0.0 +593,25758.763652809605,25058.763652809605,0.22,4578.744132561729,3007348.0286031,700.0,415100.0,23994.291511644224,13578575.984247994,19415.547379082494,10571227.955644902,true,593,25058.763652809605,0.0,4578.744132561729,1741227.5138698702,700.0,415100.0,231.2481475903985,980316.040314992,3410.970749015447,50895.10106952487,0.0,0.0,872.501227907592,709061.0701388172,64.02400804829202,955.3023465341774,-4578.744132561729,-3007348.0286031,true,true,7.868031651,6289.105458322996,0.0,1.2,593.0,7.868031651,6289.105458322996,0.0,121.92,0.0 +594,27028.74413256173,26328.74413256173,0.22,6611.440126327473,3013959.4687294275,700.0,415800.0,33233.818756033965,13611809.803004028,26622.37862970649,10597850.334274609,true,594,26328.74413256173,0.0,6611.440126327473,1747838.9539961978,700.0,415800.0,262.64647223749085,980578.6867872295,5338.267805398675,56233.368874923544,0.0,0.0,910.3264256867469,709971.3965645039,100.19942300456049,1055.501769538738,-6611.440126327473,-3013959.4687294275,true,true,8.270374179,6297.375832501996,0.0,1.2,594.0,8.270374179,6297.375832501996,0.0,121.92,0.0 +595,29061.440126327474,28361.440126327474,0.22,5667.207561038012,3019626.6762904655,700.0,416500.0,28941.852550172778,13640751.655554201,23274.644989134766,10621124.979263743,true,595,28361.440126327474,0.0,5667.207561038012,1753506.1615572358,700.0,416500.0,299.13967455543167,980877.8264617849,4336.007609643123,60569.37648456667,0.0,0.0,950.6733032990429,710922.0698678029,81.38697354041373,1136.8887430791517,-5667.207561038012,-3019626.6762904655,true,true,8.583307256,6305.959139757996,0.0,1.2,595.0,8.583307256,6305.959139757996,0.0,121.92,0.0 +596,28117.207561038012,27417.207561038012,0.28,7930.125818435997,3027556.8021089016,700.0,417200.0,30821.877922985703,13671573.533477187,22891.752104549705,10644016.731368294,true,596,27417.207561038012,0.0,7930.125818435997,1761436.2873756718,700.0,417200.0,341.4590530780151,981219.2855148629,6473.614986095856,67042.99147066253,0.0,0.0,993.5418606880728,711915.611728491,121.5099185740529,1258.3986616532047,-7930.125818435997,-3027556.8021089016,true,true,9.030354508,6314.989494265996,0.0,1.2,596.0,9.030354508,6314.989494265996,0.0,121.92,0.0 +597,30380.125818435998,29680.125818435998,0.22,6946.500732980075,3034503.3028418818,700.0,417900.0,34756.821513545794,13706330.354990734,27810.32078056572,10671827.05214886,true,597,29680.125818435998,0.0,6946.500732980075,1768382.7881086518,700.0,417900.0,390.42859170390426,981609.7141065667,5415.491136410198,72458.48260707273,0.0,0.0,1038.932097966651,712954.5438264577,101.6489068993212,1360.047568552526,-6946.500732980075,-3034503.3028418818,true,true,9.387992311,6324.377486576996,0.0,1.2,597.0,9.387992311,6324.377486576996,0.0,121.92,0.0 +598,29396.500732980076,28696.500732980076,0.16,2182.91264855468,3036686.2154904366,700.0,418600.0,18018.20405346675,13724348.5590442,15835.29140491207,10687662.343553772,true,598,28696.500732980076,0.0,2182.91264855468,1770565.7007572064,700.0,418600.0,416.5779262169679,982026.2920327837,691.7238317209973,73150.20643879373,0.0,0.0,1061.6272166341441,714016.1710430918,12.983673982570316,1373.0312425350962,-2182.91264855468,-3036686.2154904366,true,true,9.432697036,6333.810183612995,0.0,1.2,598.0,9.432697036,6333.810183612995,0.0,121.92,0.0 +599,24632.91264855468,23932.91264855468,0.16,2197.269013686822,3038883.4845041237,700.0,419300.0,18107.931335542635,13742456.490379743,15910.662321855812,10703573.005875628,true,599,23932.91264855468,0.0,2197.269013686822,1772762.9697708932,700.0,419300.0,422.5431525800708,982448.8351853638,695.0099306627167,73845.21636945645,0.0,0.0,1066.6705763004265,715082.8416193923,13.045354143607682,1386.076596678704,-2197.269013686822,-3038883.4845041237,true,true,9.477401761,6343.287585373995,0.0,1.2,599.0,9.477401761,6343.287585373995,0.0,121.92,0.0 +600,24647.269013686822,23947.269013686822,0.16,4382.682701856997,3043266.1672059805,700.0,420000.0,31766.766886606227,13774223.25726635,27384.08418474923,10730957.090060377,true,600,23947.269013686822,0.0,4382.682701856997,1777145.6524727503,700.0,420000.0,437.7047636739287,982886.5399490377,2812.900743823274,76658.11711327973,0.0,0.0,1079.2789755789472,716162.1205949712,52.79821878084691,1438.8748154595507,-4382.682701856997,-3043266.1672059805,true,true,9.656220663,6352.943806036995,0.0,1.2,600.0,9.656220663,6352.943806036995,0.0,121.92,0.0 +601,26832.682701856997,26132.682701856997,0.16,4481.426411793497,3047747.593617774,700.0,420700.0,32383.91507370936,13806607.17234006,27902.48866191586,10758859.578722293,true,601,26132.682701856997,0.0,4481.426411793497,1781627.0788845439,700.0,420700.0,462.71058440838954,983349.2505334461,2865.478311895824,79523.59542517556,0.0,0.0,1099.4524144132988,717261.5730093846,53.7851010759847,1492.6599165355356,-4481.426411793497,-3047747.593617774,true,true,9.835039564,6362.778845600995,0.0,1.2,601.0,9.835039564,6362.778845600995,0.0,121.92,0.0 +602,26931.426411793498,26231.426411793498,0.22,4581.104743134707,3052328.698360909,700.0,421400.0,24005.021559703215,13830612.193899764,19423.916816568508,10778283.49553886,true,602,26231.426411793498,0.0,4581.104743134707,1786208.1836276785,700.0,421400.0,488.6510948829833,983837.9016283291,2918.055813224185,82441.65123839975,0.0,0.0,1119.625852909206,718381.1988622937,54.77198211833273,1547.4318986538683,-4581.104743134707,-3052328.698360909,true,true,10.01385846,6372.792704060995,0.0,1.2,602.0,10.01385846,6372.792704060995,0.0,121.92,0.0 +603,27031.104743134707,26331.104743134707,0.16,2389.1569314204653,3054717.855292329,700.0,422100.0,19307.230821377907,13849919.424721142,16918.073889957443,10795201.569428818,true,603,26331.104743134707,0.0,2389.1569314204653,1788597.340559099,700.0,422100.0,505.34618197425993,984343.2478103033,737.729299526981,83179.38053792673,0.0,0.0,1132.2342521313194,719513.433114425,13.847197787905301,1561.2790964417736,-2389.1569314204653,-3054717.855292329,true,true,10.05856319,6382.851267250995,0.0,1.2,603.0,10.05856319,6382.851267250995,0.0,121.92,0.0 +604,24839.156931420464,24139.156931420464,0.16,1643.4861179874674,3056361.3414103165,700.0,422800.0,14646.788237421672,13864566.212958563,13003.302119434204,10808204.871548252,true,604,24139.156931420464,0.0,1643.4861179874674,1790240.8266770865,700.0,422800.0,508.7301857409698,984851.9779960443,0.0,83179.38053792673,0.0,0.0,1134.7559322464977,720648.1890466715,0.0,1561.2790964417736,-1643.4861179874674,-3056361.3414103165,true,true,10.05856319,6392.909830440995,0.0,1.2,604.0,10.05856319,6392.909830440995,0.0,121.92,0.0 +605,24093.486117987468,23393.486117987468,0.16,1643.4861179874674,3058004.827528304,700.0,423500.0,14646.788237421672,13879213.001195984,13003.302119434204,10821208.173667686,true,605,23393.486117987468,0.0,1643.4861179874674,1791884.312795074,700.0,423500.0,508.7301857409698,985360.7081817853,0.0,83179.38053792673,0.0,0.0,1134.7559322464977,721782.944978918,0.0,1561.2790964417736,-1643.4861179874674,-3058004.827528304,true,true,10.05856319,6402.968393630996,0.0,1.2,605.0,10.05856319,6402.968393630996,0.0,121.92,0.0 +606,24093.486117987468,23393.486117987468,0.16,3168.538902581344,3061173.366430885,700.0,424200.0,24178.368141133396,13903391.369337117,21009.829238552054,10842218.002906239,true,606,23393.486117987468,0.0,3168.538902581344,1795052.8516976554,700.0,424200.0,515.5434464761125,985876.2516282614,1485.316731224108,84664.69726915084,0.0,0.0,1139.7992919127803,722922.7442708308,27.879432968343128,1589.1585294101167,-3168.538902581344,-3061173.366430885,true,true,10.14797264,6413.116366270996,0.0,1.2,606.0,10.14797264,6413.116366270996,0.0,121.92,0.0 +607,25618.538902581342,24918.538902581342,0.28,9494.611207310241,3070667.9776381953,700.0,424900.0,36409.32574039372,13939800.69507751,26914.714533083476,10869132.717439322,true,607,24918.538902581342,0.0,9494.611207310241,1804547.4629049657,700.0,424900.0,557.7041902707559,986433.9558185322,7623.749592625046,92288.44686177588,0.0,0.0,1170.0594499104743,724092.8037207412,143.09797450396636,1732.256503914083,-9494.611207310241,-3070667.9776381953,true,true,10.59501989,6423.711386160996,0.0,1.2,607.0,10.59501989,6423.711386160996,0.0,121.92,0.0 +608,31944.61120731024,31244.61120731024,0.33,13315.391332578527,3083983.3689707736,700.0,425600.0,42470.88282599553,13982271.577903505,29155.49149341701,10898288.208932739,true,608,31244.61120731024,0.0,13315.391332578527,1817862.8542375444,700.0,425600.0,648.7978948956069,987082.7537134278,11225.314236390013,103513.7610981659,0.0,0.0,1230.579766469937,725323.3834872111,210.69943482296983,1942.9559387370527,-13315.391332578527,-3083983.3689707736,true,true,11.22088605,6434.932272210996,0.0,1.2,608.0,11.22088605,6434.932272210996,0.0,121.92,0.0 +609,35765.391332578525,35065.391332578525,0.28,9731.721799479632,3093715.0907702534,700.0,426300.0,37256.149283855826,14019527.727187362,27524.427484376196,10925812.636417115,true,609,35065.391332578525,0.0,9731.721799479632,1827594.576037024,700.0,426300.0,744.925201254789,987827.6789146826,7556.384661715717,111070.1457598816,0.0,0.0,1288.578403478296,726611.9618906893,141.8335330308298,2084.789471767883,-9731.721799479632,-3093715.0907702534,true,true,11.62322858,6446.555500790996,0.0,1.2,609.0,11.62322858,6446.555500790996,0.0,121.92,0.0 +610,32181.72179947963,31481.72179947963,0.22,6525.6866177149905,3100240.7773879683,700.0,427000.0,32844.03008052269,14052371.757267885,26318.343462807698,10952130.979879923,true,610,31481.72179947963,0.0,6525.6866177149905,1834120.262654739,700.0,427000.0,807.8446934421324,988635.5236081247,4313.004793045029,115383.15055292663,0.0,0.0,1323.8819211422724,727935.8438118316,80.95521008555681,2165.7446818534395,-6525.6866177149905,-3100240.7773879683,true,true,11.8467522,6458.402252990996,0.0,1.2,610.0,11.8467522,6458.402252990996,0.0,121.92,0.0 +611,28975.68661771499,28275.68661771499,0.22,6681.645515173623,3106922.422903142,700.0,427700.0,33552.934159880104,14085924.691427765,26871.28864470648,10979002.26852463,true,611,28275.68661771499,0.0,6681.645515173623,1840801.9081699126,700.0,427700.0,854.892116550642,989490.4157246753,4395.157461381533,119778.30801430816,0.0,0.0,1349.098719473684,729284.9425313052,82.49721776776443,2248.241899621204,-6681.645515173623,-3106922.422903142,true,true,12.07027583,6470.472528820997,0.0,1.2,611.0,12.07027583,6470.472528820997,0.0,121.92,0.0 +612,29131.645515173623,28431.645515173623,0.12,0.0,3106922.422903142,700.0,428400.0,6999.999999999999,14092924.691427765,6999.999999999999,10986002.26852463,true,612,28431.645515173623,0.0,-5824.646342892751,1834977.26182702,700.0,428400.0,835.8599747073729,990326.2756993826,-7852.133570148046,111926.17444416012,0.0,0.0,1339.0120001411194,730623.9545314463,-147.38474759319732,2100.8571520280066,-0.0,-3106922.422903142,true,true,11.6679333,6482.140462120997,0.0,1.2,612.0,11.6679333,6482.140462120997,0.0,121.92,0.0 +613,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,429100.0,6999.999999999999,14099924.691427765,6999.999999999999,10993002.26852463,true,613,21750.0,0.0,-25125.659929191945,1809851.601897828,700.0,429100.0,652.7945857291613,990979.0702851118,-26513.889577186943,85412.28486697318,0.0,0.0,1233.1014465851156,731857.0559780315,-497.6663843192779,1603.1907677087288,-0.0,-3106922.422903142,true,true,10.19267737,6492.3331394909965,0.0,1.2,613.0,10.19267737,6492.3331394909965,0.0,121.92,0.0 +614,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,429800.0,6999.999999999999,14106924.691427765,6999.999999999999,11000002.26852463,true,614,21750.0,0.0,-21876.610895916267,1787974.9910019117,700.0,429800.0,422.5431528482089,991401.61343796,-22935.327934375055,62476.95693259812,0.0,0.0,1066.6705765260563,732923.7265545576,-430.4966909154778,1172.694076793251,-0.0,-3106922.422903142,true,true,8.717421431,6501.050560921996,0.0,1.2,614.0,8.717421431,6501.050560921996,0.0,121.92,0.0 +615,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,430500.0,6999.999999999999,14113924.691427765,6999.999999999999,11007002.26852463,true,615,21750.0,0.0,-18565.841123733273,1769409.1498781785,700.0,430500.0,254.01222253380163,991655.6256604939,-19356.766059355312,43120.19087324281,0.0,0.0,900.2397062413673,733823.966260799,-363.3269931531311,809.36708364012,-0.0,-3106922.422903142,true,true,7.242165497,6508.292726418997,0.0,1.2,615.0,7.242165497,6508.292726418997,0.0,121.92,0.0 +616,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,431200.0,6999.999999999999,14120924.691427765,6999.999999999999,11014002.26852463,true,616,21750.0,0.0,-15202.981092707256,1754206.1687854712,700.0,431200.0,137.57164586774223,991793.1973063616,-15778.204277615652,27341.98659562716,0.0,0.0,733.8088361823081,734557.7750969813,-296.15729714165326,513.2097864984667,-0.0,-3106922.422903142,true,true,5.766909562,6514.059635980997,0.0,1.2,616.0,5.766909562,6514.059635980997,0.0,121.92,0.0 +617,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,431900.0,6999.999999999999,14127924.691427765,6999.999999999999,11021002.26852463,true,617,21750.0,0.0,-11797.660835873337,1742408.507949598,700.0,431900.0,63.59127321762125,991856.7885795792,-12199.642474485532,15142.344121141628,0.0,0.0,567.3779661232489,735125.1530631046,-228.9876007286765,284.22218576979014,-0.0,-3106922.422903142,true,true,4.291653628,6518.351289608997,0.0,1.2,617.0,4.291653628,6518.351289608997,0.0,121.92,0.0 +618,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,432600.0,6999.999999999999,14134924.691427765,6999.999999999999,11028002.26852463,true,618,21750.0,0.0,-8359.510541237192,1734048.9974083607,700.0,432600.0,22.440955219167233,991879.2295347984,-8621.080687894411,6521.263433247217,0.0,0.0,400.94709606418974,735526.1001591688,-161.81790462613696,122.40428114365318,-0.0,-3106922.422903142,true,true,2.816397693,6521.167687301997,0.0,1.2,618.0,2.816397693,6521.167687301997,0.0,121.92,0.0 +619,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,433300.0,6999.999999999999,14141924.691427765,6999.999999999999,11035002.26852463,true,619,21750.0,0.0,-4898.160329406713,1729150.837078954,700.0,433300.0,4.490542508108848,991883.7200773065,-5042.518889615731,1478.7445436314865,0.0,0.0,234.51622600513053,735760.616385174,-94.6482083042216,27.75607283943158,-0.0,-3106922.422903142,true,true,1.341141759,6522.5088290609965,0.0,1.2,619.0,1.341141759,6522.5088290609965,0.0,121.92,0.0 +620,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,434000.0,6999.999999999999,14148924.691427765,6999.999999999999,11042002.26852463,true,620,21750.0,0.0,-1430.6994860991088,1727720.137592855,700.0,434000.0,0.1507348699615692,991883.8708121765,-1478.7445436315438,-5.729816621169448e-11,0.0,0.0,75.65039550190235,735836.2667806759,-27.75607283942872,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,620.0,0.0,6522.5088290609965,0.0,121.92,0.0 +621,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,434700.0,6999.999999999999,14155924.691427765,6999.999999999999,11049002.26852463,true,621,21750.0,0.0,0.0,1727720.137592855,700.0,434700.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,621.0,0.0,6522.5088290609965,0.0,121.92,0.0 +622,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,435400.0,6999.999999999999,14162924.691427765,6999.999999999999,11056002.26852463,true,622,21750.0,0.0,0.0,1727720.137592855,700.0,435400.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,622.0,0.0,6522.5088290609965,0.0,121.92,0.0 +623,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,436100.0,6999.999999999999,14169924.691427765,6999.999999999999,11063002.26852463,true,623,21750.0,0.0,0.0,1727720.137592855,700.0,436100.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,623.0,0.0,6522.5088290609965,0.0,121.92,0.0 +624,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,436800.0,6999.999999999999,14176924.691427765,6999.999999999999,11070002.26852463,true,624,21750.0,0.0,0.0,1727720.137592855,700.0,436800.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,624.0,0.0,6522.5088290609965,0.0,121.92,0.0 +625,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,437500.0,6999.999999999999,14183924.691427765,6999.999999999999,11077002.26852463,true,625,21750.0,0.0,0.0,1727720.137592855,700.0,437500.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,625.0,0.0,6522.5088290609965,0.0,121.92,0.0 +626,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,438200.0,6999.999999999999,14190924.691427765,6999.999999999999,11084002.26852463,true,626,21750.0,0.0,0.0,1727720.137592855,700.0,438200.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,626.0,0.0,6522.5088290609965,0.0,121.92,0.0 +627,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,438900.0,6999.999999999999,14197924.691427765,6999.999999999999,11091002.26852463,true,627,21750.0,0.0,0.0,1727720.137592855,700.0,438900.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,627.0,0.0,6522.5088290609965,0.0,121.92,0.0 +628,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,439600.0,6999.999999999999,14204924.691427765,6999.999999999999,11098002.26852463,true,628,21750.0,0.0,0.0,1727720.137592855,700.0,439600.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,628.0,0.0,6522.5088290609965,0.0,121.92,0.0 +629,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,440300.0,6999.999999999999,14211924.691427765,6999.999999999999,11105002.26852463,true,629,21750.0,0.0,0.0,1727720.137592855,700.0,440300.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,629.0,0.0,6522.5088290609965,0.0,121.92,0.0 +630,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,441000.0,6999.999999999999,14218924.691427765,6999.999999999999,11112002.26852463,true,630,21750.0,0.0,0.0,1727720.137592855,700.0,441000.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,630.0,0.0,6522.5088290609965,0.0,121.92,0.0 +631,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,441700.0,6999.999999999999,14225924.691427765,6999.999999999999,11119002.26852463,true,631,21750.0,0.0,0.0,1727720.137592855,700.0,441700.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,631.0,0.0,6522.5088290609965,0.0,121.92,0.0 +632,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,442400.0,6999.999999999999,14232924.691427765,6999.999999999999,11126002.26852463,true,632,21750.0,0.0,0.0,1727720.137592855,700.0,442400.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,632.0,0.0,6522.5088290609965,0.0,121.92,0.0 +633,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,443100.0,6999.999999999999,14239924.691427765,6999.999999999999,11133002.26852463,true,633,21750.0,0.0,0.0,1727720.137592855,700.0,443100.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,633.0,0.0,6522.5088290609965,0.0,121.92,0.0 +634,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,443800.0,6999.999999999999,14246924.691427765,6999.999999999999,11140002.26852463,true,634,21750.0,0.0,0.0,1727720.137592855,700.0,443800.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,634.0,0.0,6522.5088290609965,0.0,121.92,0.0 +635,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,444500.0,6999.999999999999,14253924.691427765,6999.999999999999,11147002.26852463,true,635,21750.0,0.0,0.0,1727720.137592855,700.0,444500.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,635.0,0.0,6522.5088290609965,0.0,121.92,0.0 +636,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,445200.0,6999.999999999999,14260924.691427765,6999.999999999999,11154002.26852463,true,636,21750.0,0.0,0.0,1727720.137592855,700.0,445200.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,636.0,0.0,6522.5088290609965,0.0,121.92,0.0 +637,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,445900.0,6999.999999999999,14267924.691427765,6999.999999999999,11161002.26852463,true,637,21750.0,0.0,0.0,1727720.137592855,700.0,445900.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,637.0,0.0,6522.5088290609965,0.0,121.92,0.0 +638,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,446600.0,6999.999999999999,14274924.691427765,6999.999999999999,11168002.26852463,true,638,21750.0,0.0,0.0,1727720.137592855,700.0,446600.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,638.0,0.0,6522.5088290609965,0.0,121.92,0.0 +639,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,447300.0,6999.999999999999,14281924.691427765,6999.999999999999,11175002.26852463,true,639,21750.0,0.0,0.0,1727720.137592855,700.0,447300.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,639.0,0.0,6522.5088290609965,0.0,121.92,0.0 +640,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,448000.0,6999.999999999999,14288924.691427765,6999.999999999999,11182002.26852463,true,640,21750.0,0.0,0.0,1727720.137592855,700.0,448000.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,640.0,0.0,6522.5088290609965,0.0,121.92,0.0 +641,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,448700.0,6999.999999999999,14295924.691427765,6999.999999999999,11189002.26852463,true,641,21750.0,0.0,0.0,1727720.137592855,700.0,448700.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,641.0,0.0,6522.5088290609965,0.0,121.92,0.0 +642,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,449400.0,6999.999999999999,14302924.691427765,6999.999999999999,11196002.26852463,true,642,21750.0,0.0,0.0,1727720.137592855,700.0,449400.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,642.0,0.0,6522.5088290609965,0.0,121.92,0.0 +643,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,450100.0,6999.999999999999,14309924.691427765,6999.999999999999,11203002.26852463,true,643,21750.0,0.0,0.0,1727720.137592855,700.0,450100.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,643.0,0.0,6522.5088290609965,0.0,121.92,0.0 +644,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,450800.0,6999.999999999999,14316924.691427765,6999.999999999999,11210002.26852463,true,644,21750.0,0.0,0.0,1727720.137592855,700.0,450800.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,644.0,0.0,6522.5088290609965,0.0,121.92,0.0 +645,22450.0,21750.0,0.12,0.0,3106922.422903142,700.0,451500.0,6999.999999999999,14323924.691427765,6999.999999999999,11217002.26852463,true,645,21750.0,0.0,0.0,1727720.137592855,700.0,451500.0,0.0,991883.8708121765,0.0,-5.729816621169448e-11,0.0,0.0,0.0,735836.2667806759,0.0,2.8599345114344032e-12,-0.0,-3106922.422903142,true,true,0.0,6522.5088290609965,0.0,1.2,645.0,0.0,6522.5088290609965,0.0,121.92,0.0 +646,22450.0,21750.0,0.12,720.034088727615,3107642.4569918695,700.0,452200.0,11833.617406063458,14335758.308833828,11113.583317335844,11228115.851841966,true,646,21750.0,0.0,720.034088727615,1728440.1716815825,700.0,452200.0,0.044662183692316795,991883.9154743602,657.2197971695749,657.2197971695176,0.0,0.0,50.433597001268225,735886.7003776771,12.336032373079432,12.336032373082292,-720.034088727615,-3107642.4569918695,true,true,0.894094506,6523.402923566997,0.0,1.2,646.0,0.894094506,6523.402923566997,0.0,121.92,0.0 +647,23170.034088727614,22470.034088727614,0.16,2885.5129150817775,3110527.9699069513,700.0,452900.0,22409.45571926111,14358167.764553089,19523.942804179333,11247639.794646146,true,647,22470.034088727614,0.0,2885.5129150817775,1731325.6845966643,700.0,452900.0,1.533169023771379,991885.448643384,2669.955424347497,3327.1752215170145,0.0,0.0,163.90919022591802,736050.609567903,50.11513148459141,62.4511638576737,-2885.5129150817775,-3110527.9699069513,true,true,2.011712638,6525.414636204997,0.0,1.2,647.0,2.011712638,6525.414636204997,0.0,121.92,0.0 +648,25335.512915081777,24635.512915081777,0.22,7114.873199107125,3117642.8431060584,700.0,453600.0,35522.15090503239,14393689.91545812,28407.277705925262,11276047.07235207,true,648,24635.512915081777,0.0,7114.873199107125,1738440.5577957714,700.0,453600.0,10.388797967520132,991895.8374413516,6669.137891138753,9996.313112655767,0.0,0.0,310.1666215070329,736360.77618941,125.17988849381992,187.63105235149362,-7114.873199107125,-3117642.8431060584,true,true,3.486968573,6528.901604777997,0.0,1.2,648.0,3.486968573,6528.901604777997,0.0,121.92,0.0 +649,29564.873199107125,28864.873199107125,0.28,7717.664061668641,3125360.507167727,700.0,454300.0,30063.08593453086,14423753.001392651,22345.421872862218,11298392.494224932,true,649,28864.873199107125,0.0,7717.664061668641,1746158.22185744,700.0,454300.0,32.55873189956051,991928.3961732512,7097.973807226208,17094.286919881975,0.0,0.0,453.9023729550066,736814.678562365,133.2291495878662,320.86020193935985,-7717.664061668641,-3125360.507167727,true,true,4.55988198,6533.461486757997,0.0,1.2,649.0,4.55988198,6533.461486757997,0.0,121.92,0.0 +650,30167.66406166864,29467.66406166864,0.28,9377.100940154018,3134737.608107881,700.0,455000.0,35989.646214835775,14459742.647607487,26612.545274681757,11325005.039499614,true,650,29467.66406166864,0.0,9377.100940154018,1755535.322797594,700.0,455000.0,65.30215866074403,991993.6983319119,8578.361393271975,25672.64831315395,0.0,0.0,572.4213258459387,737387.099888211,161.01606237536012,481.87626431471995,-9377.100940154018,-3134737.608107881,true,true,5.588090661,6539.049577418997,0.0,1.2,650.0,5.588090661,6539.049577418997,0.0,121.92,0.0 +651,31827.100940154018,31127.100940154018,0.28,7425.849530971647,3142163.4576388528,700.0,455700.0,29020.891182041596,14488763.538789527,21595.04165106995,11346600.081150685,true,651,31127.100940154018,0.0,7425.849530971647,1762961.1723285655,700.0,455700.0,103.89331120861812,992097.5916431205,6531.1217378642295,32203.77005101818,0.0,0.0,668.2451601257854,738055.3450483368,122.58932177301392,604.4655860877339,-7425.849530971647,-3142163.4576388528,true,true,6.258661541,6545.308238959997,0.0,1.2,651.0,6.258661541,6545.308238959997,0.0,121.92,0.0 +652,29875.849530971645,29175.849530971645,0.28,7255.125285806993,3149418.58292466,700.0,456400.0,28411.161735024973,14517174.700524552,21156.03644921798,11367756.117599903,true,652,29175.849530971645,0.0,7255.125285806993,1770216.2976143726,700.0,456400.0,140.4277143674655,992238.019357488,6258.375507469806,38462.14555848799,0.0,0.0,738.852195904998,738794.1972442418,117.46986806472437,721.9354541524582,-7255.125285806993,-3149418.58292466,true,true,6.839822969,6552.148061928997,0.0,1.2,652.0,6.839822969,6552.148061928997,0.0,121.92,0.0 +653,29705.125285806993,29005.125285806993,0.33,13102.900548737782,3162521.483473398,700.0,457100.0,41826.97135981146,14559001.671884364,28724.07081107368,11396480.188410977,true,653,29005.125285806993,0.0,13102.900548737782,1783319.1981631103,700.0,457100.0,197.00239104748354,992435.0217485355,11856.245143012024,50318.390701500015,0.0,0.0,827.1109906290136,739621.3082348709,222.542024049261,944.4774782017191,-13102.900548737782,-3162521.483473398,true,true,7.823326926,6559.971388854997,0.0,1.2,653.0,7.823326926,6559.971388854997,0.0,121.92,0.0 +654,35552.90054873778,34852.90054873778,0.33,14261.900133308955,3176783.3836067067,700.0,457800.0,45339.09131305743,14604340.76319742,31077.19117974848,11427557.379590726,true,654,34852.90054873778,0.0,14261.900133308955,1797581.0982964193,700.0,457800.0,285.08324596676135,992720.1049945023,12800.998592732745,63119.38929423276,0.0,0.0,935.543224187381,740556.8514590582,240.27507042206602,1184.752548623785,-14261.900133308955,-3176783.3836067067,true,true,8.762126157,6568.733515011997,0.0,1.2,654.0,8.762126157,6568.733515011997,0.0,121.92,0.0 +655,36711.900133308955,36011.900133308955,0.28,10911.808588784128,3187695.192195491,700.0,458500.0,41470.74495994331,14645811.508157363,30558.93637115918,11458116.315961884,true,655,36011.900133308955,0.0,10911.808588784128,1808492.9068852034,700.0,458500.0,373.61823710399904,993093.7232316063,9339.09331283999,72458.48260707274,0.0,0.0,1023.8020189113968,741580.6534779696,175.29501992874089,1360.047568552526,-10911.808588784128,-3187695.192195491,true,true,9.387992311,6578.121507322997,0.0,1.2,655.0,9.387992311,6578.121507322997,0.0,121.92,0.0 +656,33361.80858878413,32661.80858878413,0.28,10216.90114369429,3197912.093339185,700.0,459200.0,38988.93265605103,14684800.440813415,28772.03151235674,11486888.347474242,true,656,32661.80858878413,0.0,10216.90114369429,1818709.8080288977,700.0,459200.0,450.09190962570625,993543.815141232,8517.568559762447,80976.05116683518,0.0,0.0,1089.3656949679196,742670.0191729375,159.87497933821726,1519.9225478907433,-10216.90114369429,-3197912.093339185,true,true,9.924449014,6588.045956336997,0.0,1.2,656.0,9.924449014,6588.045956336997,0.0,121.92,0.0 +657,32666.90114369429,31966.90114369429,0.28,10051.05858107818,3207963.151920263,700.0,459900.0,38396.63778956492,14723197.078602979,28345.579208486743,11515233.92668273,true,657,31966.90114369429,0.0,10051.05858107818,1828760.866609976,700.0,459900.0,525.876974843341,994069.6921160753,8223.46267058974,89199.51383742492,0.0,0.0,1147.3643313557964,743817.3835042933,154.35460428930247,1674.2771521800457,-10051.05858107818,-3207963.151920263,true,true,10.41620099,6598.462157326997,0.0,1.2,657.0,10.41620099,6598.462157326997,0.0,121.92,0.0 +658,32501.058581078178,31801.058581078178,0.28,11416.518190638431,3219379.670110902,700.0,460600.0,43273.27925228011,14766470.357855259,31856.76106164168,11547090.687744372,true,658,31801.058581078178,0.0,11416.518190638431,1840177.3848006143,700.0,460600.0,609.7245138395898,994679.4166299149,9424.532002348078,98624.045839773,0.0,0.0,1205.3629681385253,745022.7464724318,176.89870631223778,1851.1758584922836,-11416.518190638431,-3219379.670110902,true,true,10.9526577,6609.414815026997,0.0,1.2,658.0,10.9526577,6609.414815026997,0.0,121.92,0.0 +659,33866.51819063843,33166.51819063843,0.28,8614.078495819325,3227993.748606721,700.0,461300.0,33264.566056497584,14799734.923911756,24650.48756067826,11571741.17530505,true,659,33166.51819063843,0.0,8614.078495819325,1848791.4632964337,700.0,461300.0,689.5059127814737,995368.9225426964,6545.9091360577695,105169.95497583077,0.0,0.0,1255.7965653654232,746278.5430377972,122.86688161465955,1974.0427401069433,-8614.078495819325,-3227993.748606721,true,true,11.3102955,6620.725110526997,0.0,1.2,659.0,11.3102955,6620.725110526997,0.0,121.92,0.0 +660,31064.078495819325,30364.078495819325,0.22,4575.777022908078,3232569.525629629,700.0,462000.0,23980.804649582173,14823715.728561338,19405.027626674095,11591146.202931724,true,660,30364.078495819325,0.0,4575.777022908078,1853367.2403193417,700.0,462000.0,736.2127136917738,996105.1352563881,2508.9364644717944,107678.89144030257,0.0,0.0,1283.535043247939,747562.0780810452,47.092801496571106,2021.1355416035144,-4575.777022908078,-3232569.525629629,true,true,11.44440967,6632.169520196997,0.0,1.2,660.0,11.44440967,6632.169520196997,0.0,121.92,0.0 +661,27025.777022908078,26325.777022908078,0.22,5523.101599212765,3238092.6272288417,700.0,462700.0,28286.825450967113,14852002.554012306,22763.72385175435,11613909.92678348,true,661,26325.777022908078,0.0,5523.101599212765,1858890.3419185544,700.0,462700.0,767.0065471074023,996872.1418034955,3391.2543195790295,111070.1457598816,0.0,0.0,1301.1868023619645,748863.2648834072,63.65393016436861,2084.7894717678832,-5523.101599212765,-3238092.6272288417,true,true,11.62322858,6643.792748776997,0.0,1.2,661.0,11.62322858,6643.792748776997,0.0,121.92,0.0 +662,27973.101599212765,27273.101599212765,0.16,2975.4115669272996,3241068.0387957687,700.0,463400.0,22971.322293295623,14874973.876305602,19995.910726368325,11633905.837509848,true,662,27273.101599212765,0.0,2975.4115669272996,1861865.7534854817,700.0,463400.0,789.5200005789521,997661.6618040744,856.0286842785162,111926.17444416012,0.0,0.0,1313.7952018097076,750177.0600852169,16.067680260123925,2100.857152028007,-2975.4115669272996,-3241068.0387957687,true,true,11.6679333,6655.460682076997,0.0,1.2,662.0,11.6679333,6655.460682076997,0.0,121.92,0.0 +663,25425.4115669273,24725.4115669273,0.16,2992.930210099008,3244060.969005868,700.0,464100.0,23080.8138131188,14898054.69011872,20087.883603019793,11653993.721112868,true,663,24725.4115669273,0.0,2992.930210099008,1864858.6836955808,700.0,464100.0,798.6473095279091,998460.3091136024,859.3149750728685,112785.48941923298,0.0,0.0,1318.8385614759902,751495.8986466929,16.129364022240278,2116.9865160502472,-2992.930210099008,-3244060.969005868,true,true,11.71263803,6667.1733201069965,0.0,1.2,663.0,11.71263803,6667.1733201069965,0.0,121.92,0.0 +664,25442.93021009901,24742.93021009901,0.16,2124.5974674715526,3246185.566473339,700.0,464800.0,17653.734171697204,14915708.424290419,15529.136704225652,11669522.857817093,true,664,24742.93021009901,0.0,2124.5974674715526,1866983.2811630524,700.0,464800.0,803.2372258803839,999263.5463394828,0.0,112785.48941923298,0.0,0.0,1321.3602415911685,752817.258888284,0.0,2116.9865160502472,-2124.5974674715526,-3246185.566473339,true,true,11.71263803,6678.885958136996,0.0,1.2,664.0,11.71263803,6678.885958136996,0.0,121.92,0.0 +665,24574.597467471554,23874.597467471554,0.16,3899.8051690733823,3250085.3716424126,700.0,465500.0,28748.782306708643,14944457.206597127,24848.977137635262,11694371.834954727,true,665,23874.597467471554,0.0,3899.8051690733823,1870883.0863321258,700.0,465500.0,812.4697477710857,1000076.0160872538,1728.488055118332,114513.97747435131,0.0,0.0,1326.4036012574509,754143.6624895415,32.443764926513666,2149.430280976761,-3899.8051690733823,-3250085.3716424126,true,true,11.80204748,6690.688005616996,0.0,1.2,665.0,11.80204748,6690.688005616996,0.0,121.92,0.0 +666,26349.805169073385,25649.805169073385,0.16,3045.9068779855957,3253131.2785203983,700.0,466200.0,23411.917987409972,14967869.124584537,20366.011109424377,11714737.846064152,true,666,25649.805169073385,0.0,3045.9068779855957,1873928.9932101115,700.0,466200.0,826.4507580587675,1000902.4668453126,869.1730785753125,115383.15055292663,0.0,0.0,1333.968640474837,755477.6311300163,16.314400876678945,2165.74468185344,-3045.9068779855957,-3253131.2785203983,true,true,11.8467522,6702.534757816996,0.0,1.2,666.0,11.8467522,6702.534757816996,0.0,121.92,0.0 +667,25495.906877985595,24795.906877985595,0.16,2167.6368092739363,3255298.9153296724,700.0,466900.0,17922.7300579621,14985791.8546425,15755.093248688165,11730492.93931284,true,667,24795.906877985595,0.0,2167.6368092739363,1876096.6300193854,700.0,466900.0,831.1464892479954,1001733.6133345607,0.0,115383.15055292663,0.0,0.0,1336.490320025941,756814.1214500422,0.0,2165.74468185344,-2167.6368092739363,-3255298.9153296724,true,true,11.8467522,6714.381510016996,0.0,1.2,667.0,11.8467522,6714.381510016996,0.0,121.92,0.0 +668,24617.636809273936,23917.636809273936,0.12,0.0,3255298.9153296724,700.0,467600.0,6999.999999999999,14992791.8546425,6999.999999999999,11737492.93931284,true,668,23917.636809273936,0.0,-2262.2333885461812,1873834.3966308392,700.0,467600.0,807.8446934421324,1002541.4580280028,-4313.004793045029,111070.1457598816,0.0,0.0,1323.8819211422724,758138.0033711845,-80.95521008555681,2084.7894717678832,-0.0,-3255298.9153296724,true,true,11.62322858,6726.004738596996,0.0,1.2,668.0,11.62322858,6726.004738596996,0.0,121.92,0.0 +669,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,468300.0,6999.999999999999,14999791.8546425,6999.999999999999,11744492.93931284,true,669,21750.0,0.0,-2249.0447536622814,1871585.351877177,700.0,468300.0,762.5558437927176,1003304.0138717955,-4230.85251061896,106839.29324926264,0.0,0.0,1298.6651228108606,759436.6684939953,-79.4132096468994,2005.376262120984,-0.0,-3255298.9153296724,true,true,11.39970495,6737.404443546996,0.0,1.2,669.0,11.39970495,6737.404443546996,0.0,121.92,0.0 +670,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,469000.0,6999.999999999999,15006791.8546425,6999.999999999999,11751492.93931284,true,670,21750.0,0.0,-13716.733874183998,1857868.6180029928,700.0,469000.0,660.8371395676611,1003964.8510113632,-15328.008705249164,91511.28454401348,0.0,0.0,1238.1448062513978,760674.8133002467,-287.70711475389254,1717.6691473670915,-0.0,-3255298.9153296724,true,true,10.55031517,6747.954758716996,0.0,1.2,670.0,10.55031517,6747.954758716996,0.0,121.92,0.0 +671,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,469700.0,6999.999999999999,15013791.8546425,6999.999999999999,11758492.93931284,true,671,21750.0,0.0,-14928.020684046667,1842940.5973189462,700.0,469700.0,508.7301858927002,1004473.5811972559,-16266.190000675882,75245.0945433376,0.0,0.0,1134.7559323593127,761809.569232606,-305.31680162279815,1412.3523457442934,-0.0,-3255298.9153296724,true,true,9.566811212,6757.5215699289965,0.0,1.2,671.0,9.566811212,6757.5215699289965,0.0,121.92,0.0 +672,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,470400.0,6999.999999999999,15020791.8546425,6999.999999999999,11765492.93931284,true,672,21750.0,0.0,-18007.8015526119,1824932.7957663343,700.0,470400.0,354.62443204109496,1004828.205629297,-19011.725668414034,56233.36887492357,0.0,0.0,1006.1502599665935,762815.7194925726,-356.8505762055545,1055.501769538739,-0.0,-3255298.9153296724,true,true,8.270374179,6765.791944107997,0.0,1.2,672.0,8.270374179,6765.791944107997,0.0,121.92,0.0 +673,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,471100.0,6999.999999999999,15027791.8546425,6999.999999999999,11772492.93931284,true,673,21750.0,0.0,-11150.554847747248,1813782.240918587,700.0,471100.0,237.31557782264306,1005065.5212071196,-12041.909739762634,44191.45913516094,0.0,0.0,880.066267463423,763695.785760036,-226.02695327067863,829.4748162680603,-0.0,-3255298.9153296724,true,true,7.331574947,6773.123519054997,0.0,1.2,673.0,7.331574947,6773.123519054997,0.0,121.92,0.0 +674,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,471800.0,6999.999999999999,15034791.8546425,6999.999999999999,11779492.93931284,true,674,21750.0,0.0,-8883.494541804057,1804898.746376783,700.0,471800.0,164.71206211614182,1005230.2332692357,-9646.343562422926,34545.11557273802,0.0,0.0,779.1990734608866,764474.9848334969,-181.062114958159,648.4127013099013,-0.0,-3255298.9153296724,true,true,6.482185167,6779.605704221997,0.0,1.2,674.0,6.482185167,6779.605704221997,0.0,121.92,0.0 +675,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,472500.0,6999.999999999999,15041791.8546425,6999.999999999999,11786492.93931284,true,675,21750.0,0.0,-11912.252370430118,1792986.4940063527,700.0,472500.0,99.25936401560475,1005329.4926332514,-12436.241602774991,22108.873969963024,0.0,0.0,658.1584407368132,765133.1432742337,-233.42857240754407,414.98412890235727,-0.0,-3255298.9153296724,true,true,5.185748134,6784.7914523559975,0.0,1.2,675.0,5.185748134,6784.7914523559975,0.0,121.92,0.0 +676,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,473200.0,6999.999999999999,15048791.8546425,6999.999999999999,11793492.93931284,true,676,21750.0,0.0,-9295.584632417485,1783690.9093739353,700.0,473200.0,46.702279637999844,1005376.1949128894,-9672.632365056386,12436.241604906638,0.0,0.0,511.90100945569833,765645.0442836893,-181.55555645479774,233.42857244755953,-0.0,-3255298.9153296724,true,true,3.8893111,6788.680763455997,0.0,1.2,676.0,3.8893111,6788.680763455997,0.0,121.92,0.0 +677,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,473900.0,6999.999999999999,15055791.8546425,6999.999999999999,11800492.93931284,true,677,21750.0,0.0,-6656.042293255245,1777034.86708068,700.0,473900.0,17.01978120805835,1005393.2146940974,-6909.023112415919,5527.218492490719,0.0,0.0,365.64357817458347,766010.687861864,-129.68254022196757,103.74603222559196,-0.0,-3255298.9153296724,true,true,2.592874067,6791.273637522997,0.0,1.2,677.0,2.592874067,6791.273637522997,0.0,121.92,0.0 +678,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,474600.0,6999.999999999999,15062791.8546425,6999.999999999999,11807492.93931284,true,678,21750.0,0.0,-3341.4430295392513,1773693.424051141,700.0,474600.0,4.490542508108848,1005397.7052366055,-3514.482864945313,2012.7356275454058,0.0,0.0,234.51622600513053,766245.2040878691,-65.96693310717784,37.77909911841412,-0.0,-3255298.9153296724,true,true,1.564665385,6792.838302907997,0.0,1.2,678.0,1.564665385,6792.838302907997,0.0,121.92,0.0 +679,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,475300.0,6999.999999999999,15069791.8546425,6999.999999999999,11814492.93931284,true,679,21750.0,0.0,-1241.3376715450183,1772452.0863795958,700.0,475300.0,0.9288338509095033,1005398.6340704564,-1355.5158303758806,657.2197971695252,0.0,0.0,138.6923917252839,766383.8964795944,-25.443066745331166,12.336032373082958,-0.0,-3255298.9153296724,true,true,0.894094506,6793.732397413997,0.0,1.2,679.0,0.894094506,6793.732397413997,0.0,121.92,0.0 +680,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,476000.0,6999.999999999999,15076791.8546425,6999.999999999999,11821492.93931284,true,680,21750.0,0.0,-619.0775703576937,1771833.0088092382,700.0,476000.0,0.044662183692316795,1005398.6787326401,-657.2197971695749,-4.9681148084346205e-11,0.0,0.0,50.433597001268225,766434.3300765957,-12.336032373079432,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,680.0,0.0,6793.732397413997,0.0,121.92,0.0 +681,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,476700.0,6999.999999999999,15083791.8546425,6999.999999999999,11828492.93931284,true,681,21750.0,0.0,0.0,1771833.0088092382,700.0,476700.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,681.0,0.0,6793.732397413997,0.0,121.92,0.0 +682,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,477400.0,6999.999999999999,15090791.8546425,6999.999999999999,11835492.93931284,true,682,21750.0,0.0,0.0,1771833.0088092382,700.0,477400.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,682.0,0.0,6793.732397413997,0.0,121.92,0.0 +683,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,478100.0,6999.999999999999,15097791.8546425,6999.999999999999,11842492.93931284,true,683,21750.0,0.0,0.0,1771833.0088092382,700.0,478100.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,683.0,0.0,6793.732397413997,0.0,121.92,0.0 +684,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,478800.0,6999.999999999999,15104791.8546425,6999.999999999999,11849492.93931284,true,684,21750.0,0.0,0.0,1771833.0088092382,700.0,478800.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,684.0,0.0,6793.732397413997,0.0,121.92,0.0 +685,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,479500.0,6999.999999999999,15111791.8546425,6999.999999999999,11856492.93931284,true,685,21750.0,0.0,0.0,1771833.0088092382,700.0,479500.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,685.0,0.0,6793.732397413997,0.0,121.92,0.0 +686,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,480200.0,6999.999999999999,15118791.8546425,6999.999999999999,11863492.93931284,true,686,21750.0,0.0,0.0,1771833.0088092382,700.0,480200.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,686.0,0.0,6793.732397413997,0.0,121.92,0.0 +687,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,480900.0,6999.999999999999,15125791.8546425,6999.999999999999,11870492.93931284,true,687,21750.0,0.0,0.0,1771833.0088092382,700.0,480900.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,687.0,0.0,6793.732397413997,0.0,121.92,0.0 +688,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,481600.0,6999.999999999999,15132791.8546425,6999.999999999999,11877492.93931284,true,688,21750.0,0.0,0.0,1771833.0088092382,700.0,481600.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,688.0,0.0,6793.732397413997,0.0,121.92,0.0 +689,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,482300.0,6999.999999999999,15139791.8546425,6999.999999999999,11884492.93931284,true,689,21750.0,0.0,0.0,1771833.0088092382,700.0,482300.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,689.0,0.0,6793.732397413997,0.0,121.92,0.0 +690,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,483000.0,6999.999999999999,15146791.8546425,6999.999999999999,11891492.93931284,true,690,21750.0,0.0,0.0,1771833.0088092382,700.0,483000.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,690.0,0.0,6793.732397413997,0.0,121.92,0.0 +691,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,483700.0,6999.999999999999,15153791.8546425,6999.999999999999,11898492.93931284,true,691,21750.0,0.0,0.0,1771833.0088092382,700.0,483700.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,691.0,0.0,6793.732397413997,0.0,121.92,0.0 +692,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,484400.0,6999.999999999999,15160791.8546425,6999.999999999999,11905492.93931284,true,692,21750.0,0.0,0.0,1771833.0088092382,700.0,484400.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,692.0,0.0,6793.732397413997,0.0,121.92,0.0 +693,22450.0,21750.0,0.12,0.0,3255298.9153296724,700.0,485100.0,6999.999999999999,15167791.8546425,6999.999999999999,11912492.93931284,true,693,21750.0,0.0,0.0,1771833.0088092382,700.0,485100.0,0.0,1005398.6787326401,0.0,-4.9681148084346205e-11,0.0,0.0,0.0,766434.3300765957,0.0,3.526068326209497e-12,-0.0,-3255298.9153296724,true,true,0.0,6793.732397413997,0.0,1.2,693.0,0.0,6793.732397413997,0.0,121.92,0.0 +694,22450.0,21750.0,0.12,363.40119328481666,3255662.3165229573,700.0,485800.0,8861.676610706805,15176653.531253206,8498.275417421988,11920991.214730263,true,694,21750.0,0.0,363.40119328481666,1772196.410002523,700.0,485800.0,0.01531912899177865,1005398.6940517691,322.0377004072729,322.0377004072232,0.0,0.0,35.30351788960627,766469.6335944852,6.044655858945696,6.044655858949222,-363.40119328481666,-3255662.3165229573,true,true,0.625866154,6794.358263567997,0.0,1.2,694.0,0.625866154,6794.358263567997,0.0,121.92,0.0 +695,22813.401193284815,22113.401193284815,0.16,1613.8819630952264,3257276.1984860525,700.0,486500.0,14461.762269345167,15191115.293522552,12847.880306249941,11933839.095036512,true,695,22113.401193284815,0.0,1613.8819630952264,1773810.2919656183,700.0,486500.0,0.5796202371031672,1005399.2736720062,1467.2431976294674,1789.2808980366906,0.0,0.0,118.51895294733959,766588.1525474326,27.540192281316145,33.584848140265365,-1613.8819630952264,-3257276.1984860525,true,true,1.475255935,6795.833519502997,0.0,1.2,695.0,1.475255935,6795.833519502997,0.0,121.92,0.0 +696,24063.881963095228,23363.881963095228,0.16,1614.502536687915,3258890.7010227405,700.0,487200.0,14465.640854299469,15205580.93437685,12851.138317611554,11946690.233354123,true,696,23363.881963095228,0.0,1614.502536687915,1775424.7945023063,700.0,487200.0,2.548720088228432,1005401.8223920944,1391.6629196171434,3180.9438176538342,0.0,0.0,194.16934844924194,766782.3218958818,26.121548533301038,59.7063966735664,-1614.502536687915,-3258890.7010227405,true,true,1.967007913,6797.800527415997,0.0,1.2,696.0,1.967007913,6797.800527415997,0.0,121.92,0.0 +697,24064.502536687916,23364.502536687916,0.16,4113.626189282952,3263004.3272120235,700.0,487900.0,30085.163683018447,15235666.098059868,25971.537493735494,11972661.770847859,true,697,23364.502536687916,0.0,4113.626189282952,1779538.4206915891,700.0,487900.0,7.229852882493874,1005409.0522449769,3760.940287560783,6941.884105214617,0.0,0.0,274.86310361742665,767057.1849994992,70.5929452222476,130.299341895814,-4113.626189282952,-3263004.3272120235,true,true,2.905807144,6800.706334559997,0.0,1.2,697.0,2.905807144,6800.706334559997,0.0,121.92,0.0 +698,26563.62618928295,25863.62618928295,0.28,7513.126372270558,3270517.4535842943,700.0,488600.0,29332.594186680566,15264998.692246549,21819.467814410007,11994481.238662269,true,698,25863.62618928295,0.0,7513.126372270558,1787051.5470638596,700.0,488600.0,21.604733994293326,1005430.6569789712,6964.886798835968,13906.770904050585,0.0,0.0,395.9037363979074,767453.0887358971,130.7311030423896,261.0304449382036,-7513.126372270558,-3270517.4535842943,true,true,4.112834727,6804.819169286997,0.0,1.2,698.0,4.112834727,6804.819169286997,0.0,121.92,0.0 +699,29963.12637227056,29263.12637227056,0.28,7771.135268035654,3278288.58885233,700.0,489300.0,30254.05452869876,15295252.746775247,22482.919260663108,12016964.157922933,true,699,29263.12637227056,0.0,7771.135268035654,1794822.6823318952,700.0,489300.0,48.096286886667265,1005478.7532658579,7073.328063619489,20980.098967670074,0.0,0.0,516.9443691783881,767970.0331050755,132.7665483511102,393.7969932893138,-7771.135268035654,-3278288.58885233,true,true,5.051633958,6809.870803244997,0.0,1.2,699.0,5.051633958,6809.870803244997,0.0,121.92,0.0 +700,30221.135268035654,29521.135268035654,0.28,9843.272101358472,3288131.8609536886,700.0,490000.0,37654.5432191374,15332907.289994385,27811.271117778924,12044775.429040711,true,700,29521.135268035654,0.0,9843.272101358472,1804665.9544332537,700.0,490000.0,85.15399126487888,1005563.9072571228,8964.478025983519,29944.576993653594,0.0,0.0,625.3766026803481,768595.4097077558,168.26348142972716,562.0604747190409,-9843.272101358472,-3288131.8609536886,true,true,6.035137914,6815.905941158997,0.0,1.2,700.0,6.035137914,6815.905941158997,0.0,121.92,0.0 +701,32293.272101358474,31593.272101358474,0.22,6006.455501223592,3294138.316454912,700.0,490700.0,30483.88864192542,15363391.17863631,24477.433140701825,12069252.862181414,true,701,31593.272101358474,0.0,6006.455501223592,1810672.4099344774,700.0,490700.0,123.87079526671081,1005687.7780523895,5078.665978195433,35023.24297184903,0.0,0.0,708.592037681674,769304.0017454375,95.32669007977408,657.387164798815,-6006.455501223592,-3294138.316454912,true,true,6.526889892,6822.432831050997,0.0,1.2,701.0,6.526889892,6822.432831050997,0.0,121.92,0.0 +702,28456.455501223594,27756.455501223594,0.28,10288.340957228402,3304426.6574121406,700.0,491400.0,39244.07484724429,15402635.253483554,28955.733890015887,12098208.59607143,true,702,27756.455501223594,0.0,10288.340957228402,1820960.7508917057,700.0,491400.0,166.31638915321338,1005854.0944415428,9168.216163311916,44191.45913516095,0.0,0.0,781.7207532940276,770085.7224987316,172.08765146924523,829.4748162680602,-10288.340957228402,-3304426.6574121406,true,true,7.331574947,6829.7644059979975,0.0,1.2,702.0,7.331574947,6829.7644059979975,0.0,121.92,0.0 +703,32738.3409572284,32038.3409572284,0.16,2699.3059139213124,3307125.963326062,700.0,492100.0,21245.661962008202,15423880.915445562,18546.35604808689,12116754.952119516,true,703,32038.3409572284,0.0,2699.3059139213124,1823660.056805627,700.0,492100.0,202.4575361968895,1006056.5519777397,1631.548147215881,45823.00728237683,0.0,0.0,834.6760301284371,770920.39852886,30.624200380104874,860.099016648165,-2699.3059139213124,-3307125.963326062,true,true,7.465689123,6837.230095120997,0.0,1.2,703.0,7.465689123,6837.230095120997,0.0,121.92,0.0 +704,25149.30591392131,24449.30591392131,0.12,0.0,3307125.963326062,700.0,492800.0,6999.999999999999,15430880.915445562,6999.999999999999,12123754.952119516,true,704,24449.30591392131,0.0,-69.96691122816159,1823590.0898943988,700.0,492800.0,204.29804806636915,1006260.850025806,-1090.984855715592,44732.022426661235,0.0,0.0,837.1977100179857,771757.596238878,-20.477813596924506,839.6212030512405,-0.0,-3307125.963326062,true,true,7.376279673,6844.606374793997,0.0,1.2,704.0,7.376279673,6844.606374793997,0.0,121.92,0.0 +705,22450.0,21750.0,0.12,1032.7824621481561,3308158.74578821,700.0,493500.0,14439.853851234635,15445320.769296797,13407.071389086479,12137162.023508603,true,705,21750.0,0.0,1032.7824621481561,1824622.872356547,700.0,493500.0,200.62811179645269,1006461.4781376024,0.0,44732.022426661235,0.0,0.0,832.1543503517034,772589.7505892296,0.0,839.6212030512405,-1032.7824621481561,-3308158.74578821,true,true,7.376279673,6851.982654466997,0.0,1.2,705.0,7.376279673,6851.982654466997,0.0,121.92,0.0 +706,23482.782462148156,22782.782462148156,0.28,10982.556490570587,3319141.302278781,700.0,494200.0,41723.41603775209,15487044.185334548,30740.859547181502,12167902.883055784,true,706,22782.782462148156,0.0,10982.556490570587,1835605.4288471176,700.0,494200.0,233.25898986568723,1006694.7371274681,9692.348955546064,54424.3713822073,0.0,0.0,875.0229077971406,773464.7734970268,181.92563736169512,1021.5468404129356,-10982.556490570587,-3319141.302278781,true,true,8.136260003,6860.1189144699965,0.0,1.2,706.0,8.136260003,6860.1189144699965,0.0,121.92,0.0 +707,33432.55649057058,32732.556490570583,0.28,7495.510354188492,3326636.812632969,700.0,494900.0,29269.679836387473,15516313.865170935,21774.16948219898,12189677.052537983,true,707,32732.556490570583,0.0,7495.510354188492,1843100.939201306,700.0,494900.0,292.0550854196577,1006986.7922128878,6145.005102359405,60569.3764845667,0.0,0.0,943.1082637432121,774407.88176077,115.34190266621687,1136.8887430791524,-7495.510354188492,-3326636.812632969,true,true,8.583307256,6868.702221725996,0.0,1.2,707.0,8.583307256,6868.702221725996,0.0,121.92,0.0 +708,29945.510354188493,29245.510354188493,0.28,7250.433296292074,3333887.245929261,700.0,495600.0,28394.40462961455,15544708.26980055,21143.971333322475,12210821.023871306,true,708,29245.510354188493,0.0,7250.433296292074,1850351.3724975982,700.0,495600.0,338.86570432110716,1007325.6579172089,5811.466045071076,66380.84252963778,0.0,0.0,991.0201808549315,775398.9019416249,109.08136604495968,1245.970109124112,-7250.433296292074,-3333887.245929261,true,true,8.985649783,6877.687871508996,0.0,1.2,708.0,8.985649783,6877.687871508996,0.0,121.92,0.0 +709,29700.433296292074,29000.433296292074,0.28,11199.662750329006,3345086.90867959,700.0,496300.0,42498.7955368893,15587207.065337438,31299.132786560294,12242120.156657867,true,709,29000.433296292074,0.0,11199.662750329006,1861551.035247927,700.0,496300.0,401.91106046378957,1007727.5689776726,9569.120241261311,75949.96277089909,0.0,0.0,1049.0188173556232,776447.9207589806,179.6126312482815,1425.5827403723936,-11199.662750329006,-3345086.90867959,true,true,9.611515937,6887.299387445996,0.0,1.2,709.0,9.611515937,6887.299387445996,0.0,121.92,0.0 +710,33649.66275032901,32949.66275032901,0.28,8950.216188436023,3354037.124868026,700.0,497000.0,34465.057815842934,15621672.12315328,25514.84162740691,12267634.998285275,true,710,32949.66275032901,0.0,8950.216188436023,1870501.251436363,700.0,497000.0,475.5629315931348,1008203.1319092658,7229.417767027643,83179.38053792673,0.0,0.0,1109.5391337458639,777557.4598927264,135.69635606938056,1561.279096441774,-8950.216188436023,-3354037.124868026,true,true,10.05856319,6897.3579506359965,0.0,1.2,710.0,10.05856319,6897.3579506359965,0.0,121.92,0.0 +711,31400.216188436025,30700.216188436025,0.16,1643.4861179874674,3355680.6109860134,700.0,497700.0,14646.788237421672,15636318.911390701,13003.302119434204,12280638.300404709,true,711,30700.216188436025,0.0,1643.4861179874674,1872144.7375543504,700.0,497700.0,508.7301857409698,1008711.8620950067,0.0,83179.38053792673,0.0,0.0,1134.7559322464977,778692.2158249728,0.0,1561.279096441774,-1643.4861179874674,-3355680.6109860134,true,true,10.05856319,6907.416513825997,0.0,1.2,711.0,10.05856319,6907.416513825997,0.0,121.92,0.0 +712,24093.486117987468,23393.486117987468,0.12,0.0,3355680.6109860134,700.0,498400.0,6999.999999999999,15643318.911390701,6999.999999999999,12287638.300404709,true,712,23393.486117987468,0.0,-1366.2655047793128,1870778.472049571,700.0,498400.0,495.2842780645463,1009207.1463730712,-2931.2002913922315,80248.1802465345,0.0,0.0,1124.6692128575255,779816.8850378303,-55.01870430915308,1506.260392132621,-0.0,-3355680.6109860134,true,true,9.879744289,6917.296258114997,0.0,1.2,712.0,9.879744289,6917.296258114997,0.0,121.92,0.0 +713,22450.0,21750.0,0.22,6131.104951295439,3361811.715937309,700.0,499100.0,31050.477051342903,15674369.388442045,24919.372100047465,12312557.672504757,true,713,21750.0,0.0,6131.104951295439,1876909.5770008666,700.0,499100.0,501.97721887779517,1009709.123591949,4416.517022616339,84664.69726915084,0.0,0.0,1129.7125725238081,780946.5976103542,82.8981372774962,1589.1585294101174,-6131.104951295439,-3361811.715937309,true,true,10.14797264,6927.444230754997,0.0,1.2,713.0,10.14797264,6927.444230754997,0.0,121.92,0.0 +714,28581.104951295438,27881.104951295438,0.22,6323.312709972164,3368135.028647281,700.0,499800.0,31924.148681691655,15706293.537123736,25600.83597171949,12338158.508476475,true,714,27881.104951295438,0.0,6323.312709972164,1883232.889710839,700.0,499800.0,543.4047883502225,1010252.5283802992,4534.816568274103,89199.51383742495,0.0,0.0,1159.9727305779095,782106.5703409321,85.11862276992896,1674.2771521800464,-6323.312709972164,-3368135.028647281,true,true,10.41620099,6937.860431744997,0.0,1.2,714.0,10.41620099,6937.860431744997,0.0,121.92,0.0 +715,28773.312709972164,28073.312709972164,0.16,3319.159070306602,3371454.1877175877,700.0,500500.0,25119.744189416262,15731413.281313153,21800.58511910966,12359959.093595585,true,715,28073.312709972164,0.0,3319.159070306602,1886552.0487811456,700.0,500500.0,572.2522712266398,1010824.7806515258,1537.89431429198,90737.40815171693,0.0,0.0,1180.146169243039,783286.7165101751,28.86631554494378,1703.1434677249902,-3319.159070306602,-3371454.1877175877,true,true,10.50561044,6948.366042184997,0.0,1.2,715.0,10.50561044,6948.366042184997,0.0,121.92,0.0 +716,25769.159070306603,25069.159070306603,0.12,0.0,3371454.1877175877,700.0,501200.0,6999.999999999999,15738413.281313153,6999.999999999999,12366959.093595585,true,716,25069.159070306603,0.0,-5996.514466145275,1880555.5343150003,700.0,501200.0,543.4047883502225,1011368.185439876,-7558.027613790191,83179.38053792673,0.0,0.0,1159.9727305779095,784446.6892407531,-141.8643712832159,1561.2790964417743,-0.0,-3371454.1877175877,true,true,10.05856319,6958.424605374998,0.0,1.2,716.0,10.05856319,6958.424605374998,0.0,121.92,0.0 +717,22450.0,21750.0,0.12,0.0,3371454.1877175877,700.0,501900.0,6999.999999999999,15745413.281313153,6999.999999999999,12373959.093595585,true,717,21750.0,0.0,-5052.794110972169,1875502.740204028,700.0,501900.0,478.81278102163145,1011846.9982208976,-6521.26342464699,76658.11711327973,0.0,0.0,1112.0608136354124,785558.7500543884,-122.40428098222273,1438.8748154595517,-0.0,-3371454.1877175877,true,true,9.656220663,6968.080826037997,0.0,1.2,717.0,9.656220663,6968.080826037997,0.0,121.92,0.0 +718,22450.0,21750.0,0.12,0.0,3371454.1877175877,700.0,502600.0,6999.999999999999,15752413.281313153,6999.999999999999,12380959.093595585,true,718,21750.0,0.0,-6273.577482942422,1869229.1627210856,700.0,502600.0,416.5779262169679,1012263.5761471146,-7608.962210823534,69049.1549024562,0.0,0.0,1061.6272166341441,786620.3772710225,-142.8204149699991,1296.0544004895526,-0.0,-3371454.1877175877,true,true,9.164468684,6977.245294721997,0.0,1.2,718.0,9.164468684,6977.245294721997,0.0,121.92,0.0 +719,22450.0,21750.0,0.12,0.0,3371454.1877175877,700.0,503300.0,6999.999999999999,15759413.281313153,6999.999999999999,12387959.093595585,true,719,21750.0,0.0,-14821.750384122912,1854407.4123369628,700.0,503300.0,318.59001080642815,1012582.1661579211,-15814.351358183105,53234.80354427309,0.0,0.0,970.8467420205799,787591.2240130431,-296.8357787668156,999.218621722737,-0.0,-3371454.1877175877,true,true,8.046850552,6985.292145273997,0.0,1.2,719.0,8.046850552,6985.292145273997,0.0,121.92,0.0 +720,22450.0,21750.0,0.12,0.0,3371454.1877175877,700.0,504000.0,6999.999999999999,15766413.281313153,6999.999999999999,12394959.093595585,true,720,21750.0,0.0,-15538.72431463656,1838868.6880223262,700.0,504000.0,200.62811175565412,1012782.7942696768,-16266.189975536578,36968.61356873652,0.0,0.0,832.154350295296,788423.3783633384,-305.31680115093235,693.9018205718046,-0.0,-3371454.1877175877,true,true,6.705708793,6991.997854066997,0.0,1.2,720.0,6.705708793,6991.997854066997,0.0,121.92,0.0 +721,22450.0,21750.0,0.12,0.0,3371454.1877175877,700.0,504700.0,6999.999999999999,15773413.281313153,6999.999999999999,12401959.093595585,true,721,21750.0,0.0,-12767.76625529124,1826100.921767035,700.0,504700.0,109.88572012004947,1012892.6799897968,-13308.700879452681,23659.912689283836,0.0,0.0,680.8535593478987,789104.2319226863,-249.80465530650835,444.0971652652962,-0.0,-3371454.1877175877,true,true,5.364567035,6997.362421101997,0.0,1.2,721.0,5.364567035,6997.362421101997,0.0,121.92,0.0 +722,22450.0,21750.0,0.12,0.0,3371454.1877175877,700.0,505400.0,6999.999999999999,15780413.281313153,6999.999999999999,12408959.093595585,true,722,21750.0,0.0,-9964.24948428594,1816136.672282749,700.0,505400.0,51.70206036377473,1012944.3820501606,-10351.211803215605,13308.70088606823,0.0,0.0,529.5527684005016,789633.7846910869,-194.29250983460938,249.80465543068684,-0.0,-3371454.1877175877,true,true,4.023425276,7001.385846377997,0.0,1.2,722.0,4.023425276,7001.385846377997,0.0,121.92,0.0 +723,22450.0,21750.0,0.12,0.0,3371454.1877175877,700.0,506100.0,6999.999999999999,15787413.281313153,6999.999999999999,12415959.093595585,true,723,21750.0,0.0,-6721.173058525783,1809415.4992242232,700.0,506100.0,19.60562673466925,1012963.9876768952,-6992.818638003123,6315.882248065108,0.0,0.0,383.2953371193866,790017.0800282062,-131.2553843767157,118.54927105397113,-0.0,-3371454.1877175877,true,true,2.771692968,7004.157539345997,0.0,1.2,723.0,2.771692968,7004.157539345997,0.0,121.92,0.0 +724,22450.0,21750.0,0.12,0.0,3371454.1877175877,700.0,506800.0,6999.999999999999,15794413.281313153,6999.999999999999,12422959.093595585,true,724,21750.0,0.0,-2768.1462529172472,1806647.3529713058,700.0,506800.0,6.83913693240514,1012970.8268138276,-2988.7070265480925,3327.1752215170154,0.0,0.0,269.81974389473686,790286.899772101,-56.098107196296795,62.45116385767433,-0.0,-3371454.1877175877,true,true,2.011712638,7006.169251983997,0.0,1.2,724.0,2.011712638,7006.169251983997,0.0,121.92,0.0 +725,22450.0,21750.0,0.12,0.0,3371454.1877175877,700.0,507500.0,6999.999999999999,15801413.281313153,6999.999999999999,12429959.093595585,true,725,21750.0,0.0,-1691.644547835122,1804955.7084234706,700.0,507500.0,2.3552323420958348,1012973.1820461698,-1848.430677885528,1478.7445436314874,0.0,0.0,189.12598872655215,790476.0257608275,-34.69509101824212,27.756072839432214,-0.0,-3371454.1877175877,true,true,1.341141759,7007.510393742997,0.0,1.2,725.0,1.341141759,7007.510393742997,0.0,121.92,0.0 +726,22450.0,21750.0,0.12,0.0,3371454.1877175877,700.0,508200.0,6999.999999999999,15808413.281313153,6999.999999999999,12436959.093595585,true,726,21750.0,0.0,-638.9690821198403,1804316.7393413507,700.0,508200.0,0.7405604158288553,1012973.9226065855,-754.15971771518,724.5848259163074,0.0,0.0,128.60567233631176,790604.6314331638,-14.155597156800908,13.600475682631306,-0.0,-3371454.1877175877,true,true,0.938799231,7008.449192973997,0.0,1.2,726.0,0.938799231,7008.449192973997,0.0,121.92,0.0 +727,22450.0,21750.0,0.12,0.0,3371454.1877175877,700.0,508900.0,6999.999999999999,15815413.281313153,6999.999999999999,12443959.093595585,true,727,21750.0,0.0,-630.6762635658998,1803686.0630777848,700.0,508900.0,0.09812281736941297,1012974.0207294029,-683.5085887770323,41.07623713927512,0.0,0.0,65.56367605652272,790670.1951092203,-12.829473662759659,0.7710020198716467,-0.0,-3371454.1877175877,true,true,0.223523626,7008.672716599997,0.0,1.2,727.0,0.223523626,7008.672716599997,0.0,121.92,0.0 +728,22450.0,21750.0,0.12,25.222381217150733,3371479.4100988046,700.0,509600.0,6999.999999999999,15822413.281313153,6974.777618782849,12450933.871214367,true,728,21750.0,0.0,25.222381217150733,1803711.285459002,700.0,509600.0,0.005582772924075286,1012974.0263121758,0.0,41.07623713927512,0.0,0.0,25.216798444226658,790695.4119076646,0.0,0.7710020198716467,-25.222381217150733,-3371479.4100988046,true,true,0.223523626,7008.896240225998,0.0,1.2,728.0,0.223523626,7008.896240225998,0.0,121.92,0.0 +729,22475.22238121715,21775.22238121715,0.16,1765.8006216207307,3373245.2107204255,700.0,510300.0,15411.253885129565,15837824.535198282,13645.453263508834,12464579.324477876,true,729,21775.22238121715,0.0,1765.8006216207307,1805477.0860806229,700.0,510300.0,0.2827841982566903,1012974.3090963741,1641.4064422034514,1682.4826793427264,0.0,0.0,93.30215439029803,790788.7140620549,30.809240828724494,31.580242848596143,-1765.8006216207307,-3373245.2107204255,true,true,1.430551209,7010.326791434998,0.0,1.2,729.0,1.430551209,7010.326791434998,0.0,121.92,0.0 +730,24215.80062162073,23515.80062162073,0.22,5607.818716456454,3378853.029436882,700.0,511000.0,28671.903256620248,15866496.438454902,23064.084540163793,12487643.40901804,true,730,23515.80062162073,0.0,5607.818716456454,1811084.9047970793,700.0,511000.0,5.095246143249714,1012979.4043425174,5259.4014258718835,6941.88410521461,0.0,0.0,244.60294539410273,791033.317007449,98.71909904721781,130.29934189581394,-5607.818716456454,-3378853.029436882,true,true,2.905807144,7013.2325985789985,0.0,1.2,730.0,2.905807144,7013.2325985789985,0.0,121.92,0.0 +731,28057.818716456455,27357.818716456455,0.28,8783.67179590296,3387636.701232785,700.0,511700.0,33870.25641393914,15900366.69486884,25086.58461803618,12512729.993636075,true,731,27357.818716456455,0.0,8783.67179590296,1819868.5765929823,700.0,511700.0,23.29848031508248,1013002.7028228325,8200.46001592702,15142.344121141628,0.0,0.0,405.9904557868795,791439.3074632359,153.9228438739768,284.2221857697907,-8783.67179590296,-3387636.701232785,true,true,4.291653628,7017.524252206998,0.0,1.2,731.0,4.291653628,7017.524252206998,0.0,121.92,0.0 +732,31233.67179590296,30533.67179590296,0.28,11345.509192590858,3398982.210425376,700.0,512400.0,43019.67568782449,15943386.370556666,31674.166495233636,12544404.16013131,true,732,30533.67179590296,0.0,11345.509192590858,1831214.085785573,700.0,512400.0,60.259675299331505,1013062.9624981318,10530.30419201232,25672.64831315395,0.0,0.0,557.2912467342768,791996.5987099702,197.6540785449298,481.8762643147205,-11345.509192590858,-3398982.210425376,true,true,5.588090661,7023.112342867998,0.0,1.2,732.0,5.588090661,7023.112342867998,0.0,121.92,0.0 +733,33795.50919259086,33095.50919259086,0.28,7425.849530971647,3406408.0599563476,700.0,513100.0,29020.891182041596,15972407.261738706,21595.04165106995,12565999.20178238,true,733,33095.50919259086,0.0,7425.849530971647,1838639.9353165447,700.0,513100.0,103.89331120861812,1013166.8558093404,6531.1217378642295,32203.77005101818,0.0,0.0,668.2451601257854,792664.843870096,122.58932177301392,604.4655860877344,-7425.849530971647,-3406408.0599563476,true,true,6.258661541,7029.3710044089985,0.0,1.2,733.0,6.258661541,7029.3710044089985,0.0,121.92,0.0 +734,29875.849530971645,29175.849530971645,0.28,10950.576254370466,3417358.636210718,700.0,513800.0,41609.200908465944,16014016.462647172,30658.624654095478,12596657.826436475,true,734,29175.849530971645,0.0,10950.576254370466,1849590.511570915,700.0,513800.0,150.73486986041559,1013317.5906792008,9858.296944312408,42062.066995330584,0.0,0.0,756.5039548498011,793421.3478249458,185.04048534784127,789.5060714355757,-10950.576254370466,-3417358.636210718,true,true,7.152756046,7036.523760454998,0.0,1.2,734.0,7.152756046,7036.523760454998,0.0,121.92,0.0 +735,33400.57625437046,32700.576254370462,0.33,12459.245556332718,3429817.881767051,700.0,514500.0,39876.50168585672,16053892.964333028,27417.256129524,12624075.082565999,true,735,32700.576254370462,0.0,12459.245556332718,1862049.7571272478,700.0,514500.0,219.42530830711746,1013537.015987508,11172.736548942508,53234.80354427309,0.0,0.0,857.3711487959301,794278.7189737418,209.71255028716118,999.2186217227369,-12459.245556332718,-3429817.881767051,true,true,8.046850552,7044.570611006999,0.0,1.2,735.0,8.046850552,7044.570611006999,0.0,121.92,0.0 +736,34909.24555633272,34209.24555633272,0.28,11315.03686150813,3441132.918628559,700.0,515200.0,42910.8459339576,16096803.810266985,31595.80907244947,12655670.891638448,true,736,34209.24555633272,0.0,11315.03686150813,1873364.793988756,700.0,515200.0,296.76556123792494,1013833.7815487459,9884.58574995966,63119.38929423275,0.0,0.0,948.1516234094943,795226.8705971512,185.53392690104894,1184.7525486237857,-11315.03686150813,-3441132.918628559,true,true,8.762126157,7053.332737163999,0.0,1.2,736.0,8.762126157,7053.332737163999,0.0,121.92,0.0 +737,33765.03686150813,33065.03686150813,0.33,14495.406646356607,3455628.3252749154,700.0,515900.0,46046.68680714123,16142850.497074125,31551.280160784627,12687222.171799233,true,737,33065.03686150813,0.0,14495.406646356607,1887860.2006351126,700.0,515900.0,387.59255980816505,1014221.3741085541,12830.573476666324,75949.96277089907,0.0,0.0,1036.4104181335101,796263.2810152847,240.83019174860794,1425.5827403723938,-14495.406646356607,-3455628.3252749154,true,true,9.611515937,7062.944253100999,0.0,1.2,737.0,9.611515937,7062.944253100999,0.0,121.92,0.0 +738,36945.406646356605,36245.406646356605,0.33,13564.829455567917,3469193.1547304834,700.0,516600.0,43226.755925963385,16186077.253000088,29661.92647039547,12716884.098269628,true,738,36245.406646356605,0.0,13564.829455567917,1901425.0300906806,700.0,516600.0,495.28427791550155,1014716.6583864696,11724.801148000844,87674.76391889992,0.0,0.0,1124.6692127447109,797387.9502280294,220.07481690685907,1645.6575572792528,-13564.829455567917,-3469193.1547304834,true,true,10.32679154,7073.271044640999,0.0,1.2,738.0,10.32679154,7073.271044640999,0.0,121.92,0.0 +739,36014.82945556792,35314.82945556792,0.33,12957.222876790769,3482150.3776072743,700.0,517300.0,41385.523869062934,16227462.776869152,28428.300992272165,12745312.399261901,true,739,35314.82945556792,0.0,12957.222876790769,1914382.2529674713,700.0,517300.0,602.1030462324085,1015318.761432702,10949.281920873087,98624.045839773,0.0,0.0,1200.3196084722429,798588.2698365017,205.51830121303135,1851.175858492284,-12957.222876790769,-3482150.3776072743,true,true,10.9526577,7084.223702340999,0.0,1.2,739.0,10.9526577,7084.223702340999,0.0,121.92,0.0 +740,35407.222876790765,34707.222876790765,0.28,10328.134358342488,3492478.5119656166,700.0,518000.0,39386.194136937454,16266848.97100609,29058.059778594965,12774370.459040496,true,740,34707.222876790765,0.0,10328.134358342488,1924710.3873258138,700.0,518000.0,697.84662019245,1016016.6080528944,8215.247409489633,106839.29324926263,0.0,0.0,1260.8399250317057,799849.1097615334,154.20040362869986,2005.376262120984,-10328.134358342488,-3492478.5119656166,true,true,11.39970495,7095.623407290999,0.0,1.2,740.0,11.39970495,7095.623407290999,0.0,121.92,0.0 +741,32778.13435834249,32078.13435834249,0.28,10800.481785059315,3503278.993750676,700.0,518700.0,41073.14923235469,16307922.120238444,30272.667447295375,12804643.126487792,true,741,32078.13435834249,0.0,10800.481785059315,1935510.869110873,700.0,518700.0,784.9825399683388,1016801.5905928627,8543.85730366399,115383.15055292661,0.0,0.0,1311.273521694529,801160.3832832279,160.3684197324562,2165.74468185344,-10800.481785059315,-3503278.993750676,true,true,11.8467522,7107.470159490999,0.0,1.2,741.0,11.8467522,7107.470159490999,0.0,121.92,0.0 +742,33250.48178505932,32550.481785059317,0.28,7594.544099480302,3510873.5378501564,700.0,519400.0,29623.371783858223,16337545.492022302,22028.82768437792,12826671.95417217,true,742,32550.481785059317,0.0,7594.544099480302,1943105.4132103533,700.0,519400.0,859.6948694841041,1017661.2854623467,5284.047131402133,120667.19768432874,0.0,0.0,1351.620399024788,802512.0036822527,99.18169956927721,2264.926381422717,-7594.544099480302,-3510873.5378501564,true,true,12.11498055,7119.585140040999,0.0,1.2,742.0,12.11498055,7119.585140040999,0.0,121.92,0.0 +743,30044.544099480303,29344.544099480303,0.22,6871.164436462555,3517744.7022866188,700.0,520100.0,34414.38380210252,16371959.875824405,27543.21936563997,12854215.17353781,true,743,29344.544099480303,0.0,6871.164436462555,1949976.577646816,700.0,520100.0,913.7175045118892,1018575.0029668587,4493.740431839006,125160.93811616774,0.0,0.0,1379.3588774713783,803891.3625597241,84.3476226402821,2349.274004062999,-6871.164436462555,-3517744.7022866188,true,true,12.33850418,7131.923644220999,0.0,1.2,743.0,12.33850418,7131.923644220999,0.0,121.92,0.0 +744,29321.164436462554,28621.164436462554,0.22,5140.955213052815,3522885.6574996714,700.0,520800.0,26549.79642296734,16398509.672247373,21408.841209914528,12875624.014747724,true,744,28621.164436462554,0.0,5140.955213052815,1955117.5328598688,700.0,520800.0,954.3966708473214,1019529.399637706,2735.677489185292,127896.61560535304,0.0,0.0,1399.5323167005822,805290.8948764247,51.34873631961953,2400.6227403826188,-5140.955213052815,-3522885.6574996714,true,true,12.47261836,7144.396262580999,0.0,1.2,744.0,12.47261836,7144.396262580999,0.0,121.92,0.0 +745,27590.955213052817,26890.955213052817,0.22,6171.054175882591,3529056.711675554,700.0,521500.0,31232.06443582996,16429741.736683203,25061.01025994737,12900685.02500767,true,745,26890.955213052817,0.0,6171.054175882591,1961288.5870357514,700.0,521500.0,990.9663630803167,1020520.3660007863,3693.575235512339,131590.19084086537,0.0,0.0,1417.1840758146077,806708.0789522392,69.32850147532703,2469.9512418579457,-6171.054175882591,-3529056.711675554,true,true,12.65143726,7157.0476998409995,0.0,1.2,745.0,12.65143726,7157.0476998409995,0.0,121.92,0.0 +746,28621.054175882593,27921.054175882593,0.22,5320.623695125276,3534377.3353706794,700.0,522200.0,27366.471341478526,16457108.20802468,22045.84764635325,12922730.872654025,true,746,27921.054175882593,0.0,5320.623695125276,1966609.2107308768,700.0,522200.0,1028.4584845284012,1021548.8244853147,2804.685360407932,134394.8762012733,0.0,0.0,1434.8358343645587,808142.9147866038,52.64401582438491,2522.5952576823306,-5320.623695125276,-3534377.3353706794,true,true,12.78555143,7169.833251270999,0.0,1.2,746.0,12.78555143,7169.833251270999,0.0,121.92,0.0 +747,27770.623695125276,27070.623695125276,0.16,2487.2126336669176,3536864.5480043464,700.0,522900.0,19920.078960418236,16477028.2869851,17432.86632675132,12940163.738980776,true,747,27070.623695125276,0.0,2487.2126336669176,1969096.4233645436,700.0,522900.0,1044.8117600849728,1022593.6362453996,0.0,134394.8762012733,0.0,0.0,1442.4008735819448,809585.3156601858,0.0,2522.5952576823306,-2487.2126336669176,-3536864.5480043464,true,true,12.78555143,7182.618802700999,0.0,1.2,747.0,12.78555143,7182.618802700999,0.0,121.92,0.0 +748,24937.212633666917,24237.212633666917,0.12,0.0,3536864.5480043464,700.0,523600.0,6999.999999999999,16484028.2869851,6999.999999999999,12947163.738980776,true,748,24237.212633666917,0.0,-394.0350573393571,1968702.3883072042,700.0,523600.0,1028.4584845284012,1023622.094729928,-2804.685360407932,131590.19084086537,0.0,0.0,1434.8358343645587,811020.1514945503,-52.64401582438491,2469.9512418579457,-0.0,-3536864.5480043464,true,true,12.65143726,7195.270239961,0.0,1.2,748.0,12.65143726,7195.270239961,0.0,121.92,0.0 +749,22450.0,21750.0,0.16,1485.9222007386256,3538350.470205085,700.0,524300.0,13662.01375461641,16497690.300739715,12176.091553877784,12959339.830534654,true,749,21750.0,0.0,1485.9222007386256,1970188.310507943,700.0,524300.0,1006.9207941976458,1024629.0155241255,-928.3230609352154,130661.86777993015,0.0,0.0,1424.7491150319938,812444.9006095823,-17.424647555798682,2452.526594302147,-1485.9222007386256,-3538350.470205085,true,true,12.60673253,7207.876972491,0.0,1.2,749.0,12.60673253,7207.876972491,0.0,121.92,0.0 +750,23935.922200738627,23235.922200738627,0.12,526.6985694026016,3538877.1687744875,700.0,525000.0,10222.488078355014,16507912.78881807,9695.789508952414,12969035.620043606,true,750,23235.922200738627,0.0,526.6985694026016,1970715.0090773455,700.0,525000.0,990.9663618970287,1025619.9818860226,-1846.787617021094,128815.08016290906,0.0,0.0,1417.184075250533,813862.0846848328,-34.664250723865926,2417.862343578281,-526.6985694026016,-3538877.1687744875,true,true,12.51732308,7220.394295571,0.0,1.2,750.0,12.51732308,7220.394295571,0.0,121.92,0.0 +751,22976.6985694026,22276.6985694026,0.12,0.0,3538877.1687744875,700.0,525700.0,6999.999999999999,16514912.78881807,6999.999999999999,12976035.620043606,true,751,22276.6985694026,0.0,-2291.114652202853,1968423.8944251426,700.0,525700.0,954.3966696933267,1026574.3785557159,-4559.462412144059,124255.617750765,0.0,0.0,1399.5323161365075,815261.6170009694,-85.58122588862797,2332.281117689653,-0.0,-3538877.1687744875,true,true,12.29379945,7232.688095021,0.0,1.2,751.0,12.29379945,7232.688095021,0.0,121.92,0.0 +752,22450.0,21750.0,0.12,0.0,3538877.1687744875,700.0,526400.0,6999.999999999999,16521912.78881807,6999.999999999999,12983035.620043606,true,752,21750.0,0.0,-4099.363227996613,1964324.531197146,700.0,526400.0,893.8187376681263,1027468.197293384,-6245.230978876139,118010.38677188887,0.0,0.0,1369.2721581388134,816630.8891591082,-117.2231449274143,2215.057972762239,-0.0,-3538877.1687744875,true,true,11.98086638,7244.668961401,0.0,1.2,752.0,11.98086638,7244.668961401,0.0,121.92,0.0 +753,22450.0,21750.0,0.12,0.0,3538877.1687744875,700.0,527100.0,6999.999999999999,16528912.78881807,6999.999999999999,12990035.620043606,true,753,21750.0,0.0,-9263.28936226361,1955061.2418348824,700.0,527100.0,798.6473095279091,1028266.844602912,-11171.093522626254,106839.29324926261,0.0,0.0,1318.8385614759902,817949.7277205841,-209.68171064125522,2005.3762621209837,-0.0,-3538877.1687744875,true,true,11.39970495,7256.0686663510005,0.0,1.2,753.0,11.39970495,7256.0686663510005,0.0,121.92,0.0 +754,22450.0,21750.0,0.12,0.0,3538877.1687744875,700.0,527800.0,6999.999999999999,16535912.78881807,6999.999999999999,12997035.620043606,true,754,21750.0,0.0,-14511.687110282997,1940549.5547245995,700.0,527800.0,656.8076555225095,1028923.6522584344,-16101.885097545732,90737.40815171688,0.0,0.0,1235.6231261362193,819185.3508467204,-302.23279439599384,1703.14346772499,-0.0,-3538877.1687744875,true,true,10.50561044,7266.574276791001,0.0,1.2,754.0,10.50561044,7266.574276791001,0.0,121.92,0.0 +755,22450.0,21750.0,0.12,0.0,3538877.1687744875,700.0,528500.0,6999.999999999999,16542912.78881807,6999.999999999999,13004035.620043606,true,755,21750.0,0.0,-13421.51999057978,1927128.0347340198,700.0,528500.0,508.730185513374,1029432.3824439478,-14787.445380817833,75949.96277089904,0.0,0.0,1134.7559320772755,820320.1067787977,-277.5607273525964,1425.5827403723936,-0.0,-3538877.1687744875,true,true,9.611515937,7276.185792728001,0.0,1.2,755.0,9.611515937,7276.185792728001,0.0,121.92,0.0 +756,22450.0,21750.0,0.12,0.0,3538877.1687744875,700.0,529200.0,6999.999999999999,16549912.78881807,6999.999999999999,13011035.620043606,true,756,21750.0,0.0,-15555.987279076819,1911572.047454943,700.0,529200.0,370.864305405167,1029803.246749353,-16635.876104277566,59314.08666662148,0.0,0.0,1021.280339021848,821341.3871178195,-312.2558192262667,1113.326921146127,-0.0,-3538877.1687744875,true,true,8.493897805,7284.679690533001,0.0,1.2,756.0,8.493897805,7284.679690533001,0.0,121.92,0.0 +757,22450.0,21750.0,0.12,0.0,3538877.1687744875,700.0,529900.0,6999.999999999999,16556912.78881807,6999.999999999999,13018035.620043606,true,757,21750.0,0.0,-13710.806629965644,1897861.2408249774,700.0,529900.0,249.7669815144495,1030053.0137308674,-14582.064239960291,44732.02242666119,0.0,0.0,895.1963465750848,822236.5834643946,-273.7057180948865,839.6212030512405,-0.0,-3538877.1687744875,true,true,7.376279673,7292.055970206001,0.0,1.2,757.0,7.376279673,7292.055970206001,0.0,121.92,0.0 +758,22450.0,21750.0,0.12,0.0,3538877.1687744875,700.0,530600.0,6999.999999999999,16563912.78881807,6999.999999999999,13025035.620043606,true,758,21750.0,0.0,-7444.975874833274,1890416.264950144,700.0,530600.0,172.83787191740828,1030225.8516027848,-8254.68065287621,36477.34177378498,0.0,0.0,791.8074727394073,823028.3909371339,-154.94056661387998,684.6806364373606,-0.0,-3538877.1687744875,true,true,6.661004068,7298.716974274001,0.0,1.2,758.0,6.661004068,7298.716974274001,0.0,121.92,0.0 +759,22450.0,21750.0,0.12,0.0,3538877.1687744875,700.0,531300.0,6999.999999999999,16570912.78881807,6999.999999999999,13032035.620043606,true,759,21750.0,0.0,-10201.715314083049,1880214.549636061,700.0,531300.0,114.8422399337844,1030340.6938427186,-10804.693460631064,25672.648313153917,0.0,0.0,690.9402787368708,823719.3312158708,-202.80437212264007,481.8762643147205,-0.0,-3538877.1687744875,true,true,5.588090661,7304.305064935001,0.0,1.2,759.0,5.588090661,7304.305064935001,0.0,121.92,0.0 +760,22450.0,21750.0,0.12,0.0,3538877.1687744875,700.0,532000.0,6999.999999999999,16577912.78881807,6999.999999999999,13039035.620043606,true,760,21750.0,0.0,-10753.14999744777,1869461.3996386132,700.0,532000.0,58.638426859325456,1030399.3322695779,-11154.663001969657,14517.98531118426,0.0,0.0,552.247887011587,824271.5791028824,-209.3733093490253,272.5029549656952,-0.0,-3538877.1687744875,true,true,4.202244177,7308.507309112,0.0,1.2,760.0,4.202244177,7308.507309112,0.0,121.92,0.0 +761,22450.0,21750.0,0.12,0.0,3538877.1687744875,700.0,532700.0,6999.999999999999,16584912.78881807,6999.999999999999,13046035.620043606,true,761,21750.0,0.0,-7941.480161943405,1861519.9194766697,700.0,532700.0,21.19452857914515,1030420.526798157,-8202.103063119184,6315.882248065076,0.0,0.0,393.38205650835874,824664.9611593907,-153.95368391172414,118.54927105397107,-0.0,-3538877.1687744875,true,true,2.771692968,7311.27900208,0.0,1.2,761.0,2.771692968,7311.27900208,0.0,121.92,0.0 +762,22450.0,21750.0,0.12,0.0,3538877.1687744875,700.0,533400.0,6999.999999999999,16591912.78881807,6999.999999999999,13053035.620043606,true,762,21750.0,0.0,-4691.589118166197,1856828.3303585036,700.0,533400.0,4.34723830997276,1030424.874036467,-4837.1377044336205,1478.7445436314556,0.0,0.0,231.99454617198938,824896.9557055627,-90.7931982145389,27.756072839432164,-0.0,-3538877.1687744875,true,true,1.341141759,7312.620143839,0.0,1.2,762.0,1.341141759,7312.620143839,0.0,121.92,0.0 +763,22450.0,21750.0,0.12,0.0,3538877.1687744875,700.0,534100.0,6999.999999999999,16598912.78881807,6999.999999999999,13060035.620043606,true,763,21750.0,0.0,-1015.8911395044872,1855812.4392189991,700.0,534100.0,0.50873018574097,1030425.3827666527,-1109.0584082749585,369.68613535649706,0.0,0.0,113.47559322464978,825010.4312987874,-20.81705463991947,6.939018199512695,-0.0,-3538877.1687744875,true,true,0.670570879,7313.290714717999,0.0,1.2,763.0,0.670570879,7313.290714717999,0.0,121.92,0.0 +764,22450.0,21750.0,0.12,75.80113031511927,3538952.9699048027,700.0,534800.0,6999.999999999999,16605912.78881807,6924.19886968488,13066959.81891329,true,764,21750.0,0.0,75.80113031511927,1855888.2403493142,700.0,534800.0,0.15073486962439037,1030425.5335015224,0.0,369.68613535649706,0.0,0.0,75.65039544549488,825086.0816942329,0.0,6.939018199512695,-75.80113031511927,-3538952.9699048027,true,true,0.670570879,7313.961285596999,0.0,1.2,764.0,0.670570879,7313.961285596999,0.0,121.92,0.0 +765,22525.801130315118,21825.801130315118,0.12,0.0,3538952.9699048027,700.0,535500.0,6999.999999999999,16612912.78881807,6999.999999999999,13073959.81891329,true,765,21825.801130315118,0.0,-284.2996552684916,1855603.9406940457,700.0,535500.0,0.04466218354245954,1030425.5781637059,-328.6098982172538,41.07623713924329,0.0,0.0,50.43359694486077,825136.5152911778,-6.168016179641098,0.771002019871597,-0.0,-3538952.9699048027,true,true,0.223523626,7314.184809222999,0.0,1.2,765.0,0.223523626,7314.184809222999,0.0,121.92,0.0 +766,22450.0,21750.0,0.12,0.0,3538952.9699048027,700.0,536200.0,6999.999999999999,16619912.78881807,6999.999999999999,13080959.81891329,true,766,21750.0,0.0,-29.238142090470888,1855574.7025519554,700.0,536200.0,0.0006978466155094107,1030425.5788615525,-41.07623713933157,-8.827782949083485e-11,0.0,0.0,12.608399222113329,825149.1236903999,-0.7710020198681556,3.4413583094305977e-12,-0.0,-3538952.9699048027,true,true,0.0,7314.184809222999,0.0,1.2,766.0,0.0,7314.184809222999,0.0,121.92,0.0 +767,22450.0,21750.0,0.16,1582.3017468428363,3540535.2716516457,700.0,536900.0,14264.385917767726,16634177.174735839,12682.084170924889,13093641.903084215,true,767,21750.0,0.0,1582.3017468428363,1857157.0042987983,700.0,536900.0,0.1507348699615692,1030425.7295964225,1478.7445436315438,1478.7445436314556,0.0,0.0,75.65039550190235,825224.7740859018,27.75607283942872,27.756072839432164,-1582.3017468428363,-3540535.2716516457,true,true,1.341141759,7315.525950981999,0.0,1.2,767.0,1.341141759,7315.525950981999,0.0,121.92,0.0 +768,24032.301746842837,23332.301746842837,0.22,5376.1738664331915,3545911.4455180787,700.0,537600.0,27618.97212015087,16661796.14685599,22242.79825371768,13115884.701337932,true,768,23332.301746842837,0.0,5376.1738664331915,1862533.1781652314,700.0,537600.0,4.490542508108848,1030430.2201389306,5042.518889615731,6521.263433247186,0.0,0.0,234.51622600513053,825459.290311907,94.6482083042216,122.40428114365376,-5376.1738664331915,-3545911.4455180787,true,true,2.816397693,7318.342348674999,0.0,1.2,768.0,2.816397693,7318.342348674999,0.0,121.92,0.0 +769,27826.173866433193,27126.173866433193,0.28,9206.286643803904,3555117.732161883,700.0,538300.0,35379.59515644251,16697175.742012432,26173.308512638607,13142058.009850571,true,769,27126.173866433193,0.0,9206.286643803904,1871739.4648090352,700.0,538300.0,22.440955219167233,1030452.6610941498,8621.080687894411,15142.344121141597,0.0,0.0,400.94709606418974,825860.2374079712,161.81790462613696,284.2221857697907,-9206.286643803904,-3555117.732161883,true,true,4.291653628,7322.634002302999,0.0,1.2,769.0,4.291653628,7322.634002302999,0.0,121.92,0.0 +770,31656.286643803905,30956.286643803905,0.33,13059.59931455508,3568177.331476438,700.0,539000.0,41695.75549865176,16738871.497511083,28636.156184096675,13170694.166034667,true,770,30956.286643803905,0.0,13059.59931455508,1884799.0641235902,700.0,539000.0,63.59127321762125,1030516.2523673674,12199.642474485532,27341.98659562713,0.0,0.0,567.3779661232489,826427.6153740945,228.9876007286765,513.2097864984672,-13059.59931455508,-3568177.331476438,true,true,5.766909562,7328.400911864999,0.0,1.2,770.0,5.766909562,7328.400911864999,0.0,121.92,0.0 +771,35509.59931455508,34809.59931455508,0.33,14787.481251045983,3582964.812727484,700.0,539700.0,46931.76136680601,16785803.25887789,32144.280115760026,13202838.446150428,true,771,34809.59931455508,0.0,14787.481251045983,1899586.5453746363,700.0,539700.0,131.97621118615606,1030648.2285785535,13675.100929466262,41017.08752509339,0.0,0.0,723.722116793336,827151.3374908878,256.6819936002287,769.8917800986959,-14787.481251045983,-3582964.812727484,true,true,7.063346596,7335.464258460999,0.0,1.2,771.0,7.063346596,7335.464258460999,0.0,121.92,0.0 +772,37237.48125104598,36537.48125104598,0.28,10521.757945237076,3593486.570672721,700.0,540400.0,40077.70694727526,16825880.965825163,29555.949002038185,13232394.395152466,true,772,36537.48125104598,0.0,10521.757945237076,1910108.3033198733,700.0,540400.0,206.14968081993374,1030854.3782593735,9301.303176406584,50318.39070149997,0.0,0.0,839.7193899075343,827991.0568807954,174.58569810302387,944.4774782017198,-10521.757945237076,-3593486.570672721,true,true,7.823326926,7343.287585386999,0.0,1.2,772.0,7.823326926,7343.287585386999,0.0,121.92,0.0 +773,32971.75794523708,32271.757945237077,0.22,6571.9255652380225,3600058.4962379592,700.0,541100.0,33054.20711471829,16858935.17293988,26482.281549480263,13258876.676701946,true,773,32271.757945237077,0.0,6571.9255652380225,1916680.2288851114,700.0,541100.0,258.3052967995183,1031112.683556173,5308.692901177233,55627.0836026772,0.0,0.0,905.2830659640572,828896.3399467594,99.64430129721461,1044.1217794989343,-6571.9255652380225,-3600058.4962379592,true,true,8.225669453,7351.513254839999,0.0,1.2,773.0,8.225669453,7351.513254839999,0.0,121.92,0.0 +774,29021.925565238023,28321.925565238023,0.28,8238.088109348259,3608296.5843473077,700.0,541800.0,31921.743247672348,16890856.916187555,23683.655138324088,13282560.331840271,true,774,28321.925565238023,0.0,8238.088109348259,1924918.3169944596,700.0,541800.0,303.9258192241389,1031416.6093753971,6849.873329920884,62476.956932598085,0.0,0.0,955.7166629089179,829852.0566096683,128.57229729431728,1172.6940767932515,-8238.088109348259,-3608296.5843473077,true,true,8.717421431,7360.230676270999,0.0,1.2,774.0,8.717421431,7360.230676270999,0.0,121.92,0.0 +775,30688.08810934826,29988.08810934826,0.28,9451.242380979955,3617747.8267282876,700.0,542500.0,36254.437074928406,16927111.353262484,26803.19469394845,13309363.52653422,true,775,29988.08810934826,0.0,9451.242380979955,1934369.5593754395,700.0,542500.0,362.6837732755098,1031779.2931486726,7926.07075774624,70403.02769034433,0.0,0.0,1013.715299466017,830865.7719091343,148.7725504921874,1321.4666272854388,-9451.242380979955,-3617747.8267282876,true,true,9.253878135,7369.484554405999,0.0,1.2,775.0,9.253878135,7369.484554405999,0.0,121.92,0.0 +776,31901.242380979955,31201.242380979955,0.28,10803.162222174074,3628550.9889504616,700.0,543200.0,41082.72222205026,16968194.075484533,30279.559999876183,13339643.086534096,true,776,31201.242380979955,0.0,10803.162222174074,1945172.7215976135,700.0,543200.0,434.64390234698027,1032213.9370510195,9120.567734831191,79523.59542517552,0.0,0.0,1076.757295745806,831942.5292048801,171.19328925009722,1492.659916535536,-10803.162222174074,-3628550.9889504616,true,true,9.835039564,7379.319593969999,0.0,1.2,776.0,9.835039564,7379.319593969999,0.0,121.92,0.0 +777,33253.162222174076,32553.162222174076,0.28,10734.519827418575,3639285.50877788,700.0,543900.0,40837.57081220919,17009031.646296743,30103.050984790614,13369746.137518886,true,777,32553.162222174076,0.0,10734.519827418575,1955907.241425032,700.0,543900.0,515.5434467822769,1032729.4804978018,8911.900488783815,88435.49591395933,0.0,0.0,1139.79929213841,833082.3284970185,167.2765997140738,1659.93651624961,-10734.519827418575,-3639285.50877788,true,true,10.37149627,7389.691090239999,0.0,1.2,777.0,10.37149627,7389.691090239999,0.0,121.92,0.0 +778,33184.519827418575,32484.519827418575,0.33,16363.275383432398,3655648.7841613125,700.0,544600.0,51706.895101310285,17060738.541398052,35343.61971787789,13405089.757236764,true,778,32484.519827418575,0.0,16363.275383432398,1972270.5168084644,700.0,544600.0,625.1598537386842,1033354.6403515405,14255.097301903224,102690.59321586255,0.0,0.0,1215.4496874710899,834297.7781844897,267.56854031939986,1927.5050565690099,-16363.275383432398,-3655648.7841613125,true,true,11.17618132,7400.867271559999,0.0,1.2,778.0,11.17618132,7400.867271559999,0.0,121.92,0.0 +779,38813.275383432396,38113.275383432396,0.33,14992.017927394325,3670640.8020887068,700.0,545300.0,47551.5694769525,17108290.110875003,32559.551549558175,13437649.308786321,true,779,38113.275383432396,0.0,14992.017927394325,1987262.5347358587,700.0,545300.0,762.5558427990702,1034117.1961943395,12692.557337064038,115383.15055292659,0.0,0.0,1298.665122246786,835596.4433067365,238.23962528443033,2165.7446818534404,-14992.017927394325,-3670640.8020887068,true,true,11.8467522,7412.714023759999,0.0,1.2,779.0,11.8467522,7412.714023759999,0.0,121.92,0.0 +780,37442.01792739432,36742.01792739432,0.28,11279.79651233689,3681920.5986010437,700.0,546000.0,42784.98754406032,17151075.098419063,31505.19103172343,13469154.499818046,true,780,36742.01792739432,0.0,11279.79651233689,1998542.3312481956,700.0,546000.0,879.0857603049201,1034996.2819546445,8872.467197838403,124255.61775076498,0.0,0.0,1361.7071183573526,836958.1504250938,166.53643583621331,2332.281117689654,-11279.79651233689,-3681920.5986010437,true,true,12.29379945,7425.007823209999,0.0,1.2,780.0,12.29379945,7425.007823209999,0.0,121.92,0.0 +781,33729.79651233689,33029.79651233689,0.22,6998.972623862522,3688919.571224906,700.0,546700.0,34995.330108466005,17186070.42852753,27996.357484603483,13497150.857302649,true,781,33029.79651233689,0.0,6998.972623862522,2005541.3038720582,700.0,546700.0,954.3966696933267,1035950.6786243378,4559.462412144059,128815.08016290904,0.0,0.0,1399.5323161365075,838357.6827412304,85.58122588862797,2417.862343578282,-6998.972623862522,-3688919.571224906,true,true,12.51732308,7437.525146289999,0.0,1.2,781.0,12.51732308,7437.525146289999,0.0,121.92,0.0 +782,29448.972623862523,28748.972623862523,0.22,5243.170968220995,3694162.742193127,700.0,547400.0,27014.413491913612,17213084.842019442,21771.242523692617,13518922.099826341,true,782,28748.972623862523,0.0,5243.170968220995,2010784.4748402792,700.0,547400.0,996.2656366193099,1036946.9442609571,2775.1106779563092,131590.19084086534,0.0,0.0,1419.7057553657114,839777.388496596,52.088898279664605,2469.9512418579466,-5243.170968220995,-3694162.742193127,true,true,12.65143726,7450.176583549999,0.0,1.2,782.0,12.65143726,7450.176583549999,0.0,121.92,0.0 +783,27693.170968220995,26993.170968220995,0.28,8232.001614021709,3702394.7438071487,700.0,548100.0,31900.005764363243,17244984.847783804,23668.004150341534,13542590.103976684,true,783,26993.170968220995,0.0,8232.001614021709,2019016.4764543008,700.0,548100.0,1044.8117613107452,1037991.7560222679,5638.945821520826,137229.13666238615,0.0,0.0,1442.4008741460193,841219.789370742,105.84315704411657,2575.794398902063,-8232.001614021709,-3702394.7438071487,true,true,12.91966561,7463.096249159999,0.0,1.2,783.0,12.91966561,7463.096249159999,0.0,121.92,0.0 +784,30682.00161402171,29982.00161402171,0.16,2535.567493283286,3704930.311300432,700.0,548800.0,20222.296833020537,17265207.144616824,17686.729339737252,13560276.833316421,true,784,29982.00161402171,0.0,2535.567493283286,2021552.043947584,700.0,548800.0,1078.0365401384195,1039069.7925624063,0.0,137229.13666238615,0.0,0.0,1457.5309531448663,842677.3203238869,0.0,2575.794398902063,-2535.567493283286,-3704930.311300432,true,true,12.91966561,7476.01591477,0.0,1.2,784.0,12.91966561,7476.01591477,0.0,121.92,0.0 +785,24985.567493283284,24285.567493283284,0.16,2535.567493283286,3707465.878793715,700.0,549500.0,20222.296833020537,17285429.441449843,17686.729339737252,13577963.562656159,true,785,24285.567493283284,0.0,2535.567493283286,2024087.6114408672,700.0,549500.0,1078.0365401384195,1040147.8291025447,0.0,137229.13666238615,0.0,0.0,1457.5309531448663,844134.8512770318,0.0,2575.794398902063,-2535.567493283286,-3707465.878793715,true,true,12.91966561,7488.93558038,0.0,1.2,785.0,12.91966561,7488.93558038,0.0,121.92,0.0 +786,24985.567493283284,24285.567493283284,0.16,1561.6257568083647,3709027.5045505236,700.0,550200.0,14135.160980052278,17299564.602429897,12573.535223243915,13590537.097879402,true,786,24285.567493283284,0.0,1561.6257568083647,2025649.2371976755,700.0,550200.0,1072.4508691329552,1041220.2799716777,-948.0396567908635,136281.09700559528,0.0,0.0,1455.0092730296878,845589.8605500615,-17.794728563414726,2557.9996703386487,-1561.6257568083647,-3709027.5045505236,true,true,12.87496088,7501.81054126,0.0,1.2,786.0,12.87496088,7501.81054126,0.0,121.92,0.0 +787,24011.625756808364,23311.625756808364,0.12,0.0,3709027.5045505236,700.0,550900.0,6999.999999999999,17306564.602429897,6999.999999999999,13597537.097879402,true,787,23311.625756808364,0.0,-382.19236815776844,2025267.0448295178,700.0,550900.0,1050.301128245246,1042270.5810999229,-2824.4019533233245,133456.69505227194,0.0,0.0,1444.9225536971232,847034.7831037586,-53.01409677681319,2504.9855735618353,-0.0,-3709027.5045505236,true,true,12.74084671,7514.55138797,0.0,1.2,787.0,12.74084671,7514.55138797,0.0,121.92,0.0 +788,22450.0,21750.0,0.12,553.8211686146318,3709581.325719138,700.0,551600.0,10448.509738455266,17317013.112168353,9894.688569840635,13607431.786449242,true,788,21750.0,0.0,553.8211686146318,2025820.8659981324,700.0,551600.0,1023.0455569117036,1043293.6266568346,-1866.5042114066378,131590.1908408653,0.0,0.0,1432.3141548134547,848467.097258572,-35.03433170388865,2469.9512418579466,-553.8211686146318,-3709581.325719138,true,true,12.65143726,7527.202825230001,0.0,1.2,788.0,12.65143726,7527.202825230001,0.0,121.92,0.0 +789,23003.82116861463,22303.82116861463,0.16,2439.547540385887,3712020.873259524,700.0,552300.0,19622.17212741179,17336635.284295764,17182.624587025904,13624614.411036268,true,789,22303.82116861463,0.0,2439.547540385887,2028260.4135385184,700.0,552300.0,1012.2767452387144,1044305.9034020733,0.0,131590.1908408653,0.0,0.0,1427.2707951471723,849894.3680537192,0.0,2469.9512418579466,-2439.547540385887,-3712020.873259524,true,true,12.65143726,7539.854262490001,0.0,1.2,789.0,12.65143726,7539.854262490001,0.0,121.92,0.0 +790,24889.547540385887,24189.547540385887,0.16,2439.547540385887,3714460.4207999096,700.0,553000.0,19622.17212741179,17356257.456423175,17182.624587025904,13641797.035623293,true,790,24189.547540385887,0.0,2439.547540385887,2030699.9610789043,700.0,553000.0,1012.2767452387144,1045318.180147312,0.0,131590.1908408653,0.0,0.0,1427.2707951471723,851321.6388488663,0.0,2469.9512418579466,-2439.547540385887,-3714460.4207999096,true,true,12.65143726,7552.505699750001,0.0,1.2,790.0,12.65143726,7552.505699750001,0.0,121.92,0.0 +791,24889.547540385887,24189.547540385887,0.16,1485.9222007386256,3715946.343000648,700.0,553700.0,13662.01375461641,17369919.470177792,12176.091553877784,13653973.127177171,true,791,24189.547540385887,0.0,1485.9222007386256,2032185.883279643,700.0,553700.0,1006.9207941976458,1046325.1009415096,-928.3230609352154,130661.8677799301,0.0,0.0,1424.7491150319938,852746.3879638984,-17.424647555798682,2452.5265943021477,-1485.9222007386256,-3715946.343000648,true,true,12.60673253,7565.1124322800015,0.0,1.2,791.0,12.60673253,7565.1124322800015,0.0,121.92,0.0 +792,23935.922200738627,23235.922200738627,0.12,0.0,3715946.343000648,700.0,554400.0,6999.999999999999,17376919.470177792,6999.999999999999,13660973.127177171,true,792,23235.922200738627,0.0,-3227.127716565385,2028958.7555630777,700.0,554400.0,969.9571815182104,1047295.0581230278,-5500.929663762416,125160.93811616767,0.0,0.0,1407.0973559179683,854153.4853198163,-103.25259023914789,2349.2740040629997,-0.0,-3715946.343000648,true,true,12.33850418,7577.450936460002,0.0,1.2,792.0,12.33850418,7577.450936460002,0.0,121.92,0.0 +793,22450.0,21750.0,0.16,1401.0417789532241,3717347.3847796014,700.0,555100.0,13131.511118457649,17390050.98129625,11730.469339504425,13672703.596516676,true,793,21750.0,0.0,1401.0417789532241,2030359.797342031,700.0,555100.0,933.9094339253646,1048228.9675569532,-905.3203654027374,124255.61775076494,0.0,0.0,1389.4455968039429,855542.9309166202,-16.992886373346,2332.2811176896535,-1401.0417789532241,-3717347.3847796014,true,true,12.29379945,7589.7447359100015,0.0,1.2,793.0,12.29379945,7589.7447359100015,0.0,121.92,0.0 +794,23851.041778953222,23151.041778953222,0.16,2315.7577664649716,3719663.1425460665,700.0,555800.0,18848.48604040607,17408899.467336655,16532.7282739411,13689236.324790617,true,794,23151.041778953222,0.0,2315.7577664649716,2032675.555108496,700.0,555800.0,928.8338497762074,1049157.8014067295,0.0,124255.61775076494,0.0,0.0,1386.9239166887644,856929.854833309,0.0,2332.2811176896535,-2315.7577664649716,-3719663.1425460665,true,true,12.29379945,7602.038535360001,0.0,1.2,794.0,12.29379945,7602.038535360001,0.0,121.92,0.0 +795,24765.757766464973,24065.757766464973,0.16,2315.7577664649716,3721978.9003125317,700.0,556500.0,18848.48604040607,17427747.95337706,16532.7282739411,13705769.053064559,true,795,24065.757766464973,0.0,2315.7577664649716,2034991.312874961,700.0,556500.0,928.8338497762074,1050086.6352565058,0.0,124255.61775076494,0.0,0.0,1386.9239166887644,858316.7787499977,0.0,2332.2811176896535,-2315.7577664649716,-3721978.9003125317,true,true,12.29379945,7614.332334810001,0.0,1.2,795.0,12.29379945,7614.332334810001,0.0,121.92,0.0 +796,24765.757766464973,24065.757766464973,0.16,2315.7577664649716,3724294.658078997,700.0,557200.0,18848.48604040607,17446596.439417467,16532.7282739411,13722301.7813385,true,796,24065.757766464973,0.0,2315.7577664649716,2037307.070641426,700.0,557200.0,928.8338497762074,1051015.469106282,0.0,124255.61775076494,0.0,0.0,1386.9239166887644,859703.7026666865,0.0,2332.2811176896535,-2315.7577664649716,-3724294.658078997,true,true,12.29379945,7626.626134260001,0.0,1.2,796.0,12.29379945,7626.626134260001,0.0,121.92,0.0 +797,24765.757766464973,24065.757766464973,0.16,2315.7577664649716,3726610.415845462,700.0,557900.0,18848.48604040607,17465444.925457872,16532.7282739411,13738834.509612441,true,797,24065.757766464973,0.0,2315.7577664649716,2039622.8284078909,700.0,557900.0,928.8338497762074,1051944.3029560584,0.0,124255.61775076494,0.0,0.0,1386.9239166887644,861090.6265833753,0.0,2332.2811176896535,-2315.7577664649716,-3726610.415845462,true,true,12.29379945,7638.919933710001,0.0,1.2,797.0,12.29379945,7638.919933710001,0.0,121.92,0.0 +798,24765.757766464973,24065.757766464973,0.16,2315.7577664649716,3728926.1736119273,700.0,558600.0,18848.48604040607,17484293.41149828,16532.7282739411,13755367.237886382,true,798,24065.757766464973,0.0,2315.7577664649716,2041938.5861743558,700.0,558600.0,928.8338497762074,1052873.1368058347,0.0,124255.61775076494,0.0,0.0,1386.9239166887644,862477.550500064,0.0,2332.2811176896535,-2315.7577664649716,-3728926.1736119273,true,true,12.29379945,7651.213733160001,0.0,1.2,798.0,12.29379945,7651.213733160001,0.0,121.92,0.0 +799,24765.757766464973,24065.757766464973,0.16,3245.668282505391,3732171.841894433,700.0,559300.0,24660.426765658693,17508953.838263936,21414.758483153302,13776781.996369535,true,799,24065.757766464973,0.0,3245.668282505391,2045184.2544568612,700.0,559300.0,933.9094339253646,1053807.04623976,905.3203654027374,125160.93811616767,0.0,0.0,1389.4455968039429,863866.996096868,16.992886373346,2349.2740040629997,-3245.668282505391,-3732171.841894433,true,true,12.33850418,7663.552237340001,0.0,1.2,799.0,12.33850418,7663.552237340001,0.0,121.92,0.0 +800,25695.66828250539,24995.66828250539,0.22,6084.349254565352,3738256.191148998,700.0,560000.0,30837.951157115236,17539791.78942105,24753.601902549883,13801535.598272085,true,800,24995.66828250539,0.0,6084.349254565352,2051268.6037114265,700.0,560000.0,959.5648720570623,1054766.6111118172,3654.142046741322,128815.080162909,0.0,0.0,1402.053996251686,865269.0500931196,68.58833951528196,2417.8623435782815,-6084.349254565352,-3738256.191148998,true,true,12.51732308,7676.069560420001,0.0,1.2,800.0,12.51732308,7676.069560420001,0.0,121.92,0.0 +801,28534.34925456535,27834.34925456535,0.28,7160.408028576139,3745416.5991775743,700.0,560700.0,28072.88581634335,17567864.675237395,20912.47778776721,13822448.076059852,true,801,27834.34925456535,0.0,7160.408028576139,2058429.0117400025,700.0,560700.0,1006.9207941976458,1055773.5319060148,4641.614889362947,133456.69505227194,0.0,0.0,1424.7491150319938,866693.7992081516,87.12322998355324,2504.985573561835,-7160.408028576139,-3745416.5991775743,true,true,12.74084671,7688.810407130001,0.0,1.2,801.0,12.74084671,7688.810407130001,0.0,121.92,0.0 +802,29610.408028576137,28910.408028576137,0.33,17281.24395236437,3762697.8431299385,700.0,561400.0,54488.618037467786,17622353.29327486,37207.374085103416,13859655.450144956,true,802,28910.408028576137,0.0,17281.24395236437,2075710.255692367,700.0,561400.0,1117.6802188421839,1056891.212124857,14417.759310882255,147874.4543631542,0.0,0.0,1475.1827122588918,868168.9819204105,270.6217103810403,2775.6072839428753,-17281.24395236437,-3762697.8431299385,true,true,13.41141759,7702.221824720002,0.0,1.2,802.0,13.41141759,7702.221824720002,0.0,121.92,0.0 +803,39731.24395236437,39031.24395236437,0.33,13016.134428415546,3775713.977558354,700.0,562100.0,41564.043722471346,17663917.336997334,28547.9092940558,13888203.359439012,true,803,39031.24395236437,0.0,13016.134428415546,2088726.3901207824,700.0,562100.0,1267.1833891650056,1058158.3955140219,10022.601838474762,157897.05620162896,0.0,0.0,1538.2247083694585,869707.20662878,188.12449240631886,2963.731776349194,-13016.134428415546,-3775713.977558354,true,true,13.85846484,7716.080289560002,0.0,1.2,803.0,13.85846484,7716.080289560002,0.0,121.92,0.0 +804,35466.13442841555,34766.13442841555,0.33,13530.118175567317,3789244.095733921,700.0,562800.0,43121.57022899187,17707038.907226324,29591.452053424553,13917794.811492436,true,804,34766.13442841555,0.0,13530.118175567317,2102256.5082963496,700.0,562800.0,1395.9556293758296,1059554.3511433976,10351.21173264913,168248.2679342781,0.0,0.0,1588.658305032282,871295.8649338123,194.2925085100756,3158.0242848592698,-13530.118175567317,-3789244.095733921,true,true,14.30551209,7730.385801650002,0.0,1.2,804.0,14.30551209,7730.385801650002,0.0,121.92,0.0 +805,35980.11817556732,35280.11817556732,0.33,14052.543324593249,3803296.6390585145,700.0,563500.0,44704.67674119166,17751743.583967514,30652.133416598408,13948446.944909034,true,805,35280.11817556732,0.0,14052.543324593249,2116309.051620943,700.0,563500.0,1533.1690237713788,1061087.520167169,10679.821869395772,178928.08980367385,0.0,0.0,1639.09190225918,872934.9568360714,200.46052916691826,3358.484814026188,-14052.543324593249,-3803296.6390585145,true,true,14.75255935,7745.138361000002,0.0,1.2,805.0,14.75255935,7745.138361000002,0.0,121.92,0.0 +806,36502.54332459325,35802.54332459325,0.16,3269.3335968318443,3806565.972655346,700.0,564200.0,24808.334980199026,17776551.91894771,21539.001383367184,13969985.946292402,true,806,35802.54332459325,0.0,3269.3335968318443,2119578.3852177747,700.0,564200.0,1605.0248956771777,1062692.545062846,0.0,178928.08980367385,0.0,0.0,1664.3087011546666,874599.2655372261,0.0,3358.484814026188,-3269.3335968318443,-3806565.972655346,true,true,14.75255935,7759.8909203500025,0.0,1.2,806.0,14.75255935,7759.8909203500025,0.0,121.92,0.0 +807,25719.333596831842,25019.333596831842,0.28,10017.498919999123,3816583.4715753454,700.0,564900.0,38276.78185713972,17814828.700804852,28259.282937140597,13998245.229229543,true,807,25019.333596831842,0.0,10017.498919999123,2129595.884137774,700.0,564900.0,1649.1974475565214,1064341.7425104026,6565.625729708203,185493.71553338206,0.0,0.0,1679.4387801535133,876278.7043173796,123.23696258088448,3481.7217766070726,-10017.498919999123,-3816583.4715753454,true,true,15.0207877,7774.911708050003,0.0,1.2,807.0,15.0207877,7774.911708050003,0.0,121.92,0.0 +808,32467.498919999125,31767.498919999125,0.28,7955.459596566402,3824538.931171912,700.0,565600.0,30912.355702022858,17845741.056506876,22956.896105456457,14021202.125335,true,808,31767.498919999125,0.0,7955.459596566402,2137551.3437343403,700.0,565600.0,1724.6066411664551,1066066.349151569,4442.805798640346,189936.5213320224,0.0,0.0,1704.6555784849252,877983.3598958645,83.39157827467528,3565.113354881748,-7955.459596566402,-3824538.931171912,true,true,15.1996066,7790.111314650003,0.0,1.2,808.0,15.1996066,7790.111314650003,0.0,121.92,0.0 +809,30405.4595965664,29705.4595965664,0.22,6930.845306385864,3831469.7764782975,700.0,566300.0,34685.66048357211,17880426.71699045,27754.815177186243,14048956.940512186,true,809,29705.4595965664,0.0,6930.845306385864,2144482.189040726,700.0,566300.0,1778.7383845158138,1067845.0875360847,3366.6082618045,193303.12959382692,0.0,0.0,1722.3073370348761,879705.6672328993,63.19132303067399,3628.304677912422,-6930.845306385864,-3831469.7764782975,true,true,15.33372077,7805.445035420003,0.0,1.2,809.0,15.33372077,7805.445035420003,0.0,121.92,0.0 +810,29380.845306385865,28680.845306385865,0.16,2375.146473466113,3833844.9229517635,700.0,567000.0,19219.665459163207,17899646.382449612,16844.518985697094,14065801.459497884,true,810,28680.845306385865,0.0,2375.146473466113,2146857.335514192,700.0,567000.0,1794.4099985259015,1069639.4975346106,-1125.4887688338354,192177.64082499308,0.0,0.0,1727.3506967011585,881433.0179296006,-21.12545292711178,3607.17922498531,-2375.146473466113,-3833844.9229517635,true,true,15.28901605,7820.734051470003,0.0,1.2,810.0,15.28901605,7820.734051470003,0.0,121.92,0.0 +811,24825.146473466113,24125.146473466113,0.12,1207.5372068448346,3835052.4601586084,700.0,567700.0,15896.143390373622,17915542.525839984,14688.606183528787,14080490.065681413,true,811,24125.146473466113,0.0,1207.5372068448346,2148064.872721037,700.0,567700.0,1770.9369124352895,1071410.434447046,-2241.119492970665,189936.5213320224,0.0,0.0,1719.7856574837722,883152.8035870843,-42.06587010356221,3565.113354881748,-1207.5372068448346,-3835052.4601586084,true,true,15.1996066,7835.933658070003,0.0,1.2,811.0,15.1996066,7835.933658070003,0.0,121.92,0.0 +812,23657.537206844834,22957.537206844834,0.16,3470.144764967369,3838522.6049235757,700.0,568400.0,26063.404781046058,17941605.93062103,22593.26001607869,14103083.325697491,true,812,22957.537206844834,0.0,3470.144764967369,2151535.017486004,700.0,568400.0,1755.4024671498792,1073165.8369141957,0.0,189936.5213320224,0.0,0.0,1714.7422978174898,884867.5458849018,0.0,3565.113354881748,-3470.144764967369,-3838522.6049235757,true,true,15.1996066,7851.133264670003,0.0,1.2,812.0,15.1996066,7851.133264670003,0.0,121.92,0.0 +813,25920.14476496737,25220.14476496737,0.16,2323.318904848748,3840845.9238284244,700.0,569100.0,18895.743155304674,17960501.673776336,16572.424250455926,14119655.749947947,true,813,25220.14476496737,0.0,2323.318904848748,2153858.336390853,700.0,569100.0,1747.6694269619252,1074913.5063411577,-1115.6307226666315,188820.8906093558,0.0,0.0,1712.2206177023113,886579.7665026041,-20.940417148857104,3544.1729377328907,-2323.318904848748,-3840845.9238284244,true,true,15.15490187,7866.288166540003,0.0,1.2,813.0,15.15490187,7866.288166540003,0.0,121.92,0.0 +814,24773.318904848747,24073.318904848747,0.12,29.472038145986517,3840875.3958665705,700.0,569800.0,6999.999999999999,17967501.673776336,6970.527961854013,14126626.2779098,true,814,24073.318904848747,0.0,29.472038145986517,2153887.808428999,700.0,569800.0,1716.964376875773,1076630.4707180334,-3327.175075973715,185493.71553338208,0.0,0.0,1702.1338983697467,888281.9004009739,-62.451161125818174,3481.7217766070726,-29.472038145986517,-3840875.3958665705,true,true,15.0207877,7881.308954240003,0.0,1.2,814.0,15.0207877,7881.308954240003,0.0,121.92,0.0 +815,22479.472038145985,21779.472038145985,0.12,0.0,3840875.3958665705,700.0,570500.0,6999.999999999999,17974501.673776336,6999.999999999999,14133626.2779098,true,815,21779.472038145985,0.0,-2243.82393159609,2151643.984497403,700.0,570500.0,1656.6374239675824,1078287.1081420009,-5479.57014376485,180014.14538961725,0.0,0.0,1681.9604597046173,889963.8608606785,-102.85167150343926,3378.8701051036333,-0.0,-3840875.3958665705,true,true,14.79726407,7896.106218310003,0.0,1.2,815.0,14.79726407,7896.106218310003,0.0,121.92,0.0 +816,22450.0,21750.0,0.16,2172.7210256749636,3843048.1168922456,700.0,571200.0,17954.506410468523,17992456.180186804,15781.785384793558,14149408.063294593,true,816,21750.0,0.0,2172.7210256749636,2153816.705523078,700.0,571200.0,1612.3315219899907,1079899.4396639909,-1086.0555859433525,178928.08980367388,0.0,0.0,1666.8303807057705,891630.6912413843,-20.385291077445224,3358.484814026188,-2172.7210256749636,-3843048.1168922456,true,true,14.75255935,7910.858777660003,0.0,1.2,816.0,14.75255935,7910.858777660003,0.0,121.92,0.0 +817,24622.721025674964,23922.721025674964,0.12,0.0,3843048.1168922456,700.0,571900.0,6999.999999999999,17999456.180186804,6999.999999999999,14156408.063294593,true,817,23922.721025674964,0.0,-2261.465432237408,2151555.2400908405,700.0,571900.0,1568.8227059939684,1081468.2623699848,-5380.987173307377,173547.1026303665,0.0,0.0,1651.7003017069233,893282.3915430912,-101.0012666309227,3257.4835473952653,-0.0,-3843048.1168922456,true,true,14.52903572,7925.3878133800035,0.0,1.2,817.0,14.52903572,7925.3878133800035,0.0,121.92,0.0 +818,22450.0,21750.0,0.12,0.0,3843048.1168922456,700.0,572600.0,6999.999999999999,18006456.180186804,6999.999999999999,14163408.063294593,true,818,21750.0,0.0,-2273.750793883462,2149281.489296957,700.0,572600.0,1498.0596619294924,1082966.3220319143,-5298.8346960883955,168248.26793427812,0.0,0.0,1626.483502811437,894908.8750459026,-99.45926253599555,3158.0242848592698,-0.0,-3843048.1168922456,true,true,14.30551209,7939.693325470003,0.0,1.2,818.0,14.30551209,7939.693325470003,0.0,121.92,0.0 +819,22450.0,21750.0,0.16,1998.3791493091508,3845046.496041555,700.0,573300.0,16864.86968318219,18023321.049869988,14866.49053387304,14178274.553828467,true,819,21750.0,0.0,1998.3791493091508,2151279.8684462663,700.0,573300.0,1456.6410361310805,1084422.9630680454,-1049.908501259502,167198.35943301863,0.0,0.0,1611.35342381259,896520.2284697151,-19.706809375017883,3138.317475484252,-1998.3791493091508,-3845046.496041555,true,true,14.26080737,7953.954132840004,0.0,1.2,819.0,14.26080737,7953.954132840004,0.0,121.92,0.0 +820,24448.379149309152,23748.379149309152,0.12,0.0,3845046.496041555,700.0,574000.0,6999.999999999999,18030321.049869988,6999.999999999999,14185274.553828467,true,820,23748.379149309152,0.0,-158.03587800372816,2151121.8325682627,700.0,574000.0,1429.4571525788112,1085852.4202206242,-3130.0093791011004,164068.35005391753,0.0,0.0,1601.2667044800253,898121.4951741952,-58.75035596146432,3079.567119522788,-0.0,-3845046.496041555,true,true,14.12669319,7968.080826030004,0.0,1.2,820.0,14.12669319,7968.080826030004,0.0,121.92,0.0 +821,22450.0,21750.0,0.16,1937.5693842880314,3846984.065425843,700.0,574700.0,16484.808651800195,18046805.85852179,14547.239267512163,14199821.793095978,true,821,21750.0,0.0,1937.5693842880314,2153059.4019525507,700.0,574700.0,1402.613594861644,1087255.033815486,-1036.764106962612,163031.5859469549,0.0,0.0,1591.1799851474605,899712.6751593426,-19.460088758460998,3060.1070307643267,-1937.5693842880314,-3846984.065425843,true,true,14.08198847,7982.162814500004,0.0,1.2,821.0,14.08198847,7982.162814500004,0.0,121.92,0.0 +822,24387.569384288032,23687.569384288032,0.12,0.0,3846984.065425843,700.0,575400.0,6999.999999999999,18053805.85852179,6999.999999999999,14206821.793095978,true,822,23687.569384288032,0.0,-6452.426137001081,2146606.9758155495,700.0,575400.0,1336.9795575097173,1088592.0133729957,-9183.003668016738,153848.58227893818,0.0,0.0,1565.9631868160488,901278.6383461587,-172.36521331010988,2887.7418174542167,-0.0,-3846984.065425843,true,true,13.67964594,7995.842460440004,0.0,1.2,822.0,13.67964594,7995.842460440004,0.0,121.92,0.0 +823,22450.0,21750.0,0.12,0.0,3846984.065425843,700.0,576100.0,6999.999999999999,18060805.85852179,6999.999999999999,14213821.793095978,true,823,21750.0,0.0,-3315.7061624558382,2143291.2696530935,700.0,576100.0,1242.4182978025492,1089834.4316707982,-5974.12791578394,147874.45436315425,0.0,0.0,1528.137989036894,902806.7763351955,-112.13453351134136,2775.6072839428753,-0.0,-3846984.065425843,true,true,13.41141759,8009.253878030005,0.0,1.2,823.0,13.41141759,8009.253878030005,0.0,121.92,0.0 +824,22450.0,21750.0,0.16,1707.6858776156564,3848691.7513034586,700.0,576800.0,15048.036735097852,18075853.895256888,13340.350857482195,14227162.14395346,true,824,21750.0,0.0,1707.6858776156564,2144998.955530709,700.0,576800.0,1199.8596076708636,1091034.2912784691,-984.1867495604637,146890.26761359378,0.0,0.0,1510.4862299228682,904317.2625651184,-18.47321041761169,2757.1340735252634,-1707.6858776156564,-3848691.7513034586,true,true,13.36671286,8022.620590890005,0.0,1.2,824.0,13.36671286,8022.620590890005,0.0,121.92,0.0 +825,24157.685877615655,23457.685877615655,0.16,2701.824869947103,3851393.5761734056,700.0,577500.0,21261.405437169393,18097115.300694056,18559.58056722229,14245721.724520681,true,825,23457.685877615655,0.0,2701.824869947103,2147700.780400656,700.0,577500.0,1193.8603201394128,1092228.1515986086,0.0,146890.26761359378,0.0,0.0,1507.96454980769,905825.2271149261,0.0,2757.1340735252634,-2701.824869947103,-3851393.5761734056,true,true,13.36671286,8035.987303750005,0.0,1.2,825.0,13.36671286,8035.987303750005,0.0,121.92,0.0 +826,25151.824869947104,24451.824869947104,0.16,2701.824869947103,3854095.4010433527,700.0,578200.0,21261.405437169393,18118376.706131224,18559.58056722229,14264281.305087904,true,826,24451.824869947104,0.0,2701.824869947103,2150402.605270603,700.0,578200.0,1193.8603201394128,1093422.011918748,0.0,146890.26761359378,0.0,0.0,1507.96454980769,907333.1916647338,0.0,2757.1340735252634,-2701.824869947103,-3854095.4010433527,true,true,13.36671286,8049.354016610005,0.0,1.2,826.0,13.36671286,8049.354016610005,0.0,121.92,0.0 +827,25151.824869947104,24451.824869947104,0.16,2701.824869947103,3856797.2259132997,700.0,578900.0,21261.405437169393,18139638.11156839,18559.58056722229,14282840.885655126,true,827,24451.824869947104,0.0,2701.824869947103,2153104.4301405502,700.0,578900.0,1193.8603201394128,1094615.8722388875,0.0,146890.26761359378,0.0,0.0,1507.96454980769,908841.1562145415,0.0,2757.1340735252634,-2701.824869947103,-3856797.2259132997,true,true,13.36671286,8062.720729470005,0.0,1.2,827.0,13.36671286,8062.720729470005,0.0,121.92,0.0 +828,25151.824869947104,24451.824869947104,0.12,0.0,3856797.2259132997,700.0,579600.0,6999.999999999999,18146638.11156839,6999.999999999999,14289840.885655126,true,828,24451.824869947104,0.0,-311.5107347334899,2152792.9194058166,700.0,579600.0,1175.982512172673,1095791.8547510603,-2932.843215460603,143957.42439813318,0.0,0.0,1500.3995105903036,910341.5557251319,-55.04954203586372,2702.0845314893995,-0.0,-3856797.2259132997,true,true,13.23259869,8075.953328160004,0.0,1.2,828.0,13.23259869,8075.953328160004,0.0,121.92,0.0 +829,22450.0,21750.0,0.16,1653.4682538502548,3858450.69416715,700.0,580300.0,14709.176586564092,18161347.288154956,13055.708332713837,14302896.59398784,true,829,21750.0,0.0,1653.4682538502548,2154446.387659667,700.0,580300.0,1152.424304661724,1096944.279055722,-971.0423523233416,142986.38204580985,0.0,0.0,1490.312791257739,911831.8685163896,-18.226489745866665,2683.858041743533,-1653.4682538502548,-3858450.69416715,true,true,13.18789396,8089.141222120004,0.0,1.2,829.0,13.18789396,8089.141222120004,0.0,121.92,0.0 +830,24103.468253850253,23403.468253850253,0.16,2634.375438297709,3861085.069605448,700.0,581000.0,20839.84648936068,18182187.13464432,18205.47105106297,14321102.065038903,true,830,23403.468253850253,0.0,2634.375438297709,2157080.7630979647,700.0,581000.0,1146.5843271551485,1098090.8633828773,0.0,142986.38204580985,0.0,0.0,1487.7911111425606,913319.6596275322,0.0,2683.858041743533,-2634.375438297709,-3861085.069605448,true,true,13.18789396,8102.3291160800045,0.0,1.2,830.0,13.18789396,8102.3291160800045,0.0,121.92,0.0 +831,25084.37543829771,24384.37543829771,0.12,649.2172553120804,3861734.28686076,700.0,581700.0,11243.47712760067,18193430.61177192,10594.25987228859,14331696.324911192,true,831,24384.37543829771,0.0,649.2172553120804,2157729.9803532767,700.0,581700.0,1134.9636290019582,1099225.8270118793,-1932.2261902415157,141054.15585556833,0.0,0.0,1482.7477514762784,914802.4073790085,-36.267934924640436,2647.5901068188923,-649.2172553120804,-3861734.28686076,true,true,13.09848451,8115.427600590005,0.0,1.2,831.0,13.09848451,8115.427600590005,0.0,121.92,0.0 +832,23099.21725531208,22399.21725531208,0.12,0.0,3861734.28686076,700.0,582400.0,6999.999999999999,18200430.61177192,6999.999999999999,14338696.324911192,true,832,22399.21725531208,0.0,-1328.624061425801,2156401.356291851,700.0,582400.0,1100.5731671957394,1100326.400179075,-3825.019193182142,137229.13666238618,0.0,0.0,1467.6176724774311,916270.0250514859,-71.79570791682987,2575.7943989020623,-0.0,-3861734.28686076,true,true,12.91966561,8128.347266200005,0.0,1.2,832.0,12.91966561,8128.347266200005,0.0,121.92,0.0 +833,22450.0,21750.0,0.12,0.0,3861734.28686076,700.0,583100.0,6999.999999999999,18207430.61177192,6999.999999999999,14345696.324911192,true,833,21750.0,0.0,-4211.315939798102,2152190.040352053,700.0,583100.0,1039.3415532270137,1101365.7417323021,-6567.268882456041,130661.86777993014,0.0,0.0,1439.8791940308408,917709.9042455168,-123.26780459991525,2452.5265943021473,-0.0,-3861734.28686076,true,true,12.60673253,8140.953998730005,0.0,1.2,833.0,12.60673253,8140.953998730005,0.0,121.92,0.0 +834,22450.0,21750.0,0.12,0.0,3861734.28686076,700.0,583800.0,6999.999999999999,18214430.61177192,6999.999999999999,14352696.324911192,true,834,21750.0,0.0,-2293.720829569429,2149896.3195224837,700.0,583800.0,975.1813567712387,1102340.9230890733,-4592.323198682849,126069.54458124729,0.0,0.0,1409.619036033147,919119.5232815499,-86.19802369096637,2366.328570611181,-0.0,-3861734.28686076,true,true,12.38320891,8153.337207640005,0.0,1.2,834.0,12.38320891,8153.337207640005,0.0,121.92,0.0 +835,22450.0,21750.0,0.12,0.0,3861734.28686076,700.0,584500.0,6999.999999999999,18221430.61177192,6999.999999999999,14359696.324911192,true,835,21750.0,0.0,-4116.246854260843,2145780.0726682227,700.0,584500.0,913.7175056328553,1103254.6405947062,-6291.236566939175,119778.30801430812,0.0,0.0,1379.3588780354528,920498.8821595854,-118.0866709899764,2248.2418996212045,-0.0,-3861734.28686076,true,true,12.07027583,8165.407483470005,0.0,1.2,835.0,12.07027583,8165.407483470005,0.0,121.92,0.0 +836,22450.0,21750.0,0.12,0.0,3861734.28686076,700.0,585200.0,6999.999999999999,18228430.61177192,6999.999999999999,14366696.324911192,true,836,21750.0,0.0,-11050.153787961339,2134729.9188802615,700.0,585200.0,807.8446934421324,1104062.4852881483,-12939.014765045522,106839.2932492626,0.0,0.0,1323.8819211422724,921822.7640807276,-242.86563750022063,2005.376262120984,-0.0,-3861734.28686076,true,true,11.39970495,8176.807188420005,0.0,1.2,836.0,11.39970495,8176.807188420005,0.0,121.92,0.0 +837,22450.0,21750.0,0.12,0.0,3861734.28686076,700.0,585900.0,6999.999999999999,18235430.61177192,6999.999999999999,14373696.324911192,true,837,21750.0,0.0,-12918.41659033263,2121811.502289929,700.0,585900.0,664.883069558538,1104727.3683577068,-14550.84638748677,92288.44686177582,0.0,0.0,1240.6664858025017,923063.4305665301,-273.11975820690026,1732.2565039140836,-0.0,-3861734.28686076,true,true,10.59501989,8187.402208310005,0.0,1.2,837.0,10.59501989,8187.402208310005,0.0,121.92,0.0 +838,22450.0,21750.0,0.12,0.0,3861734.28686076,700.0,586600.0,6999.999999999999,18242430.61177192,6999.999999999999,14380696.324911192,true,838,21750.0,0.0,-11319.198190128789,2110492.3040998,700.0,586600.0,532.8421428279999,1105260.2105005349,-12764.85143660032,79523.5954251755,0.0,0.0,1152.4076910220788,924215.8382575521,-239.59658737854753,1492.659916535536,-0.0,-3861734.28686076,true,true,9.835039564,8197.237247874005,0.0,1.2,838.0,9.835039564,8197.237247874005,0.0,121.92,0.0 +839,22450.0,21750.0,0.12,0.0,3861734.28686076,700.0,587300.0,6999.999999999999,18249430.61177192,6999.999999999999,14387696.324911192,true,839,21750.0,0.0,-9170.767047421054,2101321.537052379,700.0,587300.0,428.56505532117353,1105688.775555856,-10474.440522719358,69049.15490245614,0.0,0.0,1071.7139360231163,925287.5521935752,-196.6055160459838,1296.0544004895523,-0.0,-3861734.28686076,true,true,9.164468684,8206.401716558006,0.0,1.2,839.0,9.164468684,8206.401716558006,0.0,121.92,0.0 +840,22450.0,21750.0,0.12,0.0,3861734.28686076,700.0,588000.0,6999.999999999999,18256430.61177192,6999.999999999999,14394696.324911192,true,840,21750.0,0.0,-7288.518755611065,2094033.018296768,700.0,588000.0,349.31841944493857,1106038.093975301,-8479.778417889507,60569.37648456663,0.0,0.0,1001.1069002439036,926288.6590938191,-159.16565741039994,1136.8887430791524,-0.0,-3861734.28686076,true,true,8.583307256,8214.985023814006,0.0,1.2,840.0,8.583307256,8214.985023814006,0.0,121.92,0.0 +841,22450.0,21750.0,0.16,1284.438996076712,3863018.7258568364,700.0,588700.0,12402.74372547945,18268833.355497397,11118.304729402738,14405814.629640594,true,841,21750.0,0.0,1284.438996076712,2095317.4572928448,700.0,588700.0,316.1139338328659,1106354.2079091338,0.0,60569.37648456663,0.0,0.0,968.3250622438461,927256.984156063,0.0,1136.8887430791524,-1284.438996076712,-3863018.7258568364,true,true,8.583307256,8223.568331070006,0.0,1.2,841.0,8.583307256,8223.568331070006,0.0,121.92,0.0 +842,23734.43899607671,23034.43899607671,0.28,7250.433296292074,3870269.1591531285,700.0,589400.0,28394.40462961455,18297227.76012701,21143.971333322475,14426958.600973917,true,842,23034.43899607671,0.0,7250.433296292074,2102567.8905891366,700.0,589400.0,338.86570432110716,1106693.0736134548,5811.466045071076,66380.84252963771,0.0,0.0,991.0201808549315,928248.0043369179,109.08136604495968,1245.970109124112,-7250.433296292074,-3870269.1591531285,true,true,8.985649783,8232.553980853007,0.0,1.2,842.0,8.985649783,8232.553980853007,0.0,121.92,0.0 +843,29700.433296292074,29000.433296292074,0.22,6909.016827822698,3877178.175980951,700.0,590100.0,34586.44012646681,18331814.20025348,27677.423298644113,14454636.024272561,true,843,29000.433296292074,0.0,6909.016827822698,2109476.9074169593,700.0,590100.0,384.7702949673831,1107077.8439084222,5389.202329292834,71770.04485893055,0.0,0.0,1033.8887382439614,929281.8930751618,101.1554653185201,1347.1255744426321,-6909.016827822698,-3877178.175980951,true,true,9.343287585,8241.897268438006,0.0,1.2,843.0,9.343287585,8241.897268438006,0.0,121.92,0.0 +844,29359.0168278227,28659.0168278227,0.22,5029.490184589156,3882207.6661655405,700.0,590800.0,26043.137202677983,18357857.337456156,21013.64701808883,14475649.67129065,true,844,28659.0168278227,0.0,5029.490184589156,2114506.3976015486,700.0,590800.0,422.5431525800708,1107500.3870610022,3475.0496844069985,75245.09454333755,0.0,0.0,1066.6705763004265,930348.5636514623,65.22677130166099,1412.3523457442932,-5029.490184589156,-3882207.6661655405,true,true,9.566811212,8251.464079650006,0.0,1.2,844.0,9.566811212,8251.464079650006,0.0,121.92,0.0 +845,27479.490184589158,26779.490184589158,0.22,5909.589679255019,3888117.2558447956,700.0,591500.0,30043.58945115918,18387900.926907316,24133.99977190416,14499783.671062553,true,845,26779.490184589158,0.0,5909.589679255019,2120415.9872808037,700.0,591500.0,456.3721719352103,1107956.7592329374,4278.5008818379565,79523.5954251755,0.0,0.0,1094.4090546906093,931442.9727061529,80.30757079124295,1492.6599165355362,-5909.589679255019,-3888117.2558447956,true,true,9.835039564,8261.299119214007,0.0,1.2,845.0,9.835039564,8261.299119214007,0.0,121.92,0.0 +846,28359.58967925502,27659.58967925502,0.22,6099.282061400678,3894216.5379061964,700.0,592200.0,30905.82755182126,18418806.75445914,24806.545490420584,14524590.216552975,true,846,27659.58967925502,0.0,6099.282061400678,2126515.2693422046,700.0,592200.0,495.28427843715895,1108452.0435113746,4396.800511954977,83920.39593713048,0.0,0.0,1124.669213139563,932567.6419192925,82.52805786897848,1575.1879744045148,-6099.282061400678,-3894216.5379061964,true,true,10.10326792,8271.402387134007,0.0,1.2,846.0,10.10326792,8271.402387134007,0.0,121.92,0.0 +847,28549.282061400678,27849.282061400678,0.22,6291.125563030973,3900507.6634692275,700.0,592900.0,31777.843468322608,18450584.597927462,25486.717905291633,14550076.934458267,true,847,27849.282061400678,0.0,6291.125563030973,2132806.3949052356,700.0,592900.0,536.3476728813372,1108988.391184256,4515.099976828838,88435.49591395931,0.0,0.0,1154.9293714757018,933722.5712907682,84.74854184509532,1659.9365162496101,-6291.125563030973,-3900507.6634692275,true,true,10.37149627,8281.773883404006,0.0,1.2,847.0,10.37149627,8281.773883404006,0.0,121.92,0.0 +848,28741.125563030975,28041.125563030975,0.28,8097.891052964678,3908605.554522192,700.0,593600.0,31421.039474873847,18482005.637402337,23323.14842190917,14573400.082880177,true,848,28041.125563030975,0.0,8097.891052964678,2140904.2859582,700.0,593600.0,587.0511758372942,1109575.4423600934,6204.154843176141,94639.65075713546,0.0,0.0,1190.2328891396783,934912.8041799079,116.45214481156428,1776.3886610611744,-8097.891052964678,-3908605.554522192,true,true,10.72913407,8292.503017474006,0.0,1.2,848.0,10.72913407,8292.503017474006,0.0,121.92,0.0 +849,30547.89105296468,29847.89105296468,0.28,10094.489635893648,3918700.0441580857,700.0,594300.0,38551.74869962017,18520557.386101957,28457.259063726524,14601857.341943903,true,849,29847.89105296468,0.0,10094.489635893648,2150998.775594094,700.0,594300.0,656.8076555225095,1110232.250015616,8050.942458727084,102690.59321586255,0.0,0.0,1235.6231261362193,936148.4273060441,151.1163955078356,1927.5050565690099,-10094.489635893648,-3918700.0441580857,true,true,11.17618132,8303.679198794005,0.0,1.2,849.0,11.17618132,8303.679198794005,0.0,121.92,0.0 +850,32544.489635893646,31844.489635893646,0.28,10563.454098409855,3929263.4982564957,700.0,595000.0,40226.621780035195,18560784.00788199,29663.16768162534,14631520.509625528,true,850,31844.489635893646,0.0,10563.454098409855,2161562.229692504,700.0,595000.0,740.5604158288553,1110972.8104314448,8379.552544019009,111070.14575988156,0.0,0.0,1286.0567233631175,937434.4840294073,157.28441519887352,2084.7894717678832,-10563.454098409855,-3929263.4982564957,true,true,11.62322858,8315.302427374005,0.0,1.2,850.0,11.62322858,8315.302427374005,0.0,121.92,0.0 +851,33013.45409840986,32313.454098409857,0.28,7421.668809163099,3936685.1670656586,700.0,595700.0,29005.96003272535,18589789.967914715,21584.29122356225,14653104.80084909,true,851,32313.454098409857,0.0,7421.668809163099,2168983.8985016667,700.0,595700.0,812.4697477710857,1111785.2801792158,5185.46416535502,116255.60992523658,0.0,0.0,1326.4036012574509,938760.8876306647,97.33129477954175,2182.120766547425,-7421.668809163099,-3936685.1670656586,true,true,11.89145693,8327.193884304004,0.0,1.2,851.0,11.89145693,8327.193884304004,0.0,121.92,0.0 +852,29871.6688091631,29171.6688091631,0.16,2182.12492714144,3938867.2919928,700.0,596400.0,18013.280794634,18607803.24870935,15831.15586749256,14668935.956716582,true,852,29171.6688091631,0.0,2182.12492714144,2171166.023428808,700.0,596400.0,840.5912468851421,1112625.871426101,0.0,116255.60992523658,0.0,0.0,1341.5336802562979,940102.4213109211,0.0,2182.120766547425,-2182.12492714144,-3938867.2919928,true,true,11.89145693,8339.085341234004,0.0,1.2,852.0,11.89145693,8339.085341234004,0.0,121.92,0.0 +853,24632.12492714144,23932.12492714144,0.16,3984.3983771038015,3942851.6903699036,700.0,597100.0,29277.489856898763,18637080.73856625,25293.091479794963,14694229.048196377,true,853,23932.12492714144,0.0,3984.3983771038015,2175150.4218059117,700.0,597100.0,850.1072843141334,1113475.9787104153,1754.7768466522741,118010.38677188885,0.0,0.0,1346.57703992258,941448.9983508437,32.93720621481408,2215.057972762239,-3984.3983771038015,-3942851.6903699036,true,true,11.98086638,8351.066207614003,0.0,1.2,853.0,11.98086638,8351.066207614003,0.0,121.92,0.0 +854,26434.398377103804,25734.398377103804,0.16,4027.123202130534,3946878.8135720342,700.0,597800.0,29544.520013315836,18666625.258579567,25517.396811185303,14719746.445007563,true,854,25734.398377103804,0.0,4027.123202130534,2179177.5450080424,700.0,597800.0,869.3542735971556,1114345.3329840126,1767.9212424192683,119778.30801430812,0.0,0.0,1356.663759255145,942805.6621100989,33.183926858965414,2248.2418996212045,-4027.123202130534,-3946878.8135720342,true,true,12.07027583,8363.136483444003,0.0,1.2,854.0,12.07027583,8363.136483444003,0.0,121.92,0.0 +855,26477.123202130533,25777.123202130533,0.16,4070.1363662112485,3950948.9499382456,700.0,598500.0,29813.352288820304,18696438.610868387,25743.215922609055,14745489.660930172,true,855,25777.123202130533,0.0,4070.1363662112485,2183247.6813742537,700.0,598500.0,888.8896019342081,1115234.2225859468,1781.065638186216,121559.37365249434,0.0,0.0,1366.7504785877095,944172.4125886866,33.430647503114876,2281.6725471243194,-4070.1363662112485,-3950948.9499382456,true,true,12.15968528,8375.296168724002,0.0,1.2,855.0,12.15968528,8375.296168724002,0.0,121.92,0.0 +856,26520.13636621125,25820.13636621125,0.28,7839.593323697178,3958788.543261943,700.0,599200.0,30498.547584632775,18726937.15845302,22658.9542609356,14768148.615191108,true,856,25820.13636621125,0.0,7839.593323697178,2191087.274697951,700.0,599200.0,928.8338509095032,1116163.0564368563,5422.06328916059,126981.43694165493,0.0,0.0,1386.923917252839,945559.3365059394,101.77226637424626,2383.4448134985655,-7839.593323697178,-3958788.543261943,true,true,12.42791363,8387.724082354001,0.0,1.2,856.0,12.42791363,8387.724082354001,0.0,121.92,0.0 +857,30289.593323697176,29589.593323697176,0.22,5191.913293674794,3963980.4565556175,700.0,599900.0,26781.424062158152,18753718.58251518,21589.510768483357,14789738.12595959,true,857,29589.593323697176,0.0,5191.913293674794,2196279.1879916256,700.0,599900.0,975.1813567712387,1117138.2377936274,2755.394083570766,129736.83102522569,0.0,0.0,1409.619036033147,946968.9555419725,51.718817299641884,2435.1636307982076,-5191.913293674794,-3963980.4565556175,true,true,12.56202781,8400.286110164001,0.0,1.2,857.0,12.56202781,8400.286110164001,0.0,121.92,0.0 +858,27641.913293674792,26941.913293674792,0.28,9130.396338803028,3973110.8528944207,700.0,600600.0,35108.558352867956,18788827.14086805,25978.16201406493,14815716.287973655,true,858,26941.913293674792,0.0,9130.396338803028,2205409.584330429,700.0,600600.0,1028.4584845284012,1118166.6962781558,6544.265980369629,136281.0970055953,0.0,0.0,1434.8358343645587,948403.7913763371,122.83603954044027,2557.999670338648,-9130.396338803028,-3973110.8528944207,true,true,12.87496088,8413.161071044002,0.0,1.2,858.0,12.87496088,8413.161071044002,0.0,121.92,0.0 +859,31580.396338803028,30880.396338803028,0.16,3493.2945275169213,3976604.1474219374,700.0,601300.0,26208.09079698076,18815035.23166503,22714.796269463837,14838431.084243119,true,859,30880.396338803028,0.0,3493.2945275169213,2208902.8788579456,700.0,601300.0,1072.4508691329552,1119239.1471472888,948.0396567908635,137229.13666238618,0.0,0.0,1455.0092730296878,949858.8006493667,17.794728563414726,2575.7943989020623,-3493.2945275169213,-3976604.1474219374,true,true,12.91966561,8426.080736654001,0.0,1.2,859.0,12.91966561,8426.080736654001,0.0,121.92,0.0 +860,25943.294527516922,25243.294527516922,0.16,3512.876151679785,3980117.0235736175,700.0,602000.0,26330.475947998657,18841365.70761303,22817.59979631887,14861248.684039438,true,860,25243.294527516922,0.0,3512.876151679785,2212415.7550096256,700.0,602000.0,1083.6415709486253,1120322.7887182373,951.3255432981376,138180.4622056843,0.0,0.0,1460.0526326959703,951318.8532820627,17.856404737052035,2593.650803639114,-3512.876151679785,-3980117.0235736175,true,true,12.96437033,8439.045106984002,0.0,1.2,860.0,12.96437033,8439.045106984002,0.0,121.92,0.0 +861,25962.876151679786,25262.876151679786,0.16,3532.5357876473263,3983649.5593612646,700.0,602700.0,26453.34867279579,18867819.056285825,22920.812885148465,14884169.496924587,true,861,25262.876151679786,0.0,3532.5357876473263,2215948.2907972727,700.0,602700.0,1094.9098509763026,1121417.6985692135,954.6118554094829,139135.0740610938,0.0,0.0,1465.0959923622527,952783.9492744249,17.918088899287984,2611.568892538402,-3532.5357876473263,-3983649.5593612646,true,true,13.00907506,8452.054182044001,0.0,1.2,861.0,13.00907506,8452.054182044001,0.0,121.92,0.0 +862,25982.535787647328,25282.535787647328,0.16,1587.4758990297842,3985237.0352602946,700.0,603400.0,14296.724368936151,18882115.780654762,12709.248469906368,14896878.745394493,true,862,25282.535787647328,0.0,1587.4758990297842,2217535.7666963027,700.0,603400.0,1094.9098509763026,1122512.6084201897,-954.6118554094829,138180.4622056843,0.0,0.0,1465.0959923622527,954249.0452667872,-17.918088899287984,2593.650803639114,-1587.4758990297842,-3985237.0352602946,true,true,12.96437033,8465.018552374002,0.0,1.2,862.0,12.96437033,8465.018552374002,0.0,121.92,0.0 +863,24037.475899029785,23337.475899029785,0.12,0.0,3985237.0352602946,700.0,604100.0,6999.999999999999,18889115.780654762,6999.999999999999,14903878.745394493,true,863,23337.475899029785,0.0,-6122.897606041682,2211412.869090261,700.0,604100.0,1039.3415532270137,1123551.9499734167,-8443.63118045863,129736.83102522568,0.0,0.0,1439.8791940308408,955688.9244608181,-158.48717284090702,2435.163630798207,-0.0,-3985237.0352602946,true,true,12.56202781,8477.580580184002,0.0,1.2,863.0,12.56202781,8477.580580184002,0.0,121.92,0.0 +864,22450.0,21750.0,0.12,0.0,3985237.0352602946,700.0,604800.0,6999.999999999999,18896115.780654762,6999.999999999999,14910878.745394493,true,864,21750.0,0.0,-3222.476919260507,2208190.3921710006,700.0,604800.0,959.5648720570623,1124511.514845474,-5481.2132744607015,124255.61775076497,0.0,0.0,1402.053996251686,957090.9784570697,-102.88251310855414,2332.281117689653,-0.0,-3985237.0352602946,true,true,12.29379945,8489.874379634002,0.0,1.2,864.0,12.29379945,8489.874379634002,0.0,121.92,0.0 +865,22450.0,21750.0,0.12,0.0,3985237.0352602946,700.0,605500.0,6999.999999999999,18903115.780654762,6999.999999999999,14917878.745394493,true,865,21750.0,0.0,-2283.301826964881,2205907.0903440355,700.0,605500.0,903.7316097553422,1125415.2464552294,-4477.30973645687,119778.3080143081,0.0,0.0,1374.3155178050959,958465.2939748748,-84.03921806844889,2248.241899621204,-0.0,-3985237.0352602946,true,true,12.07027583,8501.944655464002,0.0,1.2,865.0,12.07027583,8501.944655464002,0.0,121.92,0.0 +866,22450.0,21750.0,0.12,0.0,3985237.0352602946,700.0,606200.0,6999.999999999999,18910115.780654762,6999.999999999999,14924878.745394493,true,866,21750.0,0.0,-8452.544756807616,2197454.545587228,700.0,606200.0,821.7727455422701,1126237.0192007716,-10410.361707658323,109367.94630664978,0.0,0.0,1331.4469603596585,959796.7409352345,-195.40275505122125,2052.8391445699826,-0.0,-3985237.0352602946,true,true,11.53381912,8513.478474584002,0.0,1.2,866.0,11.53381912,8513.478474584002,0.0,121.92,0.0 +867,22450.0,21750.0,0.12,0.0,3985237.0352602946,700.0,606900.0,6999.999999999999,18917115.780654762,6999.999999999999,14931878.745394493,true,867,21750.0,0.0,-4789.791754308564,2192664.7538329195,700.0,606900.0,731.8820613468961,1126968.9012621185,-6677.353090787247,102690.59321586254,0.0,0.0,1281.0133631327606,961077.7542983672,-125.3340880009735,1927.5050565690092,-0.0,-3985237.0352602946,true,true,11.17618132,8524.654655904002,0.0,1.2,867.0,11.17618132,8524.654655904002,0.0,121.92,0.0 +868,22450.0,21750.0,0.12,0.0,3985237.0352602946,700.0,607600.0,6999.999999999999,18924115.780654762,6999.999999999999,14938878.745394493,true,868,21750.0,0.0,-2217.5251711775236,2190447.228661742,700.0,607600.0,677.1198774048249,1127646.0211395232,-4066.547376089585,98624.04583977295,0.0,0.0,1248.2315255839626,962325.9858239512,-76.32919807672575,1851.1758584922834,-0.0,-3985237.0352602946,true,true,10.9526577,8535.607313604001,0.0,1.2,868.0,10.9526577,8535.607313604001,0.0,121.92,0.0 +869,22450.0,21750.0,0.16,4387.816217216601,3989624.851477511,700.0,608300.0,31798.85135760376,18955914.632012367,27411.035140387157,14966289.78053488,true,869,21750.0,0.0,4387.816217216601,2194835.0448789587,700.0,608300.0,668.9454808018501,1128314.966620325,2430.0700928102124,101054.11593258317,0.0,0.0,1243.1881659176802,963569.1739898688,45.61247768685836,1896.7883361791417,-4387.816217216601,-3989624.851477511,true,true,11.08677187,8546.694085474,0.0,1.2,869.0,11.08677187,8546.694085474,0.0,121.92,0.0 +870,26837.8162172166,26137.8162172166,0.16,4457.798921666621,3994082.650399178,700.0,609000.0,32236.24326041638,18988150.875272784,27778.44433874976,14994068.22487363,true,870,26137.8162172166,0.0,4457.798921666621,2199292.8438006253,700.0,609000.0,693.667908609518,1129008.6345289347,2459.6451655826645,103513.76109816584,0.0,0.0,1258.3182449165272,964827.4922347853,46.167602557911074,1942.9559387370527,-4457.798921666621,-3994082.650399178,true,true,11.22088605,8557.914971524,0.0,1.2,870.0,11.22088605,8557.914971524,0.0,121.92,0.0 +871,26907.79892166662,26207.79892166662,0.22,5387.194252476841,3999469.844651655,700.0,609700.0,27669.06478398564,19015819.94005677,22281.870531508797,15016350.095405139,true,871,26207.79892166662,0.0,5387.194252476841,2204680.0380531023,700.0,609700.0,723.2717739656013,1129731.9063029003,3325.532151096757,106839.2932492626,0.0,0.0,1275.970004030553,966103.4622388158,62.42032338393042,2005.3762621209833,-5387.194252476841,-3999469.844651655,true,true,11.39970495,8569.314676474,0.0,1.2,871.0,11.39970495,8569.314676474,0.0,121.92,0.0 +872,27837.194252476842,27137.194252476842,0.16,3754.470097370556,4003224.3147490253,700.0,610400.0,27840.438108565973,19043660.37816534,24085.96801119542,15040436.063416334,true,872,27137.194252476842,0.0,3754.470097370556,2208434.508150473,700.0,610400.0,749.3071024841188,1130481.2134053844,1682.4826691988467,108521.77591846144,0.0,0.0,1291.1000830293997,967394.5623218452,31.580242658190524,2036.9565047791739,-3754.470097370556,-4003224.3147490253,true,true,11.4891144,8580.803790873999,0.0,1.2,872.0,11.4891144,8580.803790873999,0.0,121.92,0.0 +873,26204.470097370555,25504.470097370555,0.22,6432.957852808162,4009657.2726018336,700.0,611100.0,32422.535694582555,19076082.913859922,25989.577841774393,15066425.641258107,true,873,25504.470097370555,0.0,6432.957852808162,2214867.466003281,700.0,611100.0,780.4624986221661,1131261.6759040067,4263.713500771498,112785.48941923294,0.0,0.0,1308.7518421434252,968703.3141639887,80.03001127107308,2116.986516050247,-6432.957852808162,-4009657.2726018336,true,true,11.71263803,8592.516428903999,0.0,1.2,873.0,11.71263803,8592.516428903999,0.0,121.92,0.0 +874,28882.957852808162,28182.957852808162,0.28,8396.71937858183,4018053.9919804153,700.0,611800.0,32488.283494935105,19108571.197354857,24091.564116353275,15090517.20537446,true,874,28182.957852808162,0.0,8396.71937858183,2223264.185381863,700.0,611800.0,835.8599747073729,1132097.5358787142,6107.214825528112,118892.70424476104,0.0,0.0,1339.0120001411194,970042.3261641298,114.63257820522746,2231.6190942554745,-8396.71937858183,-4018053.9919804153,true,true,12.0255711,8604.542000004,0.0,1.2,874.0,12.0255711,8604.542000004,0.0,121.92,0.0 +875,30846.71937858183,30146.71937858183,0.28,7734.135429200067,4025788.1274096156,700.0,612500.0,30121.912247143093,19138693.109602,22387.776817943028,15112904.982192405,true,875,30146.71937858183,0.0,7734.135429200067,2230998.320811063,700.0,612500.0,898.7660620720346,1132996.3019407862,5362.913506003936,124255.61775076498,0.0,0.0,1371.7938376899174,971414.1200018197,100.66202343417847,2332.281117689653,-7734.135429200067,-4025788.1274096156,true,true,12.29379945,8616.835799454,0.0,1.2,875.0,12.29379945,8616.835799454,0.0,121.92,0.0 +876,30184.13542920007,29484.13542920007,0.22,5115.58784769756,4030903.715257313,700.0,613200.0,26434.49021680709,19165127.599818807,21318.90236910953,15134223.884561514,true,876,29484.13542920007,0.0,5115.58784769756,2236113.9086587606,700.0,613200.0,944.1160045284865,1133940.4179453147,2725.819190889936,126981.43694165492,0.0,0.0,1394.4889564702253,972808.60895829,51.16369580891225,2383.444813498565,-5115.58784769756,-4030903.715257313,true,true,12.42791363,8629.263713084,0.0,1.2,876.0,12.42791363,8629.263713084,0.0,121.92,0.0 +877,27565.58784769756,26865.58784769756,0.28,8052.5060403824655,4038956.2212976958,700.0,613900.0,31258.950144223083,19196386.54996303,23206.44410384062,15157430.328665355,true,877,26865.58784769756,0.0,8052.5060403824655,2244166.4146991433,700.0,613900.0,990.9663618970287,1134931.3843072117,5540.362851063305,132521.79979271823,0.0,0.0,1417.184075250533,974225.7930335405,103.9927521715989,2487.437565670164,-8052.5060403824655,-4038956.2212976958,true,true,12.69614198,8641.959855064,0.0,1.2,877.0,12.69614198,8641.959855064,0.0,121.92,0.0 +878,30502.506040382465,29802.506040382465,0.28,8268.129572931899,4047224.3508706274,700.0,614600.0,32029.034189042493,19228415.584152073,23760.904616110594,15181191.233281465,true,878,29802.506040382465,0.0,8268.129572931899,2252434.544272075,700.0,614600.0,1055.8096887486327,1135987.1939959603,5658.66241296609,138180.4622056843,0.0,0.0,1447.4442332482272,975673.2372667887,106.21323796895003,2593.650803639114,-8268.129572931899,-4047224.3508706274,true,true,12.96437033,8654.924225394001,0.0,1.2,878.0,12.96437033,8654.924225394001,0.0,121.92,0.0 +879,30718.1295729319,30018.1295729319,0.16,4516.598287640702,4051740.949158268,700.0,615300.0,32603.73929775439,19261019.323449828,28087.141010113686,15209278.374291578,true,879,30018.1295729319,0.0,4516.598287640702,2256951.1425597155,700.0,615300.0,1100.573165926733,1137087.7671618871,1912.5095958559955,140092.9718015403,0.0,0.0,1467.6176719133566,977140.8549387021,35.897853944617346,2629.5486575837317,-4516.598287640702,-4051740.949158268,true,true,13.05377978,8667.978005174002,0.0,1.2,879.0,13.05377978,8667.978005174002,0.0,121.92,0.0 +880,26966.598287640703,26266.598287640703,0.16,1600.5178237257755,4053341.466981994,700.0,616000.0,14378.236398286097,19275397.559848115,12777.718574560322,15222056.09286614,true,880,26266.598287640703,0.0,1600.5178237257755,2258551.6603834415,700.0,616000.0,1106.2559771890824,1138194.0231390763,-957.8977404465126,139135.07406109376,0.0,0.0,1470.139352028535,978610.9942907306,-17.97976504532936,2611.5688925384025,-1600.5178237257755,-4053341.466981994,true,true,13.00907506,8680.987080234001,0.0,1.2,880.0,13.00907506,8680.987080234001,0.0,121.92,0.0 +881,24050.517823725775,23350.517823725775,0.16,1587.4758990297842,4054928.942881024,700.0,616700.0,14296.724368936151,19289694.284217052,12709.248469906368,15234765.341336045,true,881,23350.517823725775,0.0,1587.4758990297842,2260139.1362824715,700.0,616700.0,1094.9098509763026,1139288.9329900525,-954.6118554094829,138180.46220568428,0.0,0.0,1465.0959923622527,980076.0902830928,-17.918088899287984,2593.6508036391147,-1587.4758990297842,-4054928.942881024,true,true,12.96437033,8693.951450564002,0.0,1.2,881.0,12.96437033,8693.951450564002,0.0,121.92,0.0 +882,24037.475899029785,23337.475899029785,0.16,1574.5122556094057,4056503.4551366335,700.0,617400.0,14215.701597558786,19303909.985814612,12641.189341949379,15247406.530677995,true,882,23337.475899029785,0.0,1574.5122556094057,2261713.648538081,700.0,617400.0,1083.6415709486253,1140372.574561001,-951.3255432981376,137229.13666238615,0.0,0.0,1460.0526326959703,981536.1429157888,-17.856404737052035,2575.7943989020628,-1574.5122556094057,-4056503.4551366335,true,true,12.91966561,8706.871116174001,0.0,1.2,882.0,12.91966561,8706.871116174001,0.0,121.92,0.0 +883,24024.512255609407,23324.512255609407,0.12,0.0,4056503.4551366335,700.0,618100.0,6999.999999999999,19310909.985814612,6999.999999999999,15254406.530677995,true,883,23324.512255609407,0.0,-1339.9965116591227,2260373.652026422,700.0,618100.0,1055.8096899829918,1141428.384250984,-3772.4416101141883,133456.69505227197,0.0,0.0,1447.4442338123017,982983.5871496011,-70.80882534022791,2504.985573561835,-0.0,-4056503.4551366335,true,true,12.74084671,8719.611962884,0.0,1.2,883.0,12.74084671,8719.611962884,0.0,121.92,0.0 +884,22450.0,21750.0,0.12,0.0,4056503.4551366335,700.0,618800.0,6999.999999999999,19317909.985814612,6999.999999999999,15261406.530677995,true,884,21750.0,0.0,-1350.1384294240447,2259023.5135969976,700.0,618800.0,1012.2767452387144,1142440.6609962229,-3719.8640270463043,129736.83102522566,0.0,0.0,1427.2707951471723,984410.8579447482,-69.82194276362708,2435.1636307982076,-0.0,-4056503.4551366335,true,true,12.56202781,8732.173990694,0.0,1.2,884.0,12.56202781,8732.173990694,0.0,121.92,0.0 +885,22450.0,21750.0,0.16,1461.296159631067,4057964.7512962646,700.0,619500.0,13508.100997694168,19331418.086812306,12046.8048380631,15273453.335516058,true,885,21750.0,0.0,1461.296159631067,2260484.8097566287,700.0,619500.0,985.6859134682066,1143426.346909691,-921.7508623166427,128815.08016290903,0.0,0.0,1414.6623956994292,985825.5203404477,-17.30128721992617,2417.8623435782815,-1461.296159631067,-4057964.7512962646,true,true,12.51732308,8744.691313774,0.0,1.2,885.0,12.51732308,8744.691313774,0.0,121.92,0.0 +886,23911.296159631067,23211.296159631067,0.16,2392.5649710580847,4060357.3162673227,700.0,620200.0,19328.53106911303,19350746.61788142,16935.966098054945,15290389.301614113,true,886,23211.296159631067,0.0,2392.5649710580847,2262877.374727687,700.0,620200.0,980.4242554738337,1144406.771165165,0.0,128815.08016290903,0.0,0.0,1412.1407155842508,987237.6610560319,0.0,2417.8623435782815,-2392.5649710580847,-4060357.3162673227,true,true,12.51732308,8757.208636853999,0.0,1.2,886.0,12.51732308,8757.208636853999,0.0,121.92,0.0 +887,24842.564971058084,24142.564971058084,0.12,0.0,4060357.3162673227,700.0,620900.0,6999.999999999999,19357746.61788142,6999.999999999999,15297389.301614113,true,887,24142.564971058084,0.0,-1361.1115179478554,2261516.2632097392,700.0,620900.0,959.5648720570623,1145366.336037222,-3654.142046741322,125160.9381161677,0.0,0.0,1402.053996251686,988639.7150522836,-68.58833951528196,2349.2740040629997,-0.0,-4060357.3162673227,true,true,12.33850418,8769.547141033998,0.0,1.2,887.0,12.33850418,8769.547141033998,0.0,121.92,0.0 +888,22450.0,21750.0,0.12,0.0,4060357.3162673227,700.0,621600.0,6999.999999999999,19364746.61788142,6999.999999999999,15304389.301614113,true,888,21750.0,0.0,-1368.547443330226,2260147.715766409,700.0,621600.0,918.7379196952888,1146285.0739569173,-3601.5644636733914,121559.37365249431,0.0,0.0,1381.8805575865565,990021.5956098702,-67.60145693868,2281.67254712432,-0.0,-4060357.3162673227,true,true,12.15968528,8781.706826313997,0.0,1.2,888.0,12.15968528,8781.706826313997,0.0,121.92,0.0 +889,22450.0,21750.0,0.12,0.0,4060357.3162673227,700.0,622300.0,6999.999999999999,19371746.61788142,6999.999999999999,15311389.301614113,true,889,21750.0,0.0,-3177.2974749823525,2256970.4182914267,700.0,622300.0,869.3542735971556,1147154.4282305145,-5303.763727257759,116255.60992523655,0.0,0.0,1356.663759255145,991378.2593691254,-99.55178057689437,2182.1207665474253,-0.0,-4060357.3162673227,true,true,11.89145693,8793.598283243997,0.0,1.2,889.0,11.89145693,8793.598283243997,0.0,121.92,0.0 +890,22450.0,21750.0,0.22,5800.134492294623,4066157.450759617,700.0,623000.0,29546.065874066466,19401292.683755487,23745.931381771843,15335135.232995884,true,890,21750.0,0.0,5800.134492294623,2262770.552783721,700.0,623000.0,859.694870560439,1148014.123101075,3522.698089071542,119778.3080143081,0.0,0.0,1351.6203995888625,992729.8797687142,66.1211330737795,2248.241899621205,-5800.134492294623,-4066157.450759617,true,true,12.07027583,8805.668559073996,0.0,1.2,890.0,12.07027583,8805.668559073996,0.0,121.92,0.0 +891,28250.134492294623,27550.134492294623,0.22,6839.396082085757,4072996.8468417027,700.0,623700.0,34269.9821912989,19435562.665946785,27430.58610921314,15362565.819105098,true,891,27550.134492294623,0.0,6839.396082085757,2269609.9488658067,700.0,623700.0,903.7316097553422,1148917.8547108304,4477.30973645687,124255.61775076497,0.0,0.0,1374.3155178050959,994104.1952865192,84.03921806844889,2332.281117689654,-6839.396082085757,-4072996.8468417027,true,true,12.29379945,8817.962358523997,0.0,1.2,891.0,12.29379945,8817.962358523997,0.0,121.92,0.0 +892,29289.396082085757,28589.396082085757,0.22,5115.58784769756,4078112.4346894003,700.0,624400.0,26434.49021680709,19461997.156163592,21318.90236910953,15383884.721474208,true,892,28589.396082085757,0.0,5115.58784769756,2274725.536713504,700.0,624400.0,944.1160045284865,1149861.9707153589,2725.819190889936,126981.4369416549,0.0,0.0,1394.4889564702253,995498.6842429895,51.16369580891225,2383.444813498566,-5115.58784769756,-4078112.4346894003,true,true,12.42791363,8830.390272153996,0.0,1.2,892.0,12.42791363,8830.390272153996,0.0,121.92,0.0 +893,27565.58784769756,26865.58784769756,0.16,4245.115288770018,4082357.54997817,700.0,625100.0,30906.970554812615,19492904.126718406,26661.855266042596,15410546.57674025,true,893,26865.58784769756,0.0,4245.115288770018,2278970.652002274,700.0,625100.0,969.9571815182109,1150831.927896877,1833.643221254123,128815.08016290903,0.0,0.0,1407.0973559179686,996905.7815989074,34.41753007971571,2417.8623435782815,-4245.115288770018,-4082357.54997817,true,true,12.51732308,8842.907595233995,0.0,1.2,893.0,12.51732308,8842.907595233995,0.0,121.92,0.0 +894,26695.11528877002,25995.11528877002,0.12,508.99378610234055,4082866.5437642722,700.0,625800.0,10074.948217519504,19502979.074935924,9565.954431417164,15420112.531171666,true,894,25995.11528877002,0.0,508.99378610234055,2279479.645788376,700.0,625800.0,969.9571815182109,1151801.8850783953,-1833.643221254123,126981.4369416549,0.0,0.0,1407.0973559179686,998312.8789548253,-34.41753007971571,2383.444813498566,-508.99378610234055,-4082866.5437642722,true,true,12.42791363,8855.335508863995,0.0,1.2,894.0,12.42791363,8855.335508863995,0.0,121.92,0.0 +895,22958.99378610234,22258.99378610234,0.16,4245.115288770018,4087111.659053042,700.0,626500.0,30906.970554812615,19533886.045490738,26661.855266042596,15446774.386437709,true,895,22258.99378610234,0.0,4245.115288770018,2283724.761077146,700.0,626500.0,969.9571815182109,1152771.8422599135,1833.643221254123,128815.08016290903,0.0,0.0,1407.0973559179686,999719.9763107433,34.41753007971571,2417.8623435782815,-4245.115288770018,-4087111.659053042,true,true,12.51732308,8867.852831943994,0.0,1.2,895.0,12.51732308,8867.852831943994,0.0,121.92,0.0 +896,26695.11528877002,25995.11528877002,0.16,2392.5649710580847,4089504.2240241,700.0,627200.0,19328.53106911303,19553214.576559853,16935.966098054945,15463710.352535764,true,896,25995.11528877002,0.0,2392.5649710580847,2286117.326048204,700.0,627200.0,980.4242554738337,1153752.2665153872,0.0,128815.08016290903,0.0,0.0,1412.1407155842508,1001132.1170263275,0.0,2417.8623435782815,-2392.5649710580847,-4089504.2240241,true,true,12.51732308,8880.370155023993,0.0,1.2,896.0,12.51732308,8880.370155023993,0.0,121.92,0.0 +897,24842.564971058084,24142.564971058084,0.16,2392.5649710580847,4091896.7889951584,700.0,627900.0,19328.53106911303,19572543.107628968,16935.966098054945,15480646.318633819,true,897,24142.564971058084,0.0,2392.5649710580847,2288509.8910192624,700.0,627900.0,980.4242554738337,1154732.690770861,0.0,128815.08016290903,0.0,0.0,1412.1407155842508,1002544.2577419118,0.0,2417.8623435782815,-2392.5649710580847,-4091896.7889951584,true,true,12.51732308,8892.887478103992,0.0,1.2,897.0,12.51732308,8892.887478103992,0.0,121.92,0.0 +898,24842.564971058084,24142.564971058084,0.12,0.0,4091896.7889951584,700.0,628600.0,6999.999999999999,19579543.107628968,6999.999999999999,15487646.318633819,true,898,24142.564971058084,0.0,-427.7419797066817,2288082.149039556,700.0,628600.0,964.751698555309,1155697.4424694164,-2745.535581661755,126069.54458124728,0.0,0.0,1404.5756763668646,1003948.8334182787,-51.53377296710045,2366.328570611181,-0.0,-4091896.7889951584,true,true,12.38320891,8905.270687013992,0.0,1.2,898.0,12.38320891,8905.270687013992,0.0,121.92,0.0 +899,22450.0,21750.0,0.12,0.0,4091896.7889951584,700.0,629300.0,6999.999999999999,19586543.107628968,6999.999999999999,15494646.318633819,true,899,21750.0,0.0,-443.584517708543,2287638.5645218473,700.0,629300.0,933.909435062785,1156631.351904479,-2715.9608947997485,123353.58368644753,0.0,0.0,1389.4455973680174,1005338.2790156468,-50.97865533959681,2315.349915271584,-0.0,-4091896.7889951584,true,true,12.24909473,8917.519781743991,0.0,1.2,899.0,12.24909473,8917.519781743991,0.0,121.92,0.0 +900,22450.0,21750.0,0.12,0.0,4091896.7889951584,700.0,630000.0,6999.999999999999,19593543.107628968,6999.999999999999,15501646.318633819,true,900,21750.0,0.0,-2281.5193668956617,2285357.0451549515,700.0,630000.0,893.8187376681263,1157525.1706421473,-4460.879441686492,118892.70424476103,0.0,0.0,1369.2721581388134,1006707.5511737856,-83.73082101610918,2231.619094255475,-0.0,-4091896.7889951584,true,true,12.0255711,8929.545352843992,0.0,1.2,900.0,12.0255711,8929.545352843992,0.0,121.92,0.0 +901,22450.0,21750.0,0.12,0.0,4091896.7889951584,700.0,630700.0,6999.999999999999,19600543.107628968,6999.999999999999,15508646.318633819,true,901,21750.0,0.0,-482.6018112081995,2284874.443343743,700.0,630700.0,854.8921165506424,1158380.062758698,-2637.0943195244763,116255.60992523655,0.0,0.0,1349.0987194736842,1008056.6498932593,-49.498327708049914,2182.120766547425,-0.0,-4091896.7889951584,true,true,11.89145693,8941.436809773992,0.0,1.2,901.0,11.89145693,8941.436809773992,0.0,121.92,0.0 +902,22450.0,21750.0,0.16,1286.0365178445168,4093182.825513003,700.0,631400.0,12412.72823652823,19612955.835865498,11126.691718683713,15519773.010352504,true,902,21750.0,0.0,1286.0365178445168,2286160.4798615878,700.0,631400.0,835.8599747073729,1159215.9227334054,-872.4593723099905,115383.15055292656,0.0,0.0,1339.0120001411194,1009395.6618934004,-16.37608469398493,2165.74468185344,-1286.0365178445168,-4093182.825513003,true,true,11.8467522,8953.28356197399,0.0,1.2,902.0,11.8467522,8953.28356197399,0.0,121.92,0.0 +903,23736.036517844517,23036.036517844517,0.16,2167.6368092739363,4095350.462322277,700.0,632100.0,17922.7300579621,19630878.56592346,15755.093248688165,15535528.103601191,true,903,23036.036517844517,0.0,2167.6368092739363,2288328.116670862,700.0,632100.0,831.1464892479954,1160047.0692226533,0.0,115383.15055292656,0.0,0.0,1336.490320025941,1010732.1522134263,0.0,2165.74468185344,-2167.6368092739363,-4095350.462322277,true,true,11.8467522,8965.13031417399,0.0,1.2,903.0,11.8467522,8965.13031417399,0.0,121.92,0.0 +904,24617.636809273936,23917.636809273936,0.16,2167.6368092739363,4097518.099131551,700.0,632800.0,17922.7300579621,19648801.295981422,15755.093248688165,15551283.196849879,true,904,23917.636809273936,0.0,2167.6368092739363,2290495.753480136,700.0,632800.0,831.1464892479954,1160878.2157119012,0.0,115383.15055292656,0.0,0.0,1336.490320025941,1012068.6425334523,0.0,2165.74468185344,-2167.6368092739363,-4097518.099131551,true,true,11.8467522,8976.97706637399,0.0,1.2,904.0,11.8467522,8976.97706637399,0.0,121.92,0.0 +905,24617.636809273936,23917.636809273936,0.12,385.59232840038294,4097903.6914599515,700.0,633500.0,9046.602736669858,19657847.898718093,8661.010408269474,15559944.207258148,true,905,23917.636809273936,0.0,385.59232840038294,2290881.3458085363,700.0,633500.0,821.7727455422696,1161699.9884574434,-1735.0602522667537,113648.09030065981,0.0,0.0,1331.4469603596583,1013400.089493812,-32.56712523479136,2133.1775566186484,-385.59232840038294,-4097903.6914599515,true,true,11.75734275,8988.734409123988,0.0,1.2,905.0,11.75734275,8988.734409123988,0.0,121.92,0.0 +906,22835.592328400384,22135.592328400384,0.12,1252.9346925891127,4099156.6261525406,700.0,634200.0,16274.45577157594,19674122.35448967,15021.521078986827,15574965.728337135,true,906,22135.592328400384,0.0,1252.9346925891127,2292134.2805011254,700.0,634200.0,807.8446934421324,1162507.8331508855,-862.600881426891,112785.48941923292,0.0,0.0,1323.8819211422724,1014723.9714149542,-16.19104056840125,2116.9865160502472,-1252.9346925891127,-4099156.6261525406,true,true,11.71263803,9000.447047153988,0.0,1.2,906.0,11.71263803,9000.447047153988,0.0,121.92,0.0 +907,23702.93469258911,23002.93469258911,0.16,2124.5974674715526,4101281.223620012,700.0,634900.0,17653.734171697204,19691776.088661365,15529.136704225652,15590494.86504136,true,907,23002.93469258911,0.0,2124.5974674715526,2294258.8779685968,700.0,634900.0,803.2372258803839,1163311.070376766,0.0,112785.48941923292,0.0,0.0,1321.3602415911685,1016045.3316565453,0.0,2116.9865160502472,-2124.5974674715526,-4101281.223620012,true,true,11.71263803,9012.159685183988,0.0,1.2,907.0,11.71263803,9012.159685183988,0.0,121.92,0.0 +908,24574.597467471554,23874.597467471554,0.12,0.0,4101281.223620012,700.0,635600.0,6999.999999999999,19698776.088661365,6999.999999999999,15597494.86504136,true,908,23874.597467471554,0.0,-512.9742813857282,2293745.903687211,700.0,635600.0,789.5200005789524,1164100.590377345,-2568.086435805657,110217.40298342727,0.0,0.0,1313.7952018097076,1017359.126858355,-48.20304796873122,2068.783468081516,-0.0,-4101281.223620012,true,true,11.57852385,9023.738209033987,0.0,1.2,908.0,11.57852385,9023.738209033987,0.0,121.92,0.0 +909,22450.0,21750.0,0.12,0.0,4101281.223620012,700.0,636300.0,6999.999999999999,19705776.088661365,6999.999999999999,15604494.86504136,true,909,21750.0,0.0,-524.9385045569022,2293220.965182654,700.0,636300.0,762.5558427990704,1164863.1462201441,-2538.5115431247573,107678.89144030251,0.0,0.0,1298.6651222467863,1018657.7919806018,-47.64792647800159,2021.1355416035142,-0.0,-4101281.223620012,true,true,11.44440967,9035.182618703988,0.0,1.2,909.0,11.44440967,9035.182618703988,0.0,121.92,0.0 +910,22450.0,21750.0,0.16,2040.4071839673397,4103321.6308039795,700.0,637000.0,17127.544899795874,19722903.63356116,15087.137715828534,15619582.002757188,true,910,21750.0,0.0,2040.4071839673397,2295261.3723666216,700.0,637000.0,749.3071015020143,1165612.4533216462,0.0,107678.89144030251,0.0,0.0,1291.1000824653254,1019948.8920630672,0.0,2021.1355416035142,-2040.4071839673397,-4103321.6308039795,true,true,11.44440967,9046.627028373989,0.0,1.2,910.0,11.44440967,9046.627028373989,0.0,121.92,0.0 +911,24490.40718396734,23790.40718396734,0.22,4647.380434648616,4107969.011238628,700.0,637700.0,24306.274702948253,19747209.908264108,19658.894268299635,15639240.897025488,true,911,23790.40718396734,0.0,4647.380434648616,2299908.75280127,700.0,637700.0,762.5558427990704,1166375.0091644453,2538.5115431247573,110217.40298342727,0.0,0.0,1298.6651222467863,1021247.557185314,47.64792647800159,2068.783468081516,-4647.380434648616,-4107969.011238628,true,true,11.57852385,9058.205552223988,0.0,1.2,911.0,11.57852385,9058.205552223988,0.0,121.92,0.0 +912,27097.380434648614,26397.380434648614,0.12,1209.78201630712,4109178.793254935,700.0,638400.0,15914.850135892668,19763124.7584,14705.068119585547,15653945.965145074,true,912,26397.380434648614,0.0,1209.78201630712,2301118.5348175773,700.0,638400.0,771.4745346830737,1167146.4836991285,-849.4566767774891,109367.94630664977,0.0,0.0,1303.7084819130685,1022551.2656672271,-15.944323511532993,2052.8391445699826,-1209.78201630712,-4109178.793254935,true,true,11.53381912,9069.739371343989,0.0,1.2,912.0,11.53381912,9069.739371343989,0.0,121.92,0.0 +913,23659.78201630712,22959.78201630712,0.12,0.0,4109178.793254935,700.0,639100.0,6999.999999999999,19770124.7584,6999.999999999999,15660945.965145074,true,913,22959.78201630712,0.0,-528.7880232677768,2300589.7467943095,700.0,639100.0,753.7061539879172,1167900.1898531164,-2528.6530573871983,106839.29324926257,0.0,0.0,1293.6217625805036,1023844.8874298076,-47.46288244899939,2005.3762621209833,-0.0,-4109178.793254935,true,true,11.39970495,9081.139076293988,0.0,1.2,913.0,11.39970495,9081.139076293988,0.0,121.92,0.0 +914,22450.0,21750.0,0.12,0.0,4109178.793254935,700.0,639800.0,6999.999999999999,19777124.7584,6999.999999999999,15667945.965145074,true,914,21750.0,0.0,-5582.16444613913,2295007.58234817,700.0,639800.0,702.0420791574303,1168602.2319322738,-7408.510204191812,99430.78304507076,0.0,0.0,1263.3616045828096,1025108.2490343904,-139.05792568755868,1866.3183364334245,-0.0,-4109178.793254935,true,true,10.99736242,9092.136438713987,0.0,1.2,914.0,10.99736242,9092.136438713987,0.0,121.92,0.0 +915,22450.0,21750.0,0.12,0.0,4109178.793254935,700.0,640500.0,6999.999999999999,19784124.7584,6999.999999999999,15674945.965145074,true,915,21750.0,0.0,-7022.344870703107,2287985.237477467,700.0,640500.0,621.2768840033375,1169223.5088162771,-8693.374893353921,90737.40815171684,0.0,0.0,1212.9280073559116,1026321.1770417463,-163.17486870843518,1703.1434677249893,-0.0,-4109178.793254935,true,true,10.50561044,9102.642049153987,0.0,1.2,915.0,10.50561044,9102.642049153987,0.0,121.92,0.0 +916,22450.0,21750.0,0.12,0.0,4109178.793254935,700.0,641200.0,6999.999999999999,19791124.7584,6999.999999999999,15681945.965145074,true,916,21750.0,0.0,-8259.328070865888,2279725.909406601,700.0,641200.0,532.8421428279999,1169756.3509591052,-9761.35698488172,80976.05116683512,0.0,0.0,1152.4076910220788,1027473.5847327684,-183.22091983424627,1519.9225478907429,-0.0,-4109178.793254935,true,true,9.924449014,9112.566498167987,0.0,1.2,916.0,9.924449014,9112.566498167987,0.0,121.92,0.0 +917,22450.0,21750.0,0.12,0.0,4109178.793254935,700.0,641900.0,6999.999999999999,19798124.7584,6999.999999999999,15688945.965145074,true,917,21750.0,0.0,-2825.3785969605933,2276900.5308096404,700.0,641900.0,469.1074149464767,1170225.4583740516,-4317.934053555459,76658.11711327966,0.0,0.0,1104.4957740795815,1028578.0805068479,-81.04773243119234,1438.8748154595505,-0.0,-4109178.793254935,true,true,9.656220663,9122.222718830988,0.0,1.2,917.0,9.656220663,9122.222718830988,0.0,121.92,0.0 +918,22450.0,21750.0,0.16,1539.45760471995,4110718.250859655,700.0,642600.0,13996.610029499687,19812121.3684295,12457.152424779737,15701403.117569854,true,918,21750.0,0.0,1539.45760471995,2278439.98841436,700.0,642600.0,450.09190969562343,1170675.5502837473,0.0,76658.11711327966,0.0,0.0,1089.3656950243267,1029667.4462018723,0.0,1438.8748154595505,-1539.45760471995,-4110718.250859655,true,true,9.656220663,9131.878939493989,0.0,1.2,918.0,9.656220663,9131.878939493989,0.0,121.92,0.0 +919,23989.45760471995,23289.45760471995,0.16,2269.906344120938,4112988.157203776,700.0,643300.0,18561.91465075586,19830683.283080257,16292.008306634923,15717695.12587649,true,919,23289.45760471995,0.0,2269.906344120938,2280709.894758481,700.0,643300.0,453.2247887934388,1171128.7750725406,711.4404255184759,77369.55753879814,0.0,0.0,1091.887374857468,1030759.3335767298,13.353754951555224,1452.2285704111057,-2269.906344120938,-4112988.157203776,true,true,9.700925388,9141.57986488199,0.0,1.2,919.0,9.700925388,9141.57986488199,0.0,121.92,0.0 +920,24719.906344120936,24019.906344120936,0.28,8276.258805558446,4121264.4160093344,700.0,644000.0,32058.067162708732,19862741.350242965,23781.808357150287,15741476.93423364,true,920,24019.906344120936,0.0,8276.258805558446,2288986.1535640396,700.0,644000.0,485.3568296489814,1171614.1319021897,6550.838398332325,83920.39593713047,0.0,0.0,1117.104173583732,1031876.4377503134,122.95940399340795,1575.1879744045136,-8276.258805558446,-4121264.4160093344,true,true,10.10326792,9151.683132801989,0.0,1.2,920.0,10.10326792,9151.683132801989,0.0,121.92,0.0 +921,30726.258805558446,30026.258805558446,0.28,7863.291111339121,4129127.7071206737,700.0,644700.0,30583.182540496855,19893324.532783464,22719.891429157735,15764196.825662797,true,921,30026.258805558446,0.0,7863.291111339121,2296849.444675379,700.0,644700.0,543.4047891429675,1172157.5366913327,6046.422093972408,89966.81803110287,0.0,0.0,1159.9727311419842,1033036.4104814554,113.49149708176121,1688.679471486275,-7863.291111339121,-4129127.7071206737,true,true,10.46090572,9162.144038521988,0.0,1.2,921.0,10.46090572,9162.144038521988,0.0,121.92,0.0 +922,30313.29111133912,29613.29111133912,0.22,6550.363520636106,4135678.07064131,700.0,645400.0,32956.197821073205,19926280.730604537,26405.834300437098,15790602.659963235,true,922,29613.29111133912,0.0,6550.363520636106,2303399.808196015,700.0,645400.0,594.5453562226755,1172752.0820475554,4672.832726032571,94639.65075713545,0.0,0.0,1195.2762488059607,1034231.6867302613,87.70918957489839,1776.3886610611733,-6550.363520636106,-4135678.07064131,true,true,10.72913407,9172.873172591988,0.0,1.2,922.0,10.72913407,9172.873172591988,0.0,121.92,0.0 +923,29000.363520636107,28300.363520636107,0.16,3454.239079234507,4139132.3097205446,700.0,646100.0,25963.99424521567,19952244.724849753,22509.75516598116,15813112.415129216,true,923,28300.363520636107,0.0,3454.239079234507,2306854.04727525,700.0,646100.0,625.1598537386842,1173377.241901294,1583.8997002114656,96223.55045734691,0.0,0.0,1215.4496874710899,1035447.1364177325,29.72983781326655,1806.1184988744399,-3454.239079234507,-4139132.3097205446,true,true,10.81854352,9183.691716111987,0.0,1.2,923.0,10.81854352,9183.691716111987,0.0,121.92,0.0 +924,25904.239079234507,25204.239079234507,0.16,3493.4105809442412,4142625.720301489,700.0,646800.0,26208.816130901505,19978453.540980656,22715.405549957264,15835827.820679173,true,924,25204.239079234507,0.0,3493.4105809442412,2310347.457856194,700.0,646800.0,640.8535197047331,1174018.0954209988,1597.0440959784364,97820.59455332534,0.0,0.0,1225.536406803655,1036672.6728245361,29.976558457416758,1836.0950573318567,-3493.4105809442412,-4142625.720301489,true,true,10.90795297,9194.599669081987,0.0,1.2,924.0,10.90795297,9194.599669081987,0.0,121.92,0.0 +925,25943.41058094424,25243.41058094424,0.22,6038.271510341502,4148663.9918118306,700.0,647500.0,30628.506865188647,20009082.047845844,24590.235354847144,15860418.05603402,true,925,25243.41058094424,0.0,6038.271510341502,2316385.729366536,700.0,647500.0,668.9454808018501,1174687.0409018006,4050.1170629425164,101870.71161626786,0.0,0.0,1243.1881659176802,1037915.8609904537,76.02080067945532,1912.115858011312,-6038.271510341502,-4148663.9918118306,true,true,11.1314766,9205.731145681986,0.0,1.2,925.0,11.1314766,9205.731145681986,0.0,121.92,0.0 +926,28488.271510341503,27788.271510341503,0.16,3632.5761078478536,4152296.5679196785,700.0,648200.0,27078.600674049085,20036160.648519892,23446.02456620123,15883864.08060022,true,926,27788.271510341503,0.0,3632.5761078478536,2320018.3054743838,700.0,648200.0,697.84662019245,1175384.8875219931,1643.049481897957,103513.76109816582,0.0,0.0,1260.8399250317057,1039176.7009154855,30.840080725740645,1942.9559387370525,-3632.5761078478536,-4152296.5679196785,true,true,11.22088605,9216.952031731986,0.0,1.2,926.0,11.22088605,9216.952031731986,0.0,121.92,0.0 +927,26082.576107847854,25382.576107847854,0.16,2820.854696824622,4155117.422616503,700.0,648900.0,22005.341855153885,20058165.990375046,19184.487158329262,15903048.56775855,true,927,25382.576107847854,0.0,2820.854696824622,2322839.1601712084,700.0,648900.0,710.4833769665152,1176095.3708989597,826.4537967430404,104340.21489490886,0.0,0.0,1268.404964249092,1040445.1058797346,15.512558865974277,1958.468497603027,-2820.854696824622,-4155117.422616503,true,true,11.26559077,9228.217622501985,0.0,1.2,927.0,11.26559077,9228.217622501985,0.0,121.92,0.0 +928,25270.854696824623,24570.854696824623,0.16,2837.754717351012,4157955.177333854,700.0,649600.0,22110.966983443825,20080276.95735849,19273.212266092814,15922321.780024644,true,928,24570.854696824623,0.0,2837.754717351012,2325676.9148885594,700.0,649600.0,718.9920700098693,1176814.3629689696,829.7400809218527,105169.95497583071,0.0,0.0,1273.4483239153742,1041718.55420365,15.574242503915828,1974.0427401069428,-2837.754717351012,-4157955.177333854,true,true,11.3102955,9239.527918001984,0.0,1.2,928.0,11.3102955,9239.527918001984,0.0,121.92,0.0 +929,25287.75471735101,24587.75471735101,0.16,3713.5672214564547,4161668.744555311,700.0,650300.0,27584.795134102842,20107861.75249259,23871.227912646387,15946193.00793729,true,929,24587.75471735101,0.0,3713.5672214564547,2329390.482110016,700.0,650300.0,731.8820623137153,1177546.2450312832,1669.338273431864,106839.29324926257,0.0,0.0,1281.0133636968353,1042999.5675673469,31.333522014040316,2005.376262120983,-3713.5672214564547,-4161668.744555311,true,true,11.39970495,9250.927622951984,0.0,1.2,929.0,11.39970495,9250.927622951984,0.0,121.92,0.0 +930,26163.567221456455,25463.567221456455,0.12,0.0,4161668.744555311,700.0,651000.0,6999.999999999999,20114861.75249259,6999.999999999999,15953193.00793729,true,930,25463.567221456455,0.0,-539.9260090294263,2328850.5561009864,700.0,651000.0,727.5684262605901,1178273.8134575437,-2499.078354353717,104340.21489490886,0.0,0.0,1278.4916835816566,1044278.0592509285,-46.907764517956146,1958.468497603027,-0.0,-4161668.744555311,true,true,11.26559077,9262.193213721983,0.0,1.2,930.0,11.26559077,9262.193213721983,0.0,121.92,0.0 +931,22450.0,21750.0,0.12,291.55248398751326,4161960.2970392983,700.0,651700.0,8262.93736656261,20123124.689859156,7971.3848825750965,15961164.392819865,true,931,21750.0,0.0,291.55248398751326,2329142.108584974,700.0,651700.0,706.2543199339497,1178980.0677774777,-1649.621679046332,102690.59321586252,0.0,0.0,1265.8832841339135,1045543.9425350623,-30.96344103401797,1927.505056569009,-291.55248398751326,-4161960.2970392983,true,true,11.17618132,9273.369395041982,0.0,1.2,931.0,11.17618132,9273.369395041982,0.0,121.92,0.0 +932,22741.552483987514,22041.552483987514,0.16,1958.6865437234733,4163918.983583022,700.0,652400.0,16616.79089827171,20139741.480757426,14658.104354548235,15975822.497174412,true,932,22041.552483987514,0.0,1958.6865437234733,2331100.7951286975,700.0,652400.0,697.846619255842,1179677.9143967335,0.0,102690.59321586252,0.0,0.0,1260.8399244676311,1046804.7824595299,0.0,1927.505056569009,-1958.6865437234733,-4163918.983583022,true,true,11.17618132,9284.545576361981,0.0,1.2,932.0,11.17618132,9284.545576361981,0.0,121.92,0.0 +933,24408.686543723474,23708.686543723474,0.16,1958.6865437234733,4165877.6701267455,700.0,653100.0,16616.79089827171,20156358.271655697,14658.104354548235,15990480.60152896,true,933,23708.686543723474,0.0,1958.6865437234733,2333059.481672421,700.0,653100.0,697.846619255842,1180375.7610159894,0.0,102690.59321586252,0.0,0.0,1260.8399244676311,1048065.6223839975,0.0,1927.505056569009,-1958.6865437234733,-4165877.6701267455,true,true,11.17618132,9295.72175768198,0.0,1.2,933.0,11.17618132,9295.72175768198,0.0,121.92,0.0 +934,24408.686543723474,23708.686543723474,0.12,0.0,4165877.6701267455,700.0,653800.0,6999.999999999999,20163358.271655697,6999.999999999999,15997480.60152896,true,934,23708.686543723474,0.0,-557.1337617649766,2332502.347910656,700.0,653800.0,685.3605973496816,1181061.121613339,-2449.7866857256167,100240.8065301369,0.0,0.0,1253.2748852502448,1049318.8972692478,-45.98255863928627,1881.5224979297227,-0.0,-4165877.6701267455,true,true,11.04206715,9306.76382483198,0.0,1.2,934.0,11.04206715,9306.76382483198,0.0,121.92,0.0 +935,22450.0,21750.0,0.12,258.4422270305821,4166136.112353776,700.0,654500.0,7987.0185585881845,20171345.290214285,7728.576331557602,16005209.177860517,true,935,21750.0,0.0,258.4422270305821,2332760.7901376868,700.0,654500.0,664.8830704654139,1181726.0046838045,-1616.7606903639685,98624.04583977294,0.0,0.0,1240.6664863665762,1050559.5637556145,-30.346639437439478,1851.1758584922832,-258.4422270305821,-4166136.112353776,true,true,10.9526577,9317.71648253198,0.0,1.2,935.0,10.9526577,9317.71648253198,0.0,121.92,0.0 +936,22708.44222703058,22008.44222703058,0.12,245.6614494315213,4166381.7738032076,700.0,655200.0,7880.512078596011,20179225.80229288,7634.85062916449,16012844.028489681,true,936,22008.44222703058,0.0,245.6614494315213,2333006.451587118,700.0,655200.0,648.7978957877972,1182374.8025795922,-1603.6162945969975,97020.42954517594,0.0,0.0,1230.5797670340116,1051790.1435226484,-30.099918793290016,1821.0759396989931,-245.6614494315213,-4166381.7738032076,true,true,10.86324825,9328.57973078198,0.0,1.2,936.0,10.86324825,9328.57973078198,0.0,121.92,0.0 +937,22695.66144943152,21995.66144943152,0.16,1866.3899279573543,4168248.1637311648,700.0,655900.0,16039.937049733464,20195265.73934261,14173.54712177611,16027017.575611457,true,937,21995.66144943152,0.0,1866.3899279573543,2334872.8415150754,700.0,655900.0,640.853520589625,1183015.6561001819,0.0,97020.42954517594,0.0,0.0,1225.5364073677292,1053015.6799300162,0.0,1821.0759396989931,-1866.3899279573543,-4168248.1637311648,true,true,10.86324825,9339.44297903198,0.0,1.2,937.0,10.86324825,9339.44297903198,0.0,121.92,0.0 +938,24316.389927957352,23616.389927957352,0.16,3513.0938762120963,4171761.2576073767,700.0,656600.0,26331.836726325604,20221597.576068938,22818.742850113507,16049836.31846157,true,938,23616.389927957352,0.0,3513.0938762120963,2338385.9353912873,700.0,656600.0,648.7978957877972,1183664.4539959696,1603.6162945969975,98624.04583977294,0.0,0.0,1230.5797670340116,1054246.25969705,30.099918793290016,1851.1758584922832,-3513.0938762120963,-4171761.2576073767,true,true,10.9526577,9350.395636731979,0.0,1.2,938.0,10.9526577,9350.395636731979,0.0,121.92,0.0 +939,25963.093876212097,25263.093876212097,0.22,6068.227977155099,4177829.485584532,700.0,657300.0,30764.67262343227,20252362.24869237,24696.44464627717,16074532.763107847,true,939,25263.093876212097,0.0,6068.227977155099,2344454.1633684426,700.0,657300.0,677.1198774048249,1184341.5738733744,4066.547376089585,102690.59321586252,0.0,0.0,1248.2315255839626,1055494.491222634,76.32919807672575,1927.505056569009,-6068.227977155099,-4177829.485584532,true,true,11.17618132,9361.571818051978,0.0,1.2,939.0,11.17618132,9361.571818051978,0.0,121.92,0.0 +940,28518.2279771551,27818.2279771551,0.16,1958.6865437234733,4179788.1721282555,700.0,658000.0,16616.79089827171,20268979.03959064,14658.104354548235,16089190.867462395,true,940,27818.2279771551,0.0,1958.6865437234733,2346412.849912166,700.0,658000.0,697.846619255842,1185039.4204926302,0.0,102690.59321586252,0.0,0.0,1260.8399244676311,1056755.3311471017,0.0,1927.505056569009,-1958.6865437234733,-4179788.1721282555,true,true,11.17618132,9372.747999371977,0.0,1.2,940.0,11.17618132,9372.747999371977,0.0,121.92,0.0 +941,24408.686543723474,23708.686543723474,0.12,0.0,4179788.1721282555,700.0,658700.0,6999.999999999999,20275979.03959064,6999.999999999999,16096190.867462395,true,941,23708.686543723474,0.0,-1389.011756041923,2345023.838156124,700.0,658700.0,681.2319297503583,1185720.6524223806,-3259.8101707917626,99430.78304507076,0.0,0.0,1250.7532051350663,1058006.0843522367,-61.18672013558456,1866.3183364334243,-0.0,-4179788.1721282555,true,true,10.99736242,9383.745361791976,0.0,1.2,941.0,10.99736242,9383.745361791976,0.0,121.92,0.0 +942,22450.0,21750.0,0.16,1905.5495553610397,4181693.7216836167,700.0,659400.0,16284.684721006499,20292263.72431165,14379.135165645459,16110570.00262804,true,942,21750.0,0.0,1905.5495553610397,2346929.3877114854,700.0,659400.0,664.883069558538,1186385.5354919392,0.0,99430.78304507076,0.0,0.0,1240.6664858025017,1059246.7508380392,0.0,1866.3183364334243,-1905.5495553610397,-4181693.7216836167,true,true,10.99736242,9394.742724211976,0.0,1.2,942.0,10.99736242,9394.742724211976,0.0,121.92,0.0 +943,24355.549555361038,23655.549555361038,0.12,0.0,4181693.7216836167,700.0,660100.0,6999.999999999999,20299263.72431165,6999.999999999999,16117570.00262804,true,943,23655.549555361038,0.0,-2203.0455373053373,2344726.34217418,700.0,660100.0,644.8175504247163,1187030.353042364,-4000.8255758761084,95429.95746919465,0.0,0.0,1228.0580863547586,1060474.808924394,-75.0955982087037,1791.2227382247206,-0.0,-4181693.7216836167,true,true,10.77383879,9405.516563001976,0.0,1.2,943.0,10.77383879,9405.516563001976,0.0,121.92,0.0 +944,22450.0,21750.0,0.22,5120.431417354236,4186814.153100971,700.0,660800.0,26456.506442519254,20325720.23075417,21336.075025165017,16138906.077653205,true,944,21750.0,0.0,5120.431417354236,2349846.7735915342,700.0,660800.0,640.8535197047328,1187671.2065620685,3194.088370578286,98624.04583977294,0.0,0.0,1225.5364068036547,1061700.3453311976,59.953120267562525,1851.1758584922832,-5120.431417354236,-4186814.153100971,true,true,10.9526577,9416.469220701976,0.0,1.2,944.0,10.9526577,9416.469220701976,0.0,121.92,0.0 +945,27570.431417354237,26870.431417354237,0.22,6913.480475008827,4193727.63357598,700.0,661500.0,34606.7294318583,20360326.96018603,27693.248956849475,16166599.326610055,true,945,26870.431417354237,0.0,6913.480475008827,2356760.254066543,700.0,661500.0,681.2319306720404,1188352.4384927405,4889.715258392876,103513.76109816582,0.0,0.0,1250.753205699141,1062951.0985368968,91.78008024476944,1942.9559387370525,-6913.480475008827,-4193727.63357598,true,true,11.22088605,9427.690106751976,0.0,1.2,945.0,11.22088605,9427.690106751976,0.0,121.92,0.0 +946,29363.480475008826,28663.480475008826,0.22,6249.370054845396,4199977.003630825,700.0,662200.0,31588.04570384271,20391915.005889874,25338.675648997312,16191938.002259051,true,946,28663.480475008826,0.0,6249.370054845396,2363009.6241213884,700.0,662200.0,727.5684262605905,1189080.006919001,4165.130342136687,107678.89144030251,0.0,0.0,1278.4916835816568,1064229.5902204784,78.17960286646121,2021.1355416035137,-6249.370054845396,-4199977.003630825,true,true,11.44440967,9439.134516421977,0.0,1.2,946.0,11.44440967,9439.134516421977,0.0,121.92,0.0 +947,28699.370054845396,27999.370054845396,0.12,0.0,4199977.003630825,700.0,662900.0,6999.999999999999,20398915.005889874,6999.999999999999,16198938.002259051,true,947,27999.370054845396,0.0,-2237.2498351609015,2360772.3742862274,700.0,662900.0,727.5684262605905,1189807.5753452615,-4165.130342136687,103513.76109816582,0.0,0.0,1278.4916835816568,1065508.08190406,-78.17960286646121,1942.9559387370525,-0.0,-4199977.003630825,true,true,11.22088605,9450.355402471976,0.0,1.2,947.0,11.22088605,9450.355402471976,0.0,121.92,0.0 +948,22450.0,21750.0,0.12,0.0,4199977.003630825,700.0,663600.0,6999.999999999999,20405915.005889874,6999.999999999999,16205938.002259051,true,948,21750.0,0.0,-7141.695672887195,2353630.67861334,700.0,663600.0,660.8371395676614,1190468.412484829,-8874.110341030375,94639.65075713545,0.0,0.0,1238.144806251398,1066746.2267103114,-166.56727767587927,1776.3886610611733,-0.0,-4199977.003630825,true,true,10.72913407,9461.084536541975,0.0,1.2,948.0,10.72913407,9461.084536541975,0.0,121.92,0.0 +949,22450.0,21750.0,0.12,0.0,4199977.003630825,700.0,664300.0,6999.999999999999,20412915.005889874,6999.999999999999,16212938.002259051,true,949,21750.0,0.0,-13696.406557014736,2339934.2720563253,700.0,664300.0,543.4047886673205,1191011.8172734964,-15116.055331959957,79523.59542517549,0.0,0.0,1159.9727308035394,1067906.199441115,-283.7287445256381,1492.659916535535,-0.0,-4199977.003630825,true,true,9.835039564,9470.919576105976,0.0,1.2,949.0,9.835039564,9470.919576105976,0.0,121.92,0.0 +950,22450.0,21750.0,0.12,0.0,4199977.003630825,700.0,665000.0,6999.999999999999,20419915.005889874,6999.999999999999,16219938.002259051,true,950,21750.0,0.0,-11911.237560098101,2328023.0344962273,700.0,665000.0,416.5779262169679,1191428.3951997133,-13142.75289553779,66380.8425296377,0.0,0.0,1061.6272166341441,1068967.826657749,-246.68980741142406,1245.970109124111,-0.0,-4199977.003630825,true,true,8.985649783,9479.905225888977,0.0,1.2,950.0,8.985649783,9479.905225888977,0.0,121.92,0.0 +951,22450.0,21750.0,0.12,0.0,4199977.003630825,700.0,665700.0,6999.999999999999,20426915.005889874,6999.999999999999,16226938.002259051,true,951,21750.0,0.0,-18603.046798443895,2309419.9876977834,700.0,665700.0,282.78419861571064,1191711.179398329,-19453.70598335574,46927.13654628195,0.0,0.0,933.0215442978323,1069900.848202047,-365.14655800169936,880.8235511224118,-0.0,-4199977.003630825,true,true,7.555098574,9487.460324462976,0.0,1.2,951.0,7.555098574,9487.460324462976,0.0,121.92,0.0 +952,22450.0,21750.0,0.12,0.0,4199977.003630825,700.0,666400.0,6999.999999999999,20433915.005889874,6999.999999999999,16233938.002259051,true,952,21750.0,0.0,-15920.188280036524,2293499.7994177467,700.0,666400.0,158.39792357592333,1191869.577321905,-16537.293143155388,30389.843403126564,0.0,0.0,769.1123540719143,1070669.9605561187,-310.40541452897276,570.418136593439,-0.0,-4199977.003630825,true,true,6.079842639,9493.540167101975,0.0,1.2,952.0,6.079842639,9493.540167101975,0.0,121.92,0.0 +953,22450.0,21750.0,0.12,0.0,4199977.003630825,700.0,667100.0,6999.999999999999,20440915.005889874,6999.999999999999,16240938.002259051,true,953,21750.0,0.0,-12523.070009395653,2280976.7294083512,700.0,667100.0,76.21556420854876,1191945.7928861135,-12958.73133951072,17431.112063615845,0.0,0.0,602.6814840128552,1071272.6420401316,-243.23571810633786,327.1824184871012,-0.0,-4199977.003630825,true,true,4.604586705,9498.144753806975,0.0,1.2,953.0,4.604586705,9498.144753806975,0.0,121.92,0.0 +954,22450.0,21750.0,0.12,0.0,4199977.003630825,700.0,667800.0,6999.999999999999,20447915.005889874,6999.999999999999,16247938.002259051,true,954,21750.0,0.0,-9091.078943045015,2271885.6504653064,700.0,667800.0,28.906018448799813,1191974.6989045623,-9380.169553434154,8050.9425101816905,0.0,0.0,436.250613953796,1071708.8926540853,-176.06602201345643,151.11639647364476,-0.0,-4199977.003630825,true,true,3.12933077,9501.274084576975,0.0,1.2,954.0,3.12933077,9501.274084576975,0.0,121.92,0.0 +955,22450.0,21750.0,0.12,0.0,4199977.003630825,700.0,668500.0,6999.999999999999,20454915.005889874,6999.999999999999,16254938.002259051,true,955,21750.0,0.0,-5633.845199495668,2266251.805265811,700.0,668500.0,6.83913693240514,1191981.5380414948,-5801.607754640927,2249.3347555407636,0.0,0.0,269.81974389473686,1071978.71239798,-108.89632568188298,42.22007079176177,-0.0,-4199977.003630825,true,true,1.654074836,9502.928159412975,0.0,1.2,955.0,1.654074836,9502.928159412975,0.0,121.92,0.0 +956,22450.0,21750.0,0.12,0.0,4199977.003630825,700.0,669200.0,6999.999999999999,20461915.005889874,6999.999999999999,16261938.002259051,true,956,21750.0,0.0,-2160.9989490800863,2264090.8063167306,700.0,669200.0,0.3847702950933382,1191981.92281179,-2223.0459637129175,26.288791827846126,0.0,0.0,103.38887383567763,1072082.1012718158,-41.72662949793998,0.4934412938217889,-0.0,-4199977.003630825,true,true,0.178818901,9503.106978313976,0.0,1.2,956.0,0.178818901,9503.106978313976,0.0,121.92,0.0 +957,22450.0,21750.0,0.12,0.0,4199977.003630825,700.0,669900.0,6999.999999999999,20468915.005889874,6999.999999999999,16268938.002259051,true,957,21750.0,0.0,-16.695156435356502,2264074.111160295,700.0,669900.0,0.0003572974683396763,1191981.9231690874,-26.2887918279776,-1.3147527511137014e-10,0.0,0.0,10.086719388972154,1072092.187991205,-0.49344129381939833,2.3905877277741183e-12,-0.0,-4199977.003630825,true,true,0.0,9503.106978313976,0.0,1.2,957.0,0.0,9503.106978313976,0.0,121.92,0.0 +958,22450.0,21750.0,0.12,0.0,4199977.003630825,700.0,670600.0,6999.999999999999,20475915.005889874,6999.999999999999,16275938.002259051,true,958,21750.0,0.0,0.0,2264074.111160295,700.0,670600.0,0.0,1191981.9231690874,0.0,-1.3147527511137014e-10,0.0,0.0,0.0,1072092.187991205,0.0,2.3905877277741183e-12,-0.0,-4199977.003630825,true,true,0.0,9503.106978313976,0.0,1.2,958.0,0.0,9503.106978313976,0.0,121.92,0.0 +959,22450.0,21750.0,0.12,0.0,4199977.003630825,700.0,671300.0,6999.999999999999,20482915.005889874,6999.999999999999,16282938.002259051,true,959,21750.0,0.0,0.0,2264074.111160295,700.0,671300.0,0.0,1191981.9231690874,0.0,-1.3147527511137014e-10,0.0,0.0,0.0,1072092.187991205,0.0,2.3905877277741183e-12,-0.0,-4199977.003630825,true,true,0.0,9503.106978313976,0.0,1.2,959.0,0.0,9503.106978313976,0.0,121.92,0.0 +960,22450.0,21750.0,0.12,720.034088727615,4200697.037719553,700.0,672000.0,11833.617406063458,20494748.623295937,11113.583317335844,16294051.585576387,true,960,21750.0,0.0,720.034088727615,2264794.1452490226,700.0,672000.0,0.044662183692316795,1191981.967831271,657.2197971695749,657.2197971694435,0.0,0.0,50.433597001268225,1072142.6215882062,12.336032373079432,12.336032373081823,-720.034088727615,-4200697.037719553,true,true,0.894094506,9504.001072819976,0.0,1.2,960.0,0.894094506,9504.001072819976,0.0,121.92,0.0 +961,23170.034088727614,22470.034088727614,0.16,4218.654402439795,4204915.692121993,700.0,672700.0,30741.59001524872,20525490.213311184,26522.935612808924,16320574.521189196,true,961,22470.034088727614,0.0,4218.654402439795,2269012.7996514626,700.0,672700.0,2.171793587382424,1191984.1396248583,3958.1062249474926,4615.326022116936,0.0,0.0,184.0826290038623,1072326.70421721,74.29375490105805,86.62978727413987,-4218.654402439795,-4204915.692121993,true,true,2.36935044,9506.370423259976,0.0,1.2,961.0,2.36935044,9506.370423259976,0.0,121.92,0.0 +962,26668.654402439795,25968.654402439795,0.28,8043.638173889099,4212959.330295882,700.0,673400.0,31227.27919246107,20556717.492503647,23183.64101857197,16343758.162207767,true,962,25968.654402439795,0.0,8043.638173889099,2277056.4378253515,700.0,673400.0,14.993201125891598,1191999.1328259842,7536.66802249111,12151.994044608045,0.0,0.0,350.5134990629215,1072677.217716273,141.4634512091763,228.09323848331616,-8043.638173889099,-4212959.330295882,true,true,3.844606375,9510.215029634976,0.0,1.2,962.0,3.844606375,9510.215029634976,0.0,121.92,0.0 +963,30493.6381738891,29793.6381738891,0.28,11888.903613135706,4224848.233909018,700.0,674100.0,44960.37004691323,20601677.86255056,33071.466433777525,16376829.628641546,true,963,29793.6381738891,0.0,11888.903613135706,2288945.341438487,700.0,674100.0,48.09628687092291,1192047.2291128552,11115.229809817289,23267.223854425334,0.0,0.0,516.9443691219808,1073194.1620853948,208.63314732551282,436.726385808829,-11888.903613135706,-4224848.233909018,true,true,5.319862309,9515.534891943975,0.0,1.2,963.0,5.319862309,9515.534891943975,0.0,121.92,0.0 +964,34338.903613135706,33638.903613135706,0.33,15764.080895304825,4240612.314804323,700.0,674800.0,49891.154228196436,20651569.016778756,34127.07333289161,16410956.701974437,true,964,33638.903613135706,0.0,15764.080895304825,2304709.422333792,700.0,674800.0,111.11120018674771,1192158.3403130418,14693.791612212344,37961.01546663768,0.0,0.0,683.3752391810399,1073877.537324576,275.80284372469254,712.5292295335215,-15764.080895304825,-4240612.314804323,true,true,6.795118244,9522.330010187974,0.0,1.2,964.0,6.795118244,9522.330010187974,0.0,121.92,0.0 +965,38214.080895304825,37514.080895304825,0.33,13609.1188221136,4254221.433626437,700.0,675500.0,43360.966127616965,20694929.98290637,29751.847305503365,16440708.54927994,true,965,37514.080895304825,0.0,13609.1188221136,2318318.5411559055,700.0,675500.0,195.20602778727434,1192353.546340829,12357.375234862255,50318.39070149993,0.0,0.0,824.5893107958725,1074702.1266353717,231.94824866819718,944.4774782017187,-13609.1188221136,-4254221.433626437,true,true,7.823326926,9530.153337113974,0.0,1.2,965.0,7.823326926,9530.153337113974,0.0,121.92,0.0 +966,36059.118822113596,35359.118822113596,0.28,7819.988390294641,4262041.422016731,700.0,676200.0,30428.529965338006,20725358.51287171,22608.541575043364,16463317.090854982,true,966,35359.118822113596,0.0,7819.988390294641,2326138.5295462003,700.0,676200.0,262.64647223749085,1192616.1928130665,6524.549531086411,56842.94023258634,0.0,0.0,910.3264256867469,1075612.4530610584,122.46596128399227,1066.943439485711,-7819.988390294641,-4262041.422016731,true,true,8.315078904,9538.468416017973,0.0,1.2,966.0,8.315078904,9538.468416017973,0.0,121.92,0.0 +967,30269.988390294642,29569.988390294642,0.28,10340.146658245229,4272381.568674977,700.0,676900.0,39429.09520801867,20764787.608079728,29088.948549773442,16492406.039404755,true,967,29569.988390294642,0.0,10340.146658245229,2336478.6762044453,700.0,676900.0,321.0789840964187,1192937.271797163,8879.039454968335,65721.97968755467,0.0,0.0,973.3684219101285,1076585.8214829685,166.65979727034525,1233.6032367560563,-10340.146658245229,-4272381.568674977,true,true,8.940945058,9547.409361075974,0.0,1.2,967.0,8.940945058,9547.409361075974,0.0,121.92,0.0 +968,32790.14665824523,32090.146658245227,0.28,8991.657734959703,4281373.226409936,700.0,677600.0,34613.063339141794,20799400.671418868,25621.40560418209,16518027.445008937,true,968,32090.146658245227,0.0,8991.657734959703,2345470.333939405,700.0,677600.0,387.59255980816505,1193324.864356971,7428.226751238988,73150.20643879366,0.0,0.0,1036.4104181335101,1077622.231901102,139.4280057790397,1373.031242535096,-8991.657734959703,-4281373.226409936,true,true,9.432697036,9556.842058111974,0.0,1.2,968.0,9.432697036,9556.842058111974,0.0,121.92,0.0 +969,31441.657734959703,30741.657734959703,0.28,8026.835176592565,4289400.061586529,700.0,678300.0,31167.268487830588,20830567.939906698,23140.433311238023,16541167.878320176,true,969,30741.657734959703,0.0,8026.835176592565,2353497.169115998,700.0,678300.0,446.97350107553376,1193771.8378580466,6373.388986381814,79523.59542517547,0.0,0.0,1086.8440151347781,1078709.0759162367,119.62867400043929,1492.6599165355353,-8026.835176592565,-4289400.061586529,true,true,9.835039564,9566.677097675974,0.0,1.2,969.0,9.835039564,9566.677097675974,0.0,121.92,0.0 +970,30476.835176592565,29776.835176592565,0.28,9175.989251045345,4298576.0508375745,700.0,679000.0,35271.3901823048,20865839.330089003,26095.400931259457,16567263.279251436,true,970,29776.835176592565,0.0,9175.989251045345,2362673.1583670434,700.0,679000.0,508.7301860444309,1194280.568044091,7393.722767407227,86917.3181925827,0.0,0.0,1134.7559324721278,1079843.831848709,138.78036512155848,1631.4402816570937,-9175.989251045345,-4298576.0508375745,true,true,10.28208682,9576.959184495974,0.0,1.2,970.0,10.28208682,9576.959184495974,0.0,121.92,0.0 +971,31625.989251045343,30925.989251045343,0.33,13722.577399145379,4312298.62823672,700.0,679700.0,43704.77999741024,20909544.11008641,29982.20259826486,16597245.4818497,true,971,30925.989251045343,0.0,13722.577399145379,2376395.7357661887,700.0,679700.0,598.3162461988239,1194878.8842902898,11706.727647190228,98624.04583977292,0.0,0.0,1197.797928921139,1081041.62977763,219.73557683518942,1851.1758584922832,-13722.577399145379,-4312298.62823672,true,true,10.9526577,9587.911842195974,0.0,1.2,971.0,10.9526577,9587.911842195974,0.0,121.92,0.0 +972,36172.577399145375,35472.577399145375,0.33,17318.941585023782,4329617.569821744,700.0,680400.0,54602.85328795085,20964146.96337436,37283.91170292707,16634529.393552627,true,972,35472.577399145375,0.0,17318.941585023782,2393714.6773512126,700.0,680400.0,731.882062313715,1195610.7663526034,15024.04446088687,113648.0903006598,0.0,0.0,1281.013363696835,1082322.643141327,282.0016981263647,2133.177556618648,-17318.941585023782,-4329617.569821744,true,true,11.75734275,9599.669184945973,0.0,1.2,972.0,11.75734275,9599.669184945973,0.0,121.92,0.0 +973,39768.941585023786,39068.941585023786,0.33,13032.649042380006,4342650.218864124,700.0,681100.0,41614.088007212136,21005761.051381573,28581.43896483213,16663110.83251746,true,973,39068.941585023786,0.0,13032.649042380006,2406747.3263935926,700.0,681100.0,869.3542725127735,1196480.1206251162,10607.527450105157,124255.61775076496,0.0,0.0,1356.6637586910704,1083679.3069000181,199.10356107100466,2332.2811176896525,-13032.649042380006,-4342650.218864124,true,true,12.29379945,9611.962984395974,0.0,1.2,973.0,12.29379945,9611.962984395974,0.0,121.92,0.0 +974,35482.649042380006,34782.649042380006,0.28,7945.714655878004,4350595.933520002,700.0,681800.0,30877.55234242144,21036638.603723995,22931.837686543437,16686042.670204004,true,974,34782.649042380006,0.0,7945.714655878004,2414693.0410494707,700.0,681800.0,959.5648720570623,1197439.6854971733,5481.2132744607015,129736.83102522566,0.0,0.0,1402.053996251686,1085081.3608962698,102.88251310855414,2435.1636307982067,-7945.714655878004,-4350595.933520002,true,true,12.56202781,9624.525012205973,0.0,1.2,974.0,12.56202781,9624.525012205973,0.0,121.92,0.0 +975,30395.714655878004,29695.714655878004,0.22,5268.912611594136,4355864.846131597,700.0,682500.0,27131.42096179153,21063770.024685785,21862.508350197393,16707905.178554201,true,975,29695.714655878004,0.0,5268.912611594136,2419961.9536610646,700.0,682500.0,1006.9207941976458,1198446.606291371,2784.9687674925394,132521.7997927182,0.0,0.0,1424.7491150319938,1086506.1100113017,52.273934871957,2487.4375656701636,-5268.912611594136,-4355864.846131597,true,true,12.69614198,9637.221154185974,0.0,1.2,975.0,12.69614198,9637.221154185974,0.0,121.92,0.0 +976,27718.912611594136,27018.912611594136,0.16,3415.7375863383945,4359280.583717935,700.0,683200.0,25723.359914614968,21089493.3846004,22307.622328276575,16730212.800882477,true,976,27018.912611594136,0.0,3415.7375863383945,2423377.691247403,700.0,683200.0,1028.4584845284012,1199475.0647758993,934.8952595537647,133456.69505227197,0.0,0.0,1434.8358343645587,1087940.9458456663,17.548007891670075,2504.985573561834,-3415.7375863383945,-4359280.583717935,true,true,12.74084671,9649.962000895974,0.0,1.2,976.0,12.74084671,9649.962000895974,0.0,121.92,0.0 +977,25865.737586338393,25165.737586338393,0.16,2471.247987424418,4361751.831705359,700.0,683900.0,19820.299921402613,21109313.6845218,17349.051933978197,16747561.852816455,true,977,25165.737586338393,0.0,2471.247987424418,2425848.9392348276,700.0,683900.0,1033.8904729446815,1200508.9552488439,0.0,133456.69505227197,0.0,0.0,1437.357514479737,1089378.303360146,0.0,2504.985573561834,-2471.247987424418,-4361751.831705359,true,true,12.74084671,9662.702847605973,0.0,1.2,977.0,12.74084671,9662.702847605973,0.0,121.92,0.0 +978,24921.247987424416,24221.247987424416,0.16,2471.247987424418,4364223.079692783,700.0,684600.0,19820.299921402613,21129133.984443203,17349.051933978197,16764910.904750433,true,978,24221.247987424416,0.0,2471.247987424418,2428320.187222252,700.0,684600.0,1033.8904729446815,1201542.8457217885,0.0,133456.69505227197,0.0,0.0,1437.357514479737,1090815.6608746257,0.0,2504.985573561834,-2471.247987424418,-4364223.079692783,true,true,12.74084671,9675.443694315973,0.0,1.2,978.0,12.74084671,9675.443694315973,0.0,121.92,0.0 +979,24921.247987424416,24221.247987424416,0.12,0.0,4364223.079692783,700.0,685300.0,6999.999999999999,21136133.984443203,6999.999999999999,16771910.904750433,true,979,24221.247987424416,0.0,-5117.65703508043,2423202.530187172,700.0,685300.0,990.9663630803167,1202533.8120848688,-7387.150471024702,126069.54458124728,0.0,0.0,1417.1840758146077,1092232.8449504403,-138.6570029506537,2366.32857061118,-0.0,-4364223.079692783,true,true,12.38320891,9687.826903225972,0.0,1.2,979.0,12.38320891,9687.826903225972,0.0,121.92,0.0 +980,22450.0,21750.0,0.12,482.9964682410953,4364706.076161024,700.0,686000.0,9858.303902009127,21145992.28834521,9375.307433768032,16781286.212184202,true,980,21750.0,0.0,482.9964682410953,2423685.526655413,700.0,686000.0,939.003474725806,1203472.8155595947,-1813.9268304823047,124255.61775076497,0.0,0.0,1391.9672769191216,1093624.8122273595,-34.047452921527515,2332.2811176896525,-482.9964682410953,-4364706.076161024,true,true,12.29379945,9700.120702675973,0.0,1.2,980.0,12.29379945,9700.120702675973,0.0,121.92,0.0 +981,22932.996468241094,22232.996468241094,0.12,0.0,4364706.076161024,700.0,686700.0,6999.999999999999,21152992.28834521,6999.999999999999,16788286.212184202,true,981,22232.996468241094,0.0,-453.77628685272055,2423231.7503685607,700.0,686700.0,913.7175045118892,1204386.5330641065,-2696.244098270654,121559.37365249431,0.0,0.0,1379.3588774713783,1095004.171104831,-50.608570565334006,2281.6725471243185,-0.0,-4364706.076161024,true,true,12.15968528,9712.280387955972,0.0,1.2,981.0,12.15968528,9712.280387955972,0.0,121.92,0.0 +982,22450.0,21750.0,0.12,0.0,4364706.076161024,700.0,687400.0,6999.999999999999,21159992.28834521,6999.999999999999,16795286.212184202,true,982,21750.0,0.0,-1374.8085746487575,2421856.941793912,700.0,687400.0,879.0857613973797,1205265.6188255039,-3548.986880605484,118010.38677188882,0.0,0.0,1361.7071189214273,1096365.8782237524,-66.61457436208029,2215.057972762238,-0.0,-4364706.076161024,true,true,11.98086638,9724.261254335972,0.0,1.2,982.0,11.98086638,9724.261254335972,0.0,121.92,0.0 +983,22450.0,21750.0,0.12,0.0,4364706.076161024,700.0,688100.0,6999.999999999999,21166992.28834521,6999.999999999999,16802286.212184202,true,983,21750.0,0.0,-487.1538118500299,2421369.787982062,700.0,688100.0,845.340338213632,1206110.9591637175,-2627.2362189622645,115383.15055292656,0.0,0.0,1344.0553598074016,1097709.9335835597,-49.31329090879901,2165.744681853439,-0.0,-4364706.076161024,true,true,11.8467522,9736.108006535971,0.0,1.2,983.0,11.8467522,9736.108006535971,0.0,121.92,0.0 +984,22450.0,21750.0,0.12,0.0,4364706.076161024,700.0,688800.0,6999.999999999999,21173992.28834521,6999.999999999999,16809286.212184202,true,984,21750.0,0.0,-2262.2333885461812,2419107.5545935156,700.0,688800.0,807.8446934421324,1206918.8038571596,-4313.004793045029,111070.14575988153,0.0,0.0,1323.8819211422724,1099033.815504702,-80.95521008555681,2084.7894717678823,-0.0,-4364706.076161024,true,true,11.62322858,9747.73123511597,0.0,1.2,984.0,11.62322858,9747.73123511597,0.0,121.92,0.0 +985,22450.0,21750.0,0.12,0.0,4364706.076161024,700.0,689500.0,6999.999999999999,21180992.28834521,6999.999999999999,16816286.212184202,true,985,21750.0,0.0,-521.0197902472254,2418586.5348032685,700.0,689500.0,771.4745356844536,1207690.2783928441,-2548.369841420113,108521.77591846143,0.0,0.0,1303.708482477143,1100337.5239871792,-47.832966988708876,2036.9565047791734,-0.0,-4364706.076161024,true,true,11.4891144,9759.22034951597,0.0,1.2,985.0,11.4891144,9759.22034951597,0.0,121.92,0.0 +986,22450.0,21750.0,0.12,0.0,4364706.076161024,700.0,690200.0,6999.999999999999,21187992.28834521,6999.999999999999,16823286.212184202,true,986,21750.0,0.0,-2240.3012737889976,2416346.2335294797,700.0,690200.0,736.2127136917738,1208426.491106536,-4181.561023552564,104340.21489490886,0.0,0.0,1283.535043247939,1101621.0590304271,-78.48800717614667,1958.4684976030267,-0.0,-4364706.076161024,true,true,11.26559077,9770.48594028597,0.0,1.2,986.0,11.26559077,9770.48594028597,0.0,121.92,0.0 +987,22450.0,21750.0,0.12,0.0,4364706.076161024,700.0,690900.0,6999.999999999999,21194992.28834521,6999.999999999999,16830286.212184202,true,987,21750.0,0.0,-7977.09441895423,2408369.1391105256,700.0,690900.0,664.883069558538,1209091.3741760945,-9700.564137773415,94639.65075713545,0.0,0.0,1240.6664858025017,1102861.7255162296,-182.07983654185355,1776.388661061173,-0.0,-4364706.076161024,true,true,10.72913407,9781.215074355969,0.0,1.2,987.0,10.72913407,9781.215074355969,0.0,121.92,0.0 +988,22450.0,21750.0,0.12,0.0,4364706.076161024,700.0,691600.0,6999.999999999999,21201992.28834521,6999.999999999999,16837286.212184202,true,988,21750.0,0.0,-13696.406557014736,2394672.732553511,700.0,691600.0,543.4047886673205,1209634.7789647619,-15116.055331959957,79523.59542517549,0.0,0.0,1159.9727308035394,1104021.6982470332,-283.7287445256381,1492.6599165355349,-0.0,-4364706.076161024,true,true,9.835039564,9791.05011391997,0.0,1.2,988.0,9.835039564,9791.05011391997,0.0,121.92,0.0 +989,22450.0,21750.0,0.12,0.0,4364706.076161024,700.0,692300.0,6999.999999999999,21208992.28834521,6999.999999999999,16844286.212184202,true,989,21750.0,0.0,-2084.245003298294,2392588.4875502125,700.0,692300.0,459.5340926175754,1210094.3130573796,-3573.6326542764773,75949.96277089902,0.0,0.0,1096.9307345237503,1105118.628981557,-67.07717616314252,1425.5827403723924,-0.0,-4364706.076161024,true,true,9.611515937,9800.66162985697,0.0,1.2,989.0,9.611515937,9800.66162985697,0.0,121.92,0.0 +990,22450.0,21750.0,0.16,1528.191864752001,4366234.268025776,700.0,693000.0,13926.199154700007,21222918.48749991,12398.007289948006,16856684.21947415,true,990,21750.0,0.0,1528.191864752001,2394116.6794149647,700.0,693000.0,443.86952950677136,1210538.1825868862,0.0,75949.96277089902,0.0,0.0,1084.3223352452296,1106202.9513168023,0.0,1425.5827403723924,-1528.191864752001,-4366234.268025776,true,true,9.611515937,9810.27314579397,0.0,1.2,990.0,9.611515937,9810.27314579397,0.0,121.92,0.0 +991,23978.191864752,23278.191864752,0.16,3719.4947210349114,4369953.762746811,700.0,693700.0,27621.842006468192,21250540.32950638,23902.34728543328,16880586.566759586,true,991,23278.191864752,0.0,3719.4947210349114,2397836.1741359998,700.0,693700.0,453.2247887231973,1210991.4073756095,2134.321292359348,78084.28406325837,0.0,0.0,1091.8873748010606,1107294.8386916034,40.06126515130583,1465.6440055236983,-3719.4947210349114,-4369953.762746811,true,true,9.745630113,9820.01877590697,0.0,1.2,991.0,9.745630113,9820.01877590697,0.0,121.92,0.0 +992,26169.494721034913,25469.494721034913,0.22,6793.192568169428,4376746.95531498,700.0,694400.0,34059.966218951944,21284600.29572533,27266.773650782518,16907853.34041037,true,992,25469.494721034913,0.0,6793.192568169428,2404629.366704169,700.0,694400.0,485.35682928136436,1211476.764204891,5095.096474668295,83179.38053792666,0.0,0.0,1117.1041733016946,1108411.942864905,95.63509091807472,1561.279096441773,-6793.192568169428,-4376746.95531498,true,true,10.05856319,9830.07733909697,0.0,1.2,992.0,10.05856319,9830.07733909697,0.0,121.92,0.0 +993,29243.192568169427,28543.192568169427,0.22,5481.340146874327,4382228.295461854,700.0,695100.0,28097.000667610577,21312697.29639294,22615.66052073625,16930469.000931107,true,993,28543.192568169427,0.0,5481.340146874327,2410110.7068510437,700.0,695100.0,525.8769753087038,1212002.6411801996,3737.9376546560616,86917.31819258272,0.0,0.0,1147.364331694241,1109559.3071965994,70.16118521532044,1631.4402816570935,-5481.340146874327,-4382228.295461854,true,true,10.28208682,9840.35942591697,0.0,1.2,993.0,10.28208682,9840.35942591697,0.0,121.92,0.0 +994,27931.340146874325,27231.340146874325,0.12,157.99420479906883,4382386.289666653,700.0,695800.0,7149.951706658907,21319847.2480996,6991.957501859838,16937460.958432965,true,994,27231.340146874325,0.0,157.99420479906883,2410268.701055843,700.0,695800.0,536.3476728813372,1212538.988853081,-1505.0333256096048,85412.28486697312,0.0,0.0,1154.9293714757018,1110714.2365680751,-28.24951394836529,1603.1907677087281,-157.99420479906883,-4382386.289666653,true,true,10.19267737,9850.55210328697,0.0,1.2,994.0,10.19267737,9850.55210328697,0.0,121.92,0.0 +995,22607.99420479907,21907.99420479907,0.16,1679.2379342687036,4384065.527600922,700.0,696500.0,14870.237089179398,21334717.48518878,13190.999154910694,16950651.957587875,true,995,21907.99420479907,0.0,1679.2379342687036,2411947.9389901115,700.0,696500.0,529.3519224592842,1213068.34077554,0.0,85412.28486697312,0.0,0.0,1149.8860118094194,1111864.1225798845,0.0,1603.1907677087281,-1679.2379342687036,-4384065.527600922,true,true,10.19267737,9860.744780656969,0.0,1.2,995.0,10.19267737,9860.744780656969,0.0,121.92,0.0 +996,24129.237934268705,23429.237934268705,0.16,3224.5598839150093,4387290.087484837,700.0,697200.0,24528.499274468806,21359245.98446325,21303.939390553798,16971955.89697843,true,996,23429.237934268705,0.0,3224.5598839150093,2415172.4988740264,700.0,697200.0,536.3476728813372,1213604.6884484214,1505.0333256096048,86917.31819258272,0.0,0.0,1154.9293714757018,1113019.0519513602,28.24951394836529,1631.4402816570935,-3224.5598839150093,-4387290.087484837,true,true,10.28208682,9871.026867476969,0.0,1.2,996.0,10.28208682,9871.026867476969,0.0,121.92,0.0 +997,25674.559883915008,24974.559883915008,0.12,0.0,4387290.087484837,700.0,697900.0,6999.999999999999,21366245.98446325,6999.999999999999,16978955.89697843,true,997,24974.559883915008,0.0,-609.6528410209443,2414562.8460330055,700.0,697900.0,532.8421432974629,1214137.5305917189,-2252.6209234319535,84664.69726915077,0.0,0.0,1152.4076913605236,1114171.4596427206,-42.28175224697732,1589.1585294101162,-0.0,-4387290.087484837,true,true,10.14797264,9881.174840116968,0.0,1.2,997.0,10.14797264,9881.174840116968,0.0,121.92,0.0 +998,22450.0,21750.0,0.16,1667.2599207105752,4388957.347405547,700.0,698600.0,14795.374504441093,21381041.358967688,13128.114583730518,16992084.01156216,true,998,21750.0,0.0,1667.2599207105752,2416230.105953716,700.0,698600.0,522.4172691315125,1214659.9478608503,0.0,84664.69726915077,0.0,0.0,1144.8426515790627,1115316.3022942997,0.0,1589.1585294101162,-1667.2599207105752,-4388957.347405547,true,true,10.14797264,9891.322812756967,0.0,1.2,998.0,10.14797264,9891.322812756967,0.0,121.92,0.0 +999,24117.259920710574,23417.259920710574,0.16,1667.2599207105752,4390624.607326258,700.0,699300.0,14795.374504441093,21395836.733472127,13128.114583730518,17005212.12614589,true,999,23417.259920710574,0.0,1667.2599207105752,2417897.365874427,700.0,699300.0,522.4172691315125,1215182.3651299817,0.0,84664.69726915077,0.0,0.0,1144.8426515790627,1116461.1449458788,0.0,1589.1585294101162,-1667.2599207105752,-4390624.607326258,true,true,10.14797264,9901.470785396967,0.0,1.2,999.0,10.14797264,9901.470785396967,0.0,121.92,0.0 +1000,24117.259920710574,23417.259920710574,0.28,7902.235449542765,4398526.842775801,700.0,700000.0,30722.269462652726,21426559.00293478,22820.034013109962,17028032.160159003,true,1000,23417.259920710574,0.0,7902.235449542765,2425799.6013239697,700.0,700000.0,550.5235384176187,1215732.8886683993,6072.710882566083,90737.40815171685,0.0,0.0,1165.016090244192,1117626.161036123,113.98493831487275,1703.143467724989,-7902.235449542765,-4398526.842775801,true,true,10.50561044,9911.976395836966,0.0,1.2,1000.0,10.50561044,9911.976395836966,0.0,121.92,0.0 +1001,30352.235449542764,29652.235449542764,0.22,5771.601972465383,4404298.444748267,700.0,700700.0,29416.372602115378,21455975.375536896,23644.770629649996,17051676.930788655,true,1001,29652.235449542764,0.0,5771.601972465383,2431571.203296435,700.0,700700.0,598.3162453535352,1216331.2049137529,3902.2426054185994,94639.65075713545,0.0,0.0,1197.7979283570644,1118823.95896448,73.24519333618417,1776.3886610611733,-5771.601972465383,-4404298.444748267,true,true,10.72913407,9922.705529906965,0.0,1.2,1001.0,10.72913407,9922.705529906965,0.0,121.92,0.0 +1002,28221.60197246538,27521.60197246538,0.22,6747.45188981596,4411045.896638082,700.0,701400.0,33852.054044618,21489827.429581515,27104.602154802044,17078781.532943457,true,1002,27521.60197246538,0.0,6747.45188981596,2438318.655186251,700.0,701400.0,640.8535197047331,1216972.0584334575,4791.132287935321,99430.78304507077,0.0,0.0,1225.536406803655,1120049.4953712837,89.92967537225101,1866.3183364334243,-6747.45188981596,-4411045.896638082,true,true,10.99736242,9933.702892326965,0.0,1.2,1002.0,10.99736242,9933.702892326965,0.0,121.92,0.0 +1003,29197.45188981596,28497.45188981596,0.16,3572.53713770368,4414618.433775786,700.0,702100.0,26703.357110647998,21516530.786692165,23130.81997294432,17101912.3529164,true,1003,28497.45188981596,0.0,3572.53713770368,2441891.1923239543,700.0,702100.0,673.0244049767887,1217645.0828384343,1623.33288751239,101054.11593258315,0.0,0.0,1245.7098454687841,1121295.2052167526,30.469999745717175,1896.7883361791414,-3572.53713770368,-4414618.433775786,true,true,11.08677187,9944.789664196964,0.0,1.2,1003.0,11.08677187,9944.789664196964,0.0,121.92,0.0 +1004,26022.53713770368,25322.53713770368,0.16,4457.798921666621,4419076.232697453,700.0,702800.0,32236.24326041638,21548767.029952582,27778.44433874976,17129690.79725515,true,1004,25322.53713770368,0.0,4457.798921666621,2446348.991245621,700.0,702800.0,693.667908609518,1218338.7507470439,2459.6451655826645,103513.76109816582,0.0,0.0,1258.3182449165272,1122553.5234616692,46.167602557911074,1942.9559387370525,-4457.798921666621,-4419076.232697453,true,true,11.22088605,9956.010550246963,0.0,1.2,1004.0,11.22088605,9956.010550246963,0.0,121.92,0.0 +1005,26907.79892166662,26207.79892166662,0.22,5387.194252476841,4424463.42694993,700.0,703500.0,27669.06478398564,21576436.09473657,22281.870531508797,17151972.66778666,true,1005,26207.79892166662,0.0,5387.194252476841,2451736.185498098,700.0,703500.0,723.2717739656013,1219062.0225210094,3325.532151096757,106839.29324926258,0.0,0.0,1275.970004030553,1123829.4934656997,62.42032338393042,2005.376262120983,-5387.194252476841,-4424463.42694993,true,true,11.39970495,9967.410255196963,0.0,1.2,1005.0,11.39970495,9967.410255196963,0.0,121.92,0.0 +1006,27837.194252476842,27137.194252476842,0.16,2888.8610737131994,4427352.288023643,700.0,704200.0,22430.381710707497,21598866.476447277,19541.520636994297,17171514.188423656,true,1006,27137.194252476842,0.0,2888.8610737131994,2454625.046571811,700.0,704200.0,744.9252002765171,1219806.947721286,839.5981910399303,107678.89144030251,0.0,0.0,1288.5784029142212,1125118.0718686138,15.759279482530792,2021.1355416035137,-2888.8610737131994,-4427352.288023643,true,true,11.44440967,9978.854664866964,0.0,1.2,1006.0,11.44440967,9978.854664866964,0.0,121.92,0.0 +1007,25338.8610737132,24638.8610737132,0.12,1178.1461326682775,4428530.434156312,700.0,704900.0,15651.217772235646,21614517.69421951,14473.07163956737,17185987.260063224,true,1007,24638.8610737132,0.0,1178.1461326682775,2455803.1927044797,700.0,704900.0,744.9252002765171,1220551.8729215625,-839.5981910399303,106839.29324926258,0.0,0.0,1288.5784029142212,1126406.650271528,-15.759279482530792,2005.376262120983,-1178.1461326682775,-4428530.434156312,true,true,11.39970495,9990.254369816963,0.0,1.2,1007.0,11.39970495,9990.254369816963,0.0,121.92,0.0 +1008,23628.146132668277,22928.146132668277,0.12,0.0,4428530.434156312,700.0,705600.0,6999.999999999999,21621517.69421951,6999.999999999999,17192987.260063224,true,1008,22928.146132668277,0.0,-2234.1308450267793,2453569.061859453,700.0,705600.0,718.9920700098693,1221270.8649915725,-4148.700033400049,102690.59321586254,0.0,0.0,1273.4483239153742,1127680.0985954434,-77.87120555197411,1927.505056569009,-0.0,-4428530.434156312,true,true,11.17618132,10001.430551136962,0.0,1.2,1008.0,11.17618132,10001.430551136962,0.0,121.92,0.0 +1009,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,706300.0,6999.999999999999,21628517.69421951,6999.999999999999,17199987.260063224,true,1009,21750.0,0.0,-5497.936120660369,2448071.1257387926,700.0,706300.0,660.8371386644675,1221931.702130237,-7260.635746667871,95429.95746919466,0.0,0.0,1238.144805687323,1128918.2434011307,-136.28231834428826,1791.2227382247206,-0.0,-4428530.434156312,true,true,10.77383879,10012.204389926963,0.0,1.2,1009.0,10.77383879,10012.204389926963,0.0,121.92,0.0 +1010,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,707000.0,6999.999999999999,21635517.69421951,6999.999999999999,17206987.260063224,true,1010,21750.0,0.0,-1385.3893611714466,2446685.736377621,700.0,707000.0,609.7245129835902,1222541.4266432205,-3141.5106074188498,92288.44686177581,0.0,0.0,1205.3629675744507,1130123.6063687052,-58.96623431063786,1732.2565039140827,-0.0,-4428530.434156312,true,true,10.59501989,10022.799409816962,0.0,1.2,1010.0,10.59501989,10022.799409816962,0.0,121.92,0.0 +1011,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,707700.0,6999.999999999999,21642517.69421951,6999.999999999999,17213987.260063224,true,1011,21750.0,0.0,-2166.6746869210638,2444519.0616907,700.0,707700.0,575.928399201697,1223117.3550424222,-3852.9509478165046,88435.49591395931,0.0,0.0,1182.6678493582174,1131306.2742180633,-72.31998766447373,1659.936516249609,-0.0,-4428530.434156312,true,true,10.37149627,10033.170906086962,0.0,1.2,1011.0,10.37149627,10033.170906086962,0.0,121.92,0.0 +1012,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,708400.0,6999.999999999999,21649517.69421951,6999.999999999999,17220987.260063224,true,1012,21750.0,0.0,-605.5384975442786,2443913.5231931554,700.0,708400.0,546.9564428071191,1223664.3114852293,-2272.3375178174856,86163.15839614182,0.0,0.0,1162.494410693088,1132468.7686287565,-42.65183322700004,1617.284683022609,-0.0,-4428530.434156312,true,true,10.23738209,10043.408288176961,0.0,1.2,1012.0,10.23738209,10043.408288176961,0.0,121.92,0.0 +1013,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,709100.0,6999.999999999999,21656517.69421951,6999.999999999999,17227987.260063224,true,1013,21750.0,0.0,-1372.523524085425,2442540.99966907,700.0,709100.0,522.4172691315122,1224186.7287543607,-2983.7778582151636,83179.38053792666,0.0,0.0,1144.8426515790625,1133613.6112803356,-56.00558658083572,1561.2790964417732,-0.0,-4428530.434156312,true,true,10.05856319,10053.46685136696,0.0,1.2,1013.0,10.05856319,10053.46685136696,0.0,121.92,0.0 +1014,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,709800.0,6999.999999999999,21663517.69421951,6999.999999999999,17234987.260063224,true,1014,21750.0,0.0,-2110.296525976417,2440430.7031430933,700.0,709800.0,491.96023365660204,1224678.6889880174,-3655.785112751166,79523.59542517549,0.0,0.0,1122.1475330243845,1134735.75881336,-68.61917990623803,1492.659916535535,-0.0,-4428530.434156312,true,true,9.835039564,10063.301890930961,0.0,1.2,1014.0,9.835039564,10063.301890930961,0.0,121.92,0.0 +1015,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,710500.0,6999.999999999999,21670517.69421951,6999.999999999999,17241987.260063224,true,1015,21750.0,0.0,-1357.1004141501203,2439073.6027289433,700.0,710500.0,462.71058440838954,1225141.3995724258,-2865.478311895824,76658.11711327966,0.0,0.0,1099.4524144132988,1135835.2112277732,-53.7851010759847,1438.8748154595505,-0.0,-4428530.434156312,true,true,9.656220663,10072.958111593962,0.0,1.2,1015.0,9.656220663,10072.958111593962,0.0,121.92,0.0 +1016,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,711200.0,6999.999999999999,21677517.69421951,6999.999999999999,17248987.260063224,true,1016,21750.0,0.0,-6273.577482942422,2432800.025246001,700.0,711200.0,416.5779262169679,1225557.9774986426,-7608.962210823534,69049.15490245612,0.0,0.0,1061.6272166341441,1136896.8384444073,-142.8204149699991,1296.0544004895514,-0.0,-4428530.434156312,true,true,9.164468684,10082.122580277963,0.0,1.2,1016.0,9.164468684,10082.122580277963,0.0,121.92,0.0 +1017,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,711900.0,6999.999999999999,21684517.69421951,6999.999999999999,17255987.260063224,true,1017,21750.0,0.0,-17817.764862716347,2414982.2603832847,700.0,711900.0,306.33791772920694,1225864.315416372,-18730.76420095619,50318.390701499935,0.0,0.0,958.2383427984664,1137855.0767872059,-351.5769222878327,944.4774782017187,-0.0,-4428530.434156312,true,true,7.823326926,10089.945907203963,0.0,1.2,1017.0,7.823326926,10089.945907203963,0.0,121.92,0.0 +1018,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,712600.0,6999.999999999999,21691517.69421951,6999.999999999999,17262987.260063224,true,1018,21750.0,0.0,-16533.34701202636,2398448.9133712584,700.0,712600.0,177.83930514918515,1226042.154721521,-17187.940742882525,33130.449958617406,0.0,0.0,799.3725122952383,1138654.449299501,-322.6180865882553,621.8593916134633,-0.0,-4428530.434156312,true,true,6.348070991,10096.293978194963,0.0,1.2,1018.0,6.348070991,10096.293978194963,0.0,121.92,0.0 +1019,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,713300.0,6999.999999999999,21698517.69421951,6999.999999999999,17269987.260063224,true,1019,21750.0,0.0,-13143.603896655412,2385305.309474603,700.0,713300.0,88.28179006255239,1226130.4365115836,-13609.3789387968,19521.071019820607,0.0,0.0,632.9416422361792,1139287.3909417372,-255.44839015734206,366.4110014561213,-0.0,-4428530.434156312,true,true,4.872815057,10101.166793251963,0.0,1.2,1019.0,4.872815057,10101.166793251963,0.0,121.92,0.0 +1020,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,714000.0,6999.999999999999,21705517.69421951,6999.999999999999,17276987.260063224,true,1020,21750.0,0.0,-9717.237050223534,2375588.072424379,700.0,714000.0,35.348024833374936,1226165.784536417,-10030.817153161288,9490.25386665932,0.0,0.0,466.51077217712,1139753.9017139142,-188.27869407273917,178.13230738338214,-0.0,-4428530.434156312,true,true,3.397559122,10104.564352373964,0.0,1.2,1020.0,3.397559122,10104.564352373964,0.0,121.92,0.0 +1021,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,714700.0,6999.999999999999,21712517.69421951,6999.999999999999,17283987.260063224,true,1021,21750.0,0.0,-6263.87659272629,2369324.1958316527,700.0,714700.0,9.407860092076065,1226175.1923965092,-6452.2553570878035,3037.9985095715156,0.0,0.0,300.0799020616533,1140053.981615976,-121.10899779221543,57.02330959116671,-0.0,-4428530.434156312,true,true,1.922303187,10106.486655560964,0.0,1.2,1021.0,1.922303187,10106.486655560964,0.0,121.92,0.0 +1022,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,715400.0,6999.999999999999,21719517.69421951,6999.999999999999,17290987.260063224,true,1022,21750.0,0.0,-2793.152683285308,2366531.043148367,700.0,715400.0,0.8311464892479955,1226176.0235429986,-2873.6935602792555,164.30494929226006,0.0,0.0,133.64903200259408,1140187.6306479785,-53.93930149789451,3.084008093272196,-0.0,-4428530.434156312,true,true,0.447047253,10106.933702813963,0.0,1.2,1022.0,0.447047253,10106.933702813963,0.0,121.92,0.0 +1023,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,716100.0,6999.999999999999,21726517.69421951,6999.999999999999,17297987.260063224,true,1023,21750.0,0.0,-142.16657611206796,2366388.876572255,700.0,716100.0,0.005582772961539599,1226176.0291257715,-164.30494929239373,-1.3366729945119005e-10,0.0,0.0,25.216798500634113,1140212.8474464791,-3.084008093269858,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1023.0,0.0,10106.933702813963,0.0,121.92,0.0 +1024,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,716800.0,6999.999999999999,21733517.69421951,6999.999999999999,17304987.260063224,true,1024,21750.0,0.0,0.0,2366388.876572255,700.0,716800.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1024.0,0.0,10106.933702813963,0.0,121.92,0.0 +1025,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,717500.0,6999.999999999999,21740517.69421951,6999.999999999999,17311987.260063224,true,1025,21750.0,0.0,0.0,2366388.876572255,700.0,717500.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1025.0,0.0,10106.933702813963,0.0,121.92,0.0 +1026,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,718200.0,6999.999999999999,21747517.69421951,6999.999999999999,17318987.260063224,true,1026,21750.0,0.0,0.0,2366388.876572255,700.0,718200.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1026.0,0.0,10106.933702813963,0.0,121.92,0.0 +1027,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,718900.0,6999.999999999999,21754517.69421951,6999.999999999999,17325987.260063224,true,1027,21750.0,0.0,0.0,2366388.876572255,700.0,718900.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1027.0,0.0,10106.933702813963,0.0,121.92,0.0 +1028,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,719600.0,6999.999999999999,21761517.69421951,6999.999999999999,17332987.260063224,true,1028,21750.0,0.0,0.0,2366388.876572255,700.0,719600.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1028.0,0.0,10106.933702813963,0.0,121.92,0.0 +1029,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,720300.0,6999.999999999999,21768517.69421951,6999.999999999999,17339987.260063224,true,1029,21750.0,0.0,0.0,2366388.876572255,700.0,720300.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1029.0,0.0,10106.933702813963,0.0,121.92,0.0 +1030,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,721000.0,6999.999999999999,21775517.69421951,6999.999999999999,17346987.260063224,true,1030,21750.0,0.0,0.0,2366388.876572255,700.0,721000.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1030.0,0.0,10106.933702813963,0.0,121.92,0.0 +1031,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,721700.0,6999.999999999999,21782517.69421951,6999.999999999999,17353987.260063224,true,1031,21750.0,0.0,0.0,2366388.876572255,700.0,721700.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1031.0,0.0,10106.933702813963,0.0,121.92,0.0 +1032,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,722400.0,6999.999999999999,21789517.69421951,6999.999999999999,17360987.260063224,true,1032,21750.0,0.0,0.0,2366388.876572255,700.0,722400.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1032.0,0.0,10106.933702813963,0.0,121.92,0.0 +1033,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,723100.0,6999.999999999999,21796517.69421951,6999.999999999999,17367987.260063224,true,1033,21750.0,0.0,0.0,2366388.876572255,700.0,723100.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1033.0,0.0,10106.933702813963,0.0,121.92,0.0 +1034,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,723800.0,6999.999999999999,21803517.69421951,6999.999999999999,17374987.260063224,true,1034,21750.0,0.0,0.0,2366388.876572255,700.0,723800.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1034.0,0.0,10106.933702813963,0.0,121.92,0.0 +1035,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,724500.0,6999.999999999999,21810517.69421951,6999.999999999999,17381987.260063224,true,1035,21750.0,0.0,0.0,2366388.876572255,700.0,724500.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1035.0,0.0,10106.933702813963,0.0,121.92,0.0 +1036,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,725200.0,6999.999999999999,21817517.69421951,6999.999999999999,17388987.260063224,true,1036,21750.0,0.0,0.0,2366388.876572255,700.0,725200.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1036.0,0.0,10106.933702813963,0.0,121.92,0.0 +1037,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,725900.0,6999.999999999999,21824517.69421951,6999.999999999999,17395987.260063224,true,1037,21750.0,0.0,0.0,2366388.876572255,700.0,725900.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1037.0,0.0,10106.933702813963,0.0,121.92,0.0 +1038,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,726600.0,6999.999999999999,21831517.69421951,6999.999999999999,17402987.260063224,true,1038,21750.0,0.0,0.0,2366388.876572255,700.0,726600.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1038.0,0.0,10106.933702813963,0.0,121.92,0.0 +1039,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,727300.0,6999.999999999999,21838517.69421951,6999.999999999999,17409987.260063224,true,1039,21750.0,0.0,0.0,2366388.876572255,700.0,727300.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1039.0,0.0,10106.933702813963,0.0,121.92,0.0 +1040,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,728000.0,6999.999999999999,21845517.69421951,6999.999999999999,17416987.260063224,true,1040,21750.0,0.0,0.0,2366388.876572255,700.0,728000.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1040.0,0.0,10106.933702813963,0.0,121.92,0.0 +1041,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,728700.0,6999.999999999999,21852517.69421951,6999.999999999999,17423987.260063224,true,1041,21750.0,0.0,0.0,2366388.876572255,700.0,728700.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1041.0,0.0,10106.933702813963,0.0,121.92,0.0 +1042,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,729400.0,6999.999999999999,21859517.69421951,6999.999999999999,17430987.260063224,true,1042,21750.0,0.0,0.0,2366388.876572255,700.0,729400.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1042.0,0.0,10106.933702813963,0.0,121.92,0.0 +1043,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,730100.0,6999.999999999999,21866517.69421951,6999.999999999999,17437987.260063224,true,1043,21750.0,0.0,0.0,2366388.876572255,700.0,730100.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1043.0,0.0,10106.933702813963,0.0,121.92,0.0 +1044,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,730800.0,6999.999999999999,21873517.69421951,6999.999999999999,17444987.260063224,true,1044,21750.0,0.0,0.0,2366388.876572255,700.0,730800.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1044.0,0.0,10106.933702813963,0.0,121.92,0.0 +1045,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,731500.0,6999.999999999999,21880517.69421951,6999.999999999999,17451987.260063224,true,1045,21750.0,0.0,0.0,2366388.876572255,700.0,731500.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1045.0,0.0,10106.933702813963,0.0,121.92,0.0 +1046,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,732200.0,6999.999999999999,21887517.69421951,6999.999999999999,17458987.260063224,true,1046,21750.0,0.0,0.0,2366388.876572255,700.0,732200.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1046.0,0.0,10106.933702813963,0.0,121.92,0.0 +1047,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,732900.0,6999.999999999999,21894517.69421951,6999.999999999999,17465987.260063224,true,1047,21750.0,0.0,0.0,2366388.876572255,700.0,732900.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1047.0,0.0,10106.933702813963,0.0,121.92,0.0 +1048,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,733600.0,6999.999999999999,21901517.69421951,6999.999999999999,17472987.260063224,true,1048,21750.0,0.0,0.0,2366388.876572255,700.0,733600.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1048.0,0.0,10106.933702813963,0.0,121.92,0.0 +1049,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,734300.0,6999.999999999999,21908517.69421951,6999.999999999999,17479987.260063224,true,1049,21750.0,0.0,0.0,2366388.876572255,700.0,734300.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1049.0,0.0,10106.933702813963,0.0,121.92,0.0 +1050,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,735000.0,6999.999999999999,21915517.69421951,6999.999999999999,17486987.260063224,true,1050,21750.0,0.0,0.0,2366388.876572255,700.0,735000.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1050.0,0.0,10106.933702813963,0.0,121.92,0.0 +1051,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,735700.0,6999.999999999999,21922517.69421951,6999.999999999999,17493987.260063224,true,1051,21750.0,0.0,0.0,2366388.876572255,700.0,735700.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1051.0,0.0,10106.933702813963,0.0,121.92,0.0 +1052,22450.0,21750.0,0.12,0.0,4428530.434156312,700.0,736400.0,6999.999999999999,21929517.69421951,6999.999999999999,17500987.260063224,true,1052,21750.0,0.0,0.0,2366388.876572255,700.0,736400.0,0.0,1226176.0291257715,0.0,-1.3366729945119005e-10,0.0,0.0,0.0,1140212.8474464791,0.0,2.3381296898605797e-12,-0.0,-4428530.434156312,true,true,0.0,10106.933702813963,0.0,1.2,1052.0,0.0,10106.933702813963,0.0,121.92,0.0 +1053,22450.0,21750.0,0.12,271.3099032947347,4428801.744059606,700.0,737100.0,8094.249194122789,21937611.943413634,7822.939290828054,17508810.199354053,true,1053,21750.0,0.0,271.3099032947347,2366660.18647555,700.0,737100.0,0.009647031645171262,1226176.038772803,236.59912645179844,236.59912645166477,0.0,0.0,30.260158166916465,1140243.1076046461,4.440971644374586,4.4409716443769245,-271.3099032947347,-4428801.744059606,true,true,0.536456703,10107.470159516963,0.0,1.2,1053.0,0.536456703,10107.470159516963,0.0,121.92,0.0 +1054,22721.309903294736,22021.309903294736,0.16,2569.0955547838657,4431370.83961439,700.0,737800.0,20431.84721739916,21958043.790631033,17862.751662615294,17526672.95101667,true,1054,22021.309903294736,0.0,2569.0955547838657,2369229.2820303338,700.0,737800.0,0.784982539968339,1226176.823755343,2392.2800622265013,2628.879188678166,0.0,0.0,131.1273521694529,1140374.2349568156,44.90315784794314,49.344129492320064,-2569.0955547838657,-4431370.83961439,true,true,1.788189012,10109.258348528963,0.0,1.2,1054.0,1.788189012,10109.258348528963,0.0,121.92,0.0 +1055,25019.095554783868,24319.095554783868,0.22,6534.939405351333,4437905.779019741,700.0,738500.0,32886.08820614243,21990929.878837176,26351.148800791096,17553024.09981746,true,1055,24319.095554783868,0.0,6534.939405351333,2375764.221435685,700.0,738500.0,8.055366353581167,1226184.8791216966,6126.931554283969,8755.810742962134,0.0,0.0,284.9498230063988,1140659.184779822,115.00266170738516,164.34679119970522,-6534.939405351333,-4437905.779019741,true,true,3.263444946,10112.521793474963,0.0,1.2,1055.0,3.263444946,10112.521793474963,0.0,121.92,0.0 +1056,28984.93940535133,28284.93940535133,0.28,10371.065499880333,4448276.844519622,700.0,739200.0,39539.519642429754,22030469.398479607,29168.45414254942,17582192.553960007,true,1056,28284.93940535133,0.0,10371.065499880333,2386135.2869355655,700.0,739200.0,32.01909547405686,1226216.8982171707,9705.49335329772,18461.304096259853,0.0,0.0,451.38069306545793,1141110.5654728874,182.17235804309774,346.519149242803,-10371.065499880333,-4448276.844519622,true,true,4.738700881,10117.260494355964,0.0,1.2,1056.0,4.738700881,10117.260494355964,0.0,121.92,0.0 +1057,32821.06549988034,32121.065499880337,0.33,14233.30971337293,4462510.154232995,700.0,739900.0,45252.453676887664,22075721.852156494,31019.143963514733,17613211.697923522,true,1057,32121.065499880337,0.0,14233.30971337293,2400368.5966489385,700.0,739900.0,82.10095696280165,1226298.9991741336,13284.05513915377,31745.359235413624,0.0,0.0,617.8115631245171,1141728.3770360118,249.34205413183997,595.861203374643,-14233.30971337293,-4462510.154232995,true,true,6.213956815,10123.474451170963,0.0,1.2,1057.0,6.213956815,10123.474451170963,0.0,121.92,0.0 +1058,36683.30971337293,35983.30971337293,0.33,16978.099355784016,4479488.253588779,700.0,740600.0,53569.99804783035,22129291.850204322,36591.898692046336,17649803.596615568,true,1058,35983.30971337293,0.0,16978.099355784016,2417346.6960047227,700.0,740600.0,164.71206211614182,1226463.71123625,15738.771085095746,47484.13032050937,0.0,0.0,779.1990734608866,1142507.5761094727,295.4171351112423,891.2783384858853,-16978.099355784016,-4479488.253588779,true,true,7.599803299,10131.074254469962,0.0,1.2,1058.0,7.599803299,10131.074254469962,0.0,121.92,0.0 +1059,39428.09935578401,38728.09935578401,0.28,10058.425313556509,4489546.678902335,700.0,741300.0,38422.9475484161,22167714.797752738,28364.522234859593,17678168.11885043,true,1059,38728.09935578401,0.0,10058.425313556509,2427405.1213182793,700.0,741300.0,249.7669815144495,1226713.4782177643,8749.238554414122,56233.36887492349,0.0,0.0,895.1963465750848,1143402.7724560478,164.2234310528525,1055.5017695387378,-10058.425313556509,-4489546.678902335,true,true,8.270374179,10139.344628648962,0.0,1.2,1059.0,8.270374179,10139.344628648962,0.0,121.92,0.0 +1060,32508.42531355651,31808.42531355651,0.28,10956.14903278745,4500502.827935123,700.0,742000.0,41629.10368852661,22209343.901441265,30672.95465573916,17708841.07350617,true,1060,31808.42531355651,0.0,10956.14903278745,2438361.2703510667,700.0,742000.0,318.5900108619595,1227032.0682286262,9488.610812631186,65721.97968755467,0.0,0.0,970.8467420769872,1144373.6191981249,178.10146721731846,1233.6032367560563,-10956.14903278745,-4500502.827935123,true,true,8.940945058,10148.285573706962,0.0,1.2,1060.0,8.940945058,10148.285573706962,0.0,121.92,0.0 +1061,33406.14903278745,32706.14903278745,0.33,14056.143090047204,4514558.97102517,700.0,742700.0,44715.585121355165,22254059.48656262,30659.44203130796,17739500.515537478,true,1061,32706.14903278745,0.0,14056.143090047204,2452417.413441114,700.0,742700.0,407.7357684975746,1227439.8039971238,12362.304375703674,78084.28406325835,0.0,0.0,1054.0621770783132,1145427.6813752032,232.04076876764228,1465.6440055236985,-14056.143090047204,-4514558.97102517,true,true,9.745630113,10158.031203819963,0.0,1.2,1061.0,9.745630113,10158.031203819963,0.0,121.92,0.0 +1062,36506.143090047204,35806.143090047204,0.28,10630.520197385755,4525189.491222556,700.0,743400.0,40466.14356209198,22294525.630124714,29835.623364706225,17769336.138902184,true,1062,35806.143090047204,0.0,10630.520197385755,2463047.9336385,700.0,743400.0,501.9772191785647,1227941.7812163024,8833.034129324356,86917.31819258271,0.0,0.0,1129.7125727494379,1146557.3939479527,165.79627613339517,1631.4402816570937,-10630.520197385755,-4525189.491222556,true,true,10.28208682,10168.313290639962,0.0,1.2,1062.0,10.28208682,10168.313290639962,0.0,121.92,0.0 +1063,33080.520197385755,32380.520197385755,0.28,9632.09071053337,4534821.5819330895,700.0,744100.0,36900.323966190605,22331425.954090904,27268.233255657236,17796604.372157842,true,1063,32380.520197385755,0.0,9632.09071053337,2472680.0243490334,700.0,744100.0,579.6202371031673,1228521.4014534056,7722.332564552728,94639.65075713543,0.0,0.0,1185.1895294733959,1147742.583477426,144.9483794040796,1776.3886610611733,-9632.09071053337,-4534821.5819330895,true,true,10.72913407,10179.042424709962,0.0,1.2,1063.0,10.72913407,10179.042424709962,0.0,121.92,0.0 +1064,32082.090710533368,31382.090710533368,0.28,8414.242511931223,4543235.82444502,700.0,744800.0,32550.86611404008,22363976.820204943,24136.623602108855,17820740.99575995,true,1064,31382.090710533368,0.0,8414.242511931223,2481094.2668609647,700.0,744800.0,648.7978948956069,1229170.1993483012,6414.465175447712,101054.11593258314,0.0,0.0,1230.579766469937,1148973.163243896,120.39967511796819,1896.7883361791414,-8414.242511931223,-4543235.82444502,true,true,11.08677187,10190.129196579961,0.0,1.2,1064.0,11.08677187,10190.129196579961,0.0,121.92,0.0 +1065,30864.242511931225,30164.242511931225,0.28,8734.778638803682,4551970.603083824,700.0,745500.0,33695.63799572743,22397672.45820067,24960.85935692375,17845701.855116874,true,1065,30164.242511931225,0.0,8734.778638803682,2489829.0454997686,700.0,745500.0,714.7292818597632,1229884.9286301609,6624.7755077193515,107678.8914403025,0.0,0.0,1270.9266438001957,1150244.0898876963,124.34720542437229,2021.1355416035137,-8734.778638803682,-4551970.603083824,true,true,11.44440967,10201.573606249962,0.0,1.2,1065.0,11.44440967,10201.573606249962,0.0,121.92,0.0 +1066,31184.778638803684,30484.778638803684,0.28,9952.183453681635,4561922.786537506,700.0,746200.0,38043.512334577266,22435715.97053525,28091.32888089563,17873793.18399777,true,1066,30484.778638803684,0.0,9952.183453681635,2499781.22895345,700.0,746200.0,789.5199995620172,1230674.448629723,7704.259112624059,115383.15055292656,0.0,0.0,1313.795201245633,1151557.885088942,144.60914024992542,2165.744681853439,-9952.183453681635,-4561922.786537506,true,true,11.8467522,10213.420358449961,0.0,1.2,1066.0,11.8467522,10213.420358449961,0.0,121.92,0.0 +1067,32402.183453681635,31702.183453681635,0.22,4865.945207892097,4566788.731745398,700.0,746900.0,25299.750944964075,22461015.721480213,20433.805737071976,17894226.98973484,true,1067,31702.183453681635,0.0,4865.945207892097,2504647.174161342,700.0,746900.0,845.340338213632,1231519.7889679365,2627.2362189622645,118010.38677188882,0.0,0.0,1344.0553598074016,1152901.9404487493,49.31329090879901,2215.057972762238,-4865.945207892097,-4566788.731745398,true,true,11.98086638,10225.40122482996,0.0,1.2,1067.0,11.98086638,10225.40122482996,0.0,121.92,0.0 +1068,27315.945207892095,26615.945207892095,0.28,7699.128937589958,4574487.860682988,700.0,747600.0,29996.889062821276,22491012.610543035,22297.760125231318,17916524.74986007,true,1068,26615.945207892095,0.0,7699.128937589958,2512346.303098932,700.0,747600.0,888.8896019342081,1232408.6785698708,5343.1969145586945,123353.58368644751,0.0,0.0,1366.7504785877095,1154268.6909273372,100.291942509345,2315.349915271583,-7699.128937589958,-4574487.860682988,true,true,12.24909473,10237.65031955996,0.0,1.2,1068.0,12.24909473,10237.65031955996,0.0,121.92,0.0 +1069,30149.128937589958,29449.128937589958,0.22,6966.909706724988,4581454.770389712,700.0,748300.0,34849.58957602267,22525862.200119056,27882.67986929768,17944407.42972937,true,1069,29449.128937589958,0.0,6966.909706724988,2519313.2128056567,700.0,748300.0,944.1160056741792,1233352.794575545,4543.0319189054735,127896.61560535298,0.0,0.0,1394.4889570342998,1155663.1798843713,85.27282511103483,2400.622740382618,-6966.909706724988,-4581454.770389712,true,true,12.47261836,10250.12293791996,0.0,1.2,1069.0,12.47261836,10250.12293791996,0.0,121.92,0.0 +1070,29416.90970672499,28716.90970672499,0.22,6171.054175882591,4587625.824565595,700.0,749000.0,31232.06443582996,22557094.264554884,25061.01025994737,17969468.439989317,true,1070,28716.90970672499,0.0,6171.054175882591,2525484.2669815393,700.0,749000.0,990.9663630803167,1234343.7609386253,3693.575235512339,131590.1908408653,0.0,0.0,1417.1840758146077,1157080.363960186,69.32850147532703,2469.9512418579448,-6171.054175882591,-4587625.824565595,true,true,12.65143726,10262.774375179959,0.0,1.2,1070.0,12.65143726,10262.774375179959,0.0,121.92,0.0 +1071,28621.054175882593,27921.054175882593,0.12,0.0,4587625.824565595,700.0,749700.0,6999.999999999999,22564094.264554884,6999.999999999999,17976468.439989317,true,1071,27921.054175882593,0.0,-411.2281842509525,2525073.038797288,700.0,749700.0,996.2656366193099,1235340.0265752447,-2775.1106779563092,128815.080162909,0.0,0.0,1419.7057553657114,1158500.0697155518,-52.088898279664605,2417.86234357828,-0.0,-4587625.824565595,true,true,12.51732308,10275.291698259958,0.0,1.2,1071.0,12.51732308,10275.291698259958,0.0,121.92,0.0 +1072,22450.0,21750.0,0.12,0.0,4587625.824565595,700.0,750400.0,6999.999999999999,22571094.264554884,6999.999999999999,17983468.439989317,true,1072,21750.0,0.0,-2291.114652202853,2522781.9241450853,700.0,750400.0,954.3966696933267,1236294.423244938,-4559.462412144059,124255.61775076494,0.0,0.0,1399.5323161365075,1159899.6020316882,-85.58122588862797,2332.281117689652,-0.0,-4587625.824565595,true,true,12.29379945,10287.585497709959,0.0,1.2,1072.0,12.29379945,10287.585497709959,0.0,121.92,0.0 +1073,22450.0,21750.0,0.12,0.0,4587625.824565595,700.0,751100.0,6999.999999999999,22578094.264554884,6999.999999999999,17990468.439989317,true,1073,21750.0,0.0,-2283.301826964881,2520498.62231812,700.0,751100.0,903.7316097553422,1237198.1548546935,-4477.30973645687,119778.30801430807,0.0,0.0,1374.3155178050959,1161273.9175494933,-84.03921806844889,2248.241899621203,-0.0,-4587625.824565595,true,true,12.07027583,10299.655773539958,0.0,1.2,1073.0,12.07027583,10299.655773539958,0.0,121.92,0.0 +1074,22450.0,21750.0,0.16,2240.792880318807,4589866.617445914,700.0,751800.0,18379.955501992543,22596474.220056877,16139.162621673735,18006607.60261099,true,1074,21750.0,0.0,2240.792880318807,2522739.415198439,700.0,751800.0,879.0857613973797,1238077.2406160908,0.0,119778.30801430807,0.0,0.0,1361.7071189214273,1162635.6246684147,0.0,2248.241899621203,-2240.792880318807,-4589866.617445914,true,true,12.07027583,10311.726049369958,0.0,1.2,1074.0,12.07027583,10311.726049369958,0.0,121.92,0.0 +1075,24690.792880318808,23990.792880318808,0.12,0.0,4589866.617445914,700.0,752500.0,6999.999999999999,22603474.220056877,6999.999999999999,18013607.60261099,true,1075,23990.792880318808,0.0,-4055.8863586298094,2518683.528839809,700.0,752500.0,845.340338213632,1238922.5809543044,-6130.217713648287,113648.09030065978,0.0,0.0,1344.0553598074016,1163979.680028222,-115.06434300255579,2133.1775566186475,-0.0,-4589866.617445914,true,true,11.75734275,10323.483392119957,0.0,1.2,1075.0,11.75734275,10323.483392119957,0.0,121.92,0.0 +1076,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,753200.0,6999.999999999999,22610474.220056877,6999.999999999999,18020607.60261099,true,1076,21750.0,0.0,-13293.150733002685,2505390.3781068064,700.0,753200.0,731.882062313715,1239654.463016618,-15024.04446088687,98624.04583977291,0.0,0.0,1281.013363696835,1165260.693391919,-282.0016981263647,1851.1758584922827,-0.0,-4589866.617445914,true,true,10.9526577,10334.436049819957,0.0,1.2,1076.0,10.9526577,10334.436049819957,0.0,121.92,0.0 +1077,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,753900.0,6999.999999999999,22617474.220056877,6999.999999999999,18027607.60261099,true,1077,21750.0,0.0,-13969.752297320238,2491420.625809486,700.0,753900.0,579.6202371031669,1240234.0832537212,-15444.66530184629,83179.38053792663,0.0,0.0,1185.1895294733956,1166445.8829213923,-289.8967620505099,1561.2790964417727,-0.0,-4589866.617445914,true,true,10.05856319,10344.494613009956,0.0,1.2,1077.0,10.05856319,10344.494613009956,0.0,121.92,0.0 +1078,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,754600.0,6999.999999999999,22624474.220056877,6999.999999999999,18034607.60261099,true,1078,21750.0,0.0,-5780.012057758026,2485640.613751728,700.0,754600.0,475.5629315931348,1240709.6461853143,-7229.417767027643,75949.96277089899,0.0,0.0,1109.5391337458639,1167555.4220551383,-135.69635606938056,1425.5827403723922,-0.0,-4589866.617445914,true,true,9.611515937,10354.106128946956,0.0,1.2,1078.0,9.611515937,10354.106128946956,0.0,121.92,0.0 +1079,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,755300.0,6999.999999999999,22631474.220056877,6999.999999999999,18041607.60261099,true,1079,21750.0,0.0,-4864.162440008112,2480776.45131172,700.0,755300.0,416.5779262169679,1241126.2241115312,-6225.514516435229,69724.44825446376,0.0,0.0,1061.6272166341441,1168617.0492717724,-116.85306642399509,1308.729673948397,-0.0,-4589866.617445914,true,true,9.20917341,10363.315302356956,0.0,1.2,1079.0,9.20917341,10363.315302356956,0.0,121.92,0.0 +1080,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,756000.0,6999.999999999999,22638474.220056877,6999.999999999999,18048607.60261099,true,1080,21750.0,0.0,-15504.708356409872,2465271.7429553103,700.0,756000.0,321.0789840964187,1241447.3030956276,-16489.644710190758,53234.803544273,0.0,0.0,973.3684219101285,1169590.4176936825,-309.5110522256618,999.2186217227352,-0.0,-4589866.617445914,true,true,8.046850552,10371.362152908956,0.0,1.2,1080.0,8.046850552,10371.362152908956,0.0,121.92,0.0 +1081,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,756700.0,6999.999999999999,22645474.220056877,6999.999999999999,18055607.60261099,true,1081,21750.0,0.0,-15538.72431463656,2449733.0186406737,700.0,756700.0,200.62811175565412,1241647.9312073833,-16266.189975536578,36968.61356873643,0.0,0.0,832.154350295296,1170422.5720439777,-305.31680115093235,693.9018205718028,-0.0,-4589866.617445914,true,true,6.705708793,10378.067861701957,0.0,1.2,1081.0,6.705708793,10378.067861701957,0.0,121.92,0.0 +1082,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,757400.0,6999.999999999999,22652474.220056877,6999.999999999999,18062607.60261099,true,1082,21750.0,0.0,-11536.232009206691,2438196.786631467,700.0,757400.0,113.5894266108365,1241761.5206339941,-12110.917798427517,24857.695770308914,0.0,0.0,688.4185989037297,1171110.9906428815,-227.32223629373965,466.5795842780631,-0.0,-4589866.617445914,true,true,5.498681211,10383.566542912957,0.0,1.2,1082.0,5.498681211,10383.566542912957,0.0,121.92,0.0 +1083,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,758100.0,6999.999999999999,22659474.220056877,6999.999999999999,18069607.60261099,true,1083,21750.0,0.0,-4038.677307150005,2434158.109324317,700.0,758100.0,71.53153396487185,1241833.052167959,-4613.682978600243,20244.012791708672,0.0,0.0,590.0730847907419,1171701.0637276722,-86.59894730537631,379.9806369726868,-0.0,-4589866.617445914,true,true,4.962224507,10388.528767419957,0.0,1.2,1083.0,4.962224507,10388.528767419957,0.0,121.92,0.0 +1084,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,758800.0,6999.999999999999,22666474.220056877,6999.999999999999,18076607.60261099,true,1084,21750.0,0.0,-1211.9191343415032,2432946.1901899753,700.0,758800.0,57.04652149190129,1241890.0986894509,-1782.7086954488248,18461.304096259846,0.0,0.0,547.2045273453047,1172248.2682550175,-33.4614877298845,346.5191492428023,-0.0,-4589866.617445914,true,true,4.738700881,10393.267468300957,0.0,1.2,1084.0,4.738700881,10393.267468300957,0.0,121.92,0.0 +1085,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,759500.0,6999.999999999999,22673474.220056877,6999.999999999999,18083607.60261099,true,1085,21750.0,0.0,-1500.6578914426054,2431445.532298533,700.0,759500.0,48.803573970937215,1241938.9022634218,-2030.8091743712848,16430.49492188856,0.0,0.0,519.4660490115293,1172767.734304029,-38.11834005378715,308.40080918901515,-0.0,-4589866.617445914,true,true,4.470472529,10397.737940829957,0.0,1.2,1085.0,4.470472529,10397.737940829957,0.0,121.92,0.0 +1086,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,760200.0,6999.999999999999,22680474.220056877,6999.999999999999,18090607.60261099,true,1086,21750.0,0.0,-1098.9192034439725,2430346.613095089,700.0,760200.0,41.395563627581424,1241980.2978270494,-1601.9732587248811,14828.521663163678,0.0,0.0,491.72757062134656,1173259.4618746503,-30.069078968019408,278.3317302209957,-0.0,-4589866.617445914,true,true,4.246948902,10401.984889731957,0.0,1.2,1086.0,4.246948902,10401.984889731957,0.0,121.92,0.0 +1087,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,760900.0,6999.999999999999,22687474.220056877,6999.999999999999,18097607.60261099,true,1087,21750.0,0.0,-740.4170491313184,2429606.1960459575,700.0,760900.0,35.924340051909624,1242016.2221671012,-1222.4288209565434,13606.092842207134,0.0,0.0,469.03245195385364,1173728.494326604,-22.945020180538386,255.38671004045733,-0.0,-4589866.617445914,true,true,4.068130001,10406.053019732957,0.0,1.2,1087.0,4.068130001,10406.053019732957,0.0,121.92,0.0 +1088,22450.0,21750.0,0.12,0.0,4589866.617445914,700.0,761600.0,6999.999999999999,22694474.220056877,6999.999999999999,18104607.60261099,true,1088,21750.0,0.0,-711.4649067706816,2428894.731139187,700.0,761600.0,31.485454946900422,1242047.7076220482,-1169.8512373005917,12436.241604906541,0.0,0.0,448.85901317590935,1174177.35333978,-21.95813759289969,233.42857244755766,-0.0,-4589866.617445914,true,true,3.8893111,10409.942330832957,0.0,1.2,1088.0,3.8893111,10409.942330832957,0.0,121.92,0.0 +1089,22450.0,21750.0,0.12,175.573738139845,4590042.191184054,700.0,762300.0,7296.447817832041,22701770.66787471,7120.874079692197,18111728.476690684,true,1089,21750.0,0.0,175.573738139845,2429070.304877327,700.0,762300.0,28.906018448799813,1242076.613640497,-284.2475602985086,12151.994044608033,0.0,0.0,436.250613953796,1174613.6039537336,-5.335333964242216,228.09323848331545,-175.573738139845,-4590042.191184054,true,true,3.844606375,10413.786937207957,0.0,1.2,1089.0,3.844606375,10413.786937207957,0.0,121.92,0.0 +1090,22625.573738139847,21925.573738139847,0.12,1050.6960433382083,4591092.887227393,700.0,763000.0,14589.13369448507,22716359.801569194,13538.437651146862,18125266.91434183,true,1090,21925.573738139847,0.0,1050.6960433382083,2430121.000920665,700.0,763000.0,29.410181922987757,1242106.02382242,571.7812195387614,12723.775264146794,0.0,0.0,438.77229378693715,1175052.3762475206,10.732348089522032,238.82558657283747,-1050.6960433382083,-4591092.887227393,true,true,3.934015825,10417.720953032956,0.0,1.2,1090.0,3.934015825,10417.720953032956,0.0,121.92,0.0 +1091,23500.69604333821,22800.69604333821,0.12,1076.2491589020055,4592169.136386295,700.0,763700.0,14802.07632418338,22731161.877893377,13725.827165281375,18138992.74150711,true,1091,22800.69604333821,0.0,1076.2491589020055,2431197.250079567,700.0,763700.0,31.485454946900422,1242137.509277367,584.9256219213482,13308.700886068142,0.0,0.0,448.85901317590935,1175501.2352606964,10.979068857847556,249.80465543068502,-1076.2491589020055,-4592169.136386295,true,true,4.023425276,10421.744378308957,0.0,1.2,1091.0,4.023425276,10421.744378308957,0.0,121.92,0.0 +1092,23526.249158902006,22826.249158902006,0.12,0.0,4592169.136386295,700.0,764400.0,6999.999999999999,22738161.877893377,6999.999999999999,18145992.74150711,true,1092,22826.249158902006,0.0,-411.5402539687712,2430785.709825598,700.0,764400.0,30.95777683318901,1242168.4670542001,-872.459281161601,12436.241604906541,0.0,0.0,446.33733334276815,1175947.5725940391,-16.37608298312737,233.42857244755766,-0.0,-4592169.136386295,true,true,3.8893111,10425.633689408956,0.0,1.2,1092.0,3.8893111,10425.633689408956,0.0,121.92,0.0 +1093,22450.0,21750.0,0.12,175.573738139845,4592344.710124435,700.0,765100.0,7296.447817832041,22745458.32571121,7120.874079692197,18153113.615586802,true,1093,21750.0,0.0,175.573738139845,2430961.283563738,700.0,765100.0,28.906018448799813,1242197.373072649,-284.2475602985086,12151.994044608033,0.0,0.0,436.250613953796,1176383.8232079928,-5.335333964242216,228.09323848331545,-175.573738139845,-4592344.710124435,true,true,3.844606375,10429.478295783956,0.0,1.2,1093.0,3.844606375,10429.478295783956,0.0,121.92,0.0 +1094,22625.573738139847,21925.573738139847,0.12,0.0,4592344.710124435,700.0,765800.0,6999.999999999999,22752458.32571121,6999.999999999999,18160113.615586802,true,1094,21925.573738139847,0.0,-1223.0579053826489,2429738.2256583557,700.0,765800.0,25.537256008296144,1242222.9103286571,-1636.4772957755172,10515.516748832515,0.0,0.0,418.59885500899287,1176802.422063002,-30.716720624420702,197.37651785889474,-0.0,-4592344.710124435,true,true,3.576378023,10433.054673806957,0.0,1.2,1094.0,3.576378023,10433.054673806957,0.0,121.92,0.0 +1095,22450.0,21750.0,0.12,0.0,4592344.710124435,700.0,766500.0,6999.999999999999,22759458.32571121,6999.999999999999,18167113.615586802,true,1095,21750.0,0.0,-2113.7405239110553,2427624.4851344447,700.0,766500.0,18.84185872833721,1242241.7521873855,-2464.5742386508387,8050.942510181676,0.0,0.0,378.2519773966968,1177180.6740403986,-46.260121385250685,151.11639647364404,-0.0,-4592344.710124435,true,true,3.12933077,10436.184004576957,0.0,1.2,1095.0,3.12933077,10436.184004576957,0.0,121.92,0.0 +1096,22450.0,21750.0,0.12,0.0,4592344.710124435,700.0,767200.0,6999.999999999999,22766458.32571121,6999.999999999999,18174113.615586802,true,1096,21750.0,0.0,-3705.0863621966528,2423919.398772248,700.0,767200.0,9.647031666750706,1242251.3992190522,-3943.3187815473157,4107.62372863436,0.0,0.0,302.6015818947945,1177483.2756222934,-74.01619421088212,77.10020226276193,-0.0,-4592344.710124435,true,true,2.235236264,10438.419240840956,0.0,1.2,1096.0,2.235236264,10438.419240840956,0.0,121.92,0.0 +1097,22450.0,21750.0,0.12,0.0,4592344.710124435,700.0,767900.0,6999.999999999999,22773458.32571121,6999.999999999999,18181113.615586802,true,1097,21750.0,0.0,-995.6409400789164,2422923.757832169,700.0,767900.0,4.34723830680178,1242255.746457359,-1209.284424969051,2898.339303665309,0.0,0.0,231.99454611558193,1177715.270168409,-22.69829953224901,54.401902730512916,-0.0,-4592344.710124435,true,true,1.877598462,10440.296839302957,0.0,1.2,1097.0,1.877598462,10440.296839302957,0.0,121.92,0.0 +1098,22450.0,21750.0,0.12,0.0,4592344.710124435,700.0,768600.0,6999.999999999999,22780458.32571121,6999.999999999999,18188113.615586802,true,1098,21750.0,0.0,-1647.9622218305722,2421275.7956103384,700.0,768600.0,1.7554024671498791,1242257.5018598263,-1787.6378460666385,1110.7014575986707,0.0,0.0,171.474229781749,1177886.7443981906,-33.554008012832455,20.84789471768046,-0.0,-4592344.710124435,true,true,1.162322858,10441.459162160956,0.0,1.2,1098.0,1.162322858,10441.459162160956,0.0,121.92,0.0 +1099,22450.0,21750.0,0.12,0.0,4592344.710124435,700.0,769300.0,6999.999999999999,22787458.32571121,6999.999999999999,18195113.615586802,true,1099,21750.0,0.0,-873.1194504618769,2420402.6761598764,700.0,769300.0,0.26046985539069906,1242257.7623296815,-946.396508306423,164.30494929224767,0.0,0.0,90.78047461356431,1177977.5248728043,-17.763886624408947,3.084008093271514,-0.0,-4592344.710124435,true,true,0.447047253,10441.906209413955,0.0,1.2,1099.0,0.447047253,10441.906209413955,0.0,121.92,0.0 +1100,22450.0,21750.0,0.12,0.0,4592344.710124435,700.0,770000.0,6999.999999999999,22794458.32571121,6999.999999999999,18202113.615586802,true,1100,21750.0,0.0,-142.16657611206796,2420260.5095837642,700.0,770000.0,0.005582772961539599,1242257.7679124544,-164.30494929239373,-1.460591647628462e-10,0.0,0.0,25.216798500634113,1178002.741671305,-3.084008093269858,1.6560086635308835e-12,-0.0,-4592344.710124435,true,true,0.0,10441.906209413955,0.0,1.2,1100.0,0.0,10441.906209413955,0.0,121.92,0.0 +1101,22450.0,21750.0,0.12,4.195574967304718,4592348.905699402,700.0,770700.0,6999.999999999999,22801458.32571121,6995.804425032695,18209109.420011833,true,1101,21750.0,0.0,4.195574967304718,2420264.7051587314,700.0,770700.0,5.582772849146656e-6,1242257.7679180373,1.643049470871913,1.6430494707258538,0.0,0.0,2.5216798331411745,1178005.263351138,0.030840080518781524,0.030840080520437532,-4.195574967304718,-4592348.905699402,true,true,0.044704725,10441.950914138955,0.0,1.2,1101.0,0.044704725,10441.950914138955,0.0,121.92,0.0 +1102,22454.195574967303,21754.195574967303,0.12,76.23980903323908,4592425.145508436,700.0,771400.0,6999.999999999999,22808458.32571121,6923.76019096676,18216033.1802028,true,1102,21754.195574967303,0.0,76.23980903323908,2420340.944967765,700.0,771400.0,0.0019148911239723313,1242257.7698329284,57.50673236259794,59.14978183332379,0.0,0.0,17.651758944803134,1178022.9151100828,1.0794028347140356,1.1102429152344733,-76.23980903323908,-4592425.145508436,true,true,0.268228352,10442.219142490956,0.0,1.2,1102.0,0.268228352,10442.219142490956,0.0,121.92,0.0 +1103,22526.23980903324,21826.23980903324,0.12,423.7921084887579,4592848.937616925,700.0,772100.0,9364.934237406316,22817823.259948615,8941.142128917558,18224974.32233172,true,1103,21826.23980903324,0.0,423.7921084887579,2420764.7370762536,700.0,772100.0,0.05944536656700456,1242257.829278295,361.47088859027974,420.62067042360354,0.0,0.0,55.47695672395803,1178078.3920668068,6.784817807953136,7.895060723187609,-423.7921084887579,-4592848.937616925,true,true,0.715275605,10442.934418095956,0.0,1.2,1103.0,0.715275605,10442.934418095956,0.0,121.92,0.0 +1104,22873.792108488757,22173.792108488757,0.16,1872.7574891239556,4594721.695106049,700.0,772800.0,16079.734307024723,22833902.99425564,14206.976817900766,18239181.29914962,true,1104,22173.792108488757,0.0,1872.7574891239556,2422637.4945653775,700.0,772800.0,0.784982539968339,1242258.6142608349,1708.771470288679,2129.3921407122825,0.0,0.0,131.1273521694529,1178209.5194189763,32.073684125855365,39.96874484904298,-1872.7574891239556,-4594721.695106049,true,true,1.60937011,10444.543788205956,0.0,1.2,1104.0,1.60937011,10444.543788205956,0.0,121.92,0.0 +1105,24322.757489123956,23622.757489123956,0.22,6071.266513668411,4600792.961619717,700.0,773500.0,30778.484153038233,22864681.47840868,24707.21763936982,18263888.51678899,true,1105,23622.757489123956,0.0,6071.266513668411,2428708.761079046,700.0,773500.0,6.462757543406617,1242265.0770183783,5693.1664915480615,7822.558632260344,0.0,0.0,264.776384172047,1178474.2958031483,106.86088040489594,146.8296252539389,-6071.266513668411,-4600792.961619717,true,true,3.084626045,10447.628414250956,0.0,1.2,1105.0,3.084626045,10447.628414250956,0.0,121.92,0.0 +1106,28521.26651366841,27821.26651366841,0.28,9222.618346885638,4610015.579966603,700.0,774200.0,35437.92266744871,22900119.401076127,26215.304320563067,18290103.821109552,true,1106,27821.26651366841,0.0,9222.618346885638,2437931.3794259317,700.0,774200.0,26.946978757525688,1242292.023997136,8607.936289628213,16430.494921888556,0.0,0.0,426.16389456482386,1178900.4596977131,161.57118393507622,308.40080918901515,-9222.618346885638,-4610015.579966603,true,true,4.470472529,10452.098886779955,0.0,1.2,1106.0,4.470472529,10452.098886779955,0.0,121.92,0.0 +1107,31672.61834688564,30972.61834688564,0.28,11327.22302947834,4621342.802996081,700.0,774900.0,42954.36796242264,22943073.76903855,31627.144932944302,18321730.966042496,true,1107,30972.61834688564,0.0,11327.22302947834,2449258.60245541,700.0,774900.0,66.16899022950872,1242358.1929873654,10489.227957004678,26919.722878893233,0.0,0.0,574.9430056790799,1179475.4027033923,196.8830765650735,505.28388575408866,-11327.22302947834,-4621342.802996081,true,true,5.722204837,10457.821091616956,0.0,1.2,1107.0,5.722204837,10457.821091616956,0.0,121.92,0.0 +1108,33777.22302947834,33077.22302947834,0.22,6166.5009309063535,4627509.303926988,700.0,775600.0,31211.36786775615,22974285.136906307,25044.866936849798,18346775.832979348,true,1108,33077.22302947834,0.0,6166.5009309063535,2455425.1033863164,700.0,775600.0,107.46185876623812,1242465.6548461316,5284.047172124855,32203.770051018088,0.0,0.0,675.8101996816164,1180151.212903074,99.18170033364402,604.4655860877326,-6166.5009309063535,-4627509.303926988,true,true,6.258661541,10464.079753157956,0.0,1.2,1108.0,6.258661541,10464.079753157956,0.0,121.92,0.0 +1109,28616.500930906353,27916.500930906353,0.16,3233.2077031262743,4630742.511630114,700.0,776300.0,24582.548144539214,22998867.685050845,21349.34044141294,18368125.17342076,true,1109,27916.500930906353,0.0,3233.2077031262743,2458658.3110894426,700.0,776300.0,129.2363090572244,1242594.891155189,2341.3455217198293,34545.115572737915,0.0,0.0,718.6787571270536,1180869.8916602011,43.9471152221668,648.4127013098994,-3233.2077031262743,-4630742.511630114,true,true,6.482185167,10470.561938324956,0.0,1.2,1109.0,6.482185167,10470.561938324956,0.0,121.92,0.0 +1110,25683.207703126274,24983.207703126274,0.28,8585.55507036609,4639328.06670048,700.0,777000.0,33162.69667987889,23032030.381730724,24577.1416095128,18392702.315030273,true,1110,24983.207703126274,0.0,8585.55507036609,2467243.866159809,700.0,777000.0,158.3979235759234,1242753.2890787649,7516.951422592578,42062.06699533049,0.0,0.0,769.1123540719144,1181639.004014273,141.09337012567445,789.5060714355739,-8585.55507036609,-4639328.06670048,true,true,7.152756046,10477.714694370956,0.0,1.2,1110.0,7.152756046,10477.714694370956,0.0,121.92,0.0 +1111,31035.555070366092,30335.555070366092,0.33,13067.983173772154,4652396.049874252,700.0,777700.0,41721.16113264289,23073751.542863365,28653.177958870736,18421355.492989145,true,1111,30335.555070366092,0.0,13067.983173772154,2480311.849333581,700.0,777700.0,221.3671139672834,1242974.656192732,11765.877411749612,53827.944407080104,0.0,0.0,859.8928286290712,1182498.896842902,220.84581942618684,1010.3518908617607,-13067.983173772154,-4652396.049874252,true,true,8.091555277,10485.806249647956,0.0,1.2,1111.0,8.091555277,10485.806249647956,0.0,121.92,0.0 +1112,35517.983173772154,34817.983173772154,0.33,13386.809393903099,4665782.859268155,700.0,778400.0,42687.301193645755,23116438.844057012,29300.491799742656,18450655.984788887,true,1112,34817.983173772154,0.0,13386.809393903099,2493698.6587274843,700.0,778400.0,308.7627449026397,1243283.4189376347,11894.035280474556,65721.97968755466,0.0,0.0,960.7600226316077,1183459.6568655337,223.2513458942948,1233.6032367560556,-13386.809393903099,-4665782.859268155,true,true,8.940945058,10494.747194705957,0.0,1.2,1112.0,8.940945058,10494.747194705957,0.0,121.92,0.0 +1113,35836.809393903095,35136.809393903095,0.28,8281.60628464519,4674064.4655528,700.0,779100.0,32077.165302304245,23148516.009359315,23795.559017659056,18474451.543806545,true,1113,35136.809393903095,0.0,8281.60628464519,2501980.2650121297,700.0,779100.0,384.7702950303608,1243668.189232665,6736.502919517991,72458.48260707266,0.0,0.0,1033.888738300369,1184493.545603834,126.44433179646937,1360.047568552525,-8281.60628464519,-4674064.4655528,true,true,9.387992311,10504.135187016956,0.0,1.2,1113.0,9.387992311,10504.135187016956,0.0,121.92,0.0 +1114,30731.60628464519,30031.60628464519,0.16,2896.4651585852243,4676960.930711386,700.0,779800.0,22477.907241157653,23170993.916600473,19581.44208257243,18494032.98588912,true,1114,30031.60628464519,0.0,2896.4651585852243,2504876.7301707147,700.0,779800.0,419.5534716080467,1244087.7427042732,1386.733762383714,73845.21636945636,0.0,0.0,1064.1488964672853,1185557.6945003013,26.029028126177998,1386.076596678703,-2896.4651585852243,-4676960.930711386,true,true,9.477401761,10513.612588777956,0.0,1.2,1114.0,9.477401761,10513.612588777956,0.0,121.92,0.0 +1115,25346.465158585226,24646.465158585226,0.16,2211.682071204244,4679172.61278259,700.0,780500.0,18198.012945026523,23189191.9295455,15986.330873822279,18510019.31676294,true,1115,24646.465158585226,0.0,2211.682071204244,2507088.412241919,700.0,780500.0,428.56505532117353,1244516.3077595944,698.2960452614277,74543.51241471778,0.0,0.0,1071.7139360231163,1186629.4084363244,13.107034598526546,1399.1836312772296,-2211.682071204244,-4679172.61278259,true,true,9.522106487,10523.134695264956,0.0,1.2,1115.0,9.522106487,10523.134695264956,0.0,121.92,0.0 +1116,24661.682071204243,23961.682071204243,0.16,2226.1520411795614,4681398.764823769,700.0,781200.0,18288.450257372257,23207480.37980287,16062.298216192696,18526081.614979133,true,1116,23961.682071204243,0.0,2226.1520411795614,2509314.5642830986,700.0,781200.0,434.64390234698027,1244950.9516619414,701.5821286197132,75245.0945433375,0.0,0.0,1076.757295745806,1187706.1657320703,13.168714467062118,1412.3523457442916,-2226.1520411795614,-4681398.764823769,true,true,9.566811212,10532.701506476957,0.0,1.2,1116.0,9.566811212,10532.701506476957,0.0,121.92,0.0 +1117,24676.15204117956,23976.15204117956,0.16,3698.156736337734,4685096.921560107,700.0,781900.0,27488.479602110838,23234968.85940498,23790.322865773105,18549871.937844906,true,1117,23976.15204117956,0.0,3698.156736337734,2513012.721019436,700.0,781900.0,446.97350107553376,1245397.925163017,2124.4629954606085,77369.55753879811,0.0,0.0,1086.8440151347781,1188793.009747205,39.87622466681347,1452.228570411105,-3698.156736337734,-4685096.921560107,true,true,9.700925388,10542.402431864957,0.0,1.2,1117.0,9.700925388,10542.402431864957,0.0,121.92,0.0 +1118,26148.156736337733,25448.156736337733,0.28,7515.533421022386,4692612.45498113,700.0,782600.0,29341.190789365664,23264310.050194345,21825.65736834328,18571697.59521325,true,1118,25448.156736337733,0.0,7515.533421022386,2520528.2544404585,700.0,782600.0,482.07740239465204,1245880.0025654116,5809.822999128513,83179.38053792663,0.0,0.0,1114.5824934685536,1189907.5922406737,109.0505260306675,1561.2790964417725,-7515.533421022386,-4692612.45498113,true,true,10.05856319,10552.460995054957,0.0,1.2,1118.0,10.05856319,10552.460995054957,0.0,121.92,0.0 +1119,29965.53342102239,29265.53342102239,0.22,5481.340146874327,4698093.795128004,700.0,783300.0,28097.000667610577,23292407.050861955,22615.66052073625,18594313.255733985,true,1119,29265.53342102239,0.0,5481.340146874327,2526009.594587333,700.0,783300.0,525.8769753087038,1246405.8795407203,3737.9376546560616,86917.3181925827,0.0,0.0,1147.364331694241,1191054.956572368,70.16118521532044,1631.440281657093,-5481.340146874327,-4698093.795128004,true,true,10.28208682,10562.743081874956,0.0,1.2,1119.0,10.28208682,10562.743081874956,0.0,121.92,0.0 +1120,27931.340146874325,27231.340146874325,0.28,8019.440964197521,4706113.236092201,700.0,784000.0,31140.860586419716,23323547.911448374,23121.419622222194,18617434.67535621,true,1120,27231.340146874325,0.0,8019.440964197521,2534029.035551531,700.0,784000.0,572.2522720471983,1246978.1318127674,6151.577260108245,93068.89545269094,0.0,0.0,1180.1461698071134,1192235.102742175,115.46526223496363,1746.9055438920566,-8019.440964197521,-4706113.236092201,true,true,10.63972462,10573.382806494956,0.0,1.2,1120.0,10.63972462,10573.382806494956,0.0,121.92,0.0 +1121,30469.44096419752,29769.44096419752,0.28,7506.451038125303,4713619.687130326,700.0,784700.0,29308.753707590364,23352856.665155966,21802.30266946506,18639236.978025675,true,1121,29769.44096419752,0.0,7506.451038125303,2541535.486589656,700.0,784700.0,629.0589688568273,1247607.1907816243,5555.1503870819815,98624.04583977292,0.0,0.0,1217.9713675862683,1193453.0741097613,104.2703146002258,1851.1758584922825,-7506.451038125303,-4713619.687130326,true,true,10.9526577,10584.335464194955,0.0,1.2,1121.0,10.9526577,10584.335464194955,0.0,121.92,0.0 +1122,29956.451038125302,29256.451038125302,0.22,6068.227977155099,4719687.915107481,700.0,785400.0,30764.67262343227,23383621.3377794,24696.44464627717,18663933.42267195,true,1122,29256.451038125302,0.0,6068.227977155099,2547603.7145668115,700.0,785400.0,677.1198774048249,1248284.310659029,4066.547376089585,102690.59321586251,0.0,0.0,1248.2315255839626,1194701.3056353452,76.32919807672575,1927.5050565690083,-6068.227977155099,-4719687.915107481,true,true,11.17618132,10595.511645514955,0.0,1.2,1122.0,11.17618132,10595.511645514955,0.0,121.92,0.0 +1123,28518.2279771551,27818.2279771551,0.12,1116.715355373682,4720804.630462855,700.0,786100.0,15139.294628114018,23398760.632407513,14022.579272740335,18677956.00194469,true,1123,27818.2279771551,0.0,1116.715355373682,2548720.429922185,700.0,786100.0,693.6679086095177,1248977.9785676387,-819.8815995946654,101870.71161626784,0.0,0.0,1258.318244916527,1195959.6238802618,-15.389198557696954,1912.1158580113113,-1116.715355373682,-4720804.630462855,true,true,11.1314766,10606.643122114954,0.0,1.2,1123.0,11.1314766,10606.643122114954,0.0,121.92,0.0 +1124,23566.715355373683,22866.715355373683,0.12,1106.7122770830485,4721911.342739938,700.0,786800.0,15055.935642358738,23413816.56804987,13949.22336527569,18691905.225309968,true,1124,22866.715355373683,0.0,1106.7122770830485,2549827.142199268,700.0,786800.0,685.3605973496816,1249663.3391649884,-816.5956836847073,101054.11593258314,0.0,0.0,1253.2748852502448,1197212.898765512,-15.327521832170431,1896.7883361791407,-1106.7122770830485,-4721911.342739938,true,true,11.08677187,10617.729893984953,0.0,1.2,1124.0,11.08677187,10617.729893984953,0.0,121.92,0.0 +1125,23556.71227708305,22856.71227708305,0.16,3612.4964803229323,4725523.839220261,700.0,787500.0,26953.103002018324,23440769.67105189,23340.606521695394,18715245.831831664,true,1125,22856.71227708305,0.0,3612.4964803229323,2553439.638679591,700.0,787500.0,689.5059118523436,1250352.8450768406,1636.4772832793726,102690.59321586251,0.0,0.0,1255.7965648013487,1198468.6953303134,30.716720389867387,1927.505056569008,-3612.4964803229323,-4725523.839220261,true,true,11.17618132,10628.906075304953,0.0,1.2,1125.0,11.17618132,10628.906075304953,0.0,121.92,0.0 +1126,26062.49648032293,25362.49648032293,0.22,5360.217282231827,4730884.056502493,700.0,788200.0,27546.44219196285,23468316.11324385,22186.224909731023,18737432.056741394,true,1126,25362.49648032293,0.0,5360.217282231827,2558799.855961823,700.0,788200.0,714.7292818597632,1251067.5743587003,3312.3877538596817,106002.9809697222,0.0,0.0,1270.9266438001957,1199739.6219741136,62.173602712186515,1989.6786592811945,-5360.217282231827,-4730884.056502493,true,true,11.35500022,10640.261075524953,0.0,1.2,1126.0,11.35500022,10640.261075524953,0.0,121.92,0.0 +1127,27810.217282231828,27110.217282231828,0.22,5468.533006183692,4736352.589508677,700.0,788900.0,28038.786391744055,23496354.899635594,22570.25338556036,18760002.310126953,true,1127,27110.217282231828,0.0,5468.533006183692,2564268.3889680067,700.0,788900.0,749.3071015020143,1251816.8814602024,3364.965336927565,109367.94630664976,0.0,0.0,1291.1000824653254,1201030.7220565788,63.16048528878698,2052.8391445699817,-5468.533006183692,-4736352.589508677,true,true,11.53381912,10651.794894644954,0.0,1.2,1127.0,11.53381912,10651.794894644954,0.0,121.92,0.0 +1128,27918.533006183694,27218.533006183694,0.16,3816.3397834795237,4740168.929292156,700.0,789600.0,28227.12364674702,23524582.02328234,24410.783863267494,18784413.09399022,true,1128,27218.533006183694,0.0,3816.3397834795237,2568084.728751486,700.0,789600.0,775.9598410216155,1252592.841301224,1702.1994532317615,111070.14575988152,0.0,0.0,1306.230162028247,1202336.952218607,31.950327197900013,2084.789471767882,-3816.3397834795237,-4740168.929292156,true,true,11.62322858,10663.418123224954,0.0,1.2,1128.0,11.62322858,10663.418123224954,0.0,121.92,0.0 +1129,26266.339783479525,25566.339783479525,0.22,5633.069991150147,4745801.999283306,700.0,790300.0,28786.681777955215,23553368.705060296,23153.611786805068,18807566.705777027,true,1129,25566.339783479525,0.0,5633.069991150147,2573717.798742636,700.0,790300.0,803.2372258803839,1253396.0785271043,3443.8317144697166,114513.97747435124,0.0,0.0,1321.3602415911685,1203658.3124601983,64.64080920887787,2149.4302809767596,-5633.069991150147,-4745801.999283306,true,true,11.80204748,10675.220170704953,0.0,1.2,1129.0,11.80204748,10675.220170704953,0.0,121.92,0.0 +1130,28083.069991150147,27383.069991150147,0.16,3941.9597473463514,4749743.959030652,700.0,791000.0,29012.248420914693,23582380.953481212,25070.288673568342,18832636.994450595,true,1130,27383.069991150147,0.0,3941.9597473463514,2577659.7584899827,700.0,791000.0,831.1464903003684,1254227.2250174046,1741.6324508853031,116255.60992523654,0.0,0.0,1336.4903205900157,1204994.8027807884,32.690485570663874,2182.1207665474235,-3941.9597473463514,-4749743.959030652,true,true,11.89145693,10687.111627634953,0.0,1.2,1130.0,11.89145693,10687.111627634953,0.0,121.92,0.0 +1131,26391.95974734635,25691.95974734635,0.22,4890.583483256853,4754634.542513909,700.0,791700.0,25411.743105712965,23607792.696586926,20521.159622456114,18853158.154073052,true,1131,25691.95974734635,0.0,4890.583483256853,2582550.3419732396,700.0,791700.0,854.8921165506424,1255082.1171339552,2637.0943195244763,118892.70424476101,0.0,0.0,1349.0987194736842,1206343.901500262,49.498327708049914,2231.6190942554736,-4890.583483256853,-4754634.542513909,true,true,12.0255711,10699.137198734954,0.0,1.2,1131.0,12.0255711,10699.137198734954,0.0,121.92,0.0 +1132,27340.58348325685,26640.58348325685,0.16,3135.6230033283464,4757770.165517237,700.0,792400.0,23972.643770802166,23631765.34035773,20837.02076747382,18873995.174840525,true,1132,26640.58348325685,0.0,3135.6230033283464,2585685.964976568,700.0,792400.0,874.2109896093021,1255956.3281235646,885.6037695470659,119778.30801430807,0.0,0.0,1359.1854388062488,1207703.0869390683,16.62280536572958,2248.241899621203,-3135.6230033283464,-4757770.165517237,true,true,12.07027583,10711.207474564953,0.0,1.2,1132.0,12.07027583,10711.207474564953,0.0,121.92,0.0 +1133,25585.623003328346,24885.623003328346,0.16,2240.792880318807,4760010.958397556,700.0,793100.0,18379.955501992543,23650145.29585972,16139.162621673735,18890134.337462198,true,1133,24885.623003328346,0.0,2240.792880318807,2587926.7578568864,700.0,793100.0,879.0857613973797,1256835.413884962,0.0,119778.30801430807,0.0,0.0,1361.7071189214273,1209064.7940579897,0.0,2248.241899621203,-2240.792880318807,-4760010.958397556,true,true,12.07027583,10723.277750394953,0.0,1.2,1133.0,12.07027583,10723.277750394953,0.0,121.92,0.0 +1134,24690.792880318808,23990.792880318808,0.16,2240.792880318807,4762251.751277875,700.0,793800.0,18379.955501992543,23668525.251361713,16139.162621673735,18906273.50008387,true,1134,23990.792880318808,0.0,2240.792880318807,2590167.550737205,700.0,793800.0,879.0857613973797,1257714.4996463594,0.0,119778.30801430807,0.0,0.0,1361.7071189214273,1210426.5011769112,0.0,2248.241899621203,-2240.792880318807,-4762251.751277875,true,true,12.07027583,10735.348026224952,0.0,1.2,1134.0,12.07027583,10735.348026224952,0.0,121.92,0.0 +1135,24690.792880318808,23990.792880318808,0.16,1331.1698535027554,4763582.921131378,700.0,794500.0,12694.81158439222,23681220.062946104,11363.641730889465,18917637.14181476,true,1135,23990.792880318808,0.0,1331.1698535027554,2591498.720590708,700.0,794500.0,874.2109896093021,1258588.7106359687,-885.6037695470659,118892.704244761,0.0,0.0,1359.1854388062488,1211785.6866157174,-16.62280536572958,2231.6190942554736,-1331.1698535027554,-4763582.921131378,true,true,12.0255711,10747.373597324953,0.0,1.2,1135.0,12.0255711,10747.373597324953,0.0,121.92,0.0 +1136,23781.169853502754,23081.169853502754,0.16,1319.7790624660286,4764902.700193844,700.0,795200.0,12623.619140412678,23693843.682086516,11303.84007794665,18928940.98189271,true,1136,23081.169853502754,0.0,1319.7790624660286,2592818.499653174,700.0,795200.0,864.5155776915001,1259453.2262136603,-882.3174728722024,118010.38677188879,0.0,0.0,1354.1420791399667,1213139.8286948574,-16.56112149323583,2215.0579727622376,-1319.7790624660286,-4764902.700193844,true,true,11.98086638,10759.354463704953,0.0,1.2,1136.0,11.98086638,10759.354463704953,0.0,121.92,0.0 +1137,23769.77906246603,23069.77906246603,0.16,2211.3152701493013,4767114.015463993,700.0,795900.0,18195.720438433134,23712039.402524948,15984.405168283833,18944925.387060992,true,1137,23069.77906246603,0.0,2211.3152701493013,2595029.814923323,700.0,795900.0,859.694870560439,1260312.9210842208,0.0,118010.38677188879,0.0,0.0,1351.6203995888625,1214491.4490944464,0.0,2215.0579727622376,-2211.3152701493013,-4767114.015463993,true,true,11.98086638,10771.335330084952,0.0,1.2,1137.0,11.98086638,10771.335330084952,0.0,121.92,0.0 +1138,24661.3152701493,23961.3152701493,0.12,0.0,4767114.015463993,700.0,796600.0,6999.999999999999,23719039.402524948,6999.999999999999,18951925.387060992,true,1138,23961.3152701493,0.0,-487.1538118500299,2594542.661111473,700.0,796600.0,845.340338213632,1261158.2614224344,-2627.2362189622645,115383.15055292653,0.0,0.0,1344.0553598074016,1215835.5044542537,-49.31329090879901,2165.7446818534386,-0.0,-4767114.015463993,true,true,11.8467522,10783.182082284951,0.0,1.2,1138.0,11.8467522,10783.182082284951,0.0,121.92,0.0 +1139,22450.0,21750.0,0.16,1274.9319190816132,4768388.947383075,700.0,797300.0,12343.324494260081,23731382.72701921,11068.392575178468,18962993.77963617,true,1139,21750.0,0.0,1274.9319190816132,2595817.5930305547,700.0,797300.0,826.4507580587675,1261984.7121804932,-869.1730785753125,114513.97747435121,0.0,0.0,1333.968640474837,1217169.4730947285,-16.314400876678945,2149.4302809767596,-1274.9319190816132,-4768388.947383075,true,true,11.80204748,10794.984129764951,0.0,1.2,1139.0,11.80204748,10794.984129764951,0.0,121.92,0.0 +1140,23724.931919081613,23024.931919081613,0.12,0.0,4768388.947383075,700.0,798000.0,6999.999999999999,23738382.72701921,6999.999999999999,18969993.77963617,true,1140,23024.931919081613,0.0,-1383.8750562070422,2594433.7179743475,700.0,798000.0,803.2372258803839,1262787.9494063735,-3443.8317144697166,111070.14575988149,0.0,0.0,1321.3602415911685,1218490.8333363198,-64.64080920887787,2084.789471767882,-0.0,-4768388.947383075,true,true,11.62322858,10806.60735834495,0.0,1.2,1140.0,11.62322858,10806.60735834495,0.0,121.92,0.0 +1141,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,798700.0,6999.999999999999,23745382.72701921,6999.999999999999,18976993.77963617,true,1141,21750.0,0.0,-2249.0447536622814,2592184.673220685,700.0,798700.0,762.5558437927176,1263550.5052501662,-4230.85251061896,106839.29324926253,0.0,0.0,1298.6651228108606,1219789.4984591305,-79.4132096468994,2005.3762621209826,-0.0,-4768388.947383075,true,true,11.39970495,10818.00706329495,0.0,1.2,1141.0,11.39970495,10818.00706329495,0.0,121.92,0.0 +1142,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,799400.0,6999.999999999999,23752382.72701921,6999.999999999999,18983993.77963617,true,1142,21750.0,0.0,-5582.16444613913,2586602.508774546,700.0,799400.0,702.0420791574303,1264252.5473293236,-7408.510204191812,99430.78304507071,0.0,0.0,1263.3616045828096,1221052.8600637133,-139.05792568755868,1866.3183364334238,-0.0,-4768388.947383075,true,true,10.99736242,10829.00442571495,0.0,1.2,1142.0,10.99736242,10829.00442571495,0.0,121.92,0.0 +1143,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,800100.0,6999.999999999999,23759382.72701921,6999.999999999999,18990993.77963617,true,1143,21750.0,0.0,-7022.344870703107,2579580.1639038427,700.0,800100.0,621.2768840033375,1264873.824213327,-8693.374893353921,90737.4081517168,0.0,0.0,1212.9280073559116,1222265.7880710692,-163.17486870843518,1703.1434677249886,-0.0,-4768388.947383075,true,true,10.50561044,10839.510036154948,0.0,1.2,1143.0,10.50561044,10839.510036154948,0.0,121.92,0.0 +1144,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,800800.0,6999.999999999999,23766382.72701921,6999.999999999999,18997993.77963617,true,1144,21750.0,0.0,-13421.51999057978,2566158.643913263,700.0,800800.0,508.730185513374,1265382.5543988403,-14787.445380817833,75949.96277089896,0.0,0.0,1134.7559320772755,1223400.5440031465,-277.5607273525964,1425.5827403723922,-0.0,-4768388.947383075,true,true,9.611515937,10849.121552091949,0.0,1.2,1144.0,9.611515937,10849.121552091949,0.0,121.92,0.0 +1145,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,801500.0,6999.999999999999,23773382.72701921,6999.999999999999,19004993.77963617,true,1145,21750.0,0.0,-8974.445824308552,2557184.1980889547,700.0,801500.0,399.0196251296273,1265781.57402397,-10227.983083344325,65721.97968755463,0.0,0.0,1046.4971375224823,1224447.041140669,-191.97950361633644,1233.6032367560558,-0.0,-4768388.947383075,true,true,8.940945058,10858.06249714995,0.0,1.2,1145.0,8.940945058,10858.06249714995,0.0,121.92,0.0 +1146,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,802200.0,6999.999999999999,23780382.72701921,6999.999999999999,19011993.77963617,true,1146,21750.0,0.0,-14452.680758323435,2542731.517330631,700.0,802200.0,294.4040427092952,1266075.9780666793,-15403.588986054745,50318.390701499884,0.0,0.0,945.6299435763532,1225392.6710842454,-289.12575855433755,944.4774782017182,-0.0,-4768388.947383075,true,true,7.823326926,10865.88582407595,0.0,1.2,1146.0,7.823326926,10865.88582407595,0.0,121.92,0.0 +1147,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,802900.0,6999.999999999999,23787382.72701921,6999.999999999999,19018993.77963617,true,1147,21750.0,0.0,-7356.645920479964,2535374.871410151,700.0,802900.0,209.8864428817867,1266285.864509561,-8256.323706169424,42062.06699533046,0.0,0.0,844.7627495738168,1226237.4338338193,-154.9714067661441,789.5060714355741,-0.0,-4768388.947383075,true,true,7.152756046,10873.038580121949,0.0,1.2,1147.0,7.152756046,10873.038580121949,0.0,121.92,0.0 +1148,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,803600.0,6999.999999999999,23794382.72701921,6999.999999999999,19025993.77963617,true,1148,21750.0,0.0,-9136.098604950032,2526238.772805201,700.0,803600.0,150.73486986041559,1266436.5993794214,-9858.296944312408,32203.77005101805,0.0,0.0,756.5039548498011,1226993.9377886693,-185.04048534784127,604.4655860877328,-0.0,-4768388.947383075,true,true,6.258661541,10879.29724166295,0.0,1.2,1148.0,6.258661541,10879.29724166295,0.0,121.92,0.0 +1149,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,804300.0,6999.999999999999,23801382.72701921,6999.999999999999,19032993.77963617,true,1149,21750.0,0.0,-12936.89094132046,2513301.8818638804,700.0,804300.0,84.1280506678118,1266520.7274300891,-13392.496415183821,18811.27363583423,0.0,0.0,622.854922847207,1227616.7927115164,-251.37749965165852,353.0880864360743,-0.0,-4768388.947383075,true,true,4.783405606,10884.08064726895,0.0,1.2,1149.0,4.783405606,10884.08064726895,0.0,121.92,0.0 +1150,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,805000.0,6999.999999999999,23808382.72701921,6999.999999999999,19039993.77963617,true,1150,21750.0,0.0,-9508.613972054223,2503793.267891826,700.0,805000.0,33.10439769550331,1266553.8318277847,-9813.934619110332,8997.339016723898,0.0,0.0,456.4240527317403,1228073.2167642482,-184.20780337113453,168.8802830649398,-0.0,-4768388.947383075,true,true,3.308149671,10887.38879693995,0.0,1.2,1150.0,3.308149671,10887.38879693995,0.0,121.92,0.0 +1151,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,805700.0,6999.999999999999,23815382.72701921,6999.999999999999,19046993.77963617,true,1151,21750.0,0.0,-6053.927044563988,2497739.340847262,700.0,805700.0,8.490699820449555,1266562.322527605,-6235.372820023076,2761.9661967008215,0.0,0.0,289.9931826726811,1228363.2099469209,-117.03810703404224,51.84217603089755,-0.0,-4768388.947383075,true,true,1.832893737,10889.22169067695,0.0,1.2,1151.0,1.832893737,10889.22169067695,0.0,121.92,0.0 +1152,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,806400.0,6999.999999999999,23822382.72701921,6999.999999999999,19053993.77963617,true,1152,21750.0,0.0,-2582.460319975569,2495156.880527287,700.0,806400.0,0.6568076555225099,1266562.9793352606,-2656.8110293890954,105.15516731172602,0.0,0.0,123.56231261362196,1228486.7722595346,-49.868410855618116,1.973765175279432,-0.0,-4768388.947383075,true,true,0.357637802,10889.57932847895,0.0,1.2,1152.0,0.357637802,10889.57932847895,0.0,121.92,0.0 +1153,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,807100.0,6999.999999999999,23829382.72701921,6999.999999999999,19060993.77963617,true,1153,21750.0,0.0,-86.95263532949697,2495069.927891957,700.0,807100.0,0.0028583797467174104,1266562.9821936404,-105.1551673119104,-1.84385839929746e-10,0.0,0.0,20.17343877794431,1228506.9456983125,-1.9737651752775933,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1153.0,0.0,10889.57932847895,0.0,121.92,0.0 +1154,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,807800.0,6999.999999999999,23836382.72701921,6999.999999999999,19067993.77963617,true,1154,21750.0,0.0,0.0,2495069.927891957,700.0,807800.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1154.0,0.0,10889.57932847895,0.0,121.92,0.0 +1155,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,808500.0,6999.999999999999,23843382.72701921,6999.999999999999,19074993.77963617,true,1155,21750.0,0.0,0.0,2495069.927891957,700.0,808500.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1155.0,0.0,10889.57932847895,0.0,121.92,0.0 +1156,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,809200.0,6999.999999999999,23850382.72701921,6999.999999999999,19081993.77963617,true,1156,21750.0,0.0,0.0,2495069.927891957,700.0,809200.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1156.0,0.0,10889.57932847895,0.0,121.92,0.0 +1157,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,809900.0,6999.999999999999,23857382.72701921,6999.999999999999,19088993.77963617,true,1157,21750.0,0.0,0.0,2495069.927891957,700.0,809900.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1157.0,0.0,10889.57932847895,0.0,121.92,0.0 +1158,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,810600.0,6999.999999999999,23864382.72701921,6999.999999999999,19095993.77963617,true,1158,21750.0,0.0,0.0,2495069.927891957,700.0,810600.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1158.0,0.0,10889.57932847895,0.0,121.92,0.0 +1159,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,811300.0,6999.999999999999,23871382.72701921,6999.999999999999,19102993.77963617,true,1159,21750.0,0.0,0.0,2495069.927891957,700.0,811300.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1159.0,0.0,10889.57932847895,0.0,121.92,0.0 +1160,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,812000.0,6999.999999999999,23878382.72701921,6999.999999999999,19109993.77963617,true,1160,21750.0,0.0,0.0,2495069.927891957,700.0,812000.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1160.0,0.0,10889.57932847895,0.0,121.92,0.0 +1161,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,812700.0,6999.999999999999,23885382.72701921,6999.999999999999,19116993.77963617,true,1161,21750.0,0.0,0.0,2495069.927891957,700.0,812700.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1161.0,0.0,10889.57932847895,0.0,121.92,0.0 +1162,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,813400.0,6999.999999999999,23892382.72701921,6999.999999999999,19123993.77963617,true,1162,21750.0,0.0,0.0,2495069.927891957,700.0,813400.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1162.0,0.0,10889.57932847895,0.0,121.92,0.0 +1163,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,814100.0,6999.999999999999,23899382.72701921,6999.999999999999,19130993.77963617,true,1163,21750.0,0.0,0.0,2495069.927891957,700.0,814100.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1163.0,0.0,10889.57932847895,0.0,121.92,0.0 +1164,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,814800.0,6999.999999999999,23906382.72701921,6999.999999999999,19137993.77963617,true,1164,21750.0,0.0,0.0,2495069.927891957,700.0,814800.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1164.0,0.0,10889.57932847895,0.0,121.92,0.0 +1165,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,815500.0,6999.999999999999,23913382.72701921,6999.999999999999,19144993.77963617,true,1165,21750.0,0.0,0.0,2495069.927891957,700.0,815500.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1165.0,0.0,10889.57932847895,0.0,121.92,0.0 +1166,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,816200.0,6999.999999999999,23920382.72701921,6999.999999999999,19151993.77963617,true,1166,21750.0,0.0,0.0,2495069.927891957,700.0,816200.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1166.0,0.0,10889.57932847895,0.0,121.92,0.0 +1167,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,816900.0,6999.999999999999,23927382.72701921,6999.999999999999,19158993.77963617,true,1167,21750.0,0.0,0.0,2495069.927891957,700.0,816900.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1167.0,0.0,10889.57932847895,0.0,121.92,0.0 +1168,22450.0,21750.0,0.12,0.0,4768388.947383075,700.0,817600.0,6999.999999999999,23934382.72701921,6999.999999999999,19165993.77963617,true,1168,21750.0,0.0,0.0,2495069.927891957,700.0,817600.0,0.0,1266562.9821936404,0.0,-1.84385839929746e-10,0.0,0.0,0.0,1228506.9456983125,0.0,1.8387513733841843e-12,-0.0,-4768388.947383075,true,true,0.0,10889.57932847895,0.0,1.2,1168.0,0.0,10889.57932847895,0.0,121.92,0.0 +1169,22450.0,21750.0,0.12,791.1922804937483,4769180.139663569,700.0,818300.0,12426.602337447903,23946809.329356655,11635.410056954155,19177629.189693123,true,1169,21750.0,0.0,791.1922804937483,2495861.120172451,700.0,818300.0,0.05170206034725294,1266563.0338957007,724.5848259163639,724.5848259161795,0.0,0.0,52.955276834409396,1228559.9009751468,13.600475682627815,13.600475682629654,-791.1922804937483,-4769180.139663569,true,true,0.938799231,10890.518127709951,0.0,1.2,1169.0,0.938799231,10890.518127709951,0.0,121.92,0.0 +1170,23241.19228049375,22541.19228049375,0.16,4334.357916026832,4773514.497579595,700.0,819000.0,31464.7369751677,23978274.066331822,27130.37905914087,19204759.568752263,true,1170,22541.19228049375,0.0,4334.357916026832,2500195.4780884776,700.0,819000.0,2.3552323420958343,1266565.3891280429,4066.547494655964,4791.132320572144,0.0,0.0,189.12598872655212,1228749.0269638733,76.32920030222022,89.92967598484987,-4334.357916026832,-4773514.497579595,true,true,2.414055166,10892.932182875951,0.0,1.2,1170.0,2.414055166,10892.932182875951,0.0,121.92,0.0 +1171,26784.35791602683,26084.35791602683,0.28,8159.814785977013,4781674.312365572,700.0,819700.0,31642.19566420362,24009916.261996027,23482.380878226606,19228241.949630488,true,1171,26084.35791602683,0.0,8159.814785977013,2508355.2928744545,700.0,819700.0,15.64974639433723,1266581.038874437,7645.109284334358,12436.241604906501,0.0,0.0,355.55685878561127,1229104.583822659,143.49889646270796,233.42857244755783,-8159.814785977013,-4781674.312365572,true,true,3.8893111,10896.821493975951,0.0,1.2,1171.0,3.8893111,10896.821493975951,0.0,121.92,0.0 +1172,30609.814785977014,29909.814785977014,0.28,12005.845167402105,4793680.157532974,700.0,820400.0,45378.018455007514,24055294.280451033,33372.17328760541,19261614.12291809,true,1172,29909.814785977014,0.0,12005.845167402105,2520361.1380418567,700.0,820400.0,49.517761362493665,1266630.5566357996,11223.671084377205,23659.91268928371,0.0,0.0,521.9877288446705,1229626.5715515036,210.66859281773674,444.09716526529456,-12005.845167402105,-4793680.157532974,true,true,5.364567035,10902.18606101095,0.0,1.2,1172.0,5.364567035,10902.18606101095,0.0,121.92,0.0 +1173,34455.845167402105,33755.845167402105,0.33,15882.079183605878,4809562.23671658,700.0,821100.0,50248.72479880569,24105543.00524984,34366.64561519981,19295980.768533293,true,1173,33755.845167402105,0.0,15882.079183605878,2536243.2172254627,700.0,821100.0,113.5894266108365,1266744.1460624104,14802.232869204148,38462.14555848786,0.0,0.0,688.4185989037297,1230314.9901504074,277.8382888871626,721.9354541524572,-15882.079183605878,-4809562.23671658,true,true,6.839822969,10909.02588397995,0.0,1.2,1173.0,6.839822969,10909.02588397995,0.0,121.92,0.0 +1174,38332.07918360588,37632.07918360588,0.35,19798.14701989811,4829360.383736478,700.0,821800.0,58566.13434256604,24164109.139592405,38767.98732266793,19334748.755855963,true,1174,37632.07918360588,0.0,19798.14701989811,2556041.3642453607,700.0,821800.0,217.49489150363712,1266961.640953914,18380.794674098433,56842.94023258629,0.0,0.0,854.8494689627888,1231169.8396193702,345.00798533325326,1066.9434394857103,-19798.14701989811,-4829360.383736478,true,true,8.315078904,10917.340962883949,0.0,1.2,1174.0,8.315078904,10917.340962883949,0.0,121.92,0.0 +1175,42248.14701989811,41548.14701989811,0.35,17963.77932894555,4847324.163065423,700.0,822500.0,53325.083796987296,24217434.22338939,35361.304468041744,19370110.060324006,true,1175,41548.14701989811,0.0,17963.77932894555,2574005.1435743063,700.0,822500.0,349.31841944493885,1267310.9593733589,16307.266206207323,73150.20643879361,0.0,0.0,1001.1069002439037,1232170.9465196142,306.08780304938495,1373.0312425350953,-17963.77932894555,-4847324.163065423,true,true,9.432697036,10926.773659919949,0.0,1.2,1175.0,9.432697036,10926.773659919949,0.0,121.92,0.0 +1176,40413.77932894555,39713.77932894555,0.33,15616.394387955888,4862940.557453379,700.0,823200.0,49443.61935744208,24266877.84274683,33827.2249694862,19403937.285293493,true,1176,39713.77932894555,0.0,15616.394387955888,2589621.537962262,700.0,823200.0,478.8127812402144,1267789.7721545992,13767.111753789042,86917.31819258265,0.0,0.0,1112.0608138046348,1233283.0073334188,258.40903912199775,1631.440281657093,-15616.394387955888,-4862940.557453379,true,true,10.28208682,10937.055746739949,0.0,1.2,1176.0,10.28208682,10937.055746739949,0.0,121.92,0.0 +1177,38066.39438795589,37366.39438795589,0.22,5625.692088741283,4868566.24954212,700.0,823900.0,28753.145857914926,24295630.988604747,23127.45376917364,19427064.739062667,true,1177,37366.39438795589,0.0,5625.692088741283,2595247.2300510034,700.0,823900.0,561.3178135136061,1268351.0899681128,3820.0899591341295,90737.40815171678,0.0,0.0,1172.5811300256528,1234455.5884634445,71.70318606789543,1703.1434677249883,-5625.692088741283,-4868566.24954212,true,true,10.50561044,10947.561357179948,0.0,1.2,1177.0,10.50561044,10947.561357179948,0.0,121.92,0.0 +1178,28075.692088741285,27375.692088741285,0.12,0.0,4868566.24954212,700.0,824600.0,6999.999999999999,24302630.988604747,6999.999999999999,19434064.739062667,true,1178,27375.692088741285,0.0,-2157.894201662766,2593089.3358493405,700.0,824600.0,561.3178135136061,1268912.4077816263,-3820.0899591341295,86917.31819258265,0.0,0.0,1172.5811300256528,1235628.1695934702,-71.70318606789543,1631.440281657093,-0.0,-4868566.24954212,true,true,10.28208682,10957.843443999947,0.0,1.2,1178.0,10.28208682,10957.843443999947,0.0,121.92,0.0 +1179,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,825300.0,6999.999999999999,24309630.988604747,6999.999999999999,19441064.739062667,true,1179,21750.0,0.0,-2134.8575328684374,2590954.478316472,700.0,825300.0,525.8769753087038,1269438.284756935,-3737.9376546560616,83179.38053792658,0.0,0.0,1147.364331694241,1236775.5339251645,-70.16118521532044,1561.2790964417725,-0.0,-4868566.24954212,true,true,10.05856319,10967.902007189947,0.0,1.2,1179.0,10.05856319,10967.902007189947,0.0,121.92,0.0 +1180,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,826000.0,6999.999999999999,24316630.988604747,6999.999999999999,19448064.739062667,true,1180,21750.0,0.0,-16284.797718713395,2574669.6805977584,700.0,826000.0,428.56505532117353,1269866.8498122562,-17457.400850371967,65721.97968755462,0.0,0.0,1071.7139360231163,1237847.2478611877,-327.675859685717,1233.6032367560556,-0.0,-4868566.24954212,true,true,8.940945058,10976.842952247947,0.0,1.2,1180.0,8.940945058,10976.842952247947,0.0,121.92,0.0 +1181,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,826700.0,6999.999999999999,24323630.988604747,6999.999999999999,19455064.739062667,true,1181,21750.0,0.0,-19071.058835328746,2555598.62176243,700.0,826700.0,275.96128521508103,1270142.8110974713,-19898.972405177938,45823.00728237668,0.0,0.0,925.4565047420015,1238772.7043659296,-373.5042201078922,860.0990166481633,-0.0,-4868566.24954212,true,true,7.465689123,10984.308641370948,0.0,1.2,1181.0,7.465689123,10984.308641370948,0.0,121.92,0.0 +1182,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,827400.0,6999.999999999999,24330630.988604747,6999.999999999999,19462064.739062667,true,1182,21750.0,0.0,-15715.47223958647,2539883.1495228433,700.0,827400.0,152.24724862761119,1270295.058346099,-16320.410599254537,29502.596683122145,0.0,0.0,759.0256346829422,1239531.7300006126,-306.3345236424856,553.7644930056778,-0.0,-4868566.24954212,true,true,5.990433189,10990.299074559947,0.0,1.2,1182.0,5.990433189,10990.299074559947,0.0,121.92,0.0 +1183,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,828100.0,6999.999999999999,24337630.988604747,6999.999999999999,19469064.739062667,true,1183,21750.0,0.0,-12315.96634882866,2527567.1831740146,700.0,828100.0,72.45252959651657,1270367.5108756956,-12741.848815456684,16760.74786766546,0.0,0.0,592.5947646238831,1240124.3247652363,-239.1648275923756,314.5996654133022,-0.0,-4868566.24954212,true,true,4.515177254,10994.814251813947,0.0,1.2,1183.0,4.515177254,10994.814251813947,0.0,121.92,0.0 +1184,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,828800.0,6999.999999999999,24344630.988604747,6999.999999999999,19476064.739062667,true,1184,21750.0,0.0,-8882.17127228043,2518685.011901734,700.0,828800.0,26.946978757525688,1270394.4578544532,-9163.287014384749,7597.460853280712,0.0,0.0,426.16389456482386,1240550.4886598012,-171.99513121803076,142.60453419527144,-0.0,-4868566.24954212,true,true,3.03992132,10997.854173133946,0.0,1.2,1184.0,3.03992132,10997.854173133946,0.0,121.92,0.0 +1185,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,829500.0,6999.999999999999,24351630.988604747,6999.999999999999,19483064.739062667,true,1185,21750.0,0.0,-5423.717189560174,2513261.2947121738,700.0,829500.0,6.100446746367152,1270400.5583011997,-5584.725225735447,2012.7356275452657,0.0,0.0,259.73302450576466,1240810.2216843069,-104.82543507685916,37.779099118412276,-0.0,-4868566.24954212,true,true,1.564665385,10999.418838518946,0.0,1.2,1185.0,1.564665385,10999.418838518946,0.0,121.92,0.0 +1186,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,830200.0,6999.999999999999,24358630.988604747,6999.999999999999,19490064.739062667,true,1186,21750.0,0.0,-1950.2342296630554,2511311.060482511,700.0,830200.0,0.2827841987695768,1270400.8410853986,-2006.1634295149545,6.572198030311256,0.0,0.0,93.30215444670549,1240903.5238387536,-37.65573879357602,0.12336032483625559,-0.0,-4868566.24954212,true,true,0.089409451,10999.508247969947,0.0,1.2,1186.0,0.089409451,10999.508247969947,0.0,121.92,0.0 +1187,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,830900.0,6999.999999999999,24365630.988604747,6999.999999999999,19497064.739062667,true,1187,21750.0,0.0,-1.6521539704616246,2511309.40832854,700.0,830900.0,0.00004466218429174583,1270400.8411300608,-6.5721980305011485,-1.8989254613188677e-10,0.0,0.0,5.0433597226898055,1240908.5671984763,-0.12336032483457314,1.68244584930477e-12,-0.0,-4868566.24954212,true,true,0.0,10999.508247969947,0.0,1.2,1187.0,0.0,10999.508247969947,0.0,121.92,0.0 +1188,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,831600.0,6999.999999999999,24372630.988604747,6999.999999999999,19504064.739062667,true,1188,21750.0,0.0,0.0,2511309.40832854,700.0,831600.0,0.0,1270400.8411300608,0.0,-1.8989254613188677e-10,0.0,0.0,0.0,1240908.5671984763,0.0,1.68244584930477e-12,-0.0,-4868566.24954212,true,true,0.0,10999.508247969947,0.0,1.2,1188.0,0.0,10999.508247969947,0.0,121.92,0.0 +1189,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,832300.0,6999.999999999999,24379630.988604747,6999.999999999999,19511064.739062667,true,1189,21750.0,0.0,0.0,2511309.40832854,700.0,832300.0,0.0,1270400.8411300608,0.0,-1.8989254613188677e-10,0.0,0.0,0.0,1240908.5671984763,0.0,1.68244584930477e-12,-0.0,-4868566.24954212,true,true,0.0,10999.508247969947,0.0,1.2,1189.0,0.0,10999.508247969947,0.0,121.92,0.0 +1190,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,833000.0,6999.999999999999,24386630.988604747,6999.999999999999,19518064.739062667,true,1190,21750.0,0.0,0.0,2511309.40832854,700.0,833000.0,0.0,1270400.8411300608,0.0,-1.8989254613188677e-10,0.0,0.0,0.0,1240908.5671984763,0.0,1.68244584930477e-12,-0.0,-4868566.24954212,true,true,0.0,10999.508247969947,0.0,1.2,1190.0,0.0,10999.508247969947,0.0,121.92,0.0 +1191,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,833700.0,6999.999999999999,24393630.988604747,6999.999999999999,19525064.739062667,true,1191,21750.0,0.0,0.0,2511309.40832854,700.0,833700.0,0.0,1270400.8411300608,0.0,-1.8989254613188677e-10,0.0,0.0,0.0,1240908.5671984763,0.0,1.68244584930477e-12,-0.0,-4868566.24954212,true,true,0.0,10999.508247969947,0.0,1.2,1191.0,0.0,10999.508247969947,0.0,121.92,0.0 +1192,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,834400.0,6999.999999999999,24400630.988604747,6999.999999999999,19532064.739062667,true,1192,21750.0,0.0,0.0,2511309.40832854,700.0,834400.0,0.0,1270400.8411300608,0.0,-1.8989254613188677e-10,0.0,0.0,0.0,1240908.5671984763,0.0,1.68244584930477e-12,-0.0,-4868566.24954212,true,true,0.0,10999.508247969947,0.0,1.2,1192.0,0.0,10999.508247969947,0.0,121.92,0.0 +1193,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,835100.0,6999.999999999999,24407630.988604747,6999.999999999999,19539064.739062667,true,1193,21750.0,0.0,0.0,2511309.40832854,700.0,835100.0,0.0,1270400.8411300608,0.0,-1.8989254613188677e-10,0.0,0.0,0.0,1240908.5671984763,0.0,1.68244584930477e-12,-0.0,-4868566.24954212,true,true,0.0,10999.508247969947,0.0,1.2,1193.0,0.0,10999.508247969947,0.0,121.92,0.0 +1194,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,835800.0,6999.999999999999,24414630.988604747,6999.999999999999,19546064.739062667,true,1194,21750.0,0.0,0.0,2511309.40832854,700.0,835800.0,0.0,1270400.8411300608,0.0,-1.8989254613188677e-10,0.0,0.0,0.0,1240908.5671984763,0.0,1.68244584930477e-12,-0.0,-4868566.24954212,true,true,0.0,10999.508247969947,0.0,1.2,1194.0,0.0,10999.508247969947,0.0,121.92,0.0 +1195,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,836500.0,6999.999999999999,24421630.988604747,6999.999999999999,19553064.739062667,true,1195,21750.0,0.0,0.0,2511309.40832854,700.0,836500.0,0.0,1270400.8411300608,0.0,-1.8989254613188677e-10,0.0,0.0,0.0,1240908.5671984763,0.0,1.68244584930477e-12,-0.0,-4868566.24954212,true,true,0.0,10999.508247969947,0.0,1.2,1195.0,0.0,10999.508247969947,0.0,121.92,0.0 +1196,22450.0,21750.0,0.12,0.0,4868566.24954212,700.0,837200.0,6999.999999999999,24428630.988604747,6999.999999999999,19560064.739062667,true,1196,21750.0,0.0,0.0,2511309.40832854,700.0,837200.0,0.0,1270400.8411300608,0.0,-1.8989254613188677e-10,0.0,0.0,0.0,1240908.5671984763,0.0,1.68244584930477e-12,-0.0,-4868566.24954212,true,true,0.0,10999.508247969947,0.0,1.2,1196.0,0.0,10999.508247969947,0.0,121.92,0.0 +1197,22450.0,21750.0,0.12,11.73896274020982,4868577.988504861,700.0,837900.0,6999.999999999999,24435630.988604747,6988.261037259789,19567053.000099927,true,1197,21750.0,0.0,11.73896274020982,2511321.1472912803,700.0,837900.0,0.00004466218429174583,1270400.841174723,6.5721980305011485,6.572198030311256,0.0,0.0,5.0433597226898055,1240913.610558199,0.12336032483457314,0.12336032483625559,-11.73896274020982,-4868577.988504861,true,true,0.089409451,10999.597657420947,0.0,1.2,1197.0,0.089409451,10999.597657420947,0.0,121.92,0.0 +1198,22461.738962740208,21761.738962740208,0.12,412.8255808097453,4868990.814085671,700.0,838600.0,9273.546506747878,24444904.535111494,8860.720925938132,19575913.721025866,true,1198,21761.738962740208,0.0,412.8255808097453,2511733.97287209,700.0,838600.0,0.02742816354921686,1270400.8686028866,363.11393732608417,369.6861353563954,0.0,0.0,42.86855744543725,1240956.4791156445,6.81565787467468,6.939018199510936,-412.8255808097453,-4868990.814085671,true,true,0.670570879,11000.268228299947,0.0,1.2,1198.0,0.670570879,11000.268228299947,0.0,121.92,0.0 +1199,22862.825580809746,22162.825580809746,0.16,1800.6714121737905,4870791.485497844,700.0,839300.0,15629.19632608619,24460533.73143758,13828.524913912399,19589742.245939776,true,1199,22162.825580809746,0.0,1800.6714121737905,2513534.6442842637,700.0,839300.0,0.6978466192558422,1270401.5664495057,1643.04949218887,2012.7356275452655,0.0,0.0,126.08399244676312,1241082.5631080912,30.840080918901343,37.779099118412276,-1800.6714121737905,-4870791.485497844,true,true,1.564665385,11001.832893684947,0.0,1.2,1199.0,1.564665385,11001.832893684947,0.0,121.92,0.0 +1200,24250.67141217379,23550.67141217379,0.22,5279.419478354338,4876070.904976198,700.0,840000.0,27179.179447065173,24487712.910884645,21899.759968710834,19611642.005908486,true,1200,23550.67141217379,0.0,5279.419478354338,2518814.063762618,700.0,840000.0,5.5827729577931695,1270407.1492224636,4929.148477669211,6941.884105214477,0.0,0.0,252.1679849499337,1241334.7310930411,92.52024277739989,130.29934189581218,-5279.419478354338,-4876070.904976198,true,true,2.905807144,11004.738700828946,0.0,1.2,1200.0,2.905807144,11004.738700828946,0.0,121.92,0.0 +1201,27729.41947835434,27029.41947835434,0.28,9439.063402623353,4885509.968378821,700.0,840700.0,36210.94072365483,24523923.8516083,26771.877321031476,19638413.883229516,true,1201,27029.41947835434,0.0,9439.063402623353,2528253.1271652416,700.0,840700.0,24.17757723595635,1270431.3267996996,8837.963214741707,15779.847319956185,0.0,0.0,411.03381545316194,1241745.7649084942,165.88879519252868,296.18813708834085,-9439.063402623353,-4885509.968378821,true,true,4.381063078,11009.119763906947,0.0,1.2,1201.0,4.381063078,11009.119763906947,0.0,121.92,0.0 +1202,31889.063402623353,31189.063402623353,0.28,8635.539427725063,4894145.507806546,700.0,841400.0,33341.212241875226,24557265.063850176,24705.672814150163,19663119.556043666,true,1202,31189.063402623353,0.0,8635.539427725063,2536888.6665929668,700.0,841400.0,57.83882304214644,1270489.1656227417,7880.065369327518,23659.9126892837,0.0,0.0,549.7262071784459,1242295.4911156727,147.9090281769536,444.09716526529445,-8635.539427725063,-4894145.507806546,true,true,5.364567035,11014.484330941947,0.0,1.2,1202.0,5.364567035,11014.484330941947,0.0,121.92,0.0 +1203,31085.539427725063,30385.539427725063,0.16,4465.273049117987,4898610.780855664,700.0,842100.0,32282.95655698742,24589548.020407163,27817.683507869435,19690937.239551537,true,1203,30385.539427725063,0.0,4465.273049117987,2541353.9396420848,700.0,842100.0,86.1882390279995,1270575.3538617697,3682.073906343327,27341.98659562703,0.0,0.0,627.8982825134893,1242923.3893981862,69.11262123317108,513.2097864984655,-4465.273049117987,-4898610.780855664,true,true,5.766909562,11020.251240503947,0.0,1.2,1203.0,5.766909562,11020.251240503947,0.0,121.92,0.0 +1204,26915.273049117986,26215.273049117986,0.12,1183.6474674580509,4899794.428323122,700.0,842800.0,15697.06222881709,24605245.08263598,14513.41476135904,19705450.654312897,true,1204,26215.273049117986,0.0,1183.6474674580509,2542537.587109543,700.0,842800.0,96.99498012770194,1270672.3488418974,425.5498252314475,27767.536420858476,0.0,0.0,653.1150810141235,1243576.5044792003,7.987581084778076,521.1973675832436,-1183.6474674580509,-4899794.428323122,true,true,5.811614288,11026.062854791948,0.0,1.2,1204.0,5.811614288,11026.062854791948,0.0,121.92,0.0 +1205,23633.64746745805,22933.64746745805,0.12,0.0,4899794.428323122,700.0,843500.0,6999.999999999999,24612245.08263598,6999.999999999999,19712450.654312897,true,1205,22933.64746745805,0.0,-974.849501633953,2541562.737607909,700.0,843500.0,93.66338778596221,1270766.0122296833,-1682.482687869567,26085.05373298891,0.0,0.0,645.5500414582924,1244222.0545206587,-31.58024300864061,489.617124574603,-0.0,-4899794.428323122,true,true,5.632795386,11031.695650177948,0.0,1.2,1205.0,5.632795386,11031.695650177948,0.0,121.92,0.0 +1206,22450.0,21750.0,0.16,1582.327846560242,4901376.756169682,700.0,844200.0,14264.549041001512,24626509.631676983,12682.22119444127,19725132.87550734,true,1206,21750.0,0.0,1582.327846560242,2543145.065454469,700.0,844200.0,91.48525774087341,1270857.4974874242,834.6691459042803,26919.72287889319,0.0,0.0,640.5066817356026,1244862.5612023943,15.666761179485702,505.2838857540887,-1582.327846560242,-4901376.756169682,true,true,5.722204837,11037.417855014948,0.0,1.2,1206.0,5.722204837,11037.417855014948,0.0,121.92,0.0 +1207,24032.32784656024,23332.32784656024,0.16,2050.7222606949285,4903427.478430377,700.0,844900.0,17192.014129343304,24643701.645806327,15141.291868648375,19740274.16737599,true,1207,23332.32784656024,0.0,2050.7222606949285,2545195.787715164,700.0,844900.0,96.99498012770194,1270954.492467552,1276.6494566561166,28196.372335549306,0.0,0.0,653.1150810141235,1245515.6762834084,23.962742896986367,529.2466286510751,-2050.7222606949285,-4903427.478430377,true,true,5.856319013,11043.274174027949,0.0,1.2,1207.0,5.856319013,11043.274174027949,0.0,121.92,0.0 +1208,24500.72226069493,23800.72226069493,0.12,761.0847737021344,4904188.56320408,700.0,845600.0,12175.706447517789,24655877.352253847,11414.621673815655,19751688.789049804,true,1208,23800.72226069493,0.0,761.0847737021344,2545956.872488866,700.0,845600.0,100.40465313217997,1271054.8971206842,0.0,28196.372335549306,0.0,0.0,660.6801205699544,1246176.3564039783,0.0,529.2466286510751,-761.0847737021344,-4904188.56320408,true,true,5.856319013,11049.13049304095,0.0,1.2,1208.0,5.856319013,11049.13049304095,0.0,121.92,0.0 +1209,23211.084773702136,22511.084773702136,0.22,4877.103112357106,4909065.666316437,700.0,846300.0,25350.468692532297,24681227.82094638,20473.365580175192,19772162.15462998,true,1209,22511.084773702136,0.0,4877.103112357106,2550833.9756012233,700.0,846300.0,111.11120021426188,1271166.0083208985,4007.3977154687386,32203.770051018044,0.0,0.0,683.3752392374473,1246859.7316432158,75.21895743665766,604.4655860877327,-4877.103112357106,-4909065.666316437,true,true,6.258661541,11055.38915458195,0.0,1.2,1209.0,6.258661541,11055.38915458195,0.0,121.92,0.0 +1210,27327.103112357105,26627.103112357105,0.28,8294.179953943294,4917359.84627038,700.0,847000.0,32122.07126408319,24713349.892210465,23827.891310139898,19795990.04594012,true,1210,26627.103112357105,0.0,8294.179953943294,2559128.155555167,700.0,847000.0,143.3230409269969,1271309.3313618256,7270.493999389044,39474.26405040709,0.0,0.0,743.8955556276877,1247603.6271988435,136.46735799956664,740.9329440872993,-8294.179953943294,-4917359.84627038,true,true,6.92923242,11062.31838700195,0.0,1.2,1210.0,6.92923242,11062.31838700195,0.0,121.92,0.0 +1211,30744.179953943294,30044.179953943294,0.28,9171.403743505842,4926531.250013885,700.0,847700.0,35255.01336966372,24748604.90558013,26083.60962615788,19822073.65556628,true,1211,30044.179953943294,0.0,9171.403743505842,2568299.5592986727,700.0,847700.0,191.64612793185066,1271500.9774897574,8009.866270102224,47484.13032050931,0.0,0.0,819.5459510731826,1248423.1731499168,150.34539439858528,891.2783384858847,-9171.403743505842,-4926531.250013885,true,true,7.599803299,11069.918190300948,0.0,1.2,1211.0,7.599803299,11069.918190300948,0.0,121.92,0.0 +1212,31621.40374350584,30921.40374350584,0.28,10684.076679107708,4937215.326692993,700.0,848400.0,40657.41671109895,24789262.32229123,29973.340031991243,19852046.99559827,true,1212,30921.40374350584,0.0,10684.076679107708,2578983.6359777804,700.0,848400.0,251.88363962268414,1271752.86112938,9358.809912076973,56842.94023258629,0.0,0.0,897.7180264082261,1249320.891176325,175.6651009998257,1066.9434394857103,-10684.076679107708,-4937215.326692993,true,true,8.315078904,11078.233269204948,0.0,1.2,1212.0,8.315078904,11078.233269204948,0.0,121.92,0.0 +1213,33134.076679107704,32434.076679107704,0.28,8331.550870561307,4945546.877563554,700.0,849100.0,32255.538823433235,24821517.861114662,23923.98795287193,19875970.983551145,true,1213,32434.076679107704,0.0,8331.550870561307,2587315.186848342,700.0,849100.0,313.6507194575446,1272066.5118488376,6922.167507888866,63765.107740475156,0.0,0.0,965.8033823542975,1250286.6945586794,129.92926086059876,1196.872700346309,-8331.550870561307,-4945546.877563554,true,true,8.806830882,11087.040100086948,0.0,1.2,1213.0,8.806830882,11087.040100086948,0.0,121.92,0.0 +1214,30781.550870561307,30081.550870561307,0.28,10259.259201924342,4955806.136765478,700.0,849800.0,39140.21143544408,24860658.072550107,28880.952233519736,19904851.935784664,true,1214,30081.550870561307,0.0,10259.259201924342,2597574.4460502663,700.0,849800.0,376.3857683761287,1272442.8976172137,8693.37486659746,72458.48260707261,0.0,0.0,1026.3236987445378,1251313.018257424,163.17486820621585,1360.047568552525,-10259.259201924342,-4955806.136765478,true,true,9.387992311,11096.428092397948,0.0,1.2,1214.0,9.387992311,11096.428092397948,0.0,121.92,0.0 +1215,32709.259201924342,32009.259201924342,0.22,5057.294326990491,4960863.431092469,700.0,850500.0,26169.519668138593,24886827.592218246,21112.225341148103,19925964.161125813,true,1215,32009.259201924342,0.0,5057.294326990491,2602631.7403772566,700.0,850500.0,428.56505532117353,1272871.4626725349,3491.4801638263343,75949.96277089894,0.0,0.0,1071.7139360231163,1252384.7321934472,65.53517181986707,1425.5827403723922,-5057.294326990491,-4960863.431092469,true,true,9.611515937,11106.039608334948,0.0,1.2,1215.0,9.611515937,11106.039608334948,0.0,121.92,0.0 +1216,27507.29432699049,26807.29432699049,0.16,3719.4947210349114,4964582.925813504,700.0,851200.0,27621.842006468192,24914449.434224714,23902.34728543328,19949866.508411247,true,1216,26807.29432699049,0.0,3719.4947210349114,2606351.2350982917,700.0,851200.0,453.2247887231973,1273324.6874612581,2134.321292359348,78084.2840632583,0.0,0.0,1091.8873748010606,1253476.6195682483,40.06126515130583,1465.644005523698,-3719.4947210349114,-4964582.925813504,true,true,9.745630113,11115.785238447948,0.0,1.2,1216.0,9.745630113,11115.785238447948,0.0,121.92,0.0 +1217,26169.494721034913,25469.494721034913,0.16,1562.1629986940632,4966145.088812198,700.0,851900.0,14138.518741837896,24928587.952966552,12576.355743143833,19962442.86415439,true,1217,25469.494721034913,0.0,1562.1629986940632,2607913.3980969856,700.0,851900.0,462.7105843371715,1273787.3980455953,0.0,78084.2840632583,0.0,0.0,1099.4524143568917,1254576.0719826051,0.0,1465.644005523698,-1562.1629986940632,-4966145.088812198,true,true,9.745630113,11125.530868560949,0.0,1.2,1217.0,9.745630113,11125.530868560949,0.0,121.92,0.0 +1218,24012.162998694064,23312.162998694064,0.12,0.0,4966145.088812198,700.0,852600.0,6999.999999999999,24935587.952966552,6999.999999999999,19969442.86415439,true,1218,23312.162998694064,0.0,-629.2703939863958,2607284.1277029994,700.0,852600.0,453.2247887231973,1274240.6228343186,-2134.321292359348,75949.96277089894,0.0,0.0,1091.8873748010606,1255667.9593574062,-40.06126515130583,1425.5827403723922,-0.0,-4966145.088812198,true,true,9.611515937,11135.142384497949,0.0,1.2,1218.0,9.611515937,11135.142384497949,0.0,121.92,0.0 +1219,22450.0,21750.0,0.12,0.0,4966145.088812198,700.0,853300.0,6999.999999999999,24942587.952966552,6999.999999999999,19976442.86415439,true,1219,21750.0,0.0,-632.851347168239,2606651.276355831,700.0,853300.0,434.643902278672,1274675.2667365973,-2104.7464014426205,73845.21636945632,0.0,0.0,1076.7572956893987,1256744.7166530956,-39.50614369368908,1386.076596678703,-0.0,-4966145.088812198,true,true,9.477401761,11144.619786258949,0.0,1.2,1219.0,9.477401761,11144.619786258949,0.0,121.92,0.0 +1220,22450.0,21750.0,0.16,3655.6537431043803,4969800.742555302,700.0,854000.0,27222.835894402375,24969810.788860954,23567.182151297995,20000010.04630569,true,1220,21750.0,0.0,3655.6537431043803,2610306.9300989355,700.0,854000.0,434.643902278672,1275109.910638876,2104.7464014426205,75949.96277089894,0.0,0.0,1076.7572956893987,1257821.4739487849,39.50614369368908,1425.5827403723922,-3655.6537431043803,-4969800.742555302,true,true,9.611515937,11154.231302195949,0.0,1.2,1220.0,9.611515937,11154.231302195949,0.0,121.92,0.0 +1221,26105.65374310438,25405.65374310438,0.16,3719.4947210349114,4973520.237276336,700.0,854700.0,27621.842006468192,24997432.63086742,23902.34728543328,20023912.393591125,true,1221,25405.65374310438,0.0,3719.4947210349114,2614026.4248199705,700.0,854700.0,453.2247887231973,1275563.1354275993,2134.321292359348,78084.2840632583,0.0,0.0,1091.8873748010606,1258913.361323586,40.06126515130583,1465.644005523698,-3719.4947210349114,-4973520.237276336,true,true,9.745630113,11163.97693230895,0.0,1.2,1221.0,9.745630113,11163.97693230895,0.0,121.92,0.0 +1222,26169.494721034913,25469.494721034913,0.16,3039.9304619550244,4976560.167738291,700.0,855400.0,23374.565387218903,25020807.19625464,20334.63492526388,20044247.02851639,true,1222,25469.494721034913,0.0,3039.9304619550244,2617066.3552819258,700.0,855400.0,469.1074149464769,1276032.2428425457,1439.3113619171293,79523.59542517543,0.0,0.0,1104.4957740795815,1260017.8570976655,27.0159110118367,1492.6599165355349,-3039.9304619550244,-4976560.167738291,true,true,9.835039564,11173.81197187295,0.0,1.2,1222.0,9.835039564,11173.81197187295,0.0,121.92,0.0 +1223,25489.930461955024,24789.930461955024,0.12,844.5077404172398,4977404.675478709,700.0,856100.0,12870.897836810333,25033678.094091453,12026.390096393094,20056273.418612782,true,1223,24789.930461955024,0.0,844.5077404172398,2617910.863022343,700.0,856100.0,472.32782075791573,1276504.5706633036,-721.2987385151914,78802.29668666024,0.0,0.0,1107.0174539127224,1261124.8745515782,-13.53879573820693,1479.1211207973279,-844.5077404172398,-4977404.675478709,true,true,9.790334838,11183.60230671095,0.0,1.2,1223.0,9.790334838,11183.60230671095,0.0,121.92,0.0 +1224,23294.50774041724,22594.50774041724,0.12,102.53130044568394,4977507.206779155,700.0,856800.0,6999.999999999999,25040678.094091453,6897.468699554315,20063170.887312338,true,1224,22594.50774041724,0.0,102.53130044568394,2618013.3943227883,700.0,856800.0,462.7105843371715,1276967.2812476407,-1432.7391478621566,77369.55753879808,0.0,0.0,1099.4524143568917,1262224.326965935,-26.892550386222545,1452.2285704111052,-102.53130044568394,-4977507.206779155,true,true,9.700925388,11193.303232098951,0.0,1.2,1224.0,9.700925388,11193.303232098951,0.0,121.92,0.0 +1225,22552.531300445684,21852.531300445684,0.12,93.21700665578356,4977600.42378581,700.0,857500.0,6999.999999999999,25047678.094091453,6906.782993344215,20070077.67030568,true,1225,21852.531300445684,0.0,93.21700665578356,2618106.611329444,700.0,857500.0,450.09190962570625,1277417.3731572665,-1419.5947678991292,75949.96277089894,0.0,0.0,1089.3656949679196,1263313.692660903,-26.645830038713054,1425.5827403723922,-93.21700665578356,-4977600.42378581,true,true,9.611515937,11202.914748035952,0.0,1.2,1225.0,9.611515937,11202.914748035952,0.0,121.92,0.0 +1226,22543.217006655785,21843.217006655785,0.16,1528.191864752001,4979128.615650563,700.0,858200.0,13926.199154700007,25061604.293246154,12398.007289948006,20082475.67759563,true,1226,21843.217006655785,0.0,1528.191864752001,2619634.8031941964,700.0,858200.0,443.86952950677136,1277861.2426867732,0.0,75949.96277089894,0.0,0.0,1084.3223352452296,1264398.0149961484,0.0,1425.5827403723922,-1528.191864752001,-4979128.615650563,true,true,9.611515937,11212.526263972952,0.0,1.2,1226.0,9.611515937,11212.526263972952,0.0,121.92,0.0 +1227,23978.191864752,23278.191864752,0.12,804.4819947841554,4979933.097645347,700.0,858900.0,12537.349956534628,25074141.64320269,11732.867961750473,20094208.54555738,true,1227,23278.191864752,0.0,804.4819947841554,2620439.2851889804,700.0,858900.0,440.77996156164664,1278302.0226483347,-704.8682275614793,75245.09454333746,0.0,0.0,1081.8006554120884,1265479.8156515604,-13.230394628100415,1412.3523457442918,-804.4819947841554,-4979933.097645347,true,true,9.566811212,11222.093075184952,0.0,1.2,1227.0,9.566811212,11222.093075184952,0.0,121.92,0.0 +1228,23254.481994784157,22554.481994784157,0.12,0.0,4979933.097645347,700.0,859600.0,6999.999999999999,25081141.64320269,6999.999999999999,20101208.54555738,true,1228,22554.481994784157,0.0,-7585.117487667903,2612854.1677013123,700.0,859600.0,399.019625129627,1278701.0422734644,-8864.252013699832,66380.84252963762,0.0,0.0,1046.497137522482,1266526.312789083,-166.3822366201811,1245.9701091241106,-0.0,-4979933.097645347,true,true,8.985649783,11231.078724967952,0.0,1.2,1228.0,8.985649783,11231.078724967952,0.0,121.92,0.0 +1229,22450.0,21750.0,0.12,0.0,4979933.097645347,700.0,860300.0,6999.999999999999,25088141.64320269,6999.999999999999,20108208.54555738,true,1229,21750.0,0.0,-2631.8910319023767,2610222.27666941,700.0,860300.0,346.68537711377,1279047.7276505781,-3903.885597039641,62476.95693259798,0.0,0.0,998.585220354355,1267524.8980094374,-73.27603233086057,1172.6940767932501,-0.0,-4979933.097645347,true,true,8.717421431,11239.796146398952,0.0,1.2,1229.0,8.717421431,11239.796146398952,0.0,121.92,0.0 +1230,22450.0,21750.0,0.12,0.0,4979933.097645347,700.0,861000.0,6999.999999999999,25095141.64320269,6999.999999999999,20115208.54555738,true,1230,21750.0,0.0,-643.914792969384,2609578.3618764407,700.0,861000.0,323.58088703288024,1279371.308537611,-1907.5804480314348,60569.37648456655,0.0,0.0,975.8901017432696,1268500.7881111805,-35.805333714099106,1136.888743079151,-0.0,-4979933.097645347,true,true,8.583307256,11248.379453654952,0.0,1.2,1230.0,8.583307256,11248.379453654952,0.0,121.92,0.0 +1231,22450.0,21750.0,0.16,3902.3841500678964,4983835.481795415,700.0,861700.0,28764.90093792435,25123906.544140615,24862.516787856453,20140071.062345237,true,1231,21750.0,0.0,3902.3841500678964,2613480.7460265085,700.0,861700.0,326.095753224382,1279697.4042908354,2550.012809666063,63119.38929423261,0.0,0.0,978.4117816328184,1269479.1998928133,47.86380554463323,1184.7525486237842,-3902.3841500678964,-4983835.481795415,true,true,8.762126157,11257.141579811952,0.0,1.2,1231.0,8.762126157,11257.141579811952,0.0,121.92,0.0 +1232,26352.384150067897,25652.384150067897,0.16,2654.0258887990167,4986489.507684214,700.0,862400.0,20962.661804993855,25144869.205945607,18308.63591619484,20158379.698261432,true,1232,25652.384150067897,0.0,2654.0258887990167,2616134.7719153077,700.0,862400.0,341.4590530780151,1280038.8633439133,1294.7229914268405,64414.11228565945,0.0,0.0,993.5418606880728,1270472.7417535014,24.30198360608816,1209.0545322298724,-2654.0258887990167,-4986489.507684214,true,true,8.851535607,11265.993115418953,0.0,1.2,1232.0,8.851535607,11265.993115418953,0.0,121.92,0.0 +1233,25104.025888799017,24404.025888799017,0.16,2688.009446380758,4989177.517130595,700.0,863100.0,21175.05903987974,25166044.264985487,18487.04959349898,20176866.747854933,true,1233,24404.025888799017,0.0,2688.009446380758,2618822.7813616884,700.0,863100.0,351.9647598823701,1280390.8281037956,1307.8674018951594,65721.97968755462,0.0,0.0,1003.628580077045,1271476.3703335784,24.54870452618335,1233.6032367560558,-2688.009446380758,-4989177.517130595,true,true,8.940945058,11274.934060476953,0.0,1.2,1233.0,8.940945058,11274.934060476953,0.0,121.92,0.0 +1234,25138.009446380758,24438.009446380758,0.12,0.0,4989177.517130595,700.0,863800.0,6999.999999999999,25173044.264985487,6999.999999999999,20183866.747854933,true,1234,24438.009446380758,0.0,-1965.8027748881955,2616856.9785868004,700.0,863800.0,344.06559951002384,1280734.8937033056,-3245.022754956628,62476.95693259799,0.0,0.0,996.0635405212141,1272472.4338740997,-60.90915996280563,1172.6940767932501,-0.0,-4989177.517130595,true,true,8.717421431,11283.651481907953,0.0,1.2,1234.0,8.717421431,11283.651481907953,0.0,121.92,0.0 +1235,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,864500.0,6999.999999999999,25180044.264985487,6999.999999999999,20190866.747854933,true,1235,21750.0,0.0,-11170.977086776105,2605686.0015000245,700.0,864500.0,282.78419861571064,1281017.6779019213,-12158.566231098117,50318.39070149987,0.0,0.0,933.0215442978323,1273405.4554183977,-228.2165985915319,944.4774782017182,-0.0,-4989177.517130595,true,true,7.823326926,11291.474808833953,0.0,1.2,1235.0,7.823326926,11291.474808833953,0.0,121.92,0.0 +1236,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,865200.0,6999.999999999999,25187044.264985487,6999.999999999999,20197866.747854933,true,1236,21750.0,0.0,-10014.888723059048,2595671.1127769654,700.0,865200.0,200.62811179645269,1281218.3060137178,-10844.126651092785,39474.26405040709,0.0,0.0,832.1543503517034,1274237.6097687494,-203.5445341144187,740.9329440872996,-0.0,-4989177.517130595,true,true,6.92923242,11298.404041253953,0.0,1.2,1236.0,6.92923242,11298.404041253953,0.0,121.92,0.0 +1237,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,865900.0,6999.999999999999,25194044.264985487,6999.999999999999,20204866.747854933,true,1237,21750.0,0.0,-11078.548139868388,2584592.564637097,700.0,865900.0,129.2363090572244,1281347.542322775,-11706.727629548612,27767.536420858476,0.0,0.0,718.6787571270536,1274956.2885258766,-219.73557650405576,521.1973675832438,-0.0,-4989177.517130595,true,true,5.811614288,11304.215655541953,0.0,1.2,1237.0,5.811614288,11304.215655541953,0.0,121.92,0.0 +1238,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,866600.0,6999.999999999999,25201044.264985487,6999.999999999999,20211866.747854933,true,1238,21750.0,0.0,-10901.926093379008,2573690.638543718,700.0,866600.0,67.92559858341507,1281415.4679213585,-11337.041498969964,16430.494921888512,0.0,0.0,579.9863654017697,1275536.2748912785,-212.7965583942284,308.4008091890154,-0.0,-4989177.517130595,true,true,4.470472529,11308.686128070953,0.0,1.2,1238.0,4.470472529,11308.686128070953,0.0,121.92,0.0 +1239,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,867300.0,6999.999999999999,25208044.264985487,6999.999999999999,20218866.747854933,true,1239,21750.0,0.0,-5539.541359600141,2568151.097184118,700.0,867300.0,32.55873188742208,1281448.026653246,-5914.978173056042,10515.51674883247,0.0,0.0,453.90237289859914,1275990.177264177,-111.0242913301204,197.37651785889497,-0.0,-4989177.517130595,true,true,3.576378023,11312.262506093954,0.0,1.2,1239.0,3.576378023,11312.262506093954,0.0,121.92,0.0 +1240,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,868000.0,6999.999999999999,25215044.264985487,6999.999999999999,20225866.747854933,true,1240,21750.0,0.0,-4318.53649741301,2563832.5606867047,700.0,868000.0,15.319128991778651,1281463.3457822378,-4600.53857871689,5914.97817011558,0.0,0.0,353.0351788960627,1276343.212443073,-86.35222658396157,111.0242912749334,-0.0,-4989177.517130595,true,true,2.682283517,11314.944789610954,0.0,1.2,1240.0,2.682283517,11314.944789610954,0.0,121.92,0.0 +1241,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,868700.0,6999.999999999999,25222044.264985487,6999.999999999999,20232866.747854933,true,1241,21750.0,0.0,-3090.0283853123574,2560742.5323013924,700.0,868700.0,5.5827729577931695,1281468.9285551957,-3286.0989814374707,2628.879188678109,0.0,0.0,252.1679849499337,1276595.380428023,-61.68016178261377,49.34412949231963,-0.0,-4989177.517130595,true,true,1.788189012,11316.732978622955,0.0,1.2,1241.0,1.788189012,11316.732978622955,0.0,121.92,0.0 +1242,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,869400.0,6999.999999999999,25229044.264985487,6999.999999999999,20239866.747854933,true,1242,21750.0,0.0,-1466.5999761966116,2559275.932325196,700.0,869400.0,1.5331690237713784,1281470.4617242194,-1601.9732565196732,1026.905932158436,0.0,0.0,163.909190225918,1276759.2896182488,-30.069078926627657,19.275050565691974,-0.0,-4989177.517130595,true,true,1.117618132,11317.850596754955,0.0,1.2,1242.0,1.117618132,11317.850596754955,0.0,121.92,0.0 +1243,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,870100.0,6999.999999999999,25236044.264985487,6999.999999999999,20246866.747854933,true,1243,21750.0,0.0,-883.2837021854039,2558392.6486230106,700.0,870100.0,0.1829363041735489,1281470.6446605236,-946.3965070568084,80.50942510162747,0.0,0.0,80.6937551681847,1276839.983373417,-17.763886600953644,1.51116396473833,-0.0,-4989177.517130595,true,true,0.312933077,11318.163529831956,0.0,1.2,1243.0,0.312933077,11318.163529831956,0.0,121.92,0.0 +1244,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,870800.0,6999.999999999999,25243044.264985487,6999.999999999999,20253866.747854933,true,1244,21750.0,0.0,-64.36691523062754,2558328.28170778,700.0,870800.0,0.0019148911239723313,1281470.6465754148,-80.50942510181822,-1.907523028421565e-10,0.0,0.0,17.651758944803134,1276857.635132362,-1.511163964736424,1.9060308886764687e-12,-0.0,-4989177.517130595,true,true,0.0,11318.163529831956,0.0,1.2,1244.0,0.0,11318.163529831956,0.0,121.92,0.0 +1245,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,871500.0,6999.999999999999,25250044.264985487,6999.999999999999,20260866.747854933,true,1245,21750.0,0.0,0.0,2558328.28170778,700.0,871500.0,0.0,1281470.6465754148,0.0,-1.907523028421565e-10,0.0,0.0,0.0,1276857.635132362,0.0,1.9060308886764687e-12,-0.0,-4989177.517130595,true,true,0.0,11318.163529831956,0.0,1.2,1245.0,0.0,11318.163529831956,0.0,121.92,0.0 +1246,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,872200.0,6999.999999999999,25257044.264985487,6999.999999999999,20267866.747854933,true,1246,21750.0,0.0,0.0,2558328.28170778,700.0,872200.0,0.0,1281470.6465754148,0.0,-1.907523028421565e-10,0.0,0.0,0.0,1276857.635132362,0.0,1.9060308886764687e-12,-0.0,-4989177.517130595,true,true,0.0,11318.163529831956,0.0,1.2,1246.0,0.0,11318.163529831956,0.0,121.92,0.0 +1247,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,872900.0,6999.999999999999,25264044.264985487,6999.999999999999,20274866.747854933,true,1247,21750.0,0.0,0.0,2558328.28170778,700.0,872900.0,0.0,1281470.6465754148,0.0,-1.907523028421565e-10,0.0,0.0,0.0,1276857.635132362,0.0,1.9060308886764687e-12,-0.0,-4989177.517130595,true,true,0.0,11318.163529831956,0.0,1.2,1247.0,0.0,11318.163529831956,0.0,121.92,0.0 +1248,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,873600.0,6999.999999999999,25271044.264985487,6999.999999999999,20281866.747854933,true,1248,21750.0,0.0,0.0,2558328.28170778,700.0,873600.0,0.0,1281470.6465754148,0.0,-1.907523028421565e-10,0.0,0.0,0.0,1276857.635132362,0.0,1.9060308886764687e-12,-0.0,-4989177.517130595,true,true,0.0,11318.163529831956,0.0,1.2,1248.0,0.0,11318.163529831956,0.0,121.92,0.0 +1249,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,874300.0,6999.999999999999,25278044.264985487,6999.999999999999,20288866.747854933,true,1249,21750.0,0.0,0.0,2558328.28170778,700.0,874300.0,0.0,1281470.6465754148,0.0,-1.907523028421565e-10,0.0,0.0,0.0,1276857.635132362,0.0,1.9060308886764687e-12,-0.0,-4989177.517130595,true,true,0.0,11318.163529831956,0.0,1.2,1249.0,0.0,11318.163529831956,0.0,121.92,0.0 +1250,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,875000.0,6999.999999999999,25285044.264985487,6999.999999999999,20295866.747854933,true,1250,21750.0,0.0,0.0,2558328.28170778,700.0,875000.0,0.0,1281470.6465754148,0.0,-1.907523028421565e-10,0.0,0.0,0.0,1276857.635132362,0.0,1.9060308886764687e-12,-0.0,-4989177.517130595,true,true,0.0,11318.163529831956,0.0,1.2,1250.0,0.0,11318.163529831956,0.0,121.92,0.0 +1251,22450.0,21750.0,0.12,0.0,4989177.517130595,700.0,875700.0,6999.999999999999,25292044.264985487,6999.999999999999,20302866.747854933,true,1251,21750.0,0.0,0.0,2558328.28170778,700.0,875700.0,0.0,1281470.6465754148,0.0,-1.907523028421565e-10,0.0,0.0,0.0,1276857.635132362,0.0,1.9060308886764687e-12,-0.0,-4989177.517130595,true,true,0.0,11318.163529831956,0.0,1.2,1251.0,0.0,11318.163529831956,0.0,121.92,0.0 +1252,22450.0,21750.0,0.12,192.61133865925922,4989370.128469254,700.0,876400.0,7438.427822160494,25299482.69280765,7245.816483501234,20310112.564338434,true,1252,21750.0,0.0,192.61133865925922,2558520.893046439,700.0,876400.0,0.005582772961539599,1281470.6521581877,164.30494929239373,164.304949292203,0.0,0.0,25.216798500634113,1276882.8519308625,3.084008093269858,3.084008093271764,-192.61133865925922,-4989370.128469254,true,true,0.447047253,11318.610577084955,0.0,1.2,1252.0,0.447047253,11318.610577084955,0.0,121.92,0.0 +1253,22642.61133865926,21942.61133865926,0.12,50.47825918496054,4989420.606728439,700.0,877100.0,6999.999999999999,25306482.69280765,6949.521740815038,20317062.08607925,true,1253,21942.61133865926,0.0,50.47825918496054,2558571.371305624,700.0,877100.0,0.044662183692316795,1281470.6968203713,0.0,164.304949292203,0.0,0.0,50.433597001268225,1276933.2855278638,0.0,3.084008093271764,-50.47825918496054,-4989420.606728439,true,true,0.447047253,11319.057624337955,0.0,1.2,1253.0,0.447047253,11319.057624337955,0.0,121.92,0.0 +1254,22500.47825918496,21800.47825918496,0.12,50.47825918496054,4989471.084987625,700.0,877800.0,6999.999999999999,25313482.69280765,6949.521740815038,20324011.607820068,true,1254,21800.47825918496,0.0,50.47825918496054,2558621.849564809,700.0,877800.0,0.044662183692316795,1281470.741482555,0.0,164.304949292203,0.0,0.0,50.433597001268225,1276983.719124865,0.0,3.084008093271764,-50.47825918496054,-4989471.084987625,true,true,0.447047253,11319.504671590954,0.0,1.2,1254.0,0.447047253,11319.504671590954,0.0,121.92,0.0 +1255,22500.47825918496,21800.47825918496,0.12,50.47825918496054,4989521.56324681,700.0,878500.0,6999.999999999999,25320482.69280765,6949.521740815038,20330961.129560884,true,1255,21800.47825918496,0.0,50.47825918496054,2558672.3278239937,700.0,878500.0,0.044662183692316795,1281470.7861447386,0.0,164.304949292203,0.0,0.0,50.433597001268225,1277034.1527218663,0.0,3.084008093271764,-50.47825918496054,-4989521.56324681,true,true,0.447047253,11319.951718843953,0.0,1.2,1255.0,0.447047253,11319.951718843953,0.0,121.92,0.0 +1256,22500.47825918496,21800.47825918496,0.12,50.47825918496054,4989572.041505995,700.0,879200.0,6999.999999999999,25327482.69280765,6949.521740815038,20337910.6513017,true,1256,21800.47825918496,0.0,50.47825918496054,2558722.8060831786,700.0,879200.0,0.044662183692316795,1281470.8308069222,0.0,164.304949292203,0.0,0.0,50.433597001268225,1277084.5863188675,0.0,3.084008093271764,-50.47825918496054,-4989572.041505995,true,true,0.447047253,11320.398766096952,0.0,1.2,1256.0,0.447047253,11320.398766096952,0.0,121.92,0.0 +1257,22500.47825918496,21800.47825918496,0.12,326.7885726918248,4989898.830078687,700.0,879900.0,8556.571439098541,25336039.264246747,8229.782866406716,20346140.434168108,true,1257,21800.47825918496,0.0,326.7885726918248,2559049.5946558705,700.0,879900.0,0.09812281762267175,1281470.9289297399,256.3157211313559,420.62067042355886,0.0,0.0,65.56367611293018,1277150.1499949805,4.8110526299160945,7.895060723187859,-326.7885726918248,-4989898.830078687,true,true,0.715275605,11321.114041701952,0.0,1.2,1257.0,0.715275605,11321.114041701952,0.0,121.92,0.0 +1258,22776.788572691825,22076.788572691825,0.12,1194.5255632273784,4991093.355641914,700.0,880600.0,15787.71302689482,25351826.977273643,14593.187463667442,20360733.621631775,true,1258,22076.788572691825,0.0,1194.5255632273784,2560244.120219098,700.0,880600.0,0.5434047891429675,1281471.472334529,1058.1238732077943,1478.7445436313533,0.0,0.0,115.99727311419842,1277266.1472680948,19.861012116242772,27.75607283943063,-1194.5255632273784,-4991093.355641914,true,true,1.341141759,11322.455183460952,0.0,1.2,1258.0,1.341141759,11322.455183460952,0.0,121.92,0.0 +1259,23644.525563227377,22944.525563227377,0.16,1350.1551823298917,4992443.510824244,700.0,881300.0,12813.46988956182,25364640.447163206,11463.314707231928,20372196.936339006,true,1259,22944.525563227377,0.0,1350.1551823298917,2561594.275401428,700.0,881300.0,1.9148911258080827,1281473.387225655,1150.1346450467558,2628.879188678109,0.0,0.0,176.5175895044388,1277442.6648575992,21.588056652889,49.34412949231963,-1350.1551823298917,-4992443.510824244,true,true,1.788189012,11324.243372472953,0.0,1.2,1259.0,1.788189012,11324.243372472953,0.0,121.92,0.0 +1260,23800.15518232989,23100.15518232989,0.16,1737.5216406618765,4994181.032464906,700.0,882000.0,15234.510254136729,25379874.957417343,13496.988613474852,20385693.92495248,true,1260,23100.15518232989,0.0,1737.5216406618765,2563331.79704209,700.0,882000.0,4.06984148592776,1281477.4570671408,1478.7445399562066,4107.623728634316,0.0,0.0,226.95118644929957,1277669.6160440485,27.756072770442543,77.10020226276217,-1737.5216406618765,-4994181.032464906,true,true,2.235236264,11326.478608736952,0.0,1.2,1260.0,2.235236264,11326.478608736952,0.0,121.92,0.0 +1261,24187.52164066188,23487.52164066188,0.16,2751.948972792447,4996932.981437698,700.0,882700.0,21574.681079952792,25401449.638497297,18822.732107160344,20404516.65705964,true,1261,23487.52164066188,0.0,2751.948972792447,2566083.7460148823,700.0,882700.0,8.055366348797348,1281485.5124334896,2413.6397046127686,6521.263433247084,0.0,0.0,284.9498229499913,1277954.5658669984,45.30407888089005,122.40428114365221,-2751.948972792447,-4996932.981437698,true,true,2.816397693,11329.295006429953,0.0,1.2,1261.0,2.816397693,11329.295006429953,0.0,121.92,0.0 +1262,25201.94897279245,24501.94897279245,0.16,4446.1509545115105,5001379.13239221,700.0,883400.0,32163.44346569694,25433613.081962995,27717.292511185427,20432233.949570823,true,1262,24501.94897279245,0.0,4446.1509545115105,2570529.896969394,700.0,883400.0,16.325183758988782,1281501.8376172485,3994.2533155853857,10515.51674883247,0.0,0.0,360.6002184518937,1278315.1660854502,74.97223671524274,197.37651785889494,-4446.1509545115105,-5001379.13239221,true,true,3.576378023,11332.871384452954,0.0,1.2,1262.0,3.576378023,11332.871384452954,0.0,121.92,0.0 +1263,26896.15095451151,26196.15095451151,0.22,6512.463569172183,5007891.595961382,700.0,884100.0,32783.925314419015,25466397.007277414,26271.46174524683,20458505.41131607,true,1263,26196.15095451151,0.0,6512.463569172183,2577042.360538566,700.0,884100.0,32.55873188742208,1281534.396349136,5914.978173056042,16430.494921888512,0.0,0.0,453.90237289859914,1278769.0684583487,111.0242913301204,308.4008091890154,-6512.463569172183,-5007891.595961382,true,true,4.470472529,11337.341856981953,0.0,1.2,1263.0,4.470472529,11337.341856981953,0.0,121.92,0.0 +1264,28962.463569172185,28262.463569172185,0.16,2280.7774648899804,5010172.373426272,700.0,884800.0,18629.859155562375,25485026.866432976,16349.081690672396,20474854.493006743,true,1264,28262.463569172185,0.0,2280.7774648899804,2579323.138003456,700.0,884800.0,48.09628687092289,1281582.492636007,1684.1257260203947,18114.62064790891,0.0,0.0,516.9443691219807,1279286.0128274707,31.611082876681838,340.0118920656972,-2280.7774648899804,-5010172.373426272,true,true,4.693996155,11342.035853136953,0.0,1.2,1264.0,4.693996155,11342.035853136953,0.0,121.92,0.0 +1265,24730.77746488998,24030.77746488998,0.12,0.0,5010172.373426272,700.0,885500.0,6999.999999999999,25492026.866432976,6999.999999999999,20481854.493006743,true,1265,24030.77746488998,0.0,-2798.780993099158,2576524.3570103566,700.0,885500.0,44.662183647359626,1281627.1548196543,-3286.098984745276,14828.521663163632,0.0,0.0,504.3359698434599,1279790.348797314,-61.680161844701246,278.33173022099595,-0.0,-5010172.373426272,true,true,4.246948902,11346.282802038953,0.0,1.2,1265.0,4.246948902,11346.282802038953,0.0,121.92,0.0 +1266,22450.0,21750.0,0.12,0.0,5010172.373426272,700.0,886200.0,6999.999999999999,25499026.866432976,6999.999999999999,20488854.493006743,true,1266,21750.0,0.0,-2526.5401206672746,2573997.8168896893,700.0,886200.0,32.558731887422056,1281659.7135515418,-2957.489079912411,11871.03258325122,0.0,0.0,453.9023728985991,1280244.2511702126,-55.51214554088505,222.8195846801109,-0.0,-5010172.373426272,true,true,3.79990165,11350.082703688953,0.0,1.2,1266.0,3.79990165,11350.082703688953,0.0,121.92,0.0 +1267,22450.0,21750.0,0.12,0.0,5010172.373426272,700.0,886900.0,6999.999999999999,25506026.866432976,6999.999999999999,20495854.493006743,true,1267,21750.0,0.0,-1996.1770577867253,2572001.6398319025,700.0,886900.0,23.29848031508248,1281683.012031857,-2380.778716591958,9490.253866659263,0.0,0.0,405.9904557868795,1280650.2416259996,-44.68727729672922,178.13230738338166,-0.0,-5010172.373426272,true,true,3.397559122,11353.480262810954,0.0,1.2,1267.0,3.397559122,11353.480262810954,0.0,121.92,0.0 +1268,22450.0,21750.0,0.16,3732.395470839143,5013904.768897111,700.0,887600.0,27702.471692744642,25533729.33812572,23970.0762219055,20519824.56922865,true,1268,21750.0,0.0,3732.395470839143,2575734.0353027415,700.0,887600.0,24.625298875897244,1281707.6373307328,3233.5213974874864,12723.775264146749,0.0,0.0,413.5554952863031,1281063.797121286,60.69327918945601,238.82558657283766,-3732.395470839143,-5013904.768897111,true,true,3.934015825,11357.414278635953,0.0,1.2,1268.0,3.934015825,11357.414278635953,0.0,121.92,0.0 +1269,26182.395470839143,25482.395470839143,0.28,7834.091267024411,5021738.860164135,700.0,888300.0,30478.897382230036,25564208.23550795,22644.806115205625,20542469.375343855,true,1269,25482.395470839143,0.0,7834.091267024411,2583568.126569766,700.0,888300.0,43.33567213922128,1281750.973002872,7157.123592146964,19880.898856293712,0.0,0.0,499.2926101771776,1281563.089731463,134.33939256104742,373.1649791338851,-7834.091267024411,-5021738.860164135,true,true,4.917519782,11362.331798417954,0.0,1.2,1269.0,4.917519782,11362.331798417954,0.0,121.92,0.0 +1270,30284.09126702441,29584.09126702441,0.33,13271.822591558444,5035010.682755693,700.0,889000.0,42338.85633805589,25606547.091846008,29067.033746497447,20571536.40909035,true,1270,29584.09126702441,0.0,13271.822591558444,2596839.9491613247,700.0,889000.0,87.2308274772259,1281838.2038303493,12322.871194724332,32203.770051018044,0.0,0.0,630.419962403038,1282193.5096938661,231.3006069538478,604.4655860877328,-13271.822591558444,-5035010.682755693,true,true,6.258661541,11368.590459958954,0.0,1.2,1270.0,6.258661541,11368.590459958954,0.0,121.92,0.0 +1271,35721.82259155845,35021.82259155845,0.33,16515.210164429074,5051525.892920122,700.0,889700.0,52167.30352857295,25658714.39537458,35652.093364143875,20607188.502454497,true,1271,35021.82259155845,0.0,16515.210164429074,2613355.159325754,700.0,889700.0,166.31638918921658,1282004.5202195384,15280.360269491268,47484.13032050931,0.0,0.0,781.7207533504352,1282975.2304472167,286.81275239815193,891.2783384858848,-16515.210164429074,-5051525.892920122,true,true,7.599803299,11376.190263257953,0.0,1.2,1271.0,7.599803299,11376.190263257953,0.0,121.92,0.0 +1272,38965.210164429074,38265.210164429074,0.33,16466.12969383816,5067992.022613959,700.0,890400.0,52018.574829812605,25710732.970204394,35552.44513597444,20642740.94759047,true,1272,38265.210164429074,0.0,16466.12969383816,2629821.289019592,700.0,890400.0,271.474198422803,1282275.9944179612,14992.82661208868,62476.956932598,0.0,0.0,920.4131450193116,1283895.6435922359,281.41573830736536,1172.6940767932501,-16466.12969383816,-5067992.022613959,true,true,8.717421431,11384.907684688953,0.0,1.2,1272.0,8.717421431,11384.907684688953,0.0,121.92,0.0 +1273,38916.12969383816,38216.12969383816,0.28,11561.023810660909,5079553.04642462,700.0,891100.0,43789.37075236038,25754522.340956755,32228.34694169947,20674969.29453217,true,1273,38216.12969383816,0.0,11561.023810660909,2641382.312830253,700.0,891100.0,370.864305405167,1282646.8587233664,9981.525674474618,72458.48260707261,0.0,0.0,1021.280339021848,1284916.9239312578,187.353491759275,1360.047568552525,-11561.023810660909,-5079553.04642462,true,true,9.387992311,11394.295676999953,0.0,1.2,1273.0,9.387992311,11394.295676999953,0.0,121.92,0.0 +1274,34011.02381066091,33311.02381066091,0.28,7248.3816324097315,5086801.42805703,700.0,891800.0,28387.077258606183,25782909.41821536,21138.69562619645,20696107.990158364,true,1274,33311.02381066091,0.0,7248.3816324097315,2648630.6944626626,700.0,891800.0,437.70476367392894,1283084.5634870403,5625.801456185683,78084.2840632583,0.0,0.0,1079.2789755789474,1285996.2029068368,105.5964369711729,1465.6440055236978,-7248.3816324097315,-5086801.42805703,true,true,9.745630113,11404.041307112953,0.0,1.2,1274.0,9.745630113,11404.041307112953,0.0,121.92,0.0 +1275,29698.38163240973,28998.38163240973,0.22,4531.147711282807,5091332.575768312,700.0,892500.0,23777.944142194578,25806687.362357557,19246.79643091177,20715354.786589276,true,1275,28998.38163240973,0.0,4531.147711282807,2653161.842173945,700.0,892500.0,475.5629315931348,1283560.1264186334,2891.7671035767644,80976.05116683507,0.0,0.0,1109.5391337458639,1287105.7420405827,54.27854236704434,1519.9225478907422,-4531.147711282807,-5091332.575768312,true,true,9.924449014,11413.965756126954,0.0,1.2,1275.0,9.924449014,11413.965756126954,0.0,121.92,0.0 +1276,26981.147711282807,26281.147711282807,0.28,7708.12749843463,5099040.703266747,700.0,893200.0,30029.02678012368,25836716.38913768,22320.89928168905,20737675.685870964,true,1276,26281.147711282807,0.0,7708.12749843463,2660869.96967238,700.0,893200.0,515.5434467822769,1284075.6698654157,5941.267025747592,86917.31819258266,0.0,0.0,1139.79929213841,1288245.541332721,111.51773376635083,1631.440281657093,-7708.12749843463,-5099040.703266747,true,true,10.28208682,11424.247842946954,0.0,1.2,1276.0,10.28208682,11424.247842946954,0.0,121.92,0.0 +1277,30158.12749843463,29458.12749843463,0.22,6420.245039977817,5105460.948306725,700.0,893900.0,32364.75018171735,25869081.139319398,25944.505141739533,20763620.191012703,true,1277,29458.12749843463,0.0,6420.245039977817,2667290.2147123576,700.0,893900.0,564.9470126962908,1284640.6168781118,4593.9663514306985,91511.28454401337,0.0,0.0,1175.1028101408313,1289420.644142862,86.22886570999675,1717.6691473670899,-6420.245039977817,-5105460.948306725,true,true,10.55031517,11434.798158116953,0.0,1.2,1277.0,10.55031517,11434.798158116953,0.0,121.92,0.0 +1278,28870.245039977817,28170.245039977817,0.22,5800.973594724008,5111261.92190145,700.0,894600.0,29549.87997601822,25898631.019295417,23748.90638129421,20787369.097393997,true,1278,28170.245039977817,0.0,5800.973594724008,2673091.188307082,700.0,894600.0,605.9057906617886,1285246.5226687735,3918.672925181243,95429.9574691946,0.0,0.0,1202.8412880233466,1290623.4854308853,73.55359085763014,1791.22273822472,-5800.973594724008,-5111261.92190145,true,true,10.77383879,11445.571996906954,0.0,1.2,1278.0,10.77383879,11445.571996906954,0.0,121.92,0.0 +1279,28250.973594724008,27550.973594724008,0.22,5120.431417354236,5116382.353318804,700.0,895300.0,26456.506442519254,25925087.525737938,21336.075025165017,20808705.17241916,true,1279,27550.973594724008,0.0,5120.431417354236,2678211.619724436,700.0,895300.0,640.8535197047328,1285887.3761884782,3194.088370578286,98624.0458397729,0.0,0.0,1225.5364068036547,1291849.021837689,59.953120267562525,1851.1758584922825,-5120.431417354236,-5116382.353318804,true,true,10.9526577,11456.524654606954,0.0,1.2,1279.0,10.9526577,11456.524654606954,0.0,121.92,0.0 +1280,27570.431417354237,26870.431417354237,0.16,1892.4307831223216,5118274.784101927,700.0,896000.0,16202.692394514508,25941290.21813245,14310.261611392187,20823015.43403055,true,1280,26870.431417354237,0.0,1892.4307831223216,2680104.0505075585,700.0,896000.0,656.8076564220278,1286544.1838449002,0.0,98624.0458397729,0.0,0.0,1235.6231267002938,1293084.6449643893,0.0,1851.1758584922825,-1892.4307831223216,-5118274.784101927,true,true,10.9526577,11467.477312306954,0.0,1.2,1280.0,10.9526577,11467.477312306954,0.0,121.92,0.0 +1281,24342.43078312232,23642.43078312232,0.12,0.0,5118274.784101927,700.0,896700.0,6999.999999999999,25948290.21813245,6999.999999999999,20830015.43403055,true,1281,23642.43078312232,0.0,-2199.2617844692168,2677904.7887230893,700.0,896700.0,636.9057683468412,1287181.089613247,-3984.395082637499,94639.6507571354,0.0,0.0,1223.0147272525508,1294307.6596916418,-74.78719743110983,1776.3886610611726,-0.0,-5118274.784101927,true,true,10.72913407,11478.206446376953,0.0,1.2,1281.0,10.72913407,11478.206446376953,0.0,121.92,0.0 +1282,22450.0,21750.0,0.12,0.0,5118274.784101927,700.0,897400.0,6999.999999999999,25955290.21813245,6999.999999999999,20837015.43403055,true,1282,21750.0,0.0,-2179.3736250441843,2675725.415098045,700.0,897400.0,598.3162453535352,1287779.4058586005,-3902.2426054185994,90737.40815171681,0.0,0.0,1197.7979283570644,1295505.4576199988,-73.24519333618417,1703.1434677249883,-0.0,-5118274.784101927,true,true,10.50561044,11488.712056816952,0.0,1.2,1282.0,10.50561044,11488.712056816952,0.0,121.92,0.0 +1283,22450.0,21750.0,0.16,1764.8097651849018,5120039.593867112,700.0,898100.0,15405.061032405638,25970695.27916486,13640.251267220736,20850655.685297772,true,1283,21750.0,0.0,1764.8097651849018,2677490.22486323,700.0,898100.0,579.6202362755805,1288359.026094876,0.0,90737.40815171681,0.0,0.0,1185.1895289093213,1296690.647148908,0.0,1703.1434677249883,-1764.8097651849018,-5120039.593867112,true,true,10.50561044,11499.217667256951,0.0,1.2,1283.0,10.50561044,11499.217667256951,0.0,121.92,0.0 +1284,24214.809765184902,23514.809765184902,0.16,1764.8097651849018,5121804.403632297,700.0,898800.0,15405.061032405638,25986100.340197265,13640.251267220736,20864295.936564993,true,1284,23514.809765184902,0.0,1764.8097651849018,2679255.0346284145,700.0,898800.0,579.6202362755805,1288938.6463311515,0.0,90737.40815171681,0.0,0.0,1185.1895289093213,1297875.8366778174,0.0,1703.1434677249883,-1764.8097651849018,-5121804.403632297,true,true,10.50561044,11509.72327769695,0.0,1.2,1284.0,10.50561044,11509.72327769695,0.0,121.92,0.0 +1285,24214.809765184902,23514.809765184902,0.16,1764.8097651849018,5123569.213397482,700.0,899500.0,15405.061032405638,26001505.401229672,13640.251267220736,20877936.187832214,true,1285,23514.809765184902,0.0,1764.8097651849018,2681019.8443935993,700.0,899500.0,579.6202362755805,1289518.266567427,0.0,90737.40815171681,0.0,0.0,1185.1895289093213,1299061.0262067267,0.0,1703.1434677249883,-1764.8097651849018,-5123569.213397482,true,true,10.50561044,11520.22888813695,0.0,1.2,1285.0,10.50561044,11520.22888813695,0.0,121.92,0.0 +1286,24214.809765184902,23514.809765184902,0.16,1764.8097651849018,5125334.023162668,700.0,900200.0,15405.061032405638,26016910.46226208,13640.251267220736,20891576.439099435,true,1286,23514.809765184902,0.0,1764.8097651849018,2682784.654158784,700.0,900200.0,579.6202362755805,1290097.8868037025,0.0,90737.40815171681,0.0,0.0,1185.1895289093213,1300246.215735636,0.0,1703.1434677249883,-1764.8097651849018,-5125334.023162668,true,true,10.50561044,11530.734498576949,0.0,1.2,1286.0,10.50561044,11530.734498576949,0.0,121.92,0.0 +1287,24214.809765184902,23514.809765184902,0.16,1764.8097651849018,5127098.832927853,700.0,900900.0,15405.061032405638,26032315.523294486,13640.251267220736,20905216.690366656,true,1287,23514.809765184902,0.0,1764.8097651849018,2684549.463923969,700.0,900900.0,579.6202362755805,1290677.507039978,0.0,90737.40815171681,0.0,0.0,1185.1895289093213,1301431.4052645452,0.0,1703.1434677249883,-1764.8097651849018,-5127098.832927853,true,true,10.50561044,11541.240109016948,0.0,1.2,1287.0,10.50561044,11541.240109016948,0.0,121.92,0.0 +1288,24214.809765184902,23514.809765184902,0.22,5771.601972465383,5132870.434900318,700.0,901600.0,29416.372602115378,26061731.895896602,23644.770629649996,20928861.460996307,true,1288,23514.809765184902,0.0,5771.601972465383,2690321.0658964342,700.0,901600.0,598.3162453535352,1291275.8232853315,3902.2426054185994,94639.6507571354,0.0,0.0,1197.7979283570644,1302629.2031929023,73.24519333618417,1776.3886610611726,-5771.601972465383,-5132870.434900318,true,true,10.72913407,11551.969243086947,0.0,1.2,1288.0,10.72913407,11551.969243086947,0.0,121.92,0.0 +1289,28221.60197246538,27521.60197246538,0.16,2639.3456805820097,5135509.780580901,700.0,902300.0,20870.91050363756,26082602.80640024,18231.56482305555,20947093.02581936,true,1289,27521.60197246538,0.0,2639.3456805820097,2692960.411577016,700.0,902300.0,621.2768840033375,1291897.1001693348,790.306712059213,95429.95746919462,0.0,0.0,1212.9280073559116,1303842.1312002582,14.834077163547308,1791.22273822472,-2639.3456805820097,-5135509.780580901,true,true,10.77383879,11562.743081876948,0.0,1.2,1289.0,10.77383879,11562.743081876948,0.0,121.92,0.0 +1290,25089.34568058201,24389.34568058201,0.22,5120.431417354236,5140630.211998255,700.0,903000.0,26456.506442519254,26109059.31284276,21336.075025165017,20968429.100844525,true,1290,24389.34568058201,0.0,5120.431417354236,2698080.8429943705,700.0,903000.0,640.8535197047328,1292537.9536890395,3194.088370578286,98624.04583977291,0.0,0.0,1225.5364068036547,1305067.6676070618,59.953120267562525,1851.1758584922825,-5120.431417354236,-5140630.211998255,true,true,10.9526577,11573.695739576948,0.0,1.2,1290.0,10.9526577,11573.695739576948,0.0,121.92,0.0 +1291,27570.431417354237,26870.431417354237,0.16,3552.6568866333982,5144182.8688848885,700.0,903700.0,26579.10554145874,26135638.41838422,23026.44865482534,20991455.54949935,true,1291,26870.431417354237,0.0,3552.6568866333982,2701633.499881004,700.0,903700.0,664.8830704654139,1293202.8367595049,1616.7606903639685,100240.80653013688,0.0,0.0,1240.6664863665762,1306308.3340934284,30.346639437439478,1881.522497929722,-3552.6568866333982,-5144182.8688848885,true,true,11.04206715,11584.737806726947,0.0,1.2,1291.0,11.04206715,11584.737806726947,0.0,121.92,0.0 +1292,26002.6568866334,25302.6568866334,0.16,4434.404726964829,5148617.273611853,700.0,904400.0,32090.02954353018,26167728.44792775,27655.624816565352,21019111.17431592,true,1292,25302.6568866334,0.0,4434.404726964829,2706067.904607969,700.0,904400.0,685.3605973496816,1293888.1973568546,2449.7866857256167,102690.5932158625,0.0,0.0,1253.2748852502448,1307561.6089786787,45.98255863928627,1927.5050565690083,-4434.404726964829,-5148617.273611853,true,true,11.17618132,11595.913988046947,0.0,1.2,1292.0,11.17618132,11595.913988046947,0.0,121.92,0.0 +1293,26884.40472696483,26184.40472696483,0.22,5360.217282231827,5153977.490894085,700.0,905100.0,27546.44219196285,26195274.890119713,22186.224909731023,21041297.39922565,true,1293,26184.40472696483,0.0,5360.217282231827,2711428.121890201,700.0,905100.0,714.7292818597632,1294602.9266387143,3312.3877538596817,106002.98096972218,0.0,0.0,1270.9266438001957,1308832.535622479,62.173602712186515,1989.6786592811948,-5360.217282231827,-5153977.490894085,true,true,11.35500022,11607.268988266947,0.0,1.2,1293.0,11.35500022,11607.268988266947,0.0,121.92,0.0 +1294,27810.217282231828,27110.217282231828,0.16,3733.984490556067,5157711.4753846405,700.0,905800.0,27712.40306597542,26222987.29318569,23978.418575419353,21065275.81780107,true,1294,27110.217282231828,0.0,3733.984490556067,2715162.106380757,700.0,905800.0,740.5604148544086,1295343.4870535687,1675.9104705802972,107678.89144030248,0.0,0.0,1286.056722799043,1310118.592345278,31.456882322318386,2021.135541603513,-3733.984490556067,-5157711.4753846405,true,true,11.44440967,11618.713397936948,0.0,1.2,1294.0,11.44440967,11618.713397936948,0.0,121.92,0.0 +1295,26183.984490556068,25483.984490556068,0.16,2906.033357902997,5160617.508742544,700.0,906500.0,22537.70848689373,26245525.00167258,19631.675128990733,21084907.49293006,true,1295,25483.984490556068,0.0,2906.033357902997,2718068.13973866,700.0,906500.0,753.7061539879172,1296097.1932075566,842.8844781589164,108521.7759184614,0.0,0.0,1293.6217625805036,1311412.2141078585,15.820963175659735,2036.9565047791727,-2906.033357902997,-5160617.508742544,true,true,11.4891144,11630.202512336948,0.0,1.2,1295.0,11.4891144,11630.202512336948,0.0,121.92,0.0 +1296,25356.033357902998,24656.033357902998,0.22,4671.385826570418,5165288.894569114,700.0,907200.0,24415.390120774628,26269940.391793355,19744.00429420421,21104651.497224264,true,1296,24656.033357902998,0.0,4671.385826570418,2722739.5255652303,700.0,907200.0,771.4745356844536,1296868.6677432412,2548.369841420113,111070.1457598815,0.0,0.0,1303.708482477143,1312715.9225903356,47.832966988708876,2084.7894717678814,-4671.385826570418,-5165288.894569114,true,true,11.62322858,11641.825740916947,0.0,1.2,1296.0,11.62322858,11641.825740916947,0.0,121.92,0.0 +1297,27121.38582657042,26421.38582657042,0.16,3857.932498500147,5169146.827067614,700.0,907900.0,28487.07811562592,26298427.469908983,24629.145617125774,21129280.64284139,true,1297,26421.38582657042,0.0,3857.932498500147,2726597.4580637305,700.0,907900.0,794.074912941512,1297662.7426561827,1715.3436593513845,112785.4894192329,0.0,0.0,1316.316881924886,1314032.2394722605,32.1970442823642,2116.9865160502454,-3857.932498500147,-5169146.827067614,true,true,11.71263803,11653.538378946947,0.0,1.2,1297.0,11.71263803,11653.538378946947,0.0,121.92,0.0 +1298,26307.932498500148,25607.932498500148,0.28,9306.198905787574,5178453.025973401,700.0,908600.0,35736.42466352705,26334163.89457251,26430.22575773947,21155710.86859913,true,1298,25607.932498500148,0.0,9306.198905787574,2735903.656969518,700.0,908600.0,840.5912468851421,1298503.333903068,6992.818595075178,119778.30801430807,0.0,0.0,1341.5336802562979,1315373.7731525167,131.25538357095704,2248.2418996212023,-9306.198905787574,-5178453.025973401,true,true,12.07027583,11665.608654776946,0.0,1.2,1298.0,12.07027583,11665.608654776946,0.0,121.92,0.0 +1299,31756.198905787576,31056.198905787576,0.28,9638.950318506013,5188091.976291907,700.0,909300.0,36924.8225660929,26371088.717138603,27285.87224758689,21182996.74084672,true,1299,31056.198905787576,0.0,9638.950318506013,2745542.607288024,700.0,909300.0,918.7379196952888,1299422.0718227632,7203.128927346806,126981.43694165489,0.0,0.0,1381.8805575865565,1316755.6537101034,135.20291387736114,2383.4448134985632,-9638.950318506013,-5188091.976291907,true,true,12.42791363,11678.036568406946,0.0,1.2,1299.0,12.42791363,11678.036568406946,0.0,121.92,0.0 +1300,32088.950318506013,31388.950318506013,0.22,7095.608636737449,5195187.584928645,700.0,910000.0,35434.58471244295,26406523.301851045,28338.9760757055,21211335.716922425,true,1300,31388.950318506013,0.0,7095.608636737449,2752638.2159247613,700.0,910000.0,985.6859134682066,1300407.7577362314,4608.753899210433,131590.1908408653,0.0,0.0,1414.6623956994292,1318170.3161058028,86.50642835938032,2469.9512418579434,-7095.608636737449,-5195187.584928645,true,true,12.65143726,11690.688005666945,0.0,1.2,1300.0,12.65143726,11690.688005666945,0.0,121.92,0.0 +1301,29545.60863673745,28845.60863673745,0.28,9209.1946085425,5204396.779537187,700.0,910700.0,35389.980744794644,26441913.28259584,26180.786136252143,21237516.503058676,true,1301,28845.60863673745,0.0,9209.1946085425,2761847.410533304,700.0,910700.0,1050.301128245246,1301458.0588644766,6590.271364818964,138180.46220568428,0.0,0.0,1444.9225536971232,1319615.2386595,123.6995617811686,2593.650803639112,-9209.1946085425,-5204396.779537187,true,true,12.96437033,11703.652375996946,0.0,1.2,1301.0,12.96437033,11703.652375996946,0.0,121.92,0.0 +1302,31659.1946085425,30959.1946085425,0.16,3532.5357876473263,5207929.315324835,700.0,911400.0,26453.34867279579,26468366.631268635,22920.812885148465,21260437.315943826,true,1302,30959.1946085425,0.0,3532.5357876473263,2765379.946320951,700.0,911400.0,1094.9098509763026,1302552.9687154528,954.6118554094829,139135.07406109376,0.0,0.0,1465.0959923622527,1321080.3346518623,17.918088899287984,2611.5688925383997,-3532.5357876473263,-5207929.315324835,true,true,13.00907506,11716.661451056945,0.0,1.2,1302.0,13.00907506,11716.661451056945,0.0,121.92,0.0 +1303,25982.535787647328,25282.535787647328,0.16,1587.4758990297842,5209516.791223864,700.0,912100.0,14296.724368936151,26482663.355637573,12709.248469906368,21273146.564413734,true,1303,25282.535787647328,0.0,1587.4758990297842,2766967.422219981,700.0,912100.0,1094.9098509763026,1303647.878566429,-954.6118554094829,138180.46220568428,0.0,0.0,1465.0959923622527,1322545.4306442246,-17.918088899287984,2593.650803639112,-1587.4758990297842,-5209516.791223864,true,true,12.96437033,11729.625821386946,0.0,1.2,1303.0,12.96437033,11729.625821386946,0.0,121.92,0.0 +1304,24037.475899029785,23337.475899029785,0.12,0.0,5209516.791223864,700.0,912800.0,6999.999999999999,26489663.355637573,6999.999999999999,21280146.564413734,true,1304,23337.475899029785,0.0,-7069.9225171929775,2759897.499702788,700.0,912800.0,1033.8904717274656,1304681.7690381564,-9365.382042775273,128815.080162909,0.0,0.0,1437.3575139156624,1323982.7881581404,-175.78846006083322,2417.862343578279,-0.0,-5209516.791223864,true,true,12.51732308,11742.143144466945,0.0,1.2,1304.0,12.51732308,11742.143144466945,0.0,121.92,0.0 +1305,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,913500.0,6999.999999999999,26496663.355637573,6999.999999999999,21287146.564413734,true,1305,21750.0,0.0,-26964.575777317405,2732932.9239254706,700.0,913500.0,817.1124202947194,1305498.881458451,-28574.273632772118,100240.80653013688,0.0,0.0,1328.9252808085546,1325311.7134389488,-536.3398456485579,1881.5224979297209,-0.0,-5209516.791223864,true,true,11.04206715,11753.185211616945,0.0,1.2,1305.0,11.04206715,11753.185211616945,0.0,121.92,0.0 +1306,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,914200.0,6999.999999999999,26503663.355637573,6999.999999999999,21294146.564413734,true,1306,21750.0,0.0,-23755.431285212548,2709177.492640258,700.0,914200.0,546.9564429663582,1306045.8379014174,-24995.71198679938,75245.0945433375,0.0,0.0,1162.4944108059028,1326474.2078497547,-469.1701521854303,1412.3523457442907,-0.0,-5209516.791223864,true,true,9.566811212,11762.752022828945,0.0,1.2,1306.0,9.566811212,11762.752022828945,0.0,121.92,0.0 +1307,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,914900.0,6999.999999999999,26510663.355637573,6999.999999999999,21301146.564413734,true,1307,21750.0,0.0,-20479.021451108696,2688698.471189149,700.0,914900.0,344.0655995100237,1306389.9035009274,-21417.1501362574,53827.9444070801,0.0,0.0,996.0635405212139,1327470.271390276,-402.0004548825308,1010.3518908617599,-0.0,-5209516.791223864,true,true,8.091555277,11770.843578105945,0.0,1.2,1307.0,8.091555277,11770.843578105945,0.0,121.92,0.0 +1308,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,915600.0,6999.999999999999,26517663.355637573,6999.999999999999,21308146.564413734,true,1308,21750.0,0.0,-17144.976676035847,2671553.4945131135,700.0,915600.0,198.80974120473107,1306588.7132421322,-17838.588329304926,35989.35607777517,0.0,0.0,829.6326704621547,1328299.9040607382,-334.8307583978083,675.5211324639515,-0.0,-5209516.791223864,true,true,6.616299343,11777.459877448946,0.0,1.2,1308.0,6.616299343,11777.459877448946,0.0,121.92,0.0 +1309,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,916300.0,6999.999999999999,26524663.355637573,6999.999999999999,21315146.564413734,true,1309,21750.0,0.0,-13762.927090132356,2657790.5674229814,700.0,916300.0,101.55871836773095,1306690.2719605,-14260.026546536168,21729.329531239004,0.0,0.0,663.2018004030955,1328963.1058611413,-267.6610623670144,407.86007009693714,-0.0,-5209516.791223864,true,true,5.141043408,11782.600920856947,0.0,1.2,1309.0,5.141043408,11782.600920856947,0.0,121.92,0.0 +1310,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,917000.0,6999.999999999999,26531663.355637573,6999.999999999999,21322146.564413734,true,1310,21750.0,0.0,-10342.5027984297,2647448.0646245517,700.0,917000.0,42.682381634751884,1306732.9543421348,-10681.464744435134,11047.86478680387,0.0,0.0,496.7709303440364,1329459.8767914854,-200.4913659733535,207.36870412358363,-0.0,-5209516.791223864,true,true,3.665787474,11786.266708330946,0.0,1.2,1310.0,3.665787474,11786.266708330946,0.0,121.92,0.0 +1311,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,917700.0,6999.999999999999,26538663.355637573,6999.999999999999,21329146.564413734,true,1311,21750.0,0.0,-6893.333984739928,2640554.7306398116,700.0,917700.0,12.550581641522497,1306745.5049237763,-7102.90295681493,3944.96182998894,0.0,0.0,330.3400602849772,1329790.2168517704,-133.32166985149806,74.04703427208557,-0.0,-5209516.791223864,true,true,2.190531539,11788.457239869946,0.0,1.2,1311.0,2.190531539,11788.457239869946,0.0,121.92,0.0 +1312,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,918400.0,6999.999999999999,26545663.355637573,6999.999999999999,21336146.564413734,true,1312,21750.0,0.0,-3425.050773864553,2637129.679865947,700.0,918400.0,1.533169023771379,1306747.0380928,-3524.3411595653433,420.6206704235965,0.0,0.0,163.90919022591802,1329954.1260419963,-66.15197354889884,7.895060723186731,-0.0,-5209516.791223864,true,true,0.715275605,11789.172515474946,0.0,1.2,1312.0,0.715275605,11789.172515474946,0.0,121.92,0.0 +1313,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,919100.0,6999.999999999999,26552663.355637573,6999.999999999999,21343146.564413734,true,1313,21750.0,0.0,-388.1459864965699,2636741.5338794505,700.0,919100.0,0.02286703806964793,1306747.060959838,-420.62067042374963,-1.531361704110168e-10,0.0,0.0,40.34687761229607,1329994.4729196087,-7.895060723185952,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1313.0,0.0,11789.172515474946,0.0,121.92,0.0 +1314,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,919800.0,6999.999999999999,26559663.355637573,6999.999999999999,21350146.564413734,true,1314,21750.0,0.0,0.0,2636741.5338794505,700.0,919800.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1314.0,0.0,11789.172515474946,0.0,121.92,0.0 +1315,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,920500.0,6999.999999999999,26566663.355637573,6999.999999999999,21357146.564413734,true,1315,21750.0,0.0,0.0,2636741.5338794505,700.0,920500.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1315.0,0.0,11789.172515474946,0.0,121.92,0.0 +1316,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,921200.0,6999.999999999999,26573663.355637573,6999.999999999999,21364146.564413734,true,1316,21750.0,0.0,0.0,2636741.5338794505,700.0,921200.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1316.0,0.0,11789.172515474946,0.0,121.92,0.0 +1317,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,921900.0,6999.999999999999,26580663.355637573,6999.999999999999,21371146.564413734,true,1317,21750.0,0.0,0.0,2636741.5338794505,700.0,921900.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1317.0,0.0,11789.172515474946,0.0,121.92,0.0 +1318,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,922600.0,6999.999999999999,26587663.355637573,6999.999999999999,21378146.564413734,true,1318,21750.0,0.0,0.0,2636741.5338794505,700.0,922600.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1318.0,0.0,11789.172515474946,0.0,121.92,0.0 +1319,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,923300.0,6999.999999999999,26594663.355637573,6999.999999999999,21385146.564413734,true,1319,21750.0,0.0,0.0,2636741.5338794505,700.0,923300.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1319.0,0.0,11789.172515474946,0.0,121.92,0.0 +1320,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,924000.0,6999.999999999999,26601663.355637573,6999.999999999999,21392146.564413734,true,1320,21750.0,0.0,0.0,2636741.5338794505,700.0,924000.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1320.0,0.0,11789.172515474946,0.0,121.92,0.0 +1321,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,924700.0,6999.999999999999,26608663.355637573,6999.999999999999,21399146.564413734,true,1321,21750.0,0.0,0.0,2636741.5338794505,700.0,924700.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1321.0,0.0,11789.172515474946,0.0,121.92,0.0 +1322,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,925400.0,6999.999999999999,26615663.355637573,6999.999999999999,21406146.564413734,true,1322,21750.0,0.0,0.0,2636741.5338794505,700.0,925400.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1322.0,0.0,11789.172515474946,0.0,121.92,0.0 +1323,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,926100.0,6999.999999999999,26622663.355637573,6999.999999999999,21413146.564413734,true,1323,21750.0,0.0,0.0,2636741.5338794505,700.0,926100.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1323.0,0.0,11789.172515474946,0.0,121.92,0.0 +1324,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,926800.0,6999.999999999999,26629663.355637573,6999.999999999999,21420146.564413734,true,1324,21750.0,0.0,0.0,2636741.5338794505,700.0,926800.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1324.0,0.0,11789.172515474946,0.0,121.92,0.0 +1325,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,927500.0,6999.999999999999,26636663.355637573,6999.999999999999,21427146.564413734,true,1325,21750.0,0.0,0.0,2636741.5338794505,700.0,927500.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1325.0,0.0,11789.172515474946,0.0,121.92,0.0 +1326,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,928200.0,6999.999999999999,26643663.355637573,6999.999999999999,21434146.564413734,true,1326,21750.0,0.0,0.0,2636741.5338794505,700.0,928200.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1326.0,0.0,11789.172515474946,0.0,121.92,0.0 +1327,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,928900.0,6999.999999999999,26650663.355637573,6999.999999999999,21441146.564413734,true,1327,21750.0,0.0,0.0,2636741.5338794505,700.0,928900.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1327.0,0.0,11789.172515474946,0.0,121.92,0.0 +1328,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,929600.0,6999.999999999999,26657663.355637573,6999.999999999999,21448146.564413734,true,1328,21750.0,0.0,0.0,2636741.5338794505,700.0,929600.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1328.0,0.0,11789.172515474946,0.0,121.92,0.0 +1329,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,930300.0,6999.999999999999,26664663.355637573,6999.999999999999,21455146.564413734,true,1329,21750.0,0.0,0.0,2636741.5338794505,700.0,930300.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1329.0,0.0,11789.172515474946,0.0,121.92,0.0 +1330,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,931000.0,6999.999999999999,26671663.355637573,6999.999999999999,21462146.564413734,true,1330,21750.0,0.0,0.0,2636741.5338794505,700.0,931000.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1330.0,0.0,11789.172515474946,0.0,121.92,0.0 +1331,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,931700.0,6999.999999999999,26678663.355637573,6999.999999999999,21469146.564413734,true,1331,21750.0,0.0,0.0,2636741.5338794505,700.0,931700.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1331.0,0.0,11789.172515474946,0.0,121.92,0.0 +1332,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,932400.0,6999.999999999999,26685663.355637573,6999.999999999999,21476146.564413734,true,1332,21750.0,0.0,0.0,2636741.5338794505,700.0,932400.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1332.0,0.0,11789.172515474946,0.0,121.92,0.0 +1333,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,933100.0,6999.999999999999,26692663.355637573,6999.999999999999,21483146.564413734,true,1333,21750.0,0.0,0.0,2636741.5338794505,700.0,933100.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1333.0,0.0,11789.172515474946,0.0,121.92,0.0 +1334,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,933800.0,6999.999999999999,26699663.355637573,6999.999999999999,21490146.564413734,true,1334,21750.0,0.0,0.0,2636741.5338794505,700.0,933800.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1334.0,0.0,11789.172515474946,0.0,121.92,0.0 +1335,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,934500.0,6999.999999999999,26706663.355637573,6999.999999999999,21497146.564413734,true,1335,21750.0,0.0,0.0,2636741.5338794505,700.0,934500.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1335.0,0.0,11789.172515474946,0.0,121.92,0.0 +1336,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,935200.0,6999.999999999999,26713663.355637573,6999.999999999999,21504146.564413734,true,1336,21750.0,0.0,0.0,2636741.5338794505,700.0,935200.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1336.0,0.0,11789.172515474946,0.0,121.92,0.0 +1337,22450.0,21750.0,0.12,0.0,5209516.791223864,700.0,935900.0,6999.999999999999,26720663.355637573,6999.999999999999,21511146.564413734,true,1337,21750.0,0.0,0.0,2636741.5338794505,700.0,935900.0,0.0,1306747.060959838,0.0,-1.531361704110168e-10,0.0,0.0,0.0,1329994.4729196087,0.0,7.789324740770098e-13,-0.0,-5209516.791223864,true,true,0.0,11789.172515474946,0.0,1.2,1337.0,0.0,11789.172515474946,0.0,121.92,0.0 +1338,22450.0,21750.0,0.12,414.4691931375451,5209931.260417001,700.0,936600.0,9287.24327614621,26729950.598913718,8872.774083008664,21520019.33849674,true,1338,21750.0,0.0,414.4691931375451,2637156.0030725882,700.0,936600.0,0.018841858703048796,1306747.0798016968,369.68613535658534,369.6861353564322,0.0,0.0,37.82519772274744,1330032.2981173315,6.9390181995092535,6.939018199510032,-414.4691931375451,-5209931.260417001,true,true,0.670570879,11789.843086353945,0.0,1.2,1338.0,0.670570879,11789.843086353945,0.0,121.92,0.0 +1339,22864.469193137546,22164.469193137546,0.16,3640.278209304378,5213571.538626306,700.0,937300.0,27126.73880815236,26757077.33772187,23486.46059884798,21543505.79909559,true,1339,22164.469193137546,0.0,3640.278209304378,2640796.2812818927,700.0,937300.0,1.3959556293758293,1306748.4757573262,3415.8998949288366,3785.586030285269,0.0,0.0,158.8658305032282,1330191.1639478346,64.11652824293756,71.05554644244759,-3640.278209304378,-5213571.538626306,true,true,2.145826814,11791.988913167945,0.0,1.2,1339.0,2.145826814,11791.988913167945,0.0,121.92,0.0 +1340,26090.27820930438,25390.27820930438,0.28,7463.029087317699,5221034.567713624,700.0,938000.0,29153.67531184892,26786231.013033718,21690.64622453122,21565196.445320122,true,1340,25390.27820930438,0.0,7463.029087317699,2648259.3103692103,700.0,938000.0,11.984477295435942,1306760.4602346218,6994.461685048273,10780.047715333541,0.0,0.0,325.2967005622874,1330516.460648397,131.28622441170364,202.34177085415124,-7463.029087317699,-5221034.567713624,true,true,3.621082748,11795.609995915946,0.0,1.2,1340.0,3.621082748,11795.609995915946,0.0,121.92,0.0 +1341,29913.0290873177,29213.0290873177,0.28,11304.602539657459,5232339.1702532815,700.0,938700.0,42873.58049877663,26829104.593532495,31568.977959119173,21596765.42327924,true,1341,29213.0290873177,0.0,11304.602539657459,2659563.912908868,700.0,938700.0,41.395563627581424,1306801.8557982494,10573.023484650075,21353.071199983617,0.0,0.0,491.72757062134656,1331008.1882190183,198.45592075845403,400.79769161260526,-11304.602539657459,-5232339.1702532815,true,true,5.096338683,11800.706334598946,0.0,1.2,1341.0,5.096338683,11800.706334598946,0.0,121.92,0.0 +1342,33754.602539657455,33054.602539657455,0.28,8115.426654140781,5240454.596907422,700.0,939400.0,31483.66662193136,26860588.260154426,23368.239967790578,21620133.66324703,true,1342,33054.602539657455,0.0,8115.426654140781,2667679.339563009,700.0,939400.0,83.11038371748914,1306884.966181967,7275.4231491982955,28628.494349181914,0.0,0.0,620.3332429576583,1331628.521461976,136.55987826733804,537.3575698799433,-8115.426654140781,-5240454.596907422,true,true,5.901023738,11806.607358336947,0.0,1.2,1342.0,5.901023738,11806.607358336947,0.0,121.92,0.0 +1343,30565.42665414078,29865.42665414078,0.28,9840.674230212131,5250295.271137634,700.0,940100.0,37645.265107900464,26898233.525262326,27804.590877688333,21647938.25412472,true,1343,29865.42665414078,0.0,9840.674230212131,2677520.013793221,700.0,940100.0,126.53459306482496,1307011.5007750317,8834.677124547265,37463.17147372918,0.0,0.0,713.6353974043639,1332342.1568593804,165.82711519567806,703.1846850756214,-9840.674230212131,-5250295.271137634,true,true,6.750413519,11813.357771855946,0.0,1.2,1343.0,6.750413519,11813.357771855946,0.0,121.92,0.0 +1344,32290.67423021213,31590.67423021213,0.28,10063.145658455654,5260358.41679609,700.0,940800.0,38439.80592305591,26936673.33118538,28376.660264600254,21676314.91438932,true,1344,31590.67423021213,0.0,10063.145658455654,2687583.159451677,700.0,940800.0,181.2266303262798,1307192.727405358,8910.257397267093,46373.42887099627,0.0,0.0,804.4158720179281,1333146.5727313983,167.24575884435308,870.4304439199744,-10063.145658455654,-5260358.41679609,true,true,7.510393849,11820.868165704946,0.0,1.2,1344.0,7.510393849,11820.868165704946,0.0,121.92,0.0 +1345,32513.145658455654,31813.145658455654,0.28,9939.557152248004,5270297.973948338,700.0,941500.0,37998.41840088573,26974671.74958627,28058.861248637724,21704373.77563796,true,1345,31813.145658455654,0.0,9939.557152248004,2697522.716603925,700.0,941500.0,241.41892713144253,1307434.1463324896,8650.65557197501,55024.08444297128,0.0,0.0,885.1096271861128,1334031.6823585844,162.37302595543886,1032.8034698754134,-9939.557152248004,-5270297.973948338,true,true,8.180964728,11829.049130432946,0.0,1.2,1345.0,8.180964728,11829.049130432946,0.0,121.92,0.0 +1346,32389.557152248002,31689.557152248002,0.28,8847.484495619072,5279145.458443957,700.0,942200.0,34098.15891292525,27008769.908499196,25250.67441730618,21729624.450055264,true,1346,31689.557152248002,0.0,8847.484495619072,2706370.201099544,700.0,942200.0,301.5264159987095,1307735.6727484884,7452.872489626751,62476.956932598034,0.0,0.0,953.1949830757766,1334984.8773416602,139.8906069178357,1172.694076793249,-8847.484495619072,-5279145.458443957,true,true,8.717421431,11837.766551863946,0.0,1.2,1346.0,8.717421431,11837.766551863946,0.0,121.92,0.0 +1347,31297.484495619072,30597.484495619072,0.22,6685.257750742372,5285830.7161946995,700.0,942900.0,33569.35341246533,27042339.26191166,26884.09566172296,21756508.545716986,true,1347,30597.484495619072,0.0,6685.257750742372,2713055.4588502864,700.0,942900.0,351.9647598823701,1308087.6375083707,5231.469592952789,67708.42652555082,0.0,0.0,1003.628580077045,1335988.5059217373,98.19481783016793,1270.888894623417,-6685.257750742372,-5285830.7161946995,true,true,9.075059234,11846.841611097945,0.0,1.2,1347.0,9.075059234,11846.841611097945,0.0,121.92,0.0 +1348,29135.25775074237,28435.25775074237,0.28,8414.310503761437,5294245.026698461,700.0,943600.0,32551.10894200513,27074890.370853666,24136.79843824369,21780645.34415523,true,1348,28435.25775074237,0.0,8414.310503761437,2721469.7693540477,700.0,943600.0,401.91106052862375,1308489.5485688993,6835.085889166971,74543.5124147178,0.0,0.0,1049.0188174120308,1337037.5247391493,128.2947366538116,1399.1836312772286,-8414.310503761437,-5294245.026698461,true,true,9.522106487,11856.363717584945,0.0,1.2,1348.0,9.522106487,11856.363717584945,0.0,121.92,0.0 +1349,30864.310503761437,30164.310503761437,0.22,5878.1793660562025,5300123.206064517,700.0,944300.0,29900.815300255465,27104791.186153922,24022.63593419926,21804667.98008943,true,1349,30164.310503761437,0.0,5878.1793660562025,2727347.948720104,700.0,944300.0,450.09190962570625,1308939.640478525,4258.784271942478,78802.29668666028,0.0,0.0,1089.3656949679196,1338126.8904341173,79.93748952009814,1479.1211207973267,-5878.1793660562025,-5300123.206064517,true,true,9.790334838,11866.154052422946,0.0,1.2,1349.0,9.790334838,11866.154052422946,0.0,121.92,0.0 +1350,28328.179366056203,27628.179366056203,0.16,3058.1248965484165,5303181.330961065,700.0,945000.0,23488.280603427604,27128279.46675735,20430.155706879188,21825098.13579631,true,1350,27628.179366056203,0.0,3058.1248965484165,2730406.0736166523,700.0,945000.0,475.5629315931348,1309415.2034101181,1445.883559874126,80248.18024653441,0.0,0.0,1109.5391337458639,1339236.4295678632,27.13927133529188,1506.2603921326186,-3058.1248965484165,-5303181.330961065,true,true,9.879744289,11876.033796711947,0.0,1.2,1350.0,9.879744289,11876.033796711947,0.0,121.92,0.0 +1351,25508.124896548416,24808.124896548416,0.16,3848.7502644145034,5307030.08122548,700.0,945700.0,28429.689152590647,27156709.15590994,24580.938888176144,21849679.074684486,true,1351,24808.124896548416,0.0,3848.7502644145034,2734254.823881067,700.0,945700.0,491.9602332856585,1309907.1636434037,2193.47099186525,82441.65123839966,0.0,0.0,1122.1475327423473,1340358.5771006055,41.17150652124778,1547.4318986538663,-3848.7502644145034,-5307030.08122548,true,true,10.01385846,11886.047655171948,0.0,1.2,1351.0,10.01385846,11886.047655171948,0.0,121.92,0.0 +1352,26298.750264414502,25598.750264414502,0.12,0.0,5307030.08122548,700.0,946400.0,6999.999999999999,27163709.15590994,6999.999999999999,21856679.074684486,true,1352,25598.750264414502,0.0,-1364.5508475503284,2732890.2730335165,700.0,946400.0,488.6510948829833,1310395.8147382867,-2918.055813224185,79523.59542517547,0.0,0.0,1119.625852909206,1341478.2029535146,-54.77198211833273,1492.6599165355335,-0.0,-5307030.08122548,true,true,9.835039564,11895.882694735948,0.0,1.2,1352.0,9.835039564,11895.882694735948,0.0,121.92,0.0 +1353,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,947100.0,6999.999999999999,27170709.15590994,6999.999999999999,21863679.074684486,true,1353,21750.0,0.0,-1357.1004141501203,2731533.1726193666,700.0,947100.0,462.71058440838954,1310858.525322695,-2865.478311895824,76658.11711327964,0.0,0.0,1099.4524144132988,1342577.6553679279,-53.7851010759847,1438.8748154595487,-0.0,-5307030.08122548,true,true,9.656220663,11905.538915398949,0.0,1.2,1353.0,9.656220663,11905.538915398949,0.0,121.92,0.0 +1354,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,947800.0,6999.999999999999,27177709.15590994,6999.999999999999,21870679.074684486,true,1354,21750.0,0.0,-2062.353049317659,2729470.8195700487,700.0,947800.0,434.64390234698027,1311293.169225042,-3507.9106744859905,73150.20643879366,0.0,0.0,1076.757295745806,1343654.4126636737,-65.84357292445459,1373.0312425350942,-0.0,-5307030.08122548,true,true,9.432697036,11914.971612434949,0.0,1.2,1354.0,9.432697036,11914.971612434949,0.0,121.92,0.0 +1355,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,948500.0,6999.999999999999,27184709.15590994,6999.999999999999,21877679.074684486,true,1355,21750.0,0.0,-2727.098500563676,2726743.721069485,700.0,948500.0,401.91106046378957,1311695.0802855059,-4101.051536337544,69049.15490245611,0.0,0.0,1049.0188173556232,1344703.4314810294,-76.97684204554449,1296.0544004895496,-0.0,-5307030.08122548,true,true,9.164468684,11924.13608111895,0.0,1.2,1355.0,9.164468684,11924.13608111895,0.0,121.92,0.0 +1356,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,949200.0,6999.999999999999,27191709.15590994,6999.999999999999,21884679.074684486,true,1356,21750.0,0.0,-1997.4817342079243,2724746.239335277,700.0,949200.0,370.864305405167,1312065.944590911,-3327.175214901444,65721.97968755466,0.0,0.0,1021.280339021848,1345724.7118200513,-62.4511637334952,1233.6032367560545,-0.0,-5307030.08122548,true,true,8.940945058,11933.07702617695,0.0,1.2,1356.0,8.940945058,11933.07702617695,0.0,121.92,0.0 +1357,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,949900.0,6999.999999999999,27198709.15590994,6999.999999999999,21891679.074684486,true,1357,21750.0,0.0,-1306.1704838709888,2723440.068851406,700.0,949900.0,346.68537717252025,1312412.6299680835,-2602.590393322,63119.38929423266,0.0,0.0,998.5852204107626,1346723.297040462,-48.85068813227151,1184.752548623783,-0.0,-5307030.08122548,true,true,8.762126157,11941.83915233395,0.0,1.2,1357.0,8.762126157,11941.83915233395,0.0,121.92,0.0 +1358,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,950600.0,6999.999999999999,27205709.15590994,6999.999999999999,21898679.074684486,true,1358,21750.0,0.0,-5745.748430749195,2717694.320420657,700.0,950600.0,308.76274495702313,1312721.3927130406,-6886.020419309186,56233.36887492347,0.0,0.0,960.760022688015,1347684.05706315,-129.25077908504696,1055.501769538736,-0.0,-5307030.08122548,true,true,8.270374179,11950.10952651295,0.0,1.2,1358.0,8.270374179,11950.10952651295,0.0,121.92,0.0 +1359,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,951300.0,6999.999999999999,27212709.15590994,6999.999999999999,21905679.074684486,true,1359,21750.0,0.0,-4857.7278637590425,2712836.5925568976,700.0,951300.0,260.4698551479304,1312981.8625681885,-5914.978173423559,50318.39070149991,0.0,0.0,907.8047458536058,1348591.8618090036,-111.02429133701906,944.4774782017168,-0.0,-5307030.08122548,true,true,7.823326926,11957.93285343895,0.0,1.2,1359.0,7.823326926,11957.93285343895,0.0,121.92,0.0 +1360,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,952000.0,6999.999999999999,27219709.15590994,6999.999999999999,21912679.074684486,true,1360,21750.0,0.0,-4614.428092786501,2708222.164464111,700.0,952000.0,219.42530835042612,1313201.287876539,-5586.3682748387855,44732.022426661126,0.0,0.0,857.3711488523375,1349449.232957856,-104.85627515047919,839.6212030512377,-0.0,-5307030.08122548,true,true,7.376279673,11965.30913311195,0.0,1.2,1360.0,7.376279673,11965.30913311195,0.0,121.92,0.0 +1361,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,952700.0,6999.999999999999,27226709.15590994,6999.999999999999,21919679.074684486,true,1361,21750.0,0.0,-4366.572779078231,2703855.591685033,700.0,952700.0,182.93630428863926,1313384.2241808276,-5257.758376254,39474.264050407124,0.0,0.0,806.9375518510693,1350256.1705097072,-98.68825896393952,740.9329440872982,-0.0,-5307030.08122548,true,true,6.92923242,11972.23836553195,0.0,1.2,1361.0,6.92923242,11972.23836553195,0.0,121.92,0.0 +1362,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,953400.0,6999.999999999999,27233709.15590994,6999.999999999999,21926679.074684486,true,1362,21750.0,0.0,-6519.742760833926,2697335.848924199,700.0,953400.0,143.3230409269969,1313527.5472217547,-7270.493999389044,32203.77005101808,0.0,0.0,743.8955556276877,1351000.066065335,-136.46735799956664,604.4655860877316,-0.0,-5307030.08122548,true,true,6.258661541,11978.49702707295,0.0,1.2,1362.0,6.258661541,11978.49702707295,0.0,121.92,0.0 +1363,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,954100.0,6999.999999999999,27240709.15590994,6999.999999999999,21933679.074684486,true,1363,21750.0,0.0,-11836.521011797915,2685499.3279124014,700.0,954100.0,87.2308274772259,1313614.778049232,-12322.871194724332,19880.89885629375,0.0,0.0,630.419962403038,1351630.486027738,-231.3006069538478,373.1649791338838,-0.0,-5307030.08122548,true,true,4.917519782,11983.41454685495,0.0,1.2,1363.0,4.917519782,11983.41454685495,0.0,121.92,0.0 +1364,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,954800.0,6999.999999999999,27247709.15590994,6999.999999999999,21940679.074684486,true,1364,21750.0,0.0,-9023.759157620849,2676475.5687547806,700.0,954800.0,38.29223971615087,1313653.070288948,-9365.382107461242,10515.516748832506,0.0,0.0,479.1191713992332,1352109.6051991372,-175.78846127499014,197.37651785889364,-0.0,-5307030.08122548,true,true,3.576378023,11986.990924877951,0.0,1.2,1364.0,3.576378023,11986.990924877951,0.0,121.92,0.0 +1365,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,955500.0,6999.999999999999,27254709.15590994,6999.999999999999,21947679.074684486,true,1365,21750.0,0.0,-5840.993922049188,2670634.5748327314,700.0,955500.0,12.840199152361858,1313665.9104881005,-6072.710922259745,4442.805826572761,0.0,0.0,332.8617401181184,1352442.4669392554,-113.98493905992348,83.39157879897016,-0.0,-5307030.08122548,true,true,2.324645715,11989.315570592951,0.0,1.2,1365.0,2.324645715,11989.315570592951,0.0,121.92,0.0 +1366,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,956200.0,6999.999999999999,27261709.15590994,6999.999999999999,21954679.074684486,true,1366,21750.0,0.0,-3283.2983541687277,2667351.2764785625,700.0,956200.0,2.548720086007173,1313668.4592081865,-3415.8998944142895,1026.9059321584718,0.0,0.0,194.16934839283448,1352636.6362876482,-64.11652823327952,19.275050565690634,-0.0,-5307030.08122548,true,true,1.117618132,11990.433188724952,0.0,1.2,1366.0,1.117618132,11990.433188724952,0.0,121.92,0.0 +1367,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,956900.0,6999.999999999999,27268709.15590994,6999.999999999999,21961679.074684486,true,1367,21750.0,0.0,-983.0517556735282,2666368.224722889,700.0,956900.0,0.08723082740698028,1313668.546439014,-1026.9059321586267,-1.5484147297684103e-10,0.0,0.0,63.04199622338156,1352699.6782838716,-19.275050565690066,5.684341886080801e-13,-0.0,-5307030.08122548,true,true,0.0,11990.433188724952,0.0,1.2,1367.0,0.0,11990.433188724952,0.0,121.92,0.0 +1368,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,957600.0,6999.999999999999,27275709.15590994,6999.999999999999,21968679.074684486,true,1368,21750.0,0.0,0.0,2666368.224722889,700.0,957600.0,0.0,1313668.546439014,0.0,-1.5484147297684103e-10,0.0,0.0,0.0,1352699.6782838716,0.0,5.684341886080801e-13,-0.0,-5307030.08122548,true,true,0.0,11990.433188724952,0.0,1.2,1368.0,0.0,11990.433188724952,0.0,121.92,0.0 +1369,22450.0,21750.0,0.12,0.0,5307030.08122548,700.0,958300.0,6999.999999999999,27282709.15590994,6999.999999999999,21975679.074684486,true,1369,21750.0,0.0,0.0,2666368.224722889,700.0,958300.0,0.0,1313668.546439014,0.0,-1.5484147297684103e-10,0.0,0.0,0.0,1352699.6782838716,0.0,5.684341886080801e-13,-0.0,-5307030.08122548,true,true,0.0,11990.433188724952,0.0,1.2,1369.0,0.0,11990.433188724952,0.0,121.92,0.0 diff --git a/python/fastsim/resources/demos/demo_variable_paths/variable_path_list_expected.txt b/python/fastsim/resources/demos/demo_variable_paths/variable_path_list_expected.txt index d83991ec..a3e861fc 100644 --- a/python/fastsim/resources/demos/demo_variable_paths/variable_path_list_expected.txt +++ b/python/fastsim/resources/demos/demo_variable_paths/variable_path_list_expected.txt @@ -1,134 +1,44 @@ ['veh']['year'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['pwr_cat_max'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['pwr_prop_max'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['pwr_regen_max'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['pwr_disch_max'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['pwr_charge_max'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['i'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['soc'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['eff'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['soh'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['pwr_out_electrical'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['pwr_out_propulsion'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['pwr_aux'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['pwr_loss'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['pwr_out_chemical'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['energy_out_electrical'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['energy_out_propulsion'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['energy_aux'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['energy_loss'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['energy_out_chemical'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['max_soc'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['min_soc'] -['veh']['pt_type']['HybridElectricVehicle']['res']['state']['temperature_celsius'] -['veh']['pt_type']['HybridElectricVehicle']['res']['mass_kilograms'] -['veh']['pt_type']['HybridElectricVehicle']['res']['specific_energy_joules_per_kilogram'] -['veh']['pt_type']['HybridElectricVehicle']['res']['pwr_out_max_watts'] -['veh']['pt_type']['HybridElectricVehicle']['res']['energy_capacity_joules'] -['veh']['pt_type']['HybridElectricVehicle']['res']['min_soc'] -['veh']['pt_type']['HybridElectricVehicle']['res']['max_soc'] -['veh']['pt_type']['HybridElectricVehicle']['res']['soc_hi_ramp_start'] -['veh']['pt_type']['HybridElectricVehicle']['res']['soc_lo_ramp_start'] -['veh']['pt_type']['HybridElectricVehicle']['res']['save_interval'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['pwr_cat_max'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['pwr_prop_max'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['pwr_regen_max'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['pwr_disch_max'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['pwr_charge_max'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['i'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['soc'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['eff'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['soh'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['pwr_out_electrical'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['pwr_out_propulsion'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['pwr_aux'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['pwr_loss'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['pwr_out_chemical'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['energy_out_electrical'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['energy_out_propulsion'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['energy_aux'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['energy_loss'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['energy_out_chemical'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['max_soc'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['min_soc'] -['veh']['pt_type']['HybridElectricVehicle']['res']['history']['temperature_celsius'] -['veh']['pt_type']['HybridElectricVehicle']['fs']['pwr_out_max_watts'] -['veh']['pt_type']['HybridElectricVehicle']['fs']['pwr_ramp_lag_seconds'] -['veh']['pt_type']['HybridElectricVehicle']['fs']['energy_capacity_joules'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['state']['i'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['state']['pwr_prop_max'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['state']['eff'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['state']['pwr_propulsion'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['state']['energy_propulsion'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['state']['pwr_aux'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['state']['energy_aux'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['state']['pwr_fuel'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['state']['energy_fuel'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['state']['pwr_loss'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['state']['energy_loss'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['state']['fc_on'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['mass_kilograms'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['specific_pwr_watts_per_kilogram'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['pwr_out_max_watts'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['pwr_out_max_init_watts'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['pwr_ramp_lag_seconds'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['eff_interp']['Interp1D']['x'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['eff_interp']['Interp1D']['f_x'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['pwr_idle_fuel_watts'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['save_interval'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['history']['i'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['history']['pwr_prop_max'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['history']['eff'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['history']['pwr_propulsion'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['history']['energy_propulsion'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['history']['pwr_aux'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['history']['energy_aux'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['history']['pwr_fuel'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['history']['energy_fuel'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['history']['pwr_loss'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['history']['energy_loss'] -['veh']['pt_type']['HybridElectricVehicle']['fc']['history']['fc_on'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['i'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['eff'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['pwr_mech_fwd_out_max'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['pwr_mech_bwd_out_max'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['pwr_rate_out_max'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['pwr_out_req'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['energy_out_req'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['pwr_elec_prop_in'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['energy_elec_prop_in'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['pwr_mech_prop_out'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['energy_mech_prop_out'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['pwr_mech_dyn_brake'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['energy_mech_dyn_brake'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['pwr_elec_dyn_brake'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['energy_elec_dyn_brake'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['pwr_loss'] -['veh']['pt_type']['HybridElectricVehicle']['em']['state']['energy_loss'] -['veh']['pt_type']['HybridElectricVehicle']['em']['pwr_out_frac_interp'] -['veh']['pt_type']['HybridElectricVehicle']['em']['eff_interp'] -['veh']['pt_type']['HybridElectricVehicle']['em']['pwr_out_max_watts'] -['veh']['pt_type']['HybridElectricVehicle']['em']['specific_pwr_watts_per_kilogram'] -['veh']['pt_type']['HybridElectricVehicle']['em']['mass_kilograms'] -['veh']['pt_type']['HybridElectricVehicle']['em']['save_interval'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['i'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['eff'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['pwr_mech_fwd_out_max'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['pwr_mech_bwd_out_max'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['pwr_rate_out_max'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['pwr_out_req'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['energy_out_req'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['pwr_elec_prop_in'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['energy_elec_prop_in'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['pwr_mech_prop_out'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['energy_mech_prop_out'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['pwr_mech_dyn_brake'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['energy_mech_dyn_brake'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['pwr_elec_dyn_brake'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['energy_elec_dyn_brake'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['pwr_loss'] -['veh']['pt_type']['HybridElectricVehicle']['em']['history']['energy_loss'] -['veh']['pt_type']['HybridElectricVehicle']['mass'] +['veh']['pt_type']['ConventionalVehicle']['fs']['pwr_out_max_watts'] +['veh']['pt_type']['ConventionalVehicle']['fs']['pwr_ramp_lag_seconds'] +['veh']['pt_type']['ConventionalVehicle']['fs']['energy_capacity_joules'] +['veh']['pt_type']['ConventionalVehicle']['fc']['mass_kilograms'] +['veh']['pt_type']['ConventionalVehicle']['fc']['specific_pwr_watts_per_kilogram'] +['veh']['pt_type']['ConventionalVehicle']['fc']['pwr_out_max_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['pwr_out_max_init_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['pwr_ramp_lag_seconds'] +['veh']['pt_type']['ConventionalVehicle']['fc']['eff_interp_from_pwr_out']['Interp1D']['x'] +['veh']['pt_type']['ConventionalVehicle']['fc']['eff_interp_from_pwr_out']['Interp1D']['f_x'] +['veh']['pt_type']['ConventionalVehicle']['fc']['pwr_idle_fuel_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['save_interval'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['i'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['pwr_out_max_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['pwr_prop_max_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['eff'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['pwr_propulsion_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['energy_propulsion_joules'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['pwr_aux_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['energy_aux_joules'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['pwr_fuel_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['energy_fuel_joules'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['pwr_loss_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['energy_loss_joules'] +['veh']['pt_type']['ConventionalVehicle']['fc']['state']['fc_on'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['i'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['pwr_out_max_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['pwr_prop_max_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['eff'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['pwr_propulsion_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['energy_propulsion_joules'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['pwr_aux_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['energy_aux_joules'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['pwr_fuel_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['energy_fuel_joules'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['pwr_loss_watts'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['energy_loss_joules'] +['veh']['pt_type']['ConventionalVehicle']['fc']['history']['fc_on'] +['veh']['pt_type']['ConventionalVehicle']['mass'] +['veh']['pt_type']['ConventionalVehicle']['alt_eff'] ['veh']['chassis']['drag_coef'] ['veh']['chassis']['frontal_area_square_meters'] ['veh']['chassis']['wheel_rr_coef'] @@ -144,55 +54,55 @@ ['veh']['trans_eff'] ['veh']['save_interval'] ['veh']['state']['i'] -['veh']['state']['pwr_prop_pos_max'] -['veh']['state']['pwr_prop_neg_max'] -['veh']['state']['pwr_tractive'] -['veh']['state']['energy_tractive'] -['veh']['state']['pwr_aux'] -['veh']['state']['energy_aux'] -['veh']['state']['pwr_drag'] -['veh']['state']['energy_drag'] -['veh']['state']['pwr_accel'] -['veh']['state']['energy_accel'] -['veh']['state']['pwr_ascent'] -['veh']['state']['energy_ascent'] -['veh']['state']['pwr_rr'] -['veh']['state']['energy_rr'] -['veh']['state']['pwr_whl_inertia'] -['veh']['state']['energy_whl_inertia'] -['veh']['state']['pwr_brake'] -['veh']['state']['energy_brake'] +['veh']['state']['pwr_prop_fwd_max_watts'] +['veh']['state']['pwr_prop_bwd_max_watts'] +['veh']['state']['pwr_tractive_watts'] +['veh']['state']['energy_tractive_joules'] +['veh']['state']['pwr_aux_watts'] +['veh']['state']['energy_aux_joules'] +['veh']['state']['pwr_drag_watts'] +['veh']['state']['energy_drag_joules'] +['veh']['state']['pwr_accel_watts'] +['veh']['state']['energy_accel_joules'] +['veh']['state']['pwr_ascent_watts'] +['veh']['state']['energy_ascent_joules'] +['veh']['state']['pwr_rr_watts'] +['veh']['state']['energy_rr_joules'] +['veh']['state']['pwr_whl_inertia_watts'] +['veh']['state']['energy_whl_inertia_joules'] +['veh']['state']['pwr_brake_watts'] +['veh']['state']['energy_brake_joules'] ['veh']['state']['curr_pwr_met'] ['veh']['state']['all_curr_pwr_met'] -['veh']['state']['speed_ach'] -['veh']['state']['dist'] +['veh']['state']['speed_ach_meters_per_second'] +['veh']['state']['dist_meters'] ['veh']['state']['grade_curr'] -['veh']['state']['air_density'] +['veh']['state']['air_density_kilograms_per_cubic_meter'] ['veh']['history']['i'] -['veh']['history']['pwr_prop_pos_max'] -['veh']['history']['pwr_prop_neg_max'] -['veh']['history']['pwr_tractive'] -['veh']['history']['energy_tractive'] -['veh']['history']['pwr_aux'] -['veh']['history']['energy_aux'] -['veh']['history']['pwr_drag'] -['veh']['history']['energy_drag'] -['veh']['history']['pwr_accel'] -['veh']['history']['energy_accel'] -['veh']['history']['pwr_ascent'] -['veh']['history']['energy_ascent'] -['veh']['history']['pwr_rr'] -['veh']['history']['energy_rr'] -['veh']['history']['pwr_whl_inertia'] -['veh']['history']['energy_whl_inertia'] -['veh']['history']['pwr_brake'] -['veh']['history']['energy_brake'] +['veh']['history']['pwr_prop_fwd_max_watts'] +['veh']['history']['pwr_prop_bwd_max_watts'] +['veh']['history']['pwr_tractive_watts'] +['veh']['history']['energy_tractive_joules'] +['veh']['history']['pwr_aux_watts'] +['veh']['history']['energy_aux_joules'] +['veh']['history']['pwr_drag_watts'] +['veh']['history']['energy_drag_joules'] +['veh']['history']['pwr_accel_watts'] +['veh']['history']['energy_accel_joules'] +['veh']['history']['pwr_ascent_watts'] +['veh']['history']['energy_ascent_joules'] +['veh']['history']['pwr_rr_watts'] +['veh']['history']['energy_rr_joules'] +['veh']['history']['pwr_whl_inertia_watts'] +['veh']['history']['energy_whl_inertia_joules'] +['veh']['history']['pwr_brake_watts'] +['veh']['history']['energy_brake_joules'] ['veh']['history']['curr_pwr_met'] ['veh']['history']['all_curr_pwr_met'] -['veh']['history']['speed_ach'] -['veh']['history']['dist'] +['veh']['history']['speed_ach_meters_per_second'] +['veh']['history']['dist_meters'] ['veh']['history']['grade_curr'] -['veh']['history']['air_density'] +['veh']['history']['air_density_kilograms_per_cubic_meter'] ['cyc']['init_elev_meters'] ['cyc']['time_seconds'] ['cyc']['speed_meters_per_second'] @@ -200,6 +110,8 @@ ['cyc']['grade'] ['cyc']['elev_meters'] ['cyc']['pwr_max_chrg_watts'] +['cyc']['grade_interp']['Interp1D']['x'] +['cyc']['grade_interp']['Interp1D']['f_x'] ['sim_params']['ach_speed_max_iter'] ['sim_params']['ach_speed_tol'] ['sim_params']['ach_speed_solver_gain'] diff --git a/python/fastsim/tests/test_speedup.py b/python/fastsim/tests/test_speedup.py index 3ab9eefd..ac37561a 100644 --- a/python/fastsim/tests/test_speedup.py +++ b/python/fastsim/tests/test_speedup.py @@ -52,8 +52,8 @@ def test_conv_speedup(): # minimum allowed f3 / f2 speed ratio # there is some wiggle room on these but we're trying to get 10x speedup # relative to fastsim-2 with `save_interval` of `None` - min_speed_ratio_si_none = 7. - min_speed_ratio_si_1 = 2.5 + min_speed_ratio_si_none = 7.0 + min_speed_ratio_si_1 = 3. # load 2016 Toyota Prius Two from file veh = fsim.Vehicle.from_resource("2012_Ford_Fusion.yaml")