IPA-Marketing commited on
Commit
2461c9a
·
verified ·
1 Parent(s): 573eda5

Upload 5 files

Browse files
Files changed (5) hide show
  1. LICENSE.txt +31 -0
  2. README.md +80 -3
  3. generate_dataset.py +114 -0
  4. ribbon_density_v1.0.csv +601 -0
  5. sample_analysis.ipynb +101 -0
LICENSE.txt ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Creative Commons Attribution 4.0 International (CC BY 4.0)
2
+ ===========================================================
3
+
4
+ Copyright (c) 2026 Innovative Process Applications (IPA)
5
+
6
+ This dataset is licensed under the Creative Commons Attribution 4.0
7
+ International License. You are free to:
8
+
9
+ - Share: copy and redistribute the material in any medium or format
10
+ - Adapt: remix, transform, and build upon the material
11
+ for any purpose, even commercially.
12
+
13
+ Under the following terms:
14
+
15
+ - Attribution: You must give appropriate credit, provide a link to
16
+ the license, and indicate if changes were made. You may do so in
17
+ any reasonable manner, but not in any way that suggests the
18
+ licensor endorses you or your use.
19
+
20
+ Recommended attribution:
21
+
22
+ "Roller Compaction: Ribbon Density vs. Process Parameters (Synthetic),
23
+ v1.0, by Innovative Process Applications (IPA), CC BY 4.0,
24
+ https://www.innovativeprocess.com"
25
+
26
+ Full license text: https://creativecommons.org/licenses/by/4.0/legalcode
27
+
28
+ DISCLAIMER: This dataset is synthetic and intended for educational use
29
+ only. It does not represent real equipment, customer, or production
30
+ data. IPA makes no warranty as to its fitness for any particular
31
+ purpose, including regulatory, commercial, or safety-critical use.
README.md CHANGED
@@ -1,3 +1,80 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Roller Compaction: Ribbon Density vs. Process Parameters (Synthetic)
2
+
3
+ **Version:** 1.0
4
+ **Publisher:** [Innovative Process Applications (IPA)](https://www.innovativeprocess.com)
5
+ **License:** Creative Commons Attribution 4.0 International (CC BY 4.0)
6
+ **Contact:** Crestwood, IL, USA
7
+
8
+ > ⚠️ **This dataset is 100% synthetic and intended for educational use only.**
9
+ > It was generated from a published physical model (Johanson rolling theory + Heckel densification) — not measured on any real equipment, customer, or production batch. Do not use it for regulatory submissions, equipment validation, or commercial process design.
10
+
11
+ ---
12
+
13
+ ## What's in this dataset
14
+
15
+ 600 simulated roller compaction runs on a representative pharmaceutical excipient blend (microcrystalline cellulose / lactose), spanning the operating envelope of a lab-to-pilot scale twin-feed-screw roller compactor.
16
+
17
+ | Column | Units | Description |
18
+ |---|---|---|
19
+ | `run_id` | — | Unique run identifier |
20
+ | `roll_force_kN_per_cm` | kN/cm | Specific roll force (normalized by roll width) |
21
+ | `roll_speed_rpm` | rpm | Roll rotation speed |
22
+ | `feed_screw_rpm` | rpm | Twin feed screw rotation speed |
23
+ | `roll_gap_mm` | mm | Target ribbon thickness / roll gap |
24
+ | `peak_pressure_MPa` | MPa | Computed peak nip pressure (Johanson) |
25
+ | `ribbon_rel_density` | — | Relative density (fraction of true density) |
26
+ | `ribbon_density_g_cc` | g/cc | Absolute ribbon density |
27
+ | `ribbon_porosity` | — | 1 − relative density |
28
+ | `density_CV_percent` | % | Across-width density coefficient of variation (uniformity) |
29
+ | `throughput_kg_hr` | kg/hr | Mass throughput |
30
+
31
+ ## Realistic ranges (grounded in the literature)
32
+
33
+ The generator uses ranges consistent with published roller compaction studies on MCC/lactose blends:
34
+
35
+ - **Roll force:** 2–14 kN/cm (typical lab/pilot range)
36
+ - **Roll speed:** 1–12 rpm
37
+ - **Feed-to-roll speed ratio:** 3–30 (optimum ≈ 11 for twin feed screws on MCC)
38
+ - **Peak nip pressure:** ~30–200 MPa
39
+ - **Relative density:** 0.55–0.80 (ribbons below ~0.55 tend to crumble; above ~0.85 you over-compact and lose downstream granulation behavior)
40
+ - **Material:** true density 1.55 g/cc, bulk density 0.45 g/cc, Heckel K ≈ 0.018 MPa⁻¹
41
+
42
+ ## Physical model
43
+
44
+ The synthetic data is generated from:
45
+
46
+ 1. **Johanson rolling theory (1965)** — peak nip pressure as a function of roll force, gap, and roll geometry.
47
+ 2. **Heckel equation** — relative density as a function of applied pressure: `ln(1/(1−D)) = K·P + A`.
48
+ 3. **Twin feed screw effect** — a Gaussian optimality response centered on feed/roll ratio ≈ 11, penalizing both starved and over-fed nip conditions. This reflects IPA's twin-feed-screw design advantage for maintaining uniform nip feeding.
49
+ 4. **Realistic measurement noise** (~1.5% on density, proportional noise on uniformity and throughput).
50
+
51
+ Full generator source is in `generate_dataset.py` — reproducible with seed 42.
52
+
53
+ ## What you can teach with it
54
+
55
+ - **DOE / Response Surface Methodology:** fit a quadratic model to ribbon density as a function of roll force, roll speed, and feed screw speed.
56
+ - **Process optimization:** find the operating window that maximizes density while keeping CV% under a target (e.g., < 3%).
57
+ - **Regression & ML:** compare linear regression, random forests, and Gaussian processes on a small-but-physical dataset.
58
+ - **Quality-by-Design (QbD):** illustrate design space, critical process parameters (CPPs), and critical quality attributes (CQAs).
59
+
60
+ ## Cross-links (other places to find this dataset)
61
+
62
+ - **Kaggle:** [link after publication]
63
+ - **Hugging Face Datasets:** [link after publication]
64
+ - **Zenodo (DOI):** [link after publication]
65
+ - **GitHub:** [link after publication]
66
+ - **IPA website:** https://www.innovativeprocess.com
67
+
68
+ ## About IPA
69
+
70
+ Innovative Process Applications designs and manufactures twin-feed-screw roller compactors, mills, and size-reduction equipment for the pharmaceutical, nutraceutical, chemical, and food industries. Based in Crestwood, Illinois, IPA is a direct OEM alternative to legacy Fitzpatrick Chilsonator and FitzMill systems, with American manufacturing and direct engineer access. Learn more at [innovativeprocess.com](https://www.innovativeprocess.com).
71
+
72
+ ## Citation
73
+
74
+ If you use this dataset in teaching, a notebook, a paper, or a blog post, please cite:
75
+
76
+ > Innovative Process Applications (2026). *Roller Compaction: Ribbon Density vs. Process Parameters (Synthetic), v1.0*. CC BY 4.0. https://www.innovativeprocess.com
77
+
78
+ ## Version history
79
+
80
+ - **v1.0** (April 2026) — Initial release. 600 runs, 4 process parameters, 6 response variables.
generate_dataset.py ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ IPA Roller Compaction Synthetic Dataset Generator v1.0
3
+ ========================================================
4
+ Generates a physically plausible synthetic dataset based on:
5
+ - Johanson rolling theory (Johanson, 1965) for nip angle & pressure
6
+ - Heckel equation for powder densification under pressure
7
+ - Empirical twin-feed-screw effect on ribbon uniformity
8
+
9
+ THIS IS SYNTHETIC EDUCATIONAL DATA. NOT REAL CUSTOMER OR LAB DATA.
10
+ Generated by Innovative Process Applications (IPA) for teaching DOE/RSM.
11
+ """
12
+
13
+ import numpy as np
14
+ import pandas as pd
15
+
16
+ rng = np.random.default_rng(seed=42) # reproducible
17
+
18
+ # ---- Physical constants & realistic ranges ----
19
+ # Grounded in published roller compaction literature for pharma excipients
20
+ # (microcrystalline cellulose / lactose blends on lab-to-pilot scale rolls)
21
+
22
+ N_RUNS = 600 # enough for DOE/RSM teaching, small enough to inspect by eye
23
+
24
+ # Process parameter ranges (realistic for IPA CL-series lab/pilot compactors)
25
+ ROLL_FORCE_KN_CM = (2.0, 14.0) # kN/cm of roll width
26
+ ROLL_SPEED_RPM = (1.0, 12.0) # roll rotation speed
27
+ FEED_SCREW_RPM = (10.0, 120.0) # twin feed screw speed
28
+ ROLL_GAP_MM = (1.5, 4.5) # ribbon thickness target
29
+
30
+ # Material parameters (MCC-lactose blend, representative)
31
+ RHO_TRUE = 1.55 # true density, g/cc
32
+ RHO_BULK = 0.45 # tapped bulk density, g/cc
33
+ HECKEL_K = 0.018 # 1/MPa, Heckel compressibility constant
34
+ HECKEL_A = 0.62 # Heckel intercept (related to initial packing)
35
+
36
+ # Machine geometry (representative of CL2x6 class roller compactor)
37
+ ROLL_DIAMETER_MM = 150.0
38
+ ROLL_WIDTH_MM = 50.0
39
+
40
+ def johanson_pressure_mpa(force_kn_per_cm, gap_mm):
41
+ """
42
+ Approximation of peak nip pressure from Johanson rolling theory.
43
+ Pressure scales with force/(contact area), and contact area grows
44
+ with sqrt(R * (gap_entry - gap)).
45
+ """
46
+ # Effective contact length proxy (mm): sqrt(R * delta_gap)
47
+ # Assume entry gap ~ 3x exit gap for MCC-like materials
48
+ contact_len_mm = np.sqrt(ROLL_DIAMETER_MM/2 * 2.0 * gap_mm)
49
+ # Force per unit area: (kN/cm * 10 N/mm) / (contact_len_mm) -> MPa-ish
50
+ pressure = (force_kn_per_cm * 100.0) / contact_len_mm
51
+ return pressure # MPa
52
+
53
+ def heckel_relative_density(pressure_mpa):
54
+ """Heckel equation: ln(1/(1-D)) = K*P + A => D = 1 - exp(-(K*P + A))"""
55
+ return 1.0 - np.exp(-(HECKEL_K * pressure_mpa + HECKEL_A))
56
+
57
+ def feed_ratio_effect(feed_rpm, roll_rpm):
58
+ """
59
+ Twin feed screw effect: under-feeding starves the nip (low density,
60
+ high variability); over-feeding causes slip and pre-compaction.
61
+ Optimal ratio roughly 8-15 for twin screws on MCC.
62
+ """
63
+ ratio = feed_rpm / roll_rpm
64
+ # Gaussian-like response centered at ratio=11
65
+ optimality = np.exp(-((ratio - 11.0) ** 2) / (2 * 6.0**2))
66
+ return optimality # 0..1
67
+
68
+ # ---- Generate runs ----
69
+ roll_force = rng.uniform(*ROLL_FORCE_KN_CM, N_RUNS)
70
+ roll_speed = rng.uniform(*ROLL_SPEED_RPM, N_RUNS)
71
+ feed_speed = rng.uniform(*FEED_SCREW_RPM, N_RUNS)
72
+ roll_gap = rng.uniform(*ROLL_GAP_MM, N_RUNS)
73
+
74
+ # Physics
75
+ peak_pressure = johanson_pressure_mpa(roll_force, roll_gap)
76
+ base_rel_density = heckel_relative_density(peak_pressure)
77
+ feed_opt = feed_ratio_effect(feed_speed, roll_speed)
78
+
79
+ # Combine: good feed ratio lets you reach base density; poor ratio penalizes
80
+ relative_density = base_rel_density * (0.85 + 0.15 * feed_opt)
81
+ # Add realistic measurement noise (~1.5% relative)
82
+ relative_density += rng.normal(0, 0.015, N_RUNS)
83
+ relative_density = np.clip(relative_density, 0.40, 0.95)
84
+
85
+ ribbon_density = relative_density * RHO_TRUE # g/cc
86
+ porosity = 1.0 - relative_density # fraction
87
+
88
+ # Ribbon uniformity: twin feed screws give lower CV across roll width
89
+ # when feed ratio is in the sweet spot; degrades otherwise
90
+ density_cv_pct = (2.0 + 4.5 * (1 - feed_opt)) + rng.normal(0, 0.4, N_RUNS)
91
+ density_cv_pct = np.clip(density_cv_pct, 1.0, 10.0)
92
+
93
+ throughput_kg_hr = (
94
+ roll_speed * roll_gap * ROLL_WIDTH_MM * ribbon_density * 60 / 1000 * 0.85
95
+ ) + rng.normal(0, 1.5, N_RUNS)
96
+ throughput_kg_hr = np.clip(throughput_kg_hr, 0, None)
97
+
98
+ df = pd.DataFrame({
99
+ "run_id": np.arange(1, N_RUNS + 1),
100
+ "roll_force_kN_per_cm": np.round(roll_force, 2),
101
+ "roll_speed_rpm": np.round(roll_speed, 2),
102
+ "feed_screw_rpm": np.round(feed_speed, 1),
103
+ "roll_gap_mm": np.round(roll_gap, 2),
104
+ "peak_pressure_MPa": np.round(peak_pressure, 1),
105
+ "ribbon_rel_density": np.round(relative_density, 4),
106
+ "ribbon_density_g_cc": np.round(ribbon_density, 4),
107
+ "ribbon_porosity": np.round(porosity, 4),
108
+ "density_CV_percent": np.round(density_cv_pct, 2),
109
+ "throughput_kg_hr": np.round(throughput_kg_hr, 2),
110
+ })
111
+
112
+ df.to_csv("ribbon_density_v1.0.csv", index=False)
113
+ print(f"Wrote {len(df)} rows")
114
+ print(df.describe().round(3))
ribbon_density_v1.0.csv ADDED
@@ -0,0 +1,601 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ run_id,roll_force_kN_per_cm,roll_speed_rpm,feed_screw_rpm,roll_gap_mm,peak_pressure_MPa,ribbon_rel_density,ribbon_density_g_cc,ribbon_porosity,density_CV_percent,throughput_kg_hr
2
+ 1,11.29,6.25,72.3,3.33,50.5,0.7925,1.2284,0.2075,1.55,64.12
3
+ 2,7.27,9.38,70.6,3.37,32.3,0.6925,1.0734,0.3075,2.99,84.72
4
+ 3,12.3,10.94,101.1,1.91,72.8,0.8489,1.3159,0.1511,2.07,71.47
5
+ 4,10.37,8.93,88.2,3.58,44.7,0.7605,1.1788,0.2395,1.07,93.54
6
+ 5,3.13,11.6,12.9,3.52,13.6,0.4967,0.7699,0.5033,4.49,81.62
7
+ 6,13.71,9.6,15.4,3.55,59.4,0.6962,1.0791,0.3038,4.77,93.36
8
+ 7,11.13,10.53,76.2,1.72,69.3,0.8249,1.2786,0.1751,3.02,58.84
9
+ 8,11.43,2.26,63.5,2.84,55.4,0.6882,1.0666,0.3118,6.47,18.04
10
+ 9,3.54,9.06,38.6,2.73,17.5,0.5829,0.9035,0.4171,4.18,57.77
11
+ 10,7.4,5.84,56.1,1.76,45.6,0.7836,1.2146,0.2164,2.9,30.6
12
+ 11,6.45,7.08,93.4,2.17,35.8,0.7341,1.1379,0.2659,1.78,45.62
13
+ 12,13.12,8.2,100.9,2.82,63.8,0.8114,1.2576,0.1886,2.1,74.36
14
+ 13,9.73,11.67,71.7,3.73,41.1,0.707,1.0959,0.293,3.38,119.7
15
+ 14,11.87,11.83,52.4,2.21,65.2,0.7844,1.2159,0.2156,3.74,80.85
16
+ 15,7.32,4.17,39.8,3.99,29.9,0.7211,1.1177,0.2789,2.14,49.49
17
+ 16,4.73,9.07,67.4,3.14,21.8,0.6433,0.9971,0.3567,2.09,74.88
18
+ 17,8.66,9.25,44.6,3.78,36.3,0.6927,1.0737,0.3073,4.41,96.84
19
+ 18,2.77,4.81,72.1,2.92,13.2,0.5531,0.8574,0.4469,2.61,28.91
20
+ 19,11.93,2.36,84.4,3.0,56.3,0.6707,1.0396,0.3293,7.31,19.51
21
+ 20,9.58,1.45,17.3,3.36,42.7,0.761,1.1796,0.239,2.04,15.93
22
+ 21,11.1,9.55,10.1,4.28,43.8,0.6543,1.0141,0.3457,5.77,106.89
23
+ 22,6.25,6.39,33.4,2.98,29.6,0.6426,0.996,0.3574,3.65,49.44
24
+ 23,13.65,11.84,108.4,3.09,63.4,0.8208,1.2723,0.1792,2.2,119.09
25
+ 24,12.72,6.11,81.1,3.31,57.1,0.8231,1.2759,0.1769,2.08,65.66
26
+ 25,11.34,11.76,28.9,3.71,48.1,0.6943,1.0761,0.3057,4.91,118.87
27
+ 26,4.34,5.53,107.9,1.72,27.0,0.5689,0.8818,0.4311,4.99,18.47
28
+ 27,7.6,9.73,61.7,3.05,35.6,0.6959,1.0787,0.3041,2.86,82.06
29
+ 28,2.53,1.93,62.4,2.94,12.0,0.4714,0.7306,0.5286,6.44,10.88
30
+ 29,3.85,7.11,112.9,4.27,15.2,0.5667,0.8784,0.4333,3.02,68.76
31
+ 30,10.2,9.82,16.5,2.98,48.2,0.6915,1.0719,0.3085,6.07,78.02
32
+ 31,10.94,11.17,33.7,2.9,52.4,0.7167,1.1109,0.2833,4.61,92.9
33
+ 32,13.61,10.05,74.4,4.39,53.1,0.7853,1.2173,0.2147,3.36,139.9
34
+ 33,5.91,1.41,31.5,2.85,28.6,0.5704,0.8841,0.4296,5.68,9.16
35
+ 34,6.45,5.1,84.7,2.04,36.8,0.6765,1.0486,0.3235,3.7,27.76
36
+ 35,7.63,1.54,33.6,2.15,42.5,0.6695,1.0376,0.3305,5.09,9.2
37
+ 36,4.27,2.2,20.9,1.79,26.1,0.6515,1.0098,0.3485,1.96,13.17
38
+ 37,3.56,8.43,32.8,1.5,23.7,0.5757,0.8923,0.4243,4.36,27.26
39
+ 38,7.71,8.85,56.5,2.8,37.6,0.7089,1.0988,0.2911,3.79,69.6
40
+ 39,4.72,9.51,29.4,3.81,19.8,0.5856,0.9078,0.4144,4.7,82.63
41
+ 40,10.04,10.52,24.8,3.7,42.6,0.6768,1.0491,0.3232,5.46,103.32
42
+ 41,7.25,9.13,104.6,1.6,46.8,0.7387,1.1449,0.2613,2.27,42.5
43
+ 42,11.99,9.81,45.2,3.21,54.7,0.7576,1.1743,0.2424,4.6,96.31
44
+ 43,10.4,1.54,49.7,1.96,60.6,0.6718,1.0413,0.3282,6.47,10.72
45
+ 44,5.75,3.58,16.1,4.32,22.6,0.6035,0.9354,0.3965,4.96,37.59
46
+ 45,11.99,7.84,49.3,2.0,69.2,0.7982,1.2372,0.2018,3.0,48.96
47
+ 46,11.66,10.44,39.1,3.38,51.8,0.7095,1.0997,0.2905,4.03,102.68
48
+ 47,6.65,1.05,77.2,2.48,34.5,0.5976,0.9262,0.4024,6.02,5.5
49
+ 48,5.46,6.66,32.6,3.42,24.1,0.6091,0.9441,0.3909,4.75,54.06
50
+ 49,10.19,8.45,107.7,2.74,50.3,0.7679,1.1902,0.2321,2.51,67.53
51
+ 50,3.68,1.33,112.3,3.78,15.4,0.5126,0.7945,0.4874,6.37,12.24
52
+ 51,4.4,5.41,21.0,2.19,24.3,0.5962,0.9241,0.4038,4.78,29.42
53
+ 52,2.09,10.85,21.8,4.22,8.3,0.4971,0.7706,0.5029,5.31,93.55
54
+ 53,11.44,8.39,22.7,3.0,53.9,0.727,1.1268,0.273,5.56,70.23
55
+ 54,9.98,3.61,78.2,3.77,42.0,0.6481,1.0046,0.3519,4.94,37.08
56
+ 55,10.46,10.38,23.4,4.05,42.5,0.6629,1.0275,0.3371,4.84,110.24
57
+ 56,11.37,4.83,103.8,4.5,43.8,0.6419,0.995,0.3581,5.34,56.29
58
+ 57,7.51,10.39,93.0,2.17,41.6,0.7436,1.1525,0.2564,1.47,63.83
59
+ 58,8.82,4.29,100.2,2.36,46.9,0.6619,1.026,0.3381,6.39,28.69
60
+ 59,3.68,7.49,67.9,2.25,20.0,0.5844,0.9058,0.4156,2.12,40.15
61
+ 60,3.37,5.37,119.6,2.29,18.2,0.5281,0.8186,0.4719,6.03,25.58
62
+ 61,10.02,4.02,14.9,3.25,45.4,0.689,1.068,0.311,5.3,36.55
63
+ 62,7.65,10.75,54.1,4.48,29.5,0.6674,1.0345,0.3326,3.61,125.94
64
+ 63,8.78,3.06,45.6,4.47,33.9,0.6621,1.0263,0.3379,2.69,34.98
65
+ 64,11.18,1.93,114.4,3.08,52.0,0.6491,1.0061,0.3509,6.55,14.58
66
+ 65,9.62,4.76,73.5,3.42,42.5,0.7394,1.1461,0.2606,3.47,44.77
67
+ 66,8.64,8.89,98.7,4.08,34.9,0.7335,1.1369,0.2665,1.77,106.5
68
+ 67,8.71,9.88,28.7,4.3,34.3,0.6351,0.9844,0.3649,4.44,108.42
69
+ 68,5.65,11.99,117.6,2.11,31.7,0.6846,1.0612,0.3154,2.51,67.44
70
+ 69,2.37,4.26,64.9,3.09,11.0,0.5497,0.852,0.4503,3.14,29.08
71
+ 70,7.24,5.49,64.3,4.0,29.6,0.6484,1.005,0.3516,1.21,55.83
72
+ 71,4.58,2.51,116.8,2.41,24.1,0.5256,0.8146,0.4744,6.01,13.03
73
+ 72,6.9,7.32,51.9,2.82,33.6,0.6815,1.0563,0.3185,3.46,54.67
74
+ 73,12.24,11.97,53.7,4.46,47.3,0.7424,1.1507,0.2576,4.16,155.25
75
+ 74,4.81,8.71,74.3,4.46,18.6,0.6011,0.9317,0.3989,2.06,93.76
76
+ 75,2.7,7.55,24.1,4.22,10.7,0.5104,0.7911,0.4896,4.5,64.13
77
+ 76,5.38,5.32,45.3,3.9,22.2,0.6487,1.0055,0.3513,2.37,56.13
78
+ 77,5.52,11.07,31.3,2.31,29.7,0.6542,1.014,0.3458,5.02,66.11
79
+ 78,9.94,6.47,21.4,2.46,51.7,0.7131,1.1053,0.2869,3.98,43.49
80
+ 79,8.68,2.48,105.3,3.14,40.0,0.6272,0.9722,0.3728,6.16,21.14
81
+ 80,11.41,5.02,74.8,3.18,52.2,0.7945,1.2315,0.2055,2.97,51.1
82
+ 81,9.97,1.74,49.5,3.02,46.9,0.6322,0.9799,0.3678,6.39,14.2
83
+ 82,6.88,3.22,55.0,3.41,30.4,0.663,1.0276,0.337,4.03,30.57
84
+ 83,11.77,1.19,57.5,2.72,58.2,0.6744,1.0453,0.3256,6.01,7.7
85
+ 84,4.0,5.99,79.6,3.75,16.9,0.5982,0.9271,0.4018,2.46,52.85
86
+ 85,2.27,7.98,111.9,2.5,11.7,0.5507,0.8536,0.4493,2.97,43.18
87
+ 86,3.08,4.78,112.6,2.49,15.9,0.5023,0.7786,0.4977,6.19,21.7
88
+ 87,10.67,5.62,53.1,1.88,63.5,0.8096,1.2548,0.1904,2.21,33.47
89
+ 88,7.54,11.55,46.2,2.07,42.8,0.6998,1.0846,0.3002,4.18,68.01
90
+ 89,3.94,9.27,59.6,4.05,16.0,0.5888,0.9127,0.4112,2.8,87.78
91
+ 90,8.01,6.95,72.5,2.84,38.8,0.7301,1.1317,0.2699,1.99,54.91
92
+ 91,3.83,4.13,60.8,2.18,21.2,0.6168,0.9561,0.3832,3.29,19.65
93
+ 92,10.36,10.87,82.5,3.78,43.5,0.7458,1.156,0.2542,2.62,123.53
94
+ 93,7.35,3.59,71.0,3.16,33.8,0.6227,0.9651,0.3773,4.61,27.77
95
+ 94,6.57,4.58,45.3,1.56,42.9,0.7607,1.1791,0.2393,1.88,20.55
96
+ 95,5.62,11.0,48.0,2.45,29.3,0.6481,1.0045,0.3519,4.14,68.59
97
+ 96,9.56,6.82,51.6,2.03,54.8,0.8203,1.2715,0.1797,2.53,42.73
98
+ 97,6.34,9.17,20.4,3.47,27.8,0.6019,0.9329,0.3981,5.15,77.74
99
+ 98,3.05,7.5,28.3,2.33,16.3,0.5459,0.8461,0.4541,4.53,37.03
100
+ 99,3.42,8.19,89.5,1.69,21.4,0.6457,1.0009,0.3543,2.36,37.47
101
+ 100,13.54,4.29,52.8,1.66,85.7,0.8942,1.386,0.1058,2.67,25.34
102
+ 101,12.9,3.66,33.6,3.25,58.5,0.7988,1.2382,0.2012,2.6,39.6
103
+ 102,10.4,4.55,71.9,1.57,67.9,0.8007,1.241,0.1993,2.86,22.91
104
+ 103,5.19,2.71,93.1,4.05,21.1,0.5452,0.8451,0.4548,6.14,24.91
105
+ 104,13.63,10.62,38.3,1.97,79.4,0.7892,1.2232,0.2108,4.36,66.2
106
+ 105,11.35,4.12,100.9,3.32,50.8,0.67,1.0385,0.33,5.97,37.12
107
+ 106,10.6,7.18,112.0,2.83,51.4,0.758,1.1749,0.242,2.69,61.46
108
+ 107,7.39,9.71,75.7,2.83,35.9,0.7187,1.1139,0.2813,2.42,77.68
109
+ 108,5.27,9.62,83.6,1.72,32.8,0.6855,1.0625,0.3145,2.13,47.59
110
+ 109,3.16,5.82,15.8,3.91,13.0,0.4939,0.7656,0.5061,4.5,43.06
111
+ 110,12.83,6.24,114.0,4.18,51.2,0.696,1.0788,0.304,4.22,71.73
112
+ 111,7.47,11.94,53.2,1.53,49.3,0.7071,1.096,0.2929,4.49,51.19
113
+ 112,4.43,8.42,111.6,2.04,25.3,0.6326,0.9806,0.3674,2.39,43.47
114
+ 113,5.67,9.96,73.7,4.21,22.6,0.6234,0.9663,0.3766,3.73,102.73
115
+ 114,8.95,10.93,10.5,3.15,41.2,0.6418,0.9948,0.3582,5.46,87.76
116
+ 115,4.12,9.66,14.2,1.95,24.1,0.5708,0.8848,0.4292,5.11,42.26
117
+ 116,12.28,3.04,84.8,2.11,69.0,0.7088,1.0986,0.2912,6.42,15.57
118
+ 117,11.1,7.18,71.9,3.48,48.6,0.7675,1.1896,0.2325,2.16,75.85
119
+ 118,10.63,2.12,12.9,3.67,45.3,0.7493,1.1614,0.2507,3.45,21.43
120
+ 119,7.19,8.18,91.8,3.3,32.3,0.7091,1.0991,0.2909,2.83,73.04
121
+ 120,9.53,11.51,103.7,4.36,37.3,0.7194,1.115,0.2806,1.9,142.86
122
+ 121,9.01,6.64,64.6,2.98,42.6,0.7407,1.1481,0.2593,2.44,58.7
123
+ 122,9.8,5.76,61.2,2.4,51.6,0.7809,1.2104,0.2191,2.09,43.49
124
+ 123,3.01,1.39,10.6,2.93,14.4,0.5766,0.8937,0.4234,2.04,10.17
125
+ 124,6.99,11.56,96.5,2.58,35.5,0.715,1.1083,0.285,2.73,81.34
126
+ 125,2.5,2.13,46.4,2.17,13.8,0.4975,0.7712,0.5025,6.1,7.07
127
+ 126,7.93,1.45,106.7,1.64,50.6,0.6666,1.0332,0.3334,6.16,9.23
128
+ 127,5.96,3.71,51.0,2.56,30.4,0.648,1.0044,0.352,2.45,22.7
129
+ 128,3.73,1.72,72.2,3.63,16.0,0.5103,0.791,0.4897,5.81,13.53
130
+ 129,3.24,6.01,39.7,1.56,21.2,0.622,0.9641,0.378,2.55,21.94
131
+ 130,9.05,6.68,27.7,2.82,44.0,0.6979,1.0817,0.3021,4.58,52.01
132
+ 131,4.05,4.44,95.2,3.43,17.8,0.5656,0.8767,0.4344,5.33,33.1
133
+ 132,13.1,1.56,64.6,3.33,58.6,0.6776,1.0502,0.3224,6.06,14.76
134
+ 133,8.97,2.23,69.0,3.83,37.4,0.6206,0.9619,0.3794,6.57,21.13
135
+ 134,6.16,5.23,116.2,3.93,25.4,0.5771,0.8945,0.4229,5.51,46.22
136
+ 135,9.09,1.67,116.0,3.64,38.9,0.6216,0.9635,0.3784,6.31,13.3
137
+ 136,2.27,8.68,104.1,1.81,13.8,0.5775,0.8951,0.4225,2.36,36.23
138
+ 137,13.5,3.28,30.6,2.93,64.5,0.8284,1.284,0.1716,1.7,29.57
139
+ 138,7.79,4.32,75.4,3.31,34.9,0.6792,1.0527,0.3208,3.61,39.05
140
+ 139,11.39,5.34,106.6,2.24,62.2,0.7618,1.1807,0.2382,5.09,39.87
141
+ 140,2.99,5.58,51.2,1.63,19.2,0.6147,0.9527,0.3853,2.59,24.1
142
+ 141,7.84,1.02,21.1,2.17,43.4,0.6833,1.0591,0.3167,5.79,7.05
143
+ 142,7.89,2.23,99.2,2.86,38.1,0.609,0.9439,0.391,6.23,15.27
144
+ 143,13.25,10.49,63.0,2.74,65.4,0.809,1.2539,0.191,3.69,89.06
145
+ 144,8.86,1.01,72.1,2.03,50.8,0.6553,1.0156,0.3447,6.19,3.35
146
+ 145,7.68,6.59,118.0,3.97,31.5,0.6605,1.0238,0.3395,4.91,70.28
147
+ 146,5.2,6.38,76.8,4.28,20.5,0.6601,1.0232,0.3399,1.61,70.06
148
+ 147,5.98,4.66,56.7,2.1,33.7,0.7027,1.0891,0.2973,2.62,26.21
149
+ 148,8.25,5.74,50.7,4.29,32.5,0.6608,1.0243,0.3392,2.02,64.1
150
+ 149,7.27,9.59,55.9,1.55,47.6,0.7276,1.1278,0.2724,4.2,41.24
151
+ 150,2.26,10.25,23.0,4.27,8.9,0.5071,0.786,0.4929,5.18,86.01
152
+ 151,11.92,3.86,97.4,4.36,46.6,0.6677,1.0349,0.3323,5.82,44.34
153
+ 152,12.75,4.55,102.1,1.54,84.0,0.7743,1.2001,0.2257,5.57,20.04
154
+ 153,3.68,3.67,41.3,3.79,15.4,0.6077,0.9419,0.3923,2.32,32.26
155
+ 154,8.65,6.28,43.4,4.41,33.6,0.6917,1.0721,0.3083,3.35,74.53
156
+ 155,3.3,8.52,106.2,4.22,13.1,0.591,0.9161,0.409,2.1,84.69
157
+ 156,10.07,3.51,12.6,4.41,39.1,0.6892,1.0682,0.3108,4.41,41.85
158
+ 157,5.37,4.64,67.3,3.15,24.7,0.6627,1.0272,0.3373,3.01,38.01
159
+ 158,9.91,11.23,61.0,1.73,61.5,0.7843,1.2156,0.2157,3.63,61.3
160
+ 159,10.72,1.53,85.9,4.05,43.5,0.6546,1.0147,0.3454,5.98,15.86
161
+ 160,11.22,6.07,28.0,3.34,50.1,0.7264,1.126,0.2736,3.62,57.8
162
+ 161,3.29,8.83,83.5,3.34,14.7,0.5753,0.8917,0.4247,2.24,67.83
163
+ 162,12.99,2.65,51.4,2.75,63.9,0.778,1.2058,0.222,5.29,23.47
164
+ 163,4.76,1.52,78.1,3.22,21.7,0.5438,0.8428,0.4562,7.15,10.29
165
+ 164,2.45,2.52,14.4,1.96,14.3,0.5679,0.8803,0.4321,3.76,11.21
166
+ 165,8.66,11.11,60.8,3.72,36.7,0.6863,1.0638,0.3137,3.67,110.89
167
+ 166,6.45,1.1,67.4,1.73,40.1,0.619,0.9595,0.381,6.8,3.36
168
+ 167,11.96,3.07,33.6,3.69,50.8,0.7847,1.2163,0.2153,1.73,36.3
169
+ 168,11.7,1.34,25.4,4.05,47.5,0.726,1.1253,0.274,4.53,16.28
170
+ 169,5.81,2.22,30.7,2.92,27.8,0.671,1.0401,0.329,2.15,17.84
171
+ 170,13.43,7.82,47.9,3.03,63.0,0.7664,1.1879,0.2336,2.77,72.2
172
+ 171,5.49,3.66,20.6,2.44,28.7,0.6425,0.9959,0.3575,3.61,22.71
173
+ 172,8.18,7.26,114.2,4.41,31.8,0.6954,1.0779,0.3046,3.28,89.03
174
+ 173,5.07,7.49,54.5,3.7,21.5,0.615,0.9533,0.385,3.06,68.78
175
+ 174,13.23,10.34,99.0,2.61,66.9,0.8082,1.2527,0.1918,2.34,87.5
176
+ 175,3.98,1.05,117.2,2.02,22.8,0.5751,0.8915,0.4249,6.6,4.69
177
+ 176,2.54,10.39,18.9,2.16,14.1,0.5326,0.8256,0.4674,5.33,49.29
178
+ 177,7.22,7.81,81.7,2.89,34.7,0.7103,1.101,0.2897,2.0,63.75
179
+ 178,13.91,2.79,105.9,4.33,54.6,0.6733,1.0436,0.3267,6.66,33.08
180
+ 179,12.7,9.5,79.8,3.7,53.9,0.8016,1.2424,0.1984,2.11,111.89
181
+ 180,10.98,10.41,57.2,2.15,61.2,0.7708,1.1948,0.2292,3.69,68.43
182
+ 181,12.69,3.8,57.4,4.08,51.3,0.7788,1.2071,0.2212,3.21,46.57
183
+ 182,12.72,11.11,13.9,2.63,64.0,0.7469,1.1577,0.2531,5.03,87.44
184
+ 183,8.23,6.0,68.8,4.06,33.4,0.7082,1.0978,0.2918,2.03,72.37
185
+ 184,5.79,7.64,119.3,2.23,31.7,0.6714,1.0406,0.3286,2.9,44.53
186
+ 185,11.26,11.83,115.5,3.36,50.2,0.777,1.2043,0.223,1.88,122.04
187
+ 186,9.94,4.98,14.4,4.28,39.2,0.6843,1.0607,0.3157,4.24,56.95
188
+ 187,6.48,9.94,87.6,2.27,35.1,0.6942,1.076,0.3058,2.8,61.31
189
+ 188,3.13,4.5,43.2,3.58,13.5,0.5516,0.855,0.4484,2.55,37.45
190
+ 189,10.96,9.79,109.3,4.46,42.4,0.7583,1.1753,0.2417,2.22,129.93
191
+ 190,5.15,7.61,15.0,1.95,30.1,0.6266,0.9713,0.3734,5.84,36.07
192
+ 191,13.24,3.38,112.9,1.77,81.4,0.7516,1.165,0.2484,6.42,15.34
193
+ 192,4.89,5.55,102.1,3.52,21.3,0.5889,0.9128,0.4111,5.6,44.4
194
+ 193,3.47,4.49,22.9,2.52,17.9,0.5701,0.8837,0.4299,3.63,22.95
195
+ 194,11.97,1.86,16.6,1.71,74.7,0.864,1.3392,0.136,2.36,11.83
196
+ 195,3.84,1.33,101.8,2.93,18.3,0.5205,0.8069,0.4795,6.34,12.2
197
+ 196,4.15,4.81,27.1,3.76,17.5,0.57,0.8835,0.43,3.63,40.22
198
+ 197,9.19,1.21,68.8,2.36,48.9,0.6557,1.0164,0.3443,6.83,4.88
199
+ 198,12.49,2.82,110.7,2.51,64.5,0.737,1.1423,0.263,6.45,21.93
200
+ 199,4.36,8.98,72.4,4.04,17.7,0.5726,0.8875,0.4274,3.22,80.92
201
+ 200,5.72,8.79,53.7,3.06,26.7,0.6466,1.0023,0.3534,3.37,70.69
202
+ 201,11.33,9.12,59.0,4.03,46.1,0.7116,1.1029,0.2884,3.23,102.95
203
+ 202,13.66,4.49,16.9,2.84,66.2,0.7703,1.1939,0.2297,3.96,37.85
204
+ 203,8.01,10.79,116.6,4.36,31.3,0.6873,1.0653,0.3127,2.17,127.51
205
+ 204,3.73,7.53,44.2,3.45,16.4,0.5405,0.8378,0.4595,3.33,56.69
206
+ 205,2.17,2.39,30.8,1.85,13.0,0.576,0.8927,0.424,1.98,9.7
207
+ 206,4.76,2.58,41.5,4.16,19.0,0.5847,0.9063,0.4153,3.04,24.04
208
+ 207,3.58,8.62,116.1,2.97,17.0,0.5649,0.8756,0.4351,3.43,56.85
209
+ 208,10.13,2.9,20.4,1.92,59.6,0.8045,1.247,0.1955,2.78,15.86
210
+ 209,3.46,6.58,105.4,1.96,20.2,0.6199,0.9608,0.3801,2.75,32.16
211
+ 210,8.08,11.91,87.9,3.56,34.9,0.7177,1.1124,0.2823,2.47,117.68
212
+ 211,10.33,1.04,101.3,1.64,65.8,0.7156,1.1091,0.2844,6.48,4.18
213
+ 212,8.97,1.18,117.3,2.36,47.7,0.6569,1.0182,0.3431,6.72,8.38
214
+ 213,4.4,11.92,102.6,1.92,25.9,0.6749,1.0461,0.3251,2.57,61.51
215
+ 214,11.65,7.43,113.8,2.82,56.6,0.8036,1.2455,0.1964,3.29,67.52
216
+ 215,10.58,2.4,24.0,2.74,52.2,0.8051,1.2479,0.1949,1.8,20.82
217
+ 216,10.87,10.87,97.5,3.07,50.7,0.7633,1.1831,0.2367,2.39,102.29
218
+ 217,3.57,10.68,70.0,2.34,19.1,0.5991,0.9287,0.4009,2.73,60.56
219
+ 218,3.49,6.9,69.8,1.6,22.5,0.6469,1.0027,0.3531,1.8,28.82
220
+ 219,13.13,7.84,108.9,3.34,58.6,0.7723,1.1971,0.2277,2.13,81.4
221
+ 220,6.77,4.01,116.9,2.62,34.1,0.6108,0.9468,0.3892,5.98,26.47
222
+ 221,5.61,1.56,87.5,3.45,24.7,0.5907,0.9156,0.4093,6.93,11.89
223
+ 222,7.86,7.54,63.1,1.83,47.5,0.7703,1.1939,0.2297,2.69,39.9
224
+ 223,9.95,4.24,60.2,1.54,65.5,0.84,1.302,0.16,2.98,22.34
225
+ 224,13.47,8.3,52.5,2.24,73.4,0.8256,1.2796,0.1744,3.19,61.62
226
+ 225,5.44,10.2,49.8,2.87,26.2,0.6229,0.9654,0.3771,4.14,73.69
227
+ 226,13.1,1.2,53.1,2.68,65.3,0.7146,1.1076,0.2854,5.8,7.68
228
+ 227,2.3,7.55,19.9,3.93,9.5,0.4831,0.7488,0.5169,5.14,55.33
229
+ 228,8.66,3.54,18.5,2.63,43.6,0.6981,1.0821,0.3019,3.74,26.44
230
+ 229,9.61,10.61,95.8,3.09,44.6,0.772,1.1966,0.228,2.49,100.0
231
+ 230,3.27,3.79,59.1,3.28,14.7,0.5857,0.9079,0.4143,3.29,25.96
232
+ 231,3.68,7.72,112.4,1.57,24.0,0.6204,0.9616,0.3796,2.33,30.19
233
+ 232,7.03,7.09,77.3,3.05,32.9,0.7169,1.1112,0.2831,1.4,58.39
234
+ 233,13.59,5.36,13.9,2.53,69.7,0.7659,1.1871,0.2341,4.53,39.69
235
+ 234,9.15,8.45,27.3,2.76,45.0,0.7009,1.0863,0.2991,4.78,66.75
236
+ 235,13.2,8.98,32.6,1.8,80.3,0.8108,1.2567,0.1892,4.66,54.58
237
+ 236,11.65,7.24,117.3,3.85,48.5,0.7536,1.1681,0.2464,2.87,81.13
238
+ 237,7.61,9.34,34.1,4.33,29.9,0.6327,0.9806,0.3673,3.98,100.6
239
+ 238,11.42,11.82,66.7,1.57,74.5,0.8381,1.299,0.1619,3.19,61.4
240
+ 239,2.21,5.61,113.0,3.3,9.9,0.4983,0.7723,0.5017,4.94,39.19
241
+ 240,3.31,6.66,117.5,3.79,13.9,0.5504,0.8532,0.4496,3.52,54.2
242
+ 241,11.95,1.14,36.0,2.35,63.6,0.6923,1.0731,0.3077,5.92,6.61
243
+ 242,11.56,9.76,15.4,3.86,48.0,0.7236,1.1216,0.2764,4.86,110.1
244
+ 243,4.79,6.72,26.9,3.4,21.2,0.5931,0.9193,0.4069,4.26,52.97
245
+ 244,8.37,5.49,17.0,4.29,33.0,0.6525,1.0114,0.3475,4.14,61.76
246
+ 245,9.27,2.03,31.5,4.44,35.9,0.668,1.0354,0.332,3.04,21.65
247
+ 246,12.41,10.79,72.5,1.63,79.5,0.8297,1.286,0.1703,3.43,57.29
248
+ 247,9.24,5.35,110.4,2.83,44.8,0.6957,1.0783,0.3043,4.74,39.17
249
+ 248,6.95,8.51,69.1,3.14,32.0,0.6906,1.0705,0.3094,2.41,71.37
250
+ 249,6.49,2.64,78.9,1.94,38.0,0.5915,0.9169,0.4085,6.88,13.25
251
+ 250,7.11,11.58,32.2,2.51,36.7,0.6716,1.0409,0.3284,4.57,77.02
252
+ 251,9.82,2.96,98.1,4.46,38.0,0.6111,0.9472,0.3889,6.27,31.46
253
+ 252,12.41,3.19,78.0,1.55,81.4,0.7764,1.2035,0.2236,6.59,14.06
254
+ 253,7.45,10.45,105.1,2.86,36.0,0.7158,1.1095,0.2842,1.93,84.14
255
+ 254,4.97,11.04,114.4,4.03,20.2,0.6288,0.9747,0.3712,2.47,110.96
256
+ 255,4.84,3.33,48.3,2.47,25.1,0.6602,1.0234,0.3398,2.87,22.98
257
+ 256,10.95,6.17,20.0,2.94,52.2,0.709,1.099,0.291,4.41,46.87
258
+ 257,11.8,9.07,34.9,4.43,45.7,0.6907,1.0706,0.3093,4.48,108.52
259
+ 258,3.26,10.66,58.2,2.92,15.6,0.5597,0.8676,0.4403,3.69,69.22
260
+ 259,2.8,5.17,114.0,1.89,16.6,0.5398,0.8367,0.4602,6.08,20.73
261
+ 260,9.13,6.69,51.6,1.66,58.0,0.7736,1.1991,0.2264,2.41,34.45
262
+ 261,3.75,9.16,94.8,4.34,14.7,0.5617,0.8707,0.4383,2.04,88.58
263
+ 262,11.9,9.04,69.5,2.3,64.1,0.8249,1.2787,0.1751,2.61,67.28
264
+ 263,5.72,9.61,30.1,3.01,26.9,0.6018,0.9328,0.3982,4.88,68.08
265
+ 264,3.73,7.27,45.3,1.77,22.9,0.6115,0.9478,0.3885,2.81,30.76
266
+ 265,13.05,2.15,81.9,2.77,64.0,0.6777,1.0504,0.3223,6.91,17.69
267
+ 266,3.99,10.94,84.0,4.29,15.7,0.5717,0.8862,0.4283,2.83,105.0
268
+ 267,5.42,10.52,57.8,3.01,25.5,0.626,0.9702,0.374,3.02,78.19
269
+ 268,3.84,9.78,35.2,4.41,14.9,0.5557,0.8614,0.4443,4.88,95.08
270
+ 269,3.39,2.1,89.4,2.28,18.3,0.5096,0.7899,0.4904,7.39,11.96
271
+ 270,2.25,3.25,28.6,3.01,10.6,0.5749,0.8911,0.4251,2.69,21.8
272
+ 271,2.66,9.18,113.0,4.08,10.8,0.5446,0.8442,0.4554,2.68,82.03
273
+ 272,4.1,1.25,30.7,2.84,19.8,0.5273,0.8174,0.4727,6.17,9.29
274
+ 273,2.64,11.77,21.8,2.34,14.1,0.5456,0.8457,0.4544,4.43,59.27
275
+ 274,9.09,5.15,64.7,4.07,36.8,0.7222,1.1195,0.2778,1.41,59.45
276
+ 275,10.17,8.91,67.2,2.67,50.8,0.7581,1.1751,0.2419,2.79,70.8
277
+ 276,6.72,10.76,65.9,3.09,31.2,0.6617,1.0257,0.3383,3.03,86.66
278
+ 277,5.82,5.34,58.0,4.43,22.6,0.6619,1.0259,0.3381,1.64,63.17
279
+ 278,8.05,4.51,119.4,2.06,45.8,0.6757,1.0473,0.3243,6.31,25.15
280
+ 279,12.5,7.7,63.5,2.4,65.8,0.8107,1.2567,0.1893,2.7,59.65
281
+ 280,12.21,7.39,62.6,1.59,79.0,0.8585,1.3306,0.1415,1.8,38.27
282
+ 281,2.52,5.5,56.4,2.68,12.6,0.5718,0.8863,0.4282,1.86,31.81
283
+ 282,4.18,7.62,17.4,2.1,23.5,0.5696,0.883,0.4304,5.54,39.25
284
+ 283,4.84,11.29,75.2,3.54,21.0,0.6088,0.9437,0.3912,2.6,95.9
285
+ 284,4.99,6.14,35.1,2.04,28.5,0.6453,1.0003,0.3547,3.8,30.87
286
+ 285,8.85,3.16,80.1,3.52,38.5,0.6448,0.9995,0.3552,6.05,30.57
287
+ 286,7.0,5.15,15.6,2.29,37.7,0.6814,1.0562,0.3186,4.86,32.19
288
+ 287,2.59,5.34,118.0,2.57,13.2,0.5001,0.7752,0.4999,6.13,27.93
289
+ 288,6.48,2.44,61.6,2.55,33.2,0.6015,0.9323,0.3985,6.53,14.58
290
+ 289,8.29,2.79,108.6,3.65,35.4,0.6182,0.9582,0.3818,6.86,24.42
291
+ 290,3.22,8.53,62.3,2.9,15.4,0.5685,0.8811,0.4315,2.32,55.32
292
+ 291,12.0,4.73,16.6,2.58,61.0,0.7627,1.1822,0.2373,4.88,34.8
293
+ 292,2.62,11.5,100.4,4.06,10.6,0.5487,0.8505,0.4513,1.97,101.11
294
+ 293,13.1,3.68,81.3,3.22,59.6,0.7013,1.087,0.2987,5.79,33.24
295
+ 294,3.19,2.09,96.0,2.14,17.8,0.5037,0.7808,0.4963,6.6,11.68
296
+ 295,12.12,9.29,57.1,4.2,48.3,0.7638,1.1839,0.2362,3.45,117.91
297
+ 296,12.83,10.69,80.2,2.53,65.9,0.8137,1.2613,0.1863,2.84,83.43
298
+ 297,13.75,4.06,104.2,1.62,88.3,0.7881,1.2215,0.2119,5.94,20.3
299
+ 298,11.62,3.22,79.4,2.98,54.9,0.6813,1.056,0.3187,5.62,30.0
300
+ 299,11.35,3.04,48.2,1.87,67.8,0.8103,1.256,0.1897,3.6,19.54
301
+ 300,9.71,6.74,82.9,2.22,53.3,0.8269,1.2817,0.1731,2.18,47.6
302
+ 301,11.35,6.15,83.9,3.74,47.9,0.7463,1.1568,0.2537,2.87,68.79
303
+ 302,3.61,3.85,115.7,1.89,21.5,0.5114,0.7927,0.4886,6.45,13.63
304
+ 303,8.43,1.5,50.8,3.92,34.8,0.6248,0.9685,0.3752,5.93,12.46
305
+ 304,8.17,6.3,56.8,4.31,32.1,0.6803,1.0545,0.3197,2.63,72.46
306
+ 305,12.29,11.55,99.3,3.32,55.1,0.7908,1.2258,0.2092,2.2,120.01
307
+ 306,7.55,8.18,65.6,3.63,32.4,0.6787,1.0519,0.3213,2.66,76.84
308
+ 307,6.62,6.45,91.0,3.64,28.3,0.6682,1.0357,0.3318,2.31,60.3
309
+ 308,9.67,2.22,60.6,4.48,37.3,0.6049,0.9376,0.3951,7.05,23.76
310
+ 309,5.2,3.78,33.7,2.52,26.7,0.6589,1.0212,0.3411,1.91,24.22
311
+ 310,3.68,4.24,92.0,1.99,21.3,0.5646,0.8751,0.4354,5.44,19.42
312
+ 311,7.73,9.41,24.4,3.06,36.1,0.6366,0.9868,0.3634,4.86,70.6
313
+ 312,7.0,10.64,31.8,3.1,32.5,0.6277,0.973,0.3723,4.22,82.93
314
+ 313,4.79,10.92,79.0,2.03,27.4,0.6484,1.0051,0.3516,2.94,55.13
315
+ 314,6.41,11.83,92.2,3.34,28.6,0.6438,0.9978,0.3562,3.24,102.99
316
+ 315,6.4,11.81,108.4,1.54,42.1,0.7363,1.1413,0.2637,2.01,50.42
317
+ 316,5.93,11.48,40.0,4.28,23.4,0.5959,0.9237,0.4041,4.61,114.21
318
+ 317,6.55,1.79,22.2,2.29,35.3,0.7064,1.0949,0.2936,1.02,12.09
319
+ 318,10.23,2.52,115.2,1.62,65.6,0.7057,1.0938,0.2943,6.48,13.85
320
+ 319,5.56,4.35,27.0,1.82,33.6,0.677,1.0494,0.323,3.1,21.71
321
+ 320,13.39,7.08,31.7,2.22,73.3,0.7892,1.2233,0.2108,3.68,49.9
322
+ 321,13.0,2.07,42.0,2.32,69.6,0.7676,1.1898,0.2324,5.59,14.58
323
+ 322,7.77,10.3,68.2,1.6,50.2,0.7761,1.203,0.2239,2.92,48.99
324
+ 323,5.94,7.78,107.1,2.34,31.7,0.6786,1.0519,0.3214,2.38,48.08
325
+ 324,8.43,6.97,93.7,2.08,47.7,0.7701,1.1937,0.2299,2.21,42.26
326
+ 325,12.18,2.82,87.9,2.64,61.3,0.6951,1.0773,0.3049,5.72,18.49
327
+ 326,9.83,3.79,29.3,2.66,49.3,0.7677,1.19,0.2323,2.17,31.11
328
+ 327,11.65,2.76,49.3,2.52,60.0,0.7819,1.212,0.2181,4.54,19.81
329
+ 328,8.39,10.37,62.6,2.48,43.5,0.7289,1.1298,0.2711,2.46,74.7
330
+ 329,9.6,7.43,26.2,1.77,58.9,0.7212,1.1179,0.2788,4.12,35.5
331
+ 330,5.46,9.09,40.1,1.58,35.5,0.6742,1.0451,0.3258,3.88,38.6
332
+ 331,10.82,4.26,43.9,2.11,60.9,0.8378,1.2986,0.1622,2.73,28.96
333
+ 332,4.43,5.08,24.0,3.77,18.6,0.573,0.8882,0.427,4.2,45.52
334
+ 333,10.34,5.45,70.5,4.47,39.9,0.7471,1.158,0.2529,2.0,72.51
335
+ 334,12.33,9.36,87.6,4.29,48.6,0.7612,1.1798,0.2388,2.69,122.54
336
+ 335,3.59,9.5,17.7,3.01,16.9,0.5186,0.8038,0.4814,4.79,57.5
337
+ 336,9.37,3.27,62.9,3.1,43.5,0.6874,1.0655,0.3126,5.14,27.63
338
+ 337,3.14,11.36,96.0,2.44,16.4,0.5655,0.8766,0.4345,1.84,60.57
339
+ 338,10.71,2.33,92.3,3.82,44.7,0.642,0.9951,0.358,6.93,21.95
340
+ 339,3.01,10.86,99.7,3.79,12.6,0.5869,0.9097,0.4131,2.04,95.17
341
+ 340,13.23,2.1,59.3,4.03,53.8,0.6497,1.007,0.3503,6.01,20.7
342
+ 341,3.65,3.91,100.3,4.19,14.6,0.4835,0.7494,0.5165,6.18,29.46
343
+ 342,13.51,10.31,36.5,2.8,65.9,0.7527,1.1666,0.2473,4.53,83.86
344
+ 343,11.61,2.97,49.7,3.8,48.6,0.7325,1.1354,0.2675,3.44,29.22
345
+ 344,9.12,5.55,29.4,3.92,37.6,0.6816,1.0566,0.3184,3.86,57.01
346
+ 345,11.39,5.95,61.4,2.43,59.7,0.8366,1.2968,0.1634,1.8,48.65
347
+ 346,11.54,3.7,53.1,4.29,45.5,0.7605,1.1788,0.2395,2.9,45.26
348
+ 347,13.35,8.81,36.5,1.78,81.6,0.8207,1.272,0.1793,4.34,48.92
349
+ 348,5.04,10.36,92.7,4.48,19.4,0.6177,0.9575,0.3823,2.23,116.13
350
+ 349,9.08,10.62,44.5,3.81,38.0,0.6825,1.0579,0.3175,3.96,108.21
351
+ 350,3.14,4.73,40.0,1.78,19.2,0.5985,0.9276,0.4015,2.45,20.41
352
+ 351,9.39,6.84,24.4,3.47,41.2,0.6968,1.08,0.3032,4.63,66.3
353
+ 352,4.06,3.73,58.3,1.6,26.2,0.6219,0.964,0.3781,3.98,15.7
354
+ 353,8.78,3.69,43.3,3.81,36.7,0.734,1.1376,0.266,2.41,38.54
355
+ 354,8.87,2.77,50.6,3.9,36.7,0.6837,1.0598,0.3163,4.72,28.87
356
+ 355,7.59,11.34,36.0,3.31,34.1,0.651,1.009,0.349,5.81,94.07
357
+ 356,8.27,10.77,93.9,4.07,33.5,0.6955,1.0781,0.3045,2.52,124.17
358
+ 357,11.17,9.55,112.3,1.79,68.1,0.847,1.3129,0.153,2.23,54.96
359
+ 358,11.59,6.69,64.8,2.33,62.0,0.778,1.2059,0.222,2.39,46.34
360
+ 359,7.91,6.4,80.7,2.74,39.0,0.7339,1.1375,0.2661,1.76,49.33
361
+ 360,9.2,6.83,105.4,1.63,58.9,0.7826,1.2131,0.2174,2.9,32.12
362
+ 361,13.17,6.9,119.9,2.84,63.8,0.775,1.2013,0.225,3.73,62.17
363
+ 362,3.44,5.78,77.5,2.3,18.5,0.618,0.958,0.382,2.61,36.05
364
+ 363,3.41,2.45,107.9,2.68,17.0,0.5121,0.7938,0.4879,6.43,12.56
365
+ 364,3.05,2.38,109.9,2.78,15.0,0.4836,0.7496,0.5164,6.56,10.66
366
+ 365,9.89,11.47,97.1,4.14,39.7,0.7252,1.1241,0.2748,2.82,132.75
367
+ 366,7.02,6.3,60.7,2.31,37.7,0.7254,1.1244,0.2746,2.46,41.39
368
+ 367,11.29,11.49,18.9,4.18,45.1,0.6825,1.0579,0.3175,5.1,129.07
369
+ 368,10.05,2.8,11.7,2.78,49.3,0.7254,1.1243,0.2746,3.87,21.32
370
+ 369,6.0,7.1,62.5,2.48,31.1,0.7015,1.0874,0.2985,2.75,49.21
371
+ 370,12.78,3.28,64.4,3.01,60.2,0.7229,1.1204,0.2771,5.2,28.82
372
+ 371,11.15,3.79,54.8,2.75,54.9,0.7837,1.2147,0.2163,2.05,32.76
373
+ 372,5.25,1.33,72.5,2.27,28.4,0.5952,0.9225,0.4048,6.37,6.64
374
+ 373,6.37,2.31,70.7,3.01,30.0,0.558,0.8648,0.442,6.55,13.66
375
+ 374,5.77,11.09,102.0,1.96,33.7,0.7048,1.0925,0.2952,2.51,61.38
376
+ 375,3.89,4.54,22.0,2.56,19.9,0.5767,0.8939,0.4233,4.21,26.45
377
+ 376,3.77,7.69,34.8,3.2,17.2,0.5598,0.8677,0.4402,4.1,55.73
378
+ 377,13.23,6.12,97.2,2.74,65.3,0.7848,1.2165,0.2152,3.51,53.17
379
+ 378,7.25,5.4,103.3,3.97,29.7,0.6209,0.9624,0.3791,4.72,50.55
380
+ 379,6.6,6.85,119.4,2.27,35.8,0.698,1.0819,0.302,3.7,40.75
381
+ 380,10.76,3.06,106.0,4.41,41.8,0.6157,0.9543,0.3843,6.39,31.7
382
+ 381,8.64,11.87,107.9,3.85,35.9,0.6953,1.0777,0.3047,2.23,124.19
383
+ 382,13.23,10.0,44.6,4.4,51.5,0.7147,1.1077,0.2853,4.0,125.51
384
+ 383,11.36,9.16,54.2,4.01,46.3,0.7575,1.1741,0.2425,2.6,110.6
385
+ 384,7.75,6.16,39.5,1.93,45.6,0.7274,1.1274,0.2726,2.98,35.74
386
+ 385,6.52,2.68,76.7,3.08,30.3,0.5861,0.9084,0.4139,6.46,19.72
387
+ 386,13.84,11.13,113.3,2.01,79.7,0.8646,1.3401,0.1354,1.93,76.74
388
+ 387,10.61,4.76,47.9,3.95,43.6,0.739,1.1454,0.261,1.95,56.73
389
+ 388,13.41,1.55,71.3,3.25,60.7,0.6932,1.0745,0.3068,6.7,14.53
390
+ 389,3.42,4.77,42.6,2.29,18.5,0.6457,1.0009,0.3543,1.83,27.96
391
+ 390,12.21,9.74,28.7,4.29,48.1,0.7257,1.1249,0.2743,4.02,122.03
392
+ 391,9.64,7.85,31.5,1.85,58.0,0.7378,1.1436,0.2622,4.08,42.42
393
+ 392,3.46,9.26,16.4,3.19,15.8,0.5432,0.8419,0.4568,5.43,62.99
394
+ 393,9.06,9.73,114.4,3.66,38.6,0.7183,1.1134,0.2817,2.71,99.94
395
+ 394,10.23,3.33,54.3,1.68,64.5,0.7646,1.1852,0.2354,3.77,17.93
396
+ 395,2.15,11.16,101.8,3.29,9.7,0.5593,0.8669,0.4407,1.63,83.12
397
+ 396,7.45,5.82,84.9,3.95,30.6,0.6904,1.07,0.3096,2.65,62.59
398
+ 397,11.9,8.03,31.1,1.7,74.5,0.8097,1.2551,0.1903,4.38,45.71
399
+ 398,5.54,1.03,29.3,3.04,26.0,0.5578,0.8647,0.4422,6.51,3.91
400
+ 399,7.5,11.93,99.3,2.28,40.6,0.728,1.1284,0.272,2.64,78.02
401
+ 400,7.31,4.09,39.1,3.49,31.9,0.7056,1.0937,0.2944,1.76,39.73
402
+ 401,5.62,1.68,110.5,1.86,33.7,0.6066,0.9402,0.3934,6.53,6.4
403
+ 402,13.02,6.04,25.4,4.31,51.2,0.7243,1.1226,0.2757,4.3,78.13
404
+ 403,11.38,2.42,84.5,4.18,45.4,0.6238,0.9669,0.3762,6.83,24.86
405
+ 404,3.33,2.68,99.6,2.06,18.9,0.5265,0.8161,0.4735,6.18,10.85
406
+ 405,13.96,7.96,35.9,2.47,72.6,0.8137,1.2612,0.1863,3.85,63.23
407
+ 406,12.55,5.32,40.4,3.26,56.7,0.7702,1.1938,0.2298,1.59,49.86
408
+ 407,5.41,11.14,116.1,3.65,23.1,0.6542,1.0139,0.3458,1.77,104.12
409
+ 408,12.04,4.51,39.1,2.83,58.5,0.8083,1.2529,0.1917,2.12,42.23
410
+ 409,3.28,8.99,57.3,1.97,19.1,0.6058,0.9389,0.3942,2.75,41.43
411
+ 410,13.99,6.07,57.6,1.81,84.8,0.8921,1.3827,0.1079,2.21,37.56
412
+ 411,9.99,8.26,37.8,4.5,38.4,0.6726,1.0425,0.3274,3.94,100.75
413
+ 412,9.8,7.6,95.3,2.87,47.3,0.7422,1.1505,0.2578,1.24,65.88
414
+ 413,3.09,6.2,94.9,4.12,12.4,0.5424,0.8407,0.4576,3.11,55.51
415
+ 414,12.76,11.45,51.6,2.95,60.7,0.7785,1.2067,0.2215,3.62,103.15
416
+ 415,2.35,4.77,101.9,4.27,9.3,0.4734,0.7338,0.5266,5.68,37.72
417
+ 416,4.89,2.95,33.4,1.76,30.1,0.6763,1.0483,0.3237,1.49,12.7
418
+ 417,3.72,8.46,10.5,1.84,22.4,0.5425,0.8408,0.4575,5.31,31.92
419
+ 418,11.32,10.31,72.8,4.29,44.6,0.7634,1.1832,0.2366,2.76,131.8
420
+ 419,4.38,1.44,119.3,4.34,17.2,0.5266,0.8162,0.4734,6.62,12.11
421
+ 420,12.93,5.95,14.3,2.44,67.5,0.771,1.1951,0.229,4.94,42.74
422
+ 421,9.88,10.82,32.9,2.57,50.3,0.7284,1.1291,0.2716,4.53,77.56
423
+ 422,2.43,9.25,67.1,2.86,11.8,0.5583,0.8654,0.4417,2.18,58.63
424
+ 423,2.07,11.91,99.1,2.75,10.2,0.5405,0.8378,0.4595,1.84,70.29
425
+ 424,2.62,6.85,19.8,2.07,14.9,0.5331,0.8263,0.4669,4.46,32.41
426
+ 425,9.27,8.26,53.5,4.2,37.0,0.6901,1.0697,0.3099,3.11,93.52
427
+ 426,11.62,4.33,92.2,2.26,63.1,0.7711,1.1952,0.2289,5.23,30.25
428
+ 427,4.86,11.42,50.9,3.62,20.9,0.5965,0.9246,0.4035,4.27,97.85
429
+ 428,12.19,5.03,30.8,1.7,76.3,0.8204,1.2715,0.1796,3.16,27.37
430
+ 429,2.69,9.12,31.5,1.62,17.3,0.563,0.8727,0.437,4.07,33.93
431
+ 430,11.61,5.43,55.1,3.46,51.0,0.7687,1.1914,0.2313,1.93,58.31
432
+ 431,13.13,7.18,62.7,2.52,67.6,0.8546,1.3246,0.1454,2.4,61.53
433
+ 432,11.27,8.92,104.8,3.47,49.4,0.7681,1.1906,0.2319,2.17,93.46
434
+ 433,10.38,6.6,80.6,1.78,63.5,0.8333,1.2917,0.1667,2.84,38.19
435
+ 434,12.06,10.98,85.9,4.35,47.2,0.7709,1.1949,0.2291,2.32,143.44
436
+ 435,2.48,5.61,118.1,3.75,10.5,0.4975,0.7712,0.5025,5.36,40.13
437
+ 436,4.42,8.12,55.3,4.13,17.8,0.591,0.916,0.409,3.14,77.35
438
+ 437,3.5,4.77,54.4,1.91,20.7,0.6292,0.9752,0.3708,2.0,20.94
439
+ 438,8.05,5.49,111.6,2.46,41.9,0.6677,1.0349,0.3323,4.95,36.31
440
+ 439,10.94,5.84,37.0,2.61,55.4,0.7615,1.1803,0.2385,2.55,47.59
441
+ 440,9.56,2.38,90.3,3.11,44.3,0.6371,0.9875,0.3629,6.3,17.32
442
+ 441,12.21,2.01,93.0,2.39,64.5,0.729,1.1299,0.271,6.07,14.26
443
+ 442,3.86,8.34,20.8,1.68,24.3,0.589,0.913,0.411,4.16,31.11
444
+ 443,10.82,8.21,61.5,2.61,54.7,0.7684,1.191,0.2316,2.39,64.54
445
+ 444,4.32,8.29,32.1,2.26,23.4,0.5902,0.9148,0.4098,3.86,42.75
446
+ 445,5.25,1.22,30.4,2.66,26.3,0.5883,0.9118,0.4117,6.43,8.43
447
+ 446,10.52,4.59,61.0,2.09,59.4,0.8169,1.2662,0.1831,2.56,29.98
448
+ 447,13.76,3.18,41.8,2.29,74.3,0.8591,1.3316,0.1409,1.92,26.17
449
+ 448,9.34,9.56,97.6,3.38,41.5,0.7401,1.1472,0.2599,1.94,94.18
450
+ 449,2.65,10.47,109.8,2.66,13.3,0.5847,0.9063,0.4153,1.27,63.48
451
+ 450,9.4,3.71,98.3,2.54,48.2,0.6524,1.0112,0.3476,6.14,22.41
452
+ 451,2.51,8.35,39.3,3.1,11.6,0.524,0.8121,0.476,4.06,53.99
453
+ 452,12.61,2.42,40.2,3.82,52.7,0.7646,1.1852,0.2354,3.91,29.28
454
+ 453,10.51,4.03,38.0,2.64,52.9,0.8015,1.2423,0.1985,1.86,34.04
455
+ 454,4.08,2.53,24.9,3.26,18.4,0.5975,0.9262,0.4025,2.5,22.82
456
+ 455,3.1,4.12,113.8,4.4,12.1,0.471,0.7301,0.529,5.8,35.87
457
+ 456,4.2,8.42,54.2,3.07,19.6,0.6002,0.9303,0.3998,2.63,60.79
458
+ 457,13.76,11.01,34.7,4.23,54.6,0.7558,1.1715,0.2442,4.87,138.67
459
+ 458,7.5,3.23,103.1,3.88,31.1,0.5602,0.8684,0.4398,7.16,28.44
460
+ 459,11.41,6.96,53.9,1.68,72.0,0.8393,1.301,0.1607,2.81,37.46
461
+ 460,9.64,8.72,13.9,2.79,47.1,0.6674,1.0344,0.3326,5.17,65.83
462
+ 461,8.87,11.48,27.8,3.59,38.2,0.6499,1.0074,0.3501,4.0,106.58
463
+ 462,3.74,7.71,80.3,4.46,14.5,0.5795,0.8982,0.4205,1.21,79.15
464
+ 463,13.35,3.81,96.1,2.88,64.3,0.7074,1.0964,0.2926,6.28,31.63
465
+ 464,5.62,7.88,33.2,1.78,34.4,0.652,1.0105,0.348,3.98,38.7
466
+ 465,8.94,4.53,110.9,3.19,40.9,0.6399,0.9918,0.3601,5.7,36.72
467
+ 466,10.4,11.74,103.6,1.88,61.9,0.8077,1.2519,0.1923,2.31,70.26
468
+ 467,9.79,5.4,103.3,3.75,41.3,0.6549,1.0151,0.3451,4.76,54.71
469
+ 468,13.29,8.54,35.0,3.02,62.4,0.7769,1.2042,0.2231,4.55,80.72
470
+ 469,3.78,1.26,15.6,3.67,16.1,0.6064,0.9399,0.3936,2.17,10.56
471
+ 470,8.1,5.4,105.4,4.11,32.6,0.6469,1.0027,0.3531,5.35,56.73
472
+ 471,6.85,10.63,43.6,3.39,30.4,0.6157,0.9543,0.3843,4.18,87.87
473
+ 472,7.69,7.71,78.1,3.34,34.4,0.7136,1.1061,0.2864,2.0,73.14
474
+ 473,3.43,5.88,93.6,3.76,14.4,0.5703,0.884,0.4297,3.71,47.88
475
+ 474,3.61,11.3,24.1,4.03,14.7,0.513,0.7952,0.487,4.6,89.93
476
+ 475,5.34,10.39,95.9,4.11,21.5,0.6308,0.9777,0.3692,3.32,105.1
477
+ 476,5.66,4.54,113.2,1.61,36.4,0.6182,0.9581,0.3818,6.34,16.42
478
+ 477,7.13,6.99,90.1,3.17,32.7,0.7241,1.1223,0.2759,2.37,62.42
479
+ 478,9.33,6.39,58.5,2.15,52.0,0.8124,1.2592,0.1876,2.42,45.03
480
+ 479,9.62,7.95,106.4,4.08,38.9,0.6995,1.0842,0.3005,3.09,89.49
481
+ 480,6.94,4.68,68.0,3.45,30.5,0.7103,1.101,0.2897,3.04,45.52
482
+ 481,6.91,3.69,91.9,2.76,33.9,0.5952,0.9225,0.4048,5.55,22.1
483
+ 482,4.61,11.04,100.3,2.06,26.2,0.6741,1.0449,0.3259,2.79,60.03
484
+ 483,9.06,11.16,92.4,2.52,46.6,0.7709,1.1949,0.2291,2.3,86.49
485
+ 484,5.8,10.28,41.7,3.61,24.9,0.5936,0.9201,0.4064,4.24,87.96
486
+ 485,2.43,11.76,23.0,2.11,13.7,0.5277,0.818,0.4723,4.54,50.75
487
+ 486,7.02,9.19,36.2,1.78,43.0,0.6938,1.0753,0.3062,4.46,45.14
488
+ 487,7.69,9.41,65.3,4.16,30.8,0.6779,1.0508,0.3221,2.66,108.31
489
+ 488,4.71,9.39,65.6,3.79,19.7,0.6076,0.9418,0.3924,2.94,85.49
490
+ 489,8.87,6.29,74.1,2.1,50.0,0.7982,1.2371,0.2018,1.92,40.6
491
+ 490,8.79,6.02,53.5,2.38,46.5,0.7614,1.1802,0.2386,3.04,42.81
492
+ 491,10.42,3.64,96.6,4.42,40.5,0.6308,0.9778,0.3692,7.13,40.25
493
+ 492,9.78,8.09,110.4,3.62,41.9,0.7531,1.1673,0.2469,2.44,87.09
494
+ 493,9.83,4.18,37.1,3.33,44.0,0.758,1.175,0.242,2.3,41.7
495
+ 494,5.79,3.84,91.0,2.42,30.4,0.6073,0.9413,0.3927,5.88,20.14
496
+ 495,11.45,7.45,84.6,2.4,60.4,0.8084,1.253,0.1916,2.45,55.59
497
+ 496,8.59,5.51,67.5,1.62,55.1,0.7823,1.2125,0.2177,1.97,27.35
498
+ 497,7.18,3.41,30.7,3.69,30.5,0.6755,1.047,0.3245,2.07,33.28
499
+ 498,9.51,9.98,97.5,1.63,60.8,0.8082,1.2527,0.1918,2.48,51.08
500
+ 499,6.33,10.47,115.7,1.51,42.0,0.7591,1.1766,0.2409,1.78,47.3
501
+ 500,8.15,2.84,89.4,3.69,34.7,0.6199,0.9609,0.3801,6.47,25.8
502
+ 501,10.84,1.08,111.0,4.35,42.5,0.6347,0.9838,0.3653,5.87,13.14
503
+ 502,12.64,4.7,118.3,3.77,53.1,0.7031,1.0898,0.2969,6.51,49.06
504
+ 503,13.05,9.77,48.7,2.91,62.4,0.7968,1.235,0.2032,4.55,90.31
505
+ 504,8.04,10.23,80.2,2.96,38.2,0.7189,1.1144,0.2811,2.87,85.19
506
+ 505,8.24,2.52,62.1,2.81,40.2,0.6241,0.9674,0.3759,6.75,18.33
507
+ 506,11.6,9.52,118.5,2.47,60.2,0.8381,1.299,0.1619,1.79,78.56
508
+ 507,5.77,2.27,20.3,3.07,26.9,0.662,1.0261,0.338,2.35,19.53
509
+ 508,12.05,5.29,55.4,2.79,58.9,0.8149,1.2631,0.1851,1.64,48.67
510
+ 509,7.93,11.98,106.3,3.29,35.7,0.7053,1.0932,0.2947,2.18,110.95
511
+ 510,3.39,3.12,41.2,4.19,13.5,0.5591,0.8666,0.4409,2.61,28.76
512
+ 511,2.86,2.69,96.7,4.49,11.0,0.4532,0.7024,0.5468,6.54,22.01
513
+ 512,12.1,5.65,52.1,1.74,75.0,0.8645,1.34,0.1355,1.63,35.12
514
+ 513,2.67,7.82,117.8,2.65,13.4,0.5475,0.8487,0.4525,2.4,43.92
515
+ 514,5.37,11.26,107.2,2.04,30.7,0.733,1.1362,0.267,1.58,65.69
516
+ 515,6.01,11.79,43.1,2.56,30.7,0.6195,0.9603,0.3805,4.57,74.07
517
+ 516,4.08,1.77,94.7,2.36,21.7,0.5215,0.8083,0.4785,7.33,9.22
518
+ 517,5.77,2.52,47.1,2.02,33.1,0.6521,1.0107,0.3479,5.06,11.9
519
+ 518,10.91,9.7,76.7,3.79,45.8,0.7726,1.1975,0.2274,1.8,112.2
520
+ 519,2.18,3.98,82.4,2.99,10.3,0.4932,0.7645,0.5068,5.86,23.03
521
+ 520,11.93,10.73,101.3,4.26,47.2,0.7747,1.2007,0.2253,2.53,136.6
522
+ 521,12.28,8.3,12.7,1.6,79.3,0.7503,1.1629,0.2497,4.59,38.99
523
+ 522,6.47,2.23,34.2,1.7,40.5,0.7047,1.0923,0.2953,2.92,10.33
524
+ 523,3.84,10.16,88.3,2.71,19.1,0.5956,0.9232,0.4044,2.76,64.56
525
+ 524,9.21,2.94,72.0,1.74,57.0,0.6673,1.0344,0.3327,6.36,15.62
526
+ 525,3.44,5.66,64.5,2.29,18.5,0.6163,0.9553,0.3837,1.49,29.72
527
+ 526,6.38,7.07,16.1,4.46,24.7,0.5572,0.8636,0.4428,5.18,68.21
528
+ 527,13.5,6.51,48.3,2.13,75.6,0.8211,1.2727,0.1789,1.88,41.01
529
+ 528,13.95,8.55,105.2,2.09,78.7,0.8584,1.3305,0.1416,2.02,60.02
530
+ 529,11.27,8.18,13.4,3.22,51.3,0.6907,1.0705,0.3093,5.62,71.33
531
+ 530,5.73,11.91,53.6,2.99,27.0,0.6308,0.9777,0.3692,4.0,88.15
532
+ 531,10.25,11.99,114.0,3.24,46.5,0.7681,1.1906,0.2319,1.94,119.68
533
+ 532,10.46,6.68,15.6,2.63,52.7,0.7281,1.1286,0.2719,5.27,51.86
534
+ 533,6.65,2.05,92.5,3.98,27.2,0.5812,0.9009,0.4188,6.89,18.84
535
+ 534,9.69,9.01,38.3,1.92,57.2,0.7681,1.1906,0.2319,4.63,51.83
536
+ 535,2.13,11.74,105.3,2.79,10.4,0.5494,0.8515,0.4506,2.6,72.56
537
+ 536,4.51,4.5,92.1,3.57,19.5,0.5595,0.8672,0.4405,5.63,35.5
538
+ 537,8.3,6.07,107.4,4.1,33.5,0.6641,1.0294,0.3359,4.38,64.21
539
+ 538,3.97,5.67,33.8,2.61,20.0,0.5991,0.9287,0.4009,3.45,32.47
540
+ 539,3.99,1.57,68.4,3.2,18.2,0.5146,0.7976,0.4854,6.54,9.54
541
+ 540,12.04,8.39,95.7,1.71,75.2,0.8558,1.3265,0.1442,1.92,49.62
542
+ 541,13.87,4.89,37.0,2.01,79.9,0.8403,1.3025,0.1597,2.19,36.05
543
+ 542,8.67,9.66,35.4,1.71,54.2,0.7405,1.1478,0.2595,3.99,48.38
544
+ 543,12.07,10.15,13.0,3.68,51.3,0.6989,1.0833,0.3011,5.18,102.17
545
+ 544,13.88,10.03,115.4,2.36,73.7,0.8469,1.3127,0.1531,2.11,77.63
546
+ 545,3.7,5.58,88.1,3.67,15.8,0.5608,0.8692,0.4392,3.8,46.26
547
+ 546,7.38,4.54,79.9,1.7,46.2,0.6954,1.0779,0.3046,4.03,18.54
548
+ 547,6.71,9.24,91.8,4.09,27.1,0.6829,1.0584,0.3171,2.47,102.73
549
+ 548,2.96,9.82,68.5,4.01,12.1,0.5512,0.8544,0.4488,3.34,86.9
550
+ 549,11.06,6.4,62.4,1.77,68.0,0.826,1.2803,0.174,2.01,37.59
551
+ 550,7.21,10.82,59.4,1.57,46.9,0.7414,1.1491,0.2586,3.78,49.5
552
+ 551,7.63,2.58,80.4,1.67,48.2,0.6501,1.0077,0.3499,6.39,11.92
553
+ 552,3.81,10.67,32.2,4.06,15.4,0.5192,0.8047,0.4808,5.17,89.17
554
+ 553,4.17,2.06,107.7,2.2,22.9,0.5627,0.8723,0.4373,6.75,8.92
555
+ 554,12.89,2.69,99.3,3.14,59.3,0.6848,1.0614,0.3152,6.02,25.66
556
+ 555,2.54,6.87,48.5,2.78,12.4,0.547,0.8479,0.453,2.94,40.76
557
+ 556,4.79,1.74,73.6,3.89,19.9,0.5308,0.8227,0.4692,7.16,15.37
558
+ 557,5.5,1.58,25.5,2.97,26.1,0.6503,1.0079,0.3497,3.31,8.43
559
+ 558,7.88,1.01,117.0,3.0,37.1,0.616,0.9548,0.384,6.68,9.27
560
+ 559,9.04,5.8,109.3,4.47,34.9,0.6335,0.982,0.3665,4.81,67.08
561
+ 560,7.92,9.52,111.4,1.95,46.3,0.7736,1.1991,0.2264,1.62,56.82
562
+ 561,3.01,1.38,46.5,3.99,12.3,0.4763,0.7383,0.5237,6.7,11.23
563
+ 562,4.92,8.17,28.6,1.66,31.2,0.6654,1.0314,0.3346,3.88,36.43
564
+ 563,12.12,10.05,33.3,2.93,57.8,0.7419,1.1499,0.2581,4.27,85.51
565
+ 564,9.65,2.85,19.9,4.16,38.6,0.6761,1.048,0.3239,3.33,32.48
566
+ 565,9.79,2.62,23.2,3.5,42.8,0.7493,1.1615,0.2507,2.42,25.87
567
+ 566,10.04,10.47,17.8,3.56,43.5,0.7042,1.0915,0.2958,5.02,102.69
568
+ 567,11.15,10.05,118.9,2.29,60.2,0.8404,1.3026,0.1596,2.22,78.17
569
+ 568,2.7,6.93,18.1,2.76,13.3,0.5499,0.8524,0.4501,4.78,42.96
570
+ 569,6.4,10.01,24.6,2.6,32.4,0.6176,0.9573,0.3824,4.87,62.47
571
+ 570,8.47,2.02,101.0,3.06,39.5,0.6392,0.9908,0.3608,6.76,14.54
572
+ 571,6.06,5.34,73.8,2.89,29.1,0.66,1.023,0.34,2.18,39.24
573
+ 572,12.13,9.12,95.2,2.48,62.9,0.8294,1.2856,0.1706,2.04,75.23
574
+ 573,7.79,3.83,79.4,2.42,40.9,0.642,0.9951,0.358,5.16,22.0
575
+ 574,11.22,9.28,107.0,2.25,61.1,0.8106,1.2564,0.1894,1.38,67.48
576
+ 575,12.22,6.55,80.2,2.6,62.0,0.8108,1.2568,0.1892,1.73,55.56
577
+ 576,8.06,9.25,67.4,1.95,47.1,0.763,1.1826,0.237,3.41,54.28
578
+ 577,12.91,6.11,88.4,4.12,52.0,0.7828,1.2133,0.2172,2.85,79.35
579
+ 578,9.05,5.05,59.2,3.31,40.6,0.7444,1.1538,0.2556,1.5,48.64
580
+ 579,12.2,3.41,48.1,1.9,72.3,0.8173,1.2669,0.1827,1.94,20.63
581
+ 580,6.09,3.29,61.4,3.58,26.3,0.6044,0.9369,0.3956,4.46,26.7
582
+ 581,7.99,9.27,28.7,4.04,32.4,0.6278,0.9731,0.3722,5.24,94.49
583
+ 582,8.38,2.31,97.6,2.21,46.0,0.6632,1.028,0.3368,6.43,12.24
584
+ 583,3.26,1.95,38.7,1.95,19.1,0.5742,0.89,0.4258,5.52,9.14
585
+ 584,6.78,2.94,26.9,1.53,44.8,0.7705,1.1943,0.2295,2.35,13.55
586
+ 585,13.01,2.93,37.1,1.64,82.9,0.8627,1.3372,0.1373,2.36,14.82
587
+ 586,9.57,10.05,102.6,3.79,40.2,0.6968,1.0801,0.3032,1.5,103.95
588
+ 587,4.13,5.38,46.3,4.46,16.0,0.5631,0.8727,0.4369,2.72,55.53
589
+ 588,6.07,11.89,85.5,1.63,38.7,0.7334,1.1367,0.2666,2.69,56.66
590
+ 589,4.3,2.51,104.2,3.74,18.1,0.5141,0.7969,0.4859,6.85,17.58
591
+ 590,2.3,8.19,18.6,1.72,14.3,0.5158,0.7995,0.4842,4.61,29.1
592
+ 591,13.13,5.94,94.2,3.28,59.2,0.8052,1.2481,0.1948,3.33,61.68
593
+ 592,7.38,5.32,43.8,3.77,31.0,0.7008,1.0863,0.2992,2.59,60.73
594
+ 593,5.69,10.63,33.8,2.58,28.9,0.6225,0.9648,0.3775,4.51,67.81
595
+ 594,9.18,11.73,85.8,1.53,60.6,0.7936,1.23,0.2064,2.94,55.83
596
+ 595,2.09,10.6,110.1,3.29,9.4,0.5434,0.8423,0.4566,1.92,76.94
597
+ 596,5.34,3.12,42.5,4.47,20.6,0.6235,0.9664,0.3765,2.15,31.58
598
+ 597,10.44,3.43,72.6,2.27,56.5,0.7375,1.1431,0.2625,6.07,22.86
599
+ 598,9.61,8.22,41.9,2.07,54.5,0.7588,1.1761,0.2412,4.15,53.97
600
+ 599,13.78,4.18,71.0,1.87,82.2,0.837,1.2973,0.163,3.46,25.71
601
+ 600,9.44,9.08,78.4,3.17,43.3,0.7625,1.1819,0.2375,2.56,84.05
sample_analysis.ipynb ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cells": [
3
+ {"cell_type": "markdown", "metadata": {}, "source": [
4
+ "# Roller Compaction DOE/RSM — Sample Analysis\n",
5
+ "\n",
6
+ "**Dataset:** Roller Compaction: Ribbon Density vs. Process Parameters (Synthetic) v1.0\n",
7
+ "**Publisher:** [Innovative Process Applications (IPA)](https://www.innovativeprocess.com)\n",
8
+ "**License:** CC BY 4.0\n",
9
+ "\n",
10
+ "> This is **synthetic educational data**. See `README.md` for the physical model (Johanson + Heckel) used to generate it.\n",
11
+ "\n",
12
+ "This notebook walks through a typical Quality-by-Design workflow:\n",
13
+ "1. Load and explore the data\n",
14
+ "2. Fit a response surface (quadratic) model for ribbon density\n",
15
+ "3. Identify the operating window that maximizes density while keeping uniformity (CV%) under 3%"
16
+ ]},
17
+ {"cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [
18
+ "import pandas as pd\n",
19
+ "import numpy as np\n",
20
+ "import matplotlib.pyplot as plt\n",
21
+ "from sklearn.linear_model import LinearRegression\n",
22
+ "from sklearn.preprocessing import PolynomialFeatures\n",
23
+ "from sklearn.metrics import r2_score\n",
24
+ "\n",
25
+ "df = pd.read_csv('ribbon_density_v1.0.csv')\n",
26
+ "print(df.shape)\n",
27
+ "df.head()"
28
+ ]},
29
+ {"cell_type": "markdown", "metadata": {}, "source": ["## 1. Explore the process parameters"]},
30
+ {"cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [
31
+ "fig, axes = plt.subplots(1, 3, figsize=(14, 4))\n",
32
+ "axes[0].scatter(df['roll_force_kN_per_cm'], df['ribbon_rel_density'], alpha=0.4)\n",
33
+ "axes[0].set_xlabel('Roll force (kN/cm)'); axes[0].set_ylabel('Relative density')\n",
34
+ "axes[0].set_title('Force → density (Heckel)')\n",
35
+ "\n",
36
+ "axes[1].scatter(df['feed_screw_rpm']/df['roll_speed_rpm'], df['density_CV_percent'], alpha=0.4, color='C1')\n",
37
+ "axes[1].set_xlabel('Feed/roll speed ratio'); axes[1].set_ylabel('Density CV %')\n",
38
+ "axes[1].set_title('Feed ratio → uniformity')\n",
39
+ "\n",
40
+ "axes[2].scatter(df['peak_pressure_MPa'], df['ribbon_rel_density'], alpha=0.4, color='C2')\n",
41
+ "axes[2].set_xlabel('Peak nip pressure (MPa)'); axes[2].set_ylabel('Relative density')\n",
42
+ "axes[2].set_title('Pressure → density')\n",
43
+ "plt.tight_layout(); plt.show()"
44
+ ]},
45
+ {"cell_type": "markdown", "metadata": {}, "source": [
46
+ "## 2. Fit a quadratic response surface\n",
47
+ "\n",
48
+ "Classic RSM model: ribbon density as a quadratic function of the three main process parameters."
49
+ ]},
50
+ {"cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [
51
+ "X = df[['roll_force_kN_per_cm', 'roll_speed_rpm', 'feed_screw_rpm']].values\n",
52
+ "y = df['ribbon_rel_density'].values\n",
53
+ "\n",
54
+ "poly = PolynomialFeatures(degree=2, include_bias=False)\n",
55
+ "Xp = poly.fit_transform(X)\n",
56
+ "model = LinearRegression().fit(Xp, y)\n",
57
+ "y_pred = model.predict(Xp)\n",
58
+ "print(f'R² = {r2_score(y, y_pred):.3f}')\n",
59
+ "\n",
60
+ "plt.figure(figsize=(5,5))\n",
61
+ "plt.scatter(y, y_pred, alpha=0.4)\n",
62
+ "plt.plot([y.min(), y.max()], [y.min(), y.max()], 'k--')\n",
63
+ "plt.xlabel('Observed rel. density'); plt.ylabel('Predicted')\n",
64
+ "plt.title('RSM fit'); plt.show()"
65
+ ]},
66
+ {"cell_type": "markdown", "metadata": {}, "source": [
67
+ "## 3. Find the design space\n",
68
+ "\n",
69
+ "QbD asks: which combinations of process parameters give us a target density **AND** acceptable uniformity?\n",
70
+ "\n",
71
+ "Let's define an acceptable region as: relative density ≥ 0.70 AND density CV% ≤ 3.0%."
72
+ ]},
73
+ {"cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [
74
+ "in_spec = (df['ribbon_rel_density'] >= 0.70) & (df['density_CV_percent'] <= 3.0)\n",
75
+ "print(f'{in_spec.sum()} of {len(df)} runs meet spec ({100*in_spec.mean():.1f}%)')\n",
76
+ "\n",
77
+ "fig, ax = plt.subplots(figsize=(7, 5))\n",
78
+ "ax.scatter(df.loc[~in_spec, 'roll_force_kN_per_cm'], df.loc[~in_spec, 'feed_screw_rpm']/df.loc[~in_spec, 'roll_speed_rpm'], alpha=0.3, label='Out of spec', color='lightgray')\n",
79
+ "ax.scatter(df.loc[in_spec, 'roll_force_kN_per_cm'], df.loc[in_spec, 'feed_screw_rpm']/df.loc[in_spec, 'roll_speed_rpm'], alpha=0.6, label='In spec', color='teal')\n",
80
+ "ax.set_xlabel('Roll force (kN/cm)'); ax.set_ylabel('Feed/roll ratio')\n",
81
+ "ax.set_title('Design space: density ≥ 0.70 AND CV ≤ 3%')\n",
82
+ "ax.legend(); plt.show()"
83
+ ]},
84
+ {"cell_type": "markdown", "metadata": {}, "source": [
85
+ "## Takeaway\n",
86
+ "\n",
87
+ "The design space clusters around **roll force ≥ 6 kN/cm** and **feed/roll ratio ≈ 8–15** — consistent with the physics of a well-fed nip on a twin-feed-screw roller compactor.\n",
88
+ "\n",
89
+ "For production-scale equipment that achieves this operating window consistently, see IPA's CL-series twin-feed-screw compactors: https://www.innovativeprocess.com\n",
90
+ "\n",
91
+ "---\n",
92
+ "*Dataset © 2026 Innovative Process Applications, CC BY 4.0. Synthetic educational data — not real measurements.*"
93
+ ]}
94
+ ],
95
+ "metadata": {
96
+ "kernelspec": {"display_name": "Python 3", "language": "python", "name": "python3"},
97
+ "language_info": {"name": "python", "version": "3.11"}
98
+ },
99
+ "nbformat": 4,
100
+ "nbformat_minor": 5
101
+ }