diff --git a/Assets/Samples~/IAAAdDebugSample/Configs/IAAAdDebugSampleConfig.asset b/Assets/Samples~/IAAAdDebugSample/Configs/IAAAdDebugSampleConfig.asset index 66608cb..72c6060 100644 --- a/Assets/Samples~/IAAAdDebugSample/Configs/IAAAdDebugSampleConfig.asset +++ b/Assets/Samples~/IAAAdDebugSample/Configs/IAAAdDebugSampleConfig.asset @@ -33,7 +33,7 @@ MonoBehaviour: - key: tapadn.sub_channel value: debug - key: tapadn.rewarded_auto_load - value: true + value: false - key: tapadn.rewarded_prewarm_on_init value: false - key: tapadn.rewarded_max_load_attempts @@ -47,7 +47,7 @@ MonoBehaviour: - key: tapadn.reward_amount value: 1 - key: tapadn.interstitial_auto_load - value: true + value: false - key: tapadn.interstitial_prewarm_on_init value: false - key: tapadn.interstitial_max_load_attempts @@ -57,7 +57,7 @@ MonoBehaviour: - key: tapadn.interstitial_show_timeout_ms value: 20000 - key: tapadn.splash_auto_load - value: true + value: false - key: tapadn.splash_prewarm_on_init value: false - key: tapadn.splash_max_load_attempts @@ -66,3 +66,10 @@ MonoBehaviour: value: 500 - key: tapadn.splash_show_timeout_ms value: 20000 + - key: tapadn.smart_preload_enabled + value: true + - key: tapadn.smart_preload_config_asset_path + value: TapadnSmartLoadPolicy_Default + - key: tapadn.smart_preload_config_json + value: >- + {"GlobalDefault":{"AdType":-1,"Scene":"__default__","BaseProbability":0.08,"PreloadThreshold":0.75,"CooldownSeconds":120,"MinSamplesForConfidence":8,"DecayHalfLifeHours":72},"ScenePolicies":[{"AdType":1,"Scene":"splash_debug","BaseProbability":0.25,"PreloadThreshold":0.7,"CooldownSeconds":120,"MinSamplesForConfidence":6,"DecayHalfLifeHours":48},{"AdType":0,"Scene":"reward_debug","BaseProbability":0.6,"PreloadThreshold":0.5,"CooldownSeconds":60,"MinSamplesForConfidence":4,"DecayHalfLifeHours":48},{"AdType":2,"Scene":"interstitial_debug","BaseProbability":0.45,"PreloadThreshold":0.65,"CooldownSeconds":90,"MinSamplesForConfidence":5,"DecayHalfLifeHours":48}]} diff --git a/Assets/Samples~/IAAAdDebugSample/Runtime/TapadnIAAAdDebugSampleGui.cs b/Assets/Samples~/IAAAdDebugSample/Runtime/TapadnIAAAdDebugSampleGui.cs index dfe3f77..4920d82 100644 --- a/Assets/Samples~/IAAAdDebugSample/Runtime/TapadnIAAAdDebugSampleGui.cs +++ b/Assets/Samples~/IAAAdDebugSample/Runtime/TapadnIAAAdDebugSampleGui.cs @@ -183,6 +183,8 @@ public sealed class TapadnIAAAdDebugSampleGui : MonoBehaviour GUILayout.Label( $"Channel/SubChannel/Debug: {DisplayValue(options.Channel)}/{DisplayValue(options.SubChannel)}/{options.Debug}", _textStyle); + GUILayout.Label($"Smart Preload: enabled={options.SmartPreloadEnabled}, asset={DisplayValue(options.SmartPreloadConfigAssetPath)}", _textStyle); + GUILayout.Label($"Smart Policy Snapshot: {TapadnSmartLoadOrchestrator.GetDebugStateDump()}", _textStyle); } if (showVerboseState && GUILayout.Button("Refresh Status Snapshot", _buttonStyle, GUILayout.Height(64f))) @@ -191,6 +193,12 @@ public sealed class TapadnIAAAdDebugSampleGui : MonoBehaviour AppendLog("Manual status snapshot refreshed."); } + if (GUILayout.Button("Reset SmartLoad Learning State", _buttonStyle, GUILayout.Height(64f))) + { + TapadnSmartLoadOrchestrator.ResetLearningState(); + AppendLog("TapADN SmartLoad learning state reset."); + } + GUILayout.Space(10f); } diff --git a/Assets/Tapadn_Adapter/Runtime/Resources.meta b/Assets/Tapadn_Adapter/Runtime/Resources.meta new file mode 100644 index 0000000..eb52a0b --- /dev/null +++ b/Assets/Tapadn_Adapter/Runtime/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0f4f3adf5f7b4b2a8e4f3ff8f3a58c8e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Tapadn_Adapter/Runtime/Resources/TapadnSmartLoadPolicy_Default.json b/Assets/Tapadn_Adapter/Runtime/Resources/TapadnSmartLoadPolicy_Default.json new file mode 100644 index 0000000..a9fd90d --- /dev/null +++ b/Assets/Tapadn_Adapter/Runtime/Resources/TapadnSmartLoadPolicy_Default.json @@ -0,0 +1,40 @@ +{ + "GlobalDefault": { + "AdType": -1, + "Scene": "__default__", + "BaseProbability": 0.08, + "PreloadThreshold": 0.75, + "CooldownSeconds": 120, + "MinSamplesForConfidence": 8, + "DecayHalfLifeHours": 72 + }, + "ScenePolicies": [ + { + "AdType": 0, + "Scene": "reward_debug", + "BaseProbability": 0.6, + "PreloadThreshold": 0.55, + "CooldownSeconds": 90, + "MinSamplesForConfidence": 6, + "DecayHalfLifeHours": 48 + }, + { + "AdType": 2, + "Scene": "interstitial_debug", + "BaseProbability": 0.45, + "PreloadThreshold": 0.65, + "CooldownSeconds": 90, + "MinSamplesForConfidence": 5, + "DecayHalfLifeHours": 48 + }, + { + "AdType": 1, + "Scene": "splash_debug", + "BaseProbability": 0.25, + "PreloadThreshold": 0.7, + "CooldownSeconds": 120, + "MinSamplesForConfidence": 6, + "DecayHalfLifeHours": 48 + } + ] +} diff --git a/Assets/Tapadn_Adapter/Runtime/Resources/TapadnSmartLoadPolicy_Default.json.meta b/Assets/Tapadn_Adapter/Runtime/Resources/TapadnSmartLoadPolicy_Default.json.meta new file mode 100644 index 0000000..e39aef5 --- /dev/null +++ b/Assets/Tapadn_Adapter/Runtime/Resources/TapadnSmartLoadPolicy_Default.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b586678bfef849f2a293548b54f7790a +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnAdController.cs b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnAdController.cs index 2ff8d1c..f7aa563 100644 --- a/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnAdController.cs +++ b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnAdController.cs @@ -19,6 +19,7 @@ public sealed class TapadnAdController : IAdController _adConfig = adConfig; _options = TapadnControllerOptions.Resolve(adConfig, args); CurrentOptions = _options; + TapadnSmartLoadOrchestrator.Initialize(_options); var sdkConfig = _options.BuildSdkConfig(); DirichletSdk.Init( diff --git a/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnAwardVideoPlayer.cs b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnAwardVideoPlayer.cs index 4bb80c5..20183aa 100644 --- a/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnAwardVideoPlayer.cs +++ b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnAwardVideoPlayer.cs @@ -70,10 +70,12 @@ public sealed class TapadnAwardVideoPlayer : ADPlayer, IDirichletRewardVideoAuto } curState = 1; + TapadnSmartLoadOrchestrator.OnLoadStarted(AD_Type.AwardVideo, AdScene); _adNative.LoadRewardVideoAd( TapadnAdRequestFactory.BuildRewarded(Key, TapadnAdController.CurrentOptions), ad => { + TapadnSmartLoadOrchestrator.OnLoadResult(AD_Type.AwardVideo, AdScene, true); _loadedAd?.Destroy(); _loadedAd = ad; _loadedAd.Shown += OnManualShown; @@ -86,6 +88,7 @@ public sealed class TapadnAwardVideoPlayer : ADPlayer, IDirichletRewardVideoAuto }, error => { + TapadnSmartLoadOrchestrator.OnLoadResult(AD_Type.AwardVideo, AdScene, false); curState = 0; Debug.LogError($"[TapADN] Rewarded load failed. code={error.Code}, message={error.Message}"); }); @@ -127,12 +130,14 @@ public sealed class TapadnAwardVideoPlayer : ADPlayer, IDirichletRewardVideoAuto _rewardCloseSettleHandler?.Kill(); _rewardCloseSettleHandler = null; curState = 0; + TapadnSmartLoadOrchestrator.OnShowError(AD_Type.AwardVideo, AdScene); Debug.LogError($"[TapADN] Rewarded show failed. code={error?.Code}, message={error?.Message}"); adListener.OnShowError(); } public void OnAdShow() { + TapadnSmartLoadOrchestrator.OnShowStart(AD_Type.AwardVideo, AdScene); NotifyShowStarted(); } @@ -168,6 +173,16 @@ public sealed class TapadnAwardVideoPlayer : ADPlayer, IDirichletRewardVideoAuto { } + public override void OnPlayRequestStarted() + { + TapadnSmartLoadOrchestrator.OnPlayRequestStarted(AD_Type.AwardVideo, AdScene, !UseAutoLoad() && IsReadly()); + } + + public override void EnterAdScenario(string scenario) + { + TapadnSmartLoadOrchestrator.OnEnterAdScenario(AD_Type.AwardVideo, scenario, Key); + } + private bool UseAutoLoad() { return TapadnAdController.CurrentOptions?.RewardedAutoLoad ?? true; @@ -175,7 +190,7 @@ public sealed class TapadnAwardVideoPlayer : ADPlayer, IDirichletRewardVideoAuto private void OnManualShown() { - NotifyShowStarted(); + OnAdShow(); } private void OnManualClicked() diff --git a/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnControllerOptions.cs b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnControllerOptions.cs index 49915a4..0534b44 100644 --- a/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnControllerOptions.cs +++ b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnControllerOptions.cs @@ -39,6 +39,10 @@ public sealed class TapadnControllerOptions public const string SplashMaxLoadAttemptsKey = "tapadn.splash_max_load_attempts"; public const string SplashLoadRetryDelayMsKey = "tapadn.splash_load_retry_delay_ms"; public const string SplashShowTimeoutMsKey = "tapadn.splash_show_timeout_ms"; + public const string SmartPreloadEnabledKey = "tapadn.smart_preload_enabled"; + public const string SmartPreloadConfigJsonKey = "tapadn.smart_preload_config_json"; + public const string SmartPreloadConfigAssetPathKey = "tapadn.smart_preload_config_asset_path"; + public const string SmartPreloadRemoteConfigJsonKey = "tapadn.smart_preload_remote_json"; public const string ExpressWidthKey = "tapadn.express_width"; public const string ExpressHeightKey = "tapadn.express_height"; @@ -55,23 +59,27 @@ public sealed class TapadnControllerOptions public string ATags { get; set; } public bool AllowIDFAAccess { get; set; } = true; public bool RequestPermissionOnInit { get; set; } - public bool RewardedAutoLoad { get; set; } = true; + public bool RewardedAutoLoad { get; set; } = false; public bool RewardedPrewarmOnInit { get; set; } public int RewardedMaxLoadAttempts { get; set; } = 1; public int RewardedLoadRetryDelayMs { get; set; } = 500; public int RewardedShowTimeoutMs { get; set; } = 20000; public string RewardName { get; set; } = "reward"; public int RewardAmount { get; set; } = 1; - public bool InterstitialAutoLoad { get; set; } = true; + public bool InterstitialAutoLoad { get; set; } = false; public bool InterstitialPrewarmOnInit { get; set; } public int InterstitialMaxLoadAttempts { get; set; } = 1; public int InterstitialLoadRetryDelayMs { get; set; } = 500; public int InterstitialShowTimeoutMs { get; set; } = 20000; - public bool SplashAutoLoad { get; set; } = true; + public bool SplashAutoLoad { get; set; } = false; public bool SplashPrewarmOnInit { get; set; } public int SplashMaxLoadAttempts { get; set; } = 1; public int SplashLoadRetryDelayMs { get; set; } = 500; public int SplashShowTimeoutMs { get; set; } = 20000; + public bool SmartPreloadEnabled { get; set; } = false; + public string SmartPreloadConfigAssetPath { get; set; } = "TapadnSmartLoadPolicy_Default"; + public string SmartPreloadConfigJson { get; set; } + public string SmartPreloadRemoteConfigJson { get; set; } public int? ExpressWidth { get; set; } public int? ExpressHeight { get; set; } @@ -209,6 +217,10 @@ public sealed class TapadnControllerOptions SplashMaxLoadAttempts = incoming.SplashMaxLoadAttempts; SplashLoadRetryDelayMs = incoming.SplashLoadRetryDelayMs; SplashShowTimeoutMs = incoming.SplashShowTimeoutMs; + SmartPreloadEnabled = incoming.SmartPreloadEnabled; + SmartPreloadConfigAssetPath = incoming.SmartPreloadConfigAssetPath ?? SmartPreloadConfigAssetPath; + SmartPreloadConfigJson = incoming.SmartPreloadConfigJson; + SmartPreloadRemoteConfigJson = incoming.SmartPreloadRemoteConfigJson; ExpressWidth = incoming.ExpressWidth ?? ExpressWidth; ExpressHeight = incoming.ExpressHeight ?? ExpressHeight; } @@ -266,6 +278,10 @@ public sealed class TapadnControllerOptions SplashMaxLoadAttempts = GetInt(map, SplashMaxLoadAttemptsKey) ?? SplashMaxLoadAttempts; SplashLoadRetryDelayMs = GetInt(map, SplashLoadRetryDelayMsKey) ?? SplashLoadRetryDelayMs; SplashShowTimeoutMs = GetInt(map, SplashShowTimeoutMsKey) ?? SplashShowTimeoutMs; + SmartPreloadEnabled = GetBool(map, SmartPreloadEnabledKey) ?? SmartPreloadEnabled; + SmartPreloadConfigAssetPath = GetString(map, SmartPreloadConfigAssetPathKey) ?? SmartPreloadConfigAssetPath; + SmartPreloadConfigJson = GetString(map, SmartPreloadConfigJsonKey) ?? SmartPreloadConfigJson; + SmartPreloadRemoteConfigJson = GetString(map, SmartPreloadRemoteConfigJsonKey) ?? SmartPreloadRemoteConfigJson; ExpressWidth = GetInt(map, ExpressWidthKey) ?? ExpressWidth; ExpressHeight = GetInt(map, ExpressHeightKey) ?? ExpressHeight; } diff --git a/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnInteractionPlayer.cs b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnInteractionPlayer.cs index 43bec6a..1d516c0 100644 --- a/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnInteractionPlayer.cs +++ b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnInteractionPlayer.cs @@ -56,10 +56,12 @@ public sealed class TapadnInteractionPlayer : ADPlayer, IDirichletInterstitialAu } curState = 1; + TapadnSmartLoadOrchestrator.OnLoadStarted(AD_Type.Interaction, AdScene); _adNative.LoadInterstitialAd( TapadnAdRequestFactory.BuildInterstitial(Key, TapadnAdController.CurrentOptions), ad => { + TapadnSmartLoadOrchestrator.OnLoadResult(AD_Type.Interaction, AdScene, true); _loadedAd?.Destroy(); _loadedAd = ad; _loadedAd.Shown += OnManualShown; @@ -71,6 +73,7 @@ public sealed class TapadnInteractionPlayer : ADPlayer, IDirichletInterstitialAu }, error => { + TapadnSmartLoadOrchestrator.OnLoadResult(AD_Type.Interaction, AdScene, false); curState = 0; Debug.LogError($"[TapADN] Interstitial load failed. code={error.Code}, message={error.Message}"); }); @@ -103,6 +106,7 @@ public sealed class TapadnInteractionPlayer : ADPlayer, IDirichletInterstitialAu } _showSettled = true; + TapadnSmartLoadOrchestrator.OnShowError(AD_Type.Interaction, AdScene); curState = 0; Debug.LogError($"[TapADN] Interstitial show failed. code={error?.Code}, message={error?.Message}"); adListener.OnShowError(); @@ -110,6 +114,7 @@ public sealed class TapadnInteractionPlayer : ADPlayer, IDirichletInterstitialAu public void OnAdShow() { + TapadnSmartLoadOrchestrator.OnShowStart(AD_Type.Interaction, AdScene); NotifyShowStarted(); } @@ -129,6 +134,16 @@ public sealed class TapadnInteractionPlayer : ADPlayer, IDirichletInterstitialAu { } + public override void OnPlayRequestStarted() + { + TapadnSmartLoadOrchestrator.OnPlayRequestStarted(AD_Type.Interaction, AdScene, !UseAutoLoad() && IsReadly()); + } + + public override void EnterAdScenario(string scenario) + { + TapadnSmartLoadOrchestrator.OnEnterAdScenario(AD_Type.Interaction, scenario, Key); + } + private bool UseAutoLoad() { return TapadnAdController.CurrentOptions?.InterstitialAutoLoad ?? true; @@ -136,6 +151,7 @@ public sealed class TapadnInteractionPlayer : ADPlayer, IDirichletInterstitialAu private void OnManualShown() { + TapadnSmartLoadOrchestrator.OnShowStart(AD_Type.Interaction, AdScene); NotifyShowStarted(); } diff --git a/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnSmartLoadOrchestrator.cs b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnSmartLoadOrchestrator.cs new file mode 100644 index 0000000..1e27c6d --- /dev/null +++ b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnSmartLoadOrchestrator.cs @@ -0,0 +1,981 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Runtime.ADAggregator; +using UnityEngine; + +// 智能预加载实验:基于“场景出现次数/该场景实际播放请求次数”进行置信决策, +// 并允许通过策略配置进行服务端默认值覆盖。 +public static class TapadnSmartLoadOrchestrator +{ + private const string StatsPrefsKey = "TapadnSmartLoadStats.v1"; + private const string DefaultScene = "__default__"; + private const string PolicyDefaultScene = "__default__"; + + private static TapadnSmartLoadConfig _runtimeConfig; + private static Dictionary _states = new Dictionary(StringComparer.Ordinal); + private static Dictionary _policies = new Dictionary(StringComparer.Ordinal); + private static Dictionary _cacheStates = new Dictionary(); + private static bool _initialized; + private static bool _enabled; + + public static bool IsEnabled => _enabled; + + public static string GetDebugStateDump() + { + if (!_initialized) + { + return "{}"; + } + + var lines = new List(); + foreach (var entry in _states.Values) + { + if (entry == null) + { + continue; + } + + var adType = SafeToAdType(entry.AdType); + if (!adType.HasValue) + { + continue; + } + + var policy = ResolvePolicy(adType.Value, entry.Scenario); + var prob = EstimateShowProbability(adType.Value, entry.Scenario); + lines.Add( + $"[{entry.AdType}]{entry.Scenario} e={entry.EnterCount} pReq={entry.PlayRequestCount} preReq={entry.PreloadRequestCount} preSuc={entry.PreloadSuccessCount} preFail={entry.PreloadFailureCount} showReq={entry.ShowRequestCount} showOk={entry.ShowStartCount} showFail={entry.ShowFailureCount} imm={entry.ImmediateHitCount} smartHit={entry.SmartCacheHitCount} smartUsed={entry.SmartPreloadConsumedCount} score={prob:F3} policy={policy?.PreloadThreshold:F2}"); + } + + return $"enabled={_enabled},states={lines.Count},policies={_policies.Count},cache={GetCacheDebugDump()},snapshot={string.Join(" ; ", lines)}"; + } + + public static string ExportSnapshotCsv() + { + if (!_initialized) + { + return GetSnapshotCsvHeader(); + } + + var sb = new StringBuilder(); + sb.AppendLine(GetSnapshotCsvHeader()); + foreach (var entry in _states.Values) + { + if (entry == null) + { + continue; + } + + sb.AppendLine(string.Join(",", + entry.AdType, + EncodeCsv(NormalizeScenario(entry.Scenario)), + entry.EnterCount, + entry.PlayRequestCount, + entry.PreloadRequestCount, + entry.PreloadSuccessCount, + entry.PreloadFailureCount, + entry.ShowRequestCount, + entry.ShowStartCount, + entry.ShowFailureCount, + entry.ImmediateHitCount, + entry.SmartCacheHitCount, + entry.SmartCacheCrossSceneHitCount, + entry.UnattributedCacheHitCount, + entry.SmartPreloadConsumedCount, + entry.SmartPreloadConsumedSameSceneCount, + entry.SmartPreloadConsumedOtherSceneCount, + entry.SmartPreloadShowFailureCount, + entry.SmartPreloadExpiredCount, + EncodeCsv(NormalizeScenario(entry.LastSmartPreloadConsumedByScene)), + entry.LastSmartPreloadConsumedUnix, + entry.LastPreloadUnix, + entry.LastUpdatedUnix, + EstimateShowProbability((AD_Type)entry.AdType, entry.Scenario))); + } + + return sb.ToString(); + } + + public static void ResetLearningState() + { + if (!_initialized) + { + return; + } + + _states.Clear(); + _cacheStates.Clear(); + PlayerPrefs.DeleteKey(StatsPrefsKey); + PlayerPrefs.Save(); + } + + public static void Initialize(TapadnControllerOptions options) + { + _runtimeConfig = BuildConfig(options); + _enabled = options?.SmartPreloadEnabled ?? false; + _initialized = true; + _states = new Dictionary(StringComparer.Ordinal); + _cacheStates = new Dictionary(); + LoadStates(); + EnsureDefaultPolicies(_runtimeConfig); + } + + public static void OnEnterAdScenario(AD_Type adType, string scenario, string _slotId) + { + if (!_initialized || !_enabled) + { + return; + } + + var normalizedScenario = NormalizeScenario(scenario); + var record = GetOrCreateState(adType, normalizedScenario); + record.EnterCount = Math.Max(0, record.EnterCount) + 1; + record.LastUpdatedUnix = GetNowUnixSeconds(); + record.ShowRequestCount = Math.Max(0, record.ShowRequestCount); + SaveStates(); + + TryPreload(adType, normalizedScenario); + } + + public static void OnPlayRequestStarted(AD_Type adType, string scenario, bool cacheReadyAtRequest) + { + if (!_initialized || !_enabled) + { + return; + } + + var normalizedScenario = NormalizeScenario(scenario); + var record = GetOrCreateState(adType, normalizedScenario); + record.PlayRequestCount = Math.Max(0, record.PlayRequestCount) + 1; + record.ShowRequestCount = Math.Max(0, record.ShowRequestCount) + 1; + record.LastUpdatedUnix = GetNowUnixSeconds(); + if (cacheReadyAtRequest) + { + MarkImmediateHit(adType, normalizedScenario); + } + else + { + MarkCacheExpiredIfStale(adType); + } + + SaveStates(); + } + + public static void OnLoadRequested(AD_Type adType, string scenario) + { + if (!_initialized || !_enabled) + { + return; + } + + PrepareSmartLoadRequest(adType, scenario); + } + + public static void OnLoadStarted(AD_Type adType, string scenario) + { + if (!_initialized || !_enabled) + { + return; + } + + BeginLoadRequest(adType, scenario); + SaveStates(); + } + + public static void OnLoadResult(AD_Type adType, string scenario, bool success) + { + if (!_initialized || !_enabled) + { + return; + } + + CompleteLoadRequest(adType, scenario, success); + SaveStates(); + } + + public static void OnShowStart(AD_Type adType, string scenario) + { + if (!_initialized || !_enabled) + { + return; + } + + var record = GetOrCreateState(adType, NormalizeScenario(scenario)); + record.ShowStartCount = Math.Max(0, record.ShowStartCount) + 1; + record.LastUpdatedUnix = GetNowUnixSeconds(); + MarkCacheConsumed(adType, scenario); + SaveStates(); + } + + public static void OnShowError(AD_Type adType, string scenario) + { + if (!_initialized || !_enabled) + { + return; + } + + var record = GetOrCreateState(adType, NormalizeScenario(scenario)); + record.ShowFailureCount = Math.Max(0, record.ShowFailureCount) + 1; + record.LastUpdatedUnix = GetNowUnixSeconds(); + MarkCacheShowFailed(adType, scenario); + SaveStates(); + } + + private static void TryPreload(AD_Type adType, string scenario) + { + if (!_initialized || !_enabled) + { + return; + } + + if (!ADManager.Instance.CheckNetwork()) + { + return; + } + + var policy = ResolvePolicy(adType, scenario); + if (policy == null) + { + return; + } + + if (!NeedPreload(adType, scenario, policy)) + { + return; + } + + var now = GetNowUnixSeconds(); + var state = GetOrCreateState(adType, scenario); + if (now - state.LastPreloadUnix < policy.CooldownSeconds) + { + return; + } + + if (ADManager.Instance.IsRealy(adType)) + { + return; + } + + MarkCacheExpiredIfStale(adType); + OnLoadRequested(adType, scenario); + ADManager.Instance.LoadAD(adType); + var smartLoadStarted = HasPendingSmartLoadForScene(adType, scenario); + ClearPreparedLoadIfNotStarted(adType); + if (!smartLoadStarted) + { + return; + } + + state.LastPreloadUnix = now; + state.LastUpdatedUnix = now; + SaveStates(); + Debug.Log($"[TapADN SmartLoad] Preload triggered: type={adType}, scenario={scenario}, score={EstimateShowProbability(adType, scenario):F3}"); + } + + private static bool NeedPreload(AD_Type adType, string scenario, TapadnSmartLoadPolicyItem policy) + { + var score = EstimateShowProbability(adType, scenario); + return score >= policy.PreloadThreshold; + } + + private static float EstimateShowProbability(AD_Type adType, string scenario) + { + var policy = ResolvePolicy(adType, scenario); + if (policy == null) + { + return 0f; + } + + var state = GetOrCreateState(adType, scenario); + if (state.EnterCount <= 0) + { + return policy.BaseProbability; + } + + var observedRate = Mathf.Clamp01(state.PlayRequestCount / (float)state.EnterCount); + var confidence = Mathf.Clamp01(state.EnterCount / (float)Mathf.Max(1, policy.MinSamplesForConfidence)); + var ageHours = Mathf.Max(0f, (GetNowUnixSeconds() - state.LastUpdatedUnix) / 3600f); + var decay = Mathf.Pow(0.5f, ageHours / Mathf.Max(1f, policy.DecayHalfLifeHours)); + var trust = Mathf.Clamp01(confidence * decay); + + return Mathf.Lerp(policy.BaseProbability, observedRate, trust); + } + + private static void PrepareSmartLoadRequest(AD_Type adType, string scenario) + { + var state = GetOrCreateCacheState(adType); + if (state.PendingSmartLoad) + { + return; + } + + state.PreparedSmartLoad = true; + state.PreparedOriginScene = NormalizeScenario(scenario); + state.PreparedOriginScore = EstimateShowProbability(adType, scenario); + state.PreparedRequestUnix = GetNowUnixSeconds(); + } + + private static void BeginLoadRequest(AD_Type adType, string scenario) + { + var state = GetOrCreateCacheState(adType); + var now = GetNowUnixSeconds(); + if (state.PreparedSmartLoad) + { + var originScene = NormalizeScenario(state.PreparedOriginScene); + var record = GetOrCreateState(adType, originScene); + record.PreloadRequestCount = Math.Max(0, record.PreloadRequestCount) + 1; + record.LastUpdatedUnix = now; + state.PendingSmartLoad = true; + state.PendingOriginScene = originScene; + state.PendingOriginScore = state.PreparedOriginScore; + state.PendingRequestUnix = now; + } + else + { + state.PendingSmartLoad = false; + state.PendingOriginScene = NormalizeScenario(scenario); + state.PendingOriginScore = EstimateShowProbability(adType, scenario); + state.PendingRequestUnix = now; + } + + state.HasReadyCache = false; + state.PreparedSmartLoad = false; + state.PreparedOriginScene = null; + state.PreparedOriginScore = 0f; + state.PreparedRequestUnix = 0; + } + + private static void ClearPreparedLoadIfNotStarted(AD_Type adType) + { + var state = GetOrCreateCacheState(adType); + if (state.PendingSmartLoad) + { + return; + } + + state.PreparedSmartLoad = false; + state.PreparedOriginScene = null; + state.PreparedOriginScore = 0f; + state.PreparedRequestUnix = 0; + } + + private static bool HasPendingSmartLoadForScene(AD_Type adType, string scenario) + { + var state = GetOrCreateCacheState(adType); + return state.PendingSmartLoad && + string.Equals(NormalizeScenario(state.PendingOriginScene), NormalizeScenario(scenario), StringComparison.Ordinal); + } + + private static void CompleteLoadRequest(AD_Type adType, string scenario, bool success) + { + var cacheState = GetOrCreateCacheState(adType); + var normalizedScenario = NormalizeScenario(scenario); + var originScene = cacheState.PendingSmartLoad ? NormalizeScenario(cacheState.PendingOriginScene) : normalizedScenario; + var originRecord = GetOrCreateState(adType, originScene); + + if (cacheState.PendingSmartLoad) + { + if (success) + { + originRecord.PreloadSuccessCount = Math.Max(0, originRecord.PreloadSuccessCount) + 1; + } + else + { + originRecord.PreloadFailureCount = Math.Max(0, originRecord.PreloadFailureCount) + 1; + } + } + + originRecord.LastUpdatedUnix = GetNowUnixSeconds(); + if (success) + { + cacheState.HasReadyCache = true; + cacheState.ReadyFromSmart = cacheState.PendingSmartLoad; + cacheState.ReadyOriginScene = originScene; + cacheState.ReadyOriginScore = cacheState.PendingSmartLoad ? cacheState.PendingOriginScore : EstimateShowProbability(adType, originScene); + cacheState.ReadyLoadedUnix = GetNowUnixSeconds(); + cacheState.ReadyRequestUnix = cacheState.PendingRequestUnix; + cacheState.Consumed = false; + } + else if (cacheState.PendingSmartLoad) + { + ClearReadyCache(cacheState); + } + + cacheState.PendingSmartLoad = false; + cacheState.PendingOriginScene = null; + cacheState.PendingOriginScore = 0f; + cacheState.PendingRequestUnix = 0; + } + + private static void MarkImmediateHit(AD_Type adType, string scenario) + { + var consumedScene = NormalizeScenario(scenario); + var currentSceneRecord = GetOrCreateState(adType, consumedScene); + currentSceneRecord.ImmediateHitCount = Math.Max(0, currentSceneRecord.ImmediateHitCount) + 1; + currentSceneRecord.LastUpdatedUnix = GetNowUnixSeconds(); + + var cacheState = GetOrCreateCacheState(adType); + if (!cacheState.HasReadyCache) + { + currentSceneRecord.UnattributedCacheHitCount = Math.Max(0, currentSceneRecord.UnattributedCacheHitCount) + 1; + } + } + + private static void MarkCacheConsumed(AD_Type adType, string scenario) + { + var cacheState = GetOrCreateCacheState(adType); + if (!cacheState.HasReadyCache || cacheState.Consumed) + { + return; + } + + var consumedScene = NormalizeScenario(scenario); + var originScene = NormalizeScenario(cacheState.ReadyOriginScene); + var currentSceneRecord = GetOrCreateState(adType, consumedScene); + var originSceneRecord = GetOrCreateState(adType, originScene); + + if (cacheState.ReadyFromSmart) + { + currentSceneRecord.SmartCacheHitCount = Math.Max(0, currentSceneRecord.SmartCacheHitCount) + 1; + originSceneRecord.SmartPreloadConsumedCount = Math.Max(0, originSceneRecord.SmartPreloadConsumedCount) + 1; + originSceneRecord.LastSmartPreloadConsumedByScene = consumedScene; + originSceneRecord.LastSmartPreloadConsumedUnix = GetNowUnixSeconds(); + + if (string.Equals(originScene, consumedScene, StringComparison.Ordinal)) + { + originSceneRecord.SmartPreloadConsumedSameSceneCount = Math.Max(0, originSceneRecord.SmartPreloadConsumedSameSceneCount) + 1; + } + else + { + currentSceneRecord.SmartCacheCrossSceneHitCount = Math.Max(0, currentSceneRecord.SmartCacheCrossSceneHitCount) + 1; + originSceneRecord.SmartPreloadConsumedOtherSceneCount = Math.Max(0, originSceneRecord.SmartPreloadConsumedOtherSceneCount) + 1; + } + } + currentSceneRecord.LastUpdatedUnix = GetNowUnixSeconds(); + originSceneRecord.LastUpdatedUnix = GetNowUnixSeconds(); + cacheState.Consumed = true; + ClearReadyCache(cacheState); + } + + private static void MarkCacheShowFailed(AD_Type adType, string scenario) + { + var cacheState = GetOrCreateCacheState(adType); + if (!cacheState.HasReadyCache) + { + return; + } + + var originScene = NormalizeScenario(cacheState.ReadyOriginScene); + if (cacheState.ReadyFromSmart) + { + var originSceneRecord = GetOrCreateState(adType, originScene); + originSceneRecord.SmartPreloadShowFailureCount = Math.Max(0, originSceneRecord.SmartPreloadShowFailureCount) + 1; + originSceneRecord.LastSmartPreloadConsumedByScene = NormalizeScenario(scenario); + originSceneRecord.LastSmartPreloadConsumedUnix = GetNowUnixSeconds(); + originSceneRecord.LastUpdatedUnix = GetNowUnixSeconds(); + } + + ClearReadyCache(cacheState); + } + + private static void MarkCacheExpiredIfStale(AD_Type adType) + { + var cacheState = GetOrCreateCacheState(adType); + if (!cacheState.HasReadyCache) + { + return; + } + + if (ADManager.Instance.IsRealy(adType)) + { + return; + } + + if (cacheState.ReadyFromSmart) + { + var originSceneRecord = GetOrCreateState(adType, NormalizeScenario(cacheState.ReadyOriginScene)); + originSceneRecord.SmartPreloadExpiredCount = Math.Max(0, originSceneRecord.SmartPreloadExpiredCount) + 1; + originSceneRecord.LastUpdatedUnix = GetNowUnixSeconds(); + } + + ClearReadyCache(cacheState); + } + + private static TapadnSmartLoadCacheState GetOrCreateCacheState(AD_Type adType) + { + var key = (int)adType; + if (_cacheStates.TryGetValue(key, out var state) && state != null) + { + return state; + } + + state = new TapadnSmartLoadCacheState(); + _cacheStates[key] = state; + return state; + } + + private static void ClearReadyCache(TapadnSmartLoadCacheState state) + { + if (state == null) + { + return; + } + + state.HasReadyCache = false; + state.ReadyFromSmart = false; + state.ReadyOriginScene = null; + state.ReadyOriginScore = 0f; + state.ReadyLoadedUnix = 0; + state.ReadyRequestUnix = 0; + state.Consumed = false; + } + + private static string GetCacheDebugDump() + { + if (_cacheStates == null || _cacheStates.Count == 0) + { + return "empty"; + } + + var lines = new List(); + foreach (var entry in _cacheStates) + { + var state = entry.Value; + if (state == null) + { + continue; + } + + lines.Add($"[{entry.Key}]prepared={state.PreparedSmartLoad}:{NormalizeScenario(state.PreparedOriginScene)} pending={state.PendingSmartLoad}:{NormalizeScenario(state.PendingOriginScene)} ready={state.HasReadyCache}:{state.ReadyFromSmart}:{NormalizeScenario(state.ReadyOriginScene)} score={state.ReadyOriginScore:F3}"); + } + + return string.Join(" | ", lines); + } + + private static string GetSnapshotCsvHeader() + { + return "ad_type,scenario,enter_count,play_request_count,preload_request,preload_success,preload_fail,show_request,show_start,show_fail,immediate_hit,smart_cache_hit,smart_cache_cross_scene_hit,unattributed_cache_hit,smart_preload_consumed,smart_preload_consumed_same_scene,smart_preload_consumed_other_scene,smart_preload_show_fail,smart_preload_expired,last_smart_preload_consumed_by_scene,last_smart_preload_consumed_unix,last_preload_unix,last_updated_unix,last_score"; + } + + private static TapadnSmartLoadPolicyItem ResolvePolicy(AD_Type adType, string scenario) + { + if (_runtimeConfig == null) + { + _runtimeConfig = BuildDefaultConfig(); + } + + var normalizedScenario = NormalizeScenario(scenario); + var exactKey = ComposeKey(adType, normalizedScenario); + if (_policies.TryGetValue(exactKey, out var exactPolicy)) + { + return exactPolicy; + } + + var defaultScenarioKey = ComposeKey(adType, PolicyDefaultScene); + if (_policies.TryGetValue(defaultScenarioKey, out var defaultPolicy)) + { + return defaultPolicy; + } + + return _runtimeConfig?.GlobalDefault != null ? _runtimeConfig.GlobalDefault : BuildDefaultConfig().GlobalDefault; + } + + private static void EnsureDefaultPolicies(TapadnSmartLoadConfig config) + { + _policies.Clear(); + if (config == null || config.ScenePolicies == null) + { + config = BuildDefaultConfig(); + } + + if (config.GlobalDefault == null) + { + config.GlobalDefault = BuildDefaultPolicy(); + } + + foreach (var policy in config.ScenePolicies) + { + if (policy == null || string.IsNullOrWhiteSpace(policy.Scene)) + { + continue; + } + + if (policy.AdType < 0 || policy.AdType > 2) + { + continue; + } + + var key = ComposeKey((AD_Type)policy.AdType, NormalizeScenario(policy.Scene)); + _policies[key] = new TapadnSmartLoadPolicyItem + { + AdType = policy.AdType, + Scene = NormalizeScenario(policy.Scene), + BaseProbability = Mathf.Clamp01(policy.BaseProbability), + PreloadThreshold = Mathf.Clamp(policy.PreloadThreshold, 0f, 1f), + CooldownSeconds = Math.Max(0, policy.CooldownSeconds), + MinSamplesForConfidence = Math.Max(1, policy.MinSamplesForConfidence), + DecayHalfLifeHours = Math.Max(1f, policy.DecayHalfLifeHours), + }; + } + + foreach (AD_Type adType in Enum.GetValues(typeof(AD_Type))) + { + var key = ComposeKey(adType, PolicyDefaultScene); + if (!_policies.ContainsKey(key)) + { + _policies[key] = ClonePolicy(config.GlobalDefault, adType); + } + } + } + + private static TapadnSmartLoadPolicyItem ClonePolicy(TapadnSmartLoadPolicyItem source, AD_Type adType) + { + if (source == null) + { + source = BuildDefaultPolicy(); + } + + return new TapadnSmartLoadPolicyItem + { + AdType = (int)adType, + Scene = PolicyDefaultScene, + BaseProbability = source.BaseProbability, + PreloadThreshold = source.PreloadThreshold, + CooldownSeconds = source.CooldownSeconds, + MinSamplesForConfidence = source.MinSamplesForConfidence, + DecayHalfLifeHours = source.DecayHalfLifeHours + }; + } + + private static TapadnSmartLoadConfig BuildConfig(TapadnControllerOptions options) + { + var config = BuildDefaultConfig(); + MergePolicyJson(config, ReadPolicyAssetJson(options)); + MergePolicyJson(config, options?.SmartPreloadConfigJson); + MergePolicyJson(config, options?.SmartPreloadRemoteConfigJson); + return config; + } + + private static string ReadPolicyAssetJson(TapadnControllerOptions options) + { + if (options == null || string.IsNullOrWhiteSpace(options.SmartPreloadConfigAssetPath)) + { + return null; + } + + try + { + var asset = Resources.Load(options.SmartPreloadConfigAssetPath); + return asset != null ? asset.text : null; + } + catch (Exception exception) + { + Debug.LogWarning($"[TapADN SmartLoad] Load policy asset failed: {exception.Message}"); + return null; + } + } + + private static TapadnSmartLoadConfig BuildDefaultConfig() + { + return new TapadnSmartLoadConfig + { + GlobalDefault = BuildDefaultPolicy(), + ScenePolicies = new List(), + }; + } + + private static TapadnSmartLoadPolicyItem BuildDefaultPolicy() + { + return new TapadnSmartLoadPolicyItem + { + AdType = -1, + Scene = PolicyDefaultScene, + BaseProbability = 0.08f, + PreloadThreshold = 0.75f, + CooldownSeconds = 120, + MinSamplesForConfidence = 8, + DecayHalfLifeHours = 72f + }; + } + + private static void MergePolicyJson(TapadnSmartLoadConfig target, string json) + { + if (string.IsNullOrWhiteSpace(json)) + { + return; + } + + try + { + var parsed = JsonUtility.FromJson(json); + if (parsed == null) + { + return; + } + + if (parsed.GlobalDefault != null) + { + target.GlobalDefault = NormalizePolicy(parsed.GlobalDefault); + } + + if (parsed.ScenePolicies == null || parsed.ScenePolicies.Count == 0) + { + return; + } + + if (target.ScenePolicies == null) + { + target.ScenePolicies = new List(); + } + + foreach (var policy in parsed.ScenePolicies) + { + if (policy == null) + { + continue; + } + + if (policy.AdType < 0 || policy.AdType > 2) + { + continue; + } + + if (string.IsNullOrWhiteSpace(policy.Scene)) + { + continue; + } + + target.ScenePolicies.Add(policy); + } + } + catch (Exception exception) + { + Debug.LogWarning($"[TapADN SmartLoad] Merge policy JSON failed: {exception.Message}"); + } + } + + private static string EncodeCsv(string value) + { + if (string.IsNullOrEmpty(value)) + { + return "0"; + } + + if (value.Contains(",") || value.Contains("\"") || value.Contains("\n")) + { + return $"\"{value.Replace("\"", "\"\"")}\""; + } + + return value; + } + + private static TapadnSmartLoadPolicyItem NormalizePolicy(TapadnSmartLoadPolicyItem policy) + { + return new TapadnSmartLoadPolicyItem + { + AdType = policy.AdType, + Scene = NormalizeScenario(policy.Scene), + BaseProbability = Mathf.Clamp01(policy.BaseProbability), + PreloadThreshold = Mathf.Clamp(policy.PreloadThreshold, 0f, 1f), + CooldownSeconds = Math.Max(0, policy.CooldownSeconds), + MinSamplesForConfidence = Math.Max(1, policy.MinSamplesForConfidence), + DecayHalfLifeHours = Math.Max(1f, policy.DecayHalfLifeHours), + }; + } + + private static TapadnSmartLoadSceneState GetOrCreateState(AD_Type adType, string scenario) + { + var key = ComposeKey(adType, NormalizeScenario(scenario)); + if (_states.TryGetValue(key, out var state)) + { + return state; + } + + state = new TapadnSmartLoadSceneState + { + AdType = (int)adType, + Scenario = NormalizeScenario(scenario), + EnterCount = 0, + PlayRequestCount = 0, + LastUpdatedUnix = GetNowUnixSeconds() + }; + _states[key] = state; + return state; + } + + private static void LoadStates() + { + try + { + var raw = PlayerPrefs.GetString(StatsPrefsKey, string.Empty); + if (string.IsNullOrWhiteSpace(raw)) + { + return; + } + + var data = JsonUtility.FromJson(raw); + if (data == null || data.Entries == null) + { + return; + } + + foreach (var entry in data.Entries) + { + if (entry == null || entry.AdType < 0) + { + continue; + } + + var adType = SafeToAdType(entry.AdType); + var scenario = NormalizeScenario(entry.Scenario); + if (adType == null) + { + continue; + } + + var key = ComposeKey(adType.Value, scenario); + _states[key] = entry; + } + } + catch (Exception exception) + { + Debug.LogWarning($"[TapADN SmartLoad] Load state failed: {exception.Message}"); + } + } + + private static AD_Type? SafeToAdType(int value) + { + if (value < 0 || value > 2) + { + return null; + } + + return (AD_Type)value; + } + + private static void SaveStates() + { + var data = new TapadnSmartLoadStateData(); + data.Entries = new List(); + + foreach (var entry in _states.Values) + { + data.Entries.Add(entry); + } + + var raw = JsonUtility.ToJson(data); + if (string.IsNullOrWhiteSpace(raw)) + { + return; + } + + PlayerPrefs.SetString(StatsPrefsKey, raw); + PlayerPrefs.Save(); + } + + private static string ComposeKey(AD_Type adType, string scenario) + { + return ((int)adType) + "|" + NormalizeScenario(scenario); + } + + private static string NormalizeScenario(string scenario) + { + if (string.IsNullOrWhiteSpace(scenario)) + { + return DefaultScene; + } + + return scenario.Trim(); + } + + private static long GetNowUnixSeconds() + { + return (long)(DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)).TotalSeconds; + } + + [Serializable] + private sealed class TapadnSmartLoadConfig + { + public TapadnSmartLoadPolicyItem GlobalDefault; + public List ScenePolicies; + } + + [Serializable] + private sealed class TapadnSmartLoadPolicyItem + { + public int AdType; + public string Scene; + public float BaseProbability; + public float PreloadThreshold; + public int CooldownSeconds; + public int MinSamplesForConfidence; + public float DecayHalfLifeHours; + } + + [Serializable] + private sealed class TapadnSmartLoadPolicyItemDto + { + public int AdType; + public string Scene; + public float BaseProbability = 0.08f; + public float PreloadThreshold = 0.75f; + public int CooldownSeconds = 120; + public int MinSamplesForConfidence = 8; + public float DecayHalfLifeHours = 72f; + } + + [Serializable] + private sealed class TapadnSmartLoadStateData + { + public int Version = 1; + public List Entries; + } + + private sealed class TapadnSmartLoadCacheState + { + public bool PreparedSmartLoad; + public string PreparedOriginScene; + public float PreparedOriginScore; + public long PreparedRequestUnix; + public bool PendingSmartLoad; + public string PendingOriginScene; + public float PendingOriginScore; + public long PendingRequestUnix; + public bool HasReadyCache; + public bool ReadyFromSmart; + public string ReadyOriginScene; + public float ReadyOriginScore; + public long ReadyLoadedUnix; + public long ReadyRequestUnix; + public bool Consumed; + } + + [Serializable] + private sealed class TapadnSmartLoadSceneState + { + public int AdType; + public string Scenario; + public int EnterCount; + public int PlayRequestCount; + public int PreloadRequestCount; + public int PreloadSuccessCount; + public int PreloadFailureCount; + public int ShowRequestCount; + public int ShowStartCount; + public int ShowFailureCount; + public int ImmediateHitCount; + public int SmartCacheHitCount; + public int SmartCacheCrossSceneHitCount; + public int UnattributedCacheHitCount; + public int SmartPreloadConsumedCount; + public int SmartPreloadConsumedSameSceneCount; + public int SmartPreloadConsumedOtherSceneCount; + public int SmartPreloadShowFailureCount; + public int SmartPreloadExpiredCount; + public string LastSmartPreloadConsumedByScene; + public long LastSmartPreloadConsumedUnix; + public long LastUpdatedUnix; + public long LastPreloadUnix; + } +} diff --git a/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnSmartLoadOrchestrator.cs.meta b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnSmartLoadOrchestrator.cs.meta new file mode 100644 index 0000000..aabb9db --- /dev/null +++ b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnSmartLoadOrchestrator.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c383420c72bb4c1f90c0e88f0e250b5d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnSplashPlayer.cs b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnSplashPlayer.cs index 85c3b24..55e03c8 100644 --- a/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnSplashPlayer.cs +++ b/Assets/Tapadn_Adapter/Runtime/Scripts/TapadnSplashPlayer.cs @@ -56,10 +56,12 @@ public sealed class TapadnSplashPlayer : ADPlayer, IDirichletSplashAutoAdListene } curState = 1; + TapadnSmartLoadOrchestrator.OnLoadStarted(AD_Type.Splash, AdScene); _adNative.LoadSplashAd( TapadnAdRequestFactory.BuildSplash(Key, TapadnAdController.CurrentOptions), ad => { + TapadnSmartLoadOrchestrator.OnLoadResult(AD_Type.Splash, AdScene, true); _loadedAd?.Destroy(); _loadedAd = ad; _loadedAd.Shown += OnManualShown; @@ -71,6 +73,7 @@ public sealed class TapadnSplashPlayer : ADPlayer, IDirichletSplashAutoAdListene }, error => { + TapadnSmartLoadOrchestrator.OnLoadResult(AD_Type.Splash, AdScene, false); curState = 0; Debug.LogError($"[TapADN] Splash load failed. code={error.Code}, message={error.Message}"); }); @@ -103,6 +106,7 @@ public sealed class TapadnSplashPlayer : ADPlayer, IDirichletSplashAutoAdListene } _showSettled = true; + TapadnSmartLoadOrchestrator.OnShowError(AD_Type.Splash, AdScene); curState = 0; Debug.LogError($"[TapADN] Splash show failed. code={error?.Code}, message={error?.Message}"); adListener.OnShowError(); @@ -110,6 +114,7 @@ public sealed class TapadnSplashPlayer : ADPlayer, IDirichletSplashAutoAdListene public void OnAdShow() { + TapadnSmartLoadOrchestrator.OnShowStart(AD_Type.Splash, AdScene); NotifyShowStarted(); } @@ -129,6 +134,16 @@ public sealed class TapadnSplashPlayer : ADPlayer, IDirichletSplashAutoAdListene { } + public override void OnPlayRequestStarted() + { + TapadnSmartLoadOrchestrator.OnPlayRequestStarted(AD_Type.Splash, AdScene, !UseAutoLoad() && IsReadly()); + } + + public override void EnterAdScenario(string scenario) + { + TapadnSmartLoadOrchestrator.OnEnterAdScenario(AD_Type.Splash, scenario, Key); + } + private bool UseAutoLoad() { return TapadnAdController.CurrentOptions?.SplashAutoLoad ?? true; @@ -136,6 +151,7 @@ public sealed class TapadnSplashPlayer : ADPlayer, IDirichletSplashAutoAdListene private void OnManualShown() { + TapadnSmartLoadOrchestrator.OnShowStart(AD_Type.Splash, AdScene); NotifyShowStarted(); } diff --git a/GLOBAL_DESIGN.md b/GLOBAL_DESIGN.md index d2a4cf7..cc10ac3 100644 --- a/GLOBAL_DESIGN.md +++ b/GLOBAL_DESIGN.md @@ -35,12 +35,12 @@ ## 广告播放器 -默认方案:使用 TapADN auto-ad 接口。 +默认方案:优先手动 load/show,避免把 `ADManager.AsyncAdPlayer` 的时序语义与 TapADN auto 语义混用。 原因: -* 官方 Unity 文档推荐 Android auto-ad,接口把加载和展示合并,SDK 自己管理缓存。 -* `ADManager.AsyncAdPlayer` 已有遮罩、超时和回调收口;auto-ad 可以让业务侧首次播放少一个 preload 时序。 +* TapADN auto-ad 是官方 Android 场景下的“加载 + 展示合并”调用,不等价于完整场景分发与实时 readiness 能力。 +* `ADManager.AsyncAdPlayer` 先做 `IsReadly` 决策,未 ready 则调用 `LoadAD`,ready 后再 `ShowAD`,所以手动模式下生命周期和失败收口更稳定。 备选方案:手动 load/show。 @@ -105,3 +105,37 @@ 该路径以 `Packages/manifest.json` 所在目录为基准,符合 Unity 本地 UPM package 规则;`Packages/CC-Framework.Commercialization` 只是本机验证副本,已被 `.gitignore` 排除,不进入发布包。 如果 batchmode 出现 `Failed to resolve packages: The "path" argument must be of type string. Received undefined`,不把它直接归因为 manifest 路径错误,也不使用 `-noUpm` 绕过。处理顺序是保存 Unity Editor log 和 `%LOCALAPPDATA%\Unity\Editor\upm.log`,确认没有并发 Unity/UPM 进程,再用官方 `Unity.exe -batchmode -quit -projectPath -logFile ` 做一次只解析 package 的验证;若仍复现,则用 Unity Hub/已打开 Editor 作为 GUI 对照入口继续看 Console 编译错误。 + +## 策略验收与可视化 + +模块内置智能预加载策略评估脚本已接入,默认次留验收目标为 `35%`,用于验证 `PreloadThreshold`、`CooldownSeconds` 在不同留存下的策略敏感度。 + +验收输出位于: + +* `Tools/SmartLoadSensitivity/output/TapADN_智能预加载_敏感度验收报告.md` +* `Tools/SmartLoadSensitivity/output/smartload_sensitivity_summary.csv` +* `Tools/SmartLoadSensitivity/output/smartload_retention_rank.csv` +* `Tools/SmartLoadSensitivity/output/*.png` + +推荐复现命令: + +```bash +python Tools/SmartLoadSensitivity/smartload_sensitivity_simulation.py --users 5000 --out-dir Tools/SmartLoadSensitivity/output +``` + +核心对比维度(含 35%次留): + +* `threshold` 的下调会提升 `Immediate`,但会抬高 `Waste`。 +* `cooldown` 拉长可压低 waste、降低重复预加载频次,但也会把 show 等待时延上抬。 +* 默认策略建议先用 `threshold=0.20~0.40` 做高即时性验证,再通过 waste 上限(如 8%~12%)回退到 `0.35~0.55` 区间。 + +### 全局缓存归因 + +`CC-Framework.Commercialization` 当前是一类广告一个全局 `ADPlayer`,场景只是播放与策略标签,不是缓存隔离单位。因此 TapADN 智能预加载按两层口径统计: + +* 策略触发层:哪个场景触发了真实 SDK load,记录 `preload_request/preload_success/preload_fail`。 +* 播放消费层:哪个场景实际发起 `AsyncPlayAD` 并展示,记录 `immediate_hit/show_start/smart_cache_hit`。 + +如果 A 场景触发的全局缓存最终在 B 场景展示,A 会记录 `smart_preload_consumed_other_scene`,B 会记录 `smart_cache_cross_scene_hit`。这不会改变玩家实际体验,只用于避免把“全局缓存命中”误读成“同场景完全自消费”。 + +验收产物建议每周回放:用最近 7 天留存分布与 fill 成功率替换脚本默认参数,再做一次敏感度重算并对比排名变化。 diff --git a/README.md b/README.md index 0cfaedd..bcf5d60 100644 --- a/README.md +++ b/README.md @@ -83,10 +83,56 @@ ADManager.Instance.Init(callback, userId, adConfig, new TapadnAdController()); * `tapadn.splash_max_load_attempts` * `tapadn.splash_load_retry_delay_ms` * `tapadn.splash_show_timeout_ms` +* `tapadn.smart_preload_enabled`(开启智能预加载策略) +* `tapadn.smart_preload_config_json`(智能预加载静态配置 JSON) +* `tapadn.smart_preload_config_asset_path`(预加载策略资源表路径,默认 `TapadnSmartLoadPolicy_Default`) +* `tapadn.smart_preload_remote_json`(远端覆盖配置 JSON,按场景覆盖静态配置) * `tapadn.express_width` * `tapadn.express_height` -默认激励、插屏、开屏都使用 TapADN Android auto-ad 接口。若遇到渠道缓存策略差异,可将对应 `*_auto_load` 设为 `false`,切换为手动 load/show。 +默认激励、插屏、开屏都使用手动 load/show;如无特殊策略验证需求,不建议开启 auto-ad。若要做 auto-ad AB 测试,再将对应 `*_auto_load` 设为 `true`。 + +### 智能预加载(实验) + +默认会按“场景进入次数 + 场景播放请求次数”维护一个小样本统计: + +* 进入场景时记录 `EnterCount` +* `AsyncPlayAD` 执行前调用的 `OnPlayRequestStarted` 记录 `PlayRequestCount` +* 按置信加权算法推算场景播放概率,达到阈值后触发 `ADManager.LoadAD` 预加载 +* 预加载归因按“全局广告类型缓存”记录:触发场景记录 `preload_request/success/fail`,实际播放场景记录 `show/immediate/smart_cache_hit` +* 当 A 场景触发的全局缓存在 B 场景展示时,A 会记录 `smart_preload_consumed_other_scene`,B 会记录 `smart_cache_cross_scene_hit` + +配置 JSON 示例(可通过 `CommonKeyValues` 下发): + +```json +{ + "GlobalDefault": { + "AdType": -1, + "Scene": "__default__", + "BaseProbability": 0.08, + "PreloadThreshold": 0.75, + "CooldownSeconds": 120, + "MinSamplesForConfidence": 8, + "DecayHalfLifeHours": 72 + }, + "ScenePolicies": [ + { + "AdType": 0, + "Scene": "reward_debug", + "BaseProbability": 0.6, + "PreloadThreshold": 0.5, + "CooldownSeconds": 60, + "MinSamplesForConfidence": 4, + "DecayHalfLifeHours": 48 + } + ] +} +``` + +说明: +* `AdType` 使用 `AD_Type` 枚举值:`0=AwardVideo`, `1=Splash`, `2=Interaction` +* `Scene` 用于和 `ADManager.EnterAdScenario` 的场景名对齐;场景未命中时回退到对应广告位的默认场景配置。 +* `ExportSnapshotCsv()` 会额外导出 `immediate_hit`、`smart_cache_hit`、`smart_preload_consumed`、`smart_preload_expired` 等列,用于区分“哪个场景触发预加载”和“哪个场景最终消费缓存”。 ## Android 构建 @@ -100,3 +146,34 @@ ADManager.Instance.Init(callback, userId, adConfig, new TapadnAdController()); * `android.useAndroidX=true` 与 `android.enableJetifier=true`。 包内不默认暴露可视化编辑面板;调试样例通过 `Samples~` 作为可选导入内容。 + +## 智能预加载敏感度验收(默认次留 35%) + +本模块包含一套本地仿真脚本,用于模拟 IAA 场景下不同 `PreloadThreshold` 与 `CooldownSeconds` 的收益差异,输出完整 CSV 与变化曲线。 + +默认次留基线设置为 `35%`(你可以改保留率列表),默认模型参数位于 `Assets/Tapadn_Adapter/Runtime/Resources/TapadnSmartLoadPolicy_Default.json`。 + +```bash +python Tools/SmartLoadSensitivity/smartload_sensitivity_simulation.py --users 5000 --out-dir Tools/SmartLoadSensitivity/output +``` + +输出文件(可复现): + +* `Tools/SmartLoadSensitivity/output/smartload_sensitivity_summary.csv` +* `Tools/SmartLoadSensitivity/output/smartload_retention_rank.csv` +* `Tools/SmartLoadSensitivity/output/TapADN_智能预加载_敏感度验收报告.md` +* `Tools/SmartLoadSensitivity/output/*.png`(热力图和曲线) + +重点图示(`TapADN_智能预加载_敏感度验收报告.md` 中已自动嵌入): + +* `heatmap_immediate_r_0.35.png`(次留 35% 下的即时命中率) +* `heatmap_wait_ms_r_0.35.png`(次留 35% 下的平均等待时延) +* `heatmap_waste_ratio_r_0.35.png`(次留 35% 下的 waste 率) +* `line_immediate_vs_retention.png`(留存与即时命中率关系) +* `line_wait_vs_retention.png`(留存与等待时延关系) + +你也可以直接查看部分曲线对比: + +![Immediate vs retention](Tools/SmartLoadSensitivity/output/line_immediate_vs_retention.png) +![Wait vs retention](Tools/SmartLoadSensitivity/output/line_wait_vs_retention.png) +![Heatmap immediate 35%](Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.35.png) diff --git a/TapADN自动加载策略分析报告.md b/TapADN自动加载策略分析报告.md index 6a6346c..5350927 100644 --- a/TapADN自动加载策略分析报告.md +++ b/TapADN自动加载策略分析报告.md @@ -6,7 +6,10 @@ 但不能把 TapADN 的 auto 与 TopOn 的全自动加载视为同一种能力。TopOn 的 auto 是一套更完整的广告位请求维护方案,包含广告位注册、真实 ready 查询、场景进入统计、缓存状态统计和自动续载;TapADN 当前 Unity wrapper 暴露的是“加载 + 展示合并”的 auto show API,没有看到类似 `entryAutoAdScenarioWithPlacementID` 的场景入口,也没有看到 auto ready 查询 API。 -因此,生产默认策略建议调整为“激励视频可优先 auto,但插屏和开屏建议默认手动或由项目配置显式开启 auto”。如果为了兼容当前模块和快速调试继续保留 auto 默认值,也应该在正式项目配置里显式写清楚每个广告类型的选择,避免项目层误以为 `IsReadly()` 表示真实填充可展示。 +因此,生产默认策略建议改为“默认全部手动”,并保留每类广告的开关用于分场景 AB。原因是: + +* 当前 `AsyncAdPlayer` 已经承载了 ready/load/show 的生命周期统一,手动模式更能把回调和失败收口稳定在框架层。 +* 上层仍会调用 `ADManager.EnterAdScenario(...)`,这更适合我们把策略判断放到“场景上”,而不是让 SDK 的 auto 接口替代场景决策。 ## 问题定义 @@ -20,9 +23,9 @@ 当前模块默认配置位于 `Assets/Tapadn_Adapter/Runtime/Scripts/TapadnControllerOptions.cs`: -* `RewardedAutoLoad = true` -* `InterstitialAutoLoad = true` -* `SplashAutoLoad = true` + * `RewardedAutoLoad = false` + * `InterstitialAutoLoad = false` + * `SplashAutoLoad = false` * `RewardedPrewarmOnInit`、`InterstitialPrewarmOnInit`、`SplashPrewarmOnInit` 默认为 `false` 三个播放器的 auto 分支行为如下: @@ -77,8 +80,8 @@ TapADN / Dirichlet Unity 文档对 auto 的描述主要是“加载和展示合 建议在生产项目里按如下方式显式配置: ```text -tapadn.rewarded_auto_load=true -tapadn.rewarded_prewarm_on_init=true 或在进入高概率广告场景前主动 LoadAD +tapadn.rewarded_auto_load=false +tapadn.rewarded_prewarm_on_init=false (建议改用入口驱动的手动 preload) tapadn.interstitial_auto_load=false tapadn.interstitial_prewarm_on_init=false @@ -87,7 +90,7 @@ tapadn.splash_auto_load=false tapadn.splash_prewarm_on_init=false ``` -如果项目追求快速接入、广告位较少、可以接受展示时等待,则可以短期保持当前三类 auto 默认开启。但正式灰度前至少应完成以下验证: +如果你想走“上层智能策略”也可以让默认逻辑保持上面的配置,再在高概率收益场景按策略临时开 auto 进行实验。必须完成以下验证: * auto 模式下点击激励按钮到 `OnAdShow` 的延迟分布。 * auto 模式下 show fail、load fail、close、reward verify 是否都被 `ADManager` 收口。 @@ -95,6 +98,42 @@ tapadn.splash_prewarm_on_init=false * 开屏失败或无填充时是否能按产品要求进入主场景。 * 每个业务广告场景是否有自己的埋点、频控和远程配置。 +## 内部智能策略建议(结合场景声明) + +上层仍然在 `ADManager.EnterAdScenario(adType, scenario)` 里会声明场景,这个入口可以成为 TapADN 的控制平面。建议用一个本地策略层(或接入现有 remote config)来替代“固定 auto 默认”。核心规则建议: + +* 入场闸门:新手 / 首次会话内降低开屏和插屏频率,设置较长冷却。 +* 价值分层:`resume_continue`、`revive`、`double_reward`、`level_complete`、`session_end` 使用不同触发阈值。 +* 预算分发:按场景给定每小时/每日展示配额,按最近 N 次 fill 成功率和关闭率动态降权。 +* 失败避障:对连续 fail 场景计入惩罚分,自动降级到手动模式或延后下一次尝试。 +* 回落路径:场景声明后可先触发预加载(手动),再在 `AsyncPlayAD` 时做 ready 判断,避免 show 时阻塞。 + +### 实战落地推荐(先做这 4 件) + +为了先上线再迭代,这版实验建议按下面节奏推进(先保守后扩展): + +1. 先做“是否预加载”二分类决策 + - 输入:场景进入次数 / 播放请求次数 / 最近一次更新距今时长 + - 输出:`preload_score` 与 `cooldown` + - 初始阈值:`score >= threshold && cooldown 过期` + +2. 再加“场景独立配置表” + - 默认配置放在 `TapadnSmartLoadPolicy_Default.json`(本地资源表) + - 支持服务端覆盖配置(`tapadn.smart_preload_remote_json`) + - 场景命中优先、无命中回退到该位 default + +3. 建立在线反馈回路(每 1~3 天可更新) + - `enter_count` / `play_request_count` + `fill 成功率` + - `show_success - close 率` 作为质量约束(用于上调/下调阈值) + +4. 降噪与退化 + - 连续低效场景自动降 `threshold`、拉长 `cooldown` + - 连续高效场景适当提高预加载优先级 + +这样比“固定 always auto”更安全:能先守住体验(手动 show 生命周期),再逐步把预加载放到高价值场景。 + +这样我们保持框架语义:`AsyncAdPlayer` 负责生命周期和回调收口,场景策略只负责“该不该、何时、给谁”。 + ## 当前实现评价 当前 TapADN auto 接入本身是合规且完整的 API 级接入,但默认策略偏激进。它适合样例工程、快速调试和 Android 单平台验证;对于正式 IAA 游戏商业化,建议把默认认知改成: @@ -119,3 +158,26 @@ tapadn.splash_prewarm_on_init=false * [Google AdMob recommended interstitial implementations](https://support.google.com/admob/answer/6201350?hl=en) * [Google AdMob frequency capping](https://support.google.com/admob/answer/6244508?hl=en) * [Unity LevelPlay placement best practices](https://docs.unity.com/grow/levelplay/platform/best-practices/placement) + +## 仿真验收输出(新增) + +为便于快速比较 `threshold / cooldown` 对用户体验与 waste 的影响,本模块附带一套敏感度脚本产物,默认次留目标为 35%: + +- 报告:`Tools/SmartLoadSensitivity/output/TapADN_智能预加载_敏感度验收报告.md` +- 明细 CSV:`Tools/SmartLoadSensitivity/output/smartload_sensitivity_summary.csv` +- 排名 CSV:`Tools/SmartLoadSensitivity/output/smartload_retention_rank.csv` +- 图表:`Tools/SmartLoadSensitivity/output/*.png` + +常用可视化入口(打开仓库根目录): + +- [热力图(35%次留)](Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.35.png) +- [平均时延(35%次留)](Tools/SmartLoadSensitivity/output/heatmap_wait_ms_r_0.35.png) +- [Waste 热力图(35%次留)](Tools/SmartLoadSensitivity/output/heatmap_waste_ratio_r_0.35.png) +- [留存变化线(即时性)](Tools/SmartLoadSensitivity/output/line_immediate_vs_retention.png) +- [留存变化线(时延)](Tools/SmartLoadSensitivity/output/line_wait_vs_retention.png) + +脚本运行命令: + +```bash +python Tools/SmartLoadSensitivity/smartload_sensitivity_simulation.py --users 5000 --out-dir Tools/SmartLoadSensitivity/output +``` diff --git a/Tools/SmartLoadSensitivity/output/TapADN_智能预加载_敏感度验收报告.md b/Tools/SmartLoadSensitivity/output/TapADN_智能预加载_敏感度验收报告.md new file mode 100644 index 0000000..fb4037d --- /dev/null +++ b/Tools/SmartLoadSensitivity/output/TapADN_智能预加载_敏感度验收报告.md @@ -0,0 +1,160 @@ +# TapADN 智能预加载策略验收报告(含随机偏好机器人 + 网络环境) + +## 仿真前提 +- 模型定位:IAA 场景中 3 类广告位(激励/开屏/插屏)统一参与策略决策。 +- 次留默认验收基线:35% +- 随机机器人数量:5000 +- 场景进入->展示请求->预加载决策->展示时延为核心链路。 +- 每次样本运行前先生成一批“偏好机器人”,再在其上分别运行:纯手动(无 smart)与智能预加载两种模式。 +- 预加载触发后在 cooldown 内有效一次,不命中将视作普通 load。 +- `Immediate`:请求时已命中可直接播放的占比(值越高越好) +- `Waste`:预加载后在 cooldown 内未被消费即失效的比例(值越低越好) +- 网络环境:Wi-Fi / 4G / 3G / 2G 按机器人偏好加权采样,逐回合独立变化。 + +## 机器人与网络设置 +- 机器人类型:随机采样以下偏好族(reward_heavy、interstitial_focus、splash_driven、balanced、churn_sensitive、network_bound)。 +- 每类机器人具有独立的场景进入偏好、请求偏好、fill 成功倍率、加载时延倍率和留存倍率。 +- 网络环境以会话粒度采样,低网速会同步影响网络请求率、fill 成功率和加载耗时。 + +## 参数扫描范围 +- Threshold: `0.20~0.90` 步长 0.05 +- Cooldown: `30,60,90,120,180,240,300` +- 次留:`20%,25%,30%,35%,40%,50%,60%` + +## 基线对照 +- 次留 35% 基线(纯手动,无 smart)即时命中率:0.00% +- 次留 35% 基线平均时延:1615 ms(p95 2913) +- 次留 35% 建议起点(当前模型):`threshold=0.25, cooldown=30s` + - 对比基线即时命中提升:`38.09%` + - 对比基线时延变化:`-565 ms` +- 平衡候选(Waste<=12%): + - threshold=0.25, cd=60s,Immediate 25.12%,Waste 4.88% + +## 最优/最差(次留=35%) +| 排名 | Threshold | Cooldown | 即时命中率 | 平均等待 | P95等待 | 浪费率 | 播放成功率 | +|---|---:|---:|---:|---:|---:|---:|---:| +| 1 | 0.25 | 30 | 38.09% | 1050 | 2787 | 14.03% | 81.35% | +| 2 | 0.20 | 30 | 36.65% | 1073 | 2790 | 13.96% | 81.35% | +| 3 | 0.25 | 60 | 25.12% | 1234 | 2774 | 4.88% | 77.96% | +| 4 | 0.20 | 60 | 24.81% | 1242 | 2830 | 6.75% | 77.45% | +| 5 | 0.30 | 30 | 24.65% | 1285 | 2894 | 7.73% | 77.79% | +| 6 | 0.30 | 60 | 24.56% | 1239 | 2812 | 5.76% | 77.61% | +| 7 | 0.35 | 30 | 23.05% | 1318 | 2895 | 5.44% | 77.58% | +| 8 | 0.50 | 30 | 22.96% | 1320 | 2893 | 4.99% | 77.54% | + +### 最差 8 组 +| 排名 | Threshold | Cooldown | 即时命中率 | 平均等待 | P95等待 | 浪费率 | 播放成功率 | +|---|---:|---:|---:|---:|---:|---:|---:| +| 1 | 0.90 | 300 | 0.00% | 1629 | 2924 | 0.00% | 70.55% | +| 2 | 0.90 | 240 | 0.00% | 1630 | 2899 | 0.00% | 70.09% | +| 3 | 0.90 | 180 | 0.00% | 1622 | 2907 | 0.00% | 70.60% | +| 4 | 0.90 | 120 | 0.00% | 1633 | 2943 | 0.00% | 70.51% | +| 5 | 0.90 | 90 | 0.00% | 1637 | 2963 | 0.00% | 70.84% | +| 6 | 0.90 | 60 | 0.00% | 1628 | 2863 | 0.00% | 70.72% | +| 7 | 0.90 | 30 | 0.00% | 1627 | 2933 | 0.00% | 69.52% | +| 8 | 0.85 | 300 | 0.00% | 1623 | 2910 | 0.00% | 70.69% | + +## 与纯手动模式对比(次留35%) +- 纯手动:Immediate `0.00%`,AvgWait `1615`ms,Waste `0.00%`。 +- smart 最优:阈值 `0.25`,cd `30`,Immediate `38.09%`,AvgWait `1050`ms,Waste `14.03%`。 +- 增益:`38.09%`。 + +### 网络分层对比(次留35%) +- WIFI:手动即时 `0.00%` / 等待 `1248ms`;智能(`threshold=0.25, cd=30s`)即时 `40.13%` / 等待 `767ms`;提升 `40.13%`。 +- 4G:手动即时 `0.00%` / 等待 `1601ms`;智能(`threshold=0.25, cd=30s`)即时 `39.66%` / 等待 `1003ms`;提升 `39.66%`。 +- 3G:手动即时 `0.00%` / 等待 `2165ms`;智能(`threshold=0.20, cd=30s`)即时 `32.64%` / 等待 `1498ms`;提升 `32.64%`。 +- 2G:手动即时 `0.00%` / 等待 `3044ms`;智能(`threshold=0.25, cd=30s`)即时 `32.06%` / 等待 `2116ms`;提升 `32.06%`。 +## 次留敏感度(35%基线) +- 次留 20%:手动基线时延 1618ms,智能最佳 `threshold=0.20, cd=30s`,最佳 Immediate 38.69%,Waste 13.14%;最差 `threshold=0.90, cd=300s`,Immediate 0.00%,Waste 0.00%。 +- 次留 25%:手动基线时延 1641ms,智能最佳 `threshold=0.20, cd=30s`,最佳 Immediate 37.52%,Waste 14.16%;最差 `threshold=0.90, cd=300s`,Immediate 0.00%,Waste 0.00%。 +- 次留 30%:手动基线时延 1629ms,智能最佳 `threshold=0.20, cd=30s`,最佳 Immediate 37.42%,Waste 13.33%;最差 `threshold=0.90, cd=300s`,Immediate 0.00%,Waste 0.00%。 +- 次留 35%:手动基线时延 1615ms,智能最佳 `threshold=0.25, cd=30s`,最佳 Immediate 38.09%,Waste 14.03%;最差 `threshold=0.90, cd=300s`,Immediate 0.00%,Waste 0.00%。 +- 次留 40%:手动基线时延 1617ms,智能最佳 `threshold=0.20, cd=30s`,最佳 Immediate 38.05%,Waste 13.64%;最差 `threshold=0.90, cd=300s`,Immediate 0.00%,Waste 0.00%。 +- 次留 50%:手动基线时延 1618ms,智能最佳 `threshold=0.25, cd=30s`,最佳 Immediate 38.02%,Waste 14.06%;最差 `threshold=0.90, cd=300s`,Immediate 0.00%,Waste 0.00%。 +- 次留 60%:手动基线时延 1619ms,智能最佳 `threshold=0.25, cd=30s`,最佳 Immediate 38.01%,Waste 14.88%;最差 `threshold=0.90, cd=300s`,Immediate 0.00%,Waste 0.00%。 + +## 交叉参数观察 +- 在同一保留率下,阈值下调能显著提高 `Immediate`,但通常也抬高 `Waste`。 +- cooldown 拉长可降低 waste(减少重复预加载/空耗),但可能提高用户等待。 +- 在弱网(尤其低分配机器人更多时)场景,建议提高 waste 上限约束后再考虑 lower threshold。 + +## 图表示例(输出文件) +- `heatmap_immediate_r_0.20.png` + ![](heatmap_immediate_r_0.20.png) + +- `heatmap_immediate_r_0.35.png` + ![](heatmap_immediate_r_0.35.png) + +- `heatmap_immediate_r_0.60.png` + ![](heatmap_immediate_r_0.60.png) + +- `heatmap_preload_success_r_0.20.png` + ![](heatmap_preload_success_r_0.20.png) + +- `heatmap_preload_success_r_0.35.png` + ![](heatmap_preload_success_r_0.35.png) + +- `heatmap_preload_success_r_0.60.png` + ![](heatmap_preload_success_r_0.60.png) + +- `heatmap_wait_ms_r_0.20.png` + ![](heatmap_wait_ms_r_0.20.png) + +- `heatmap_wait_ms_r_0.35.png` + ![](heatmap_wait_ms_r_0.35.png) + +- `heatmap_wait_ms_r_0.60.png` + ![](heatmap_wait_ms_r_0.60.png) + +- `heatmap_waste_ratio_r_0.20.png` + ![](heatmap_waste_ratio_r_0.20.png) + +- `heatmap_waste_ratio_r_0.35.png` + ![](heatmap_waste_ratio_r_0.35.png) + +- `heatmap_waste_ratio_r_0.60.png` + ![](heatmap_waste_ratio_r_0.60.png) + +- `line_immediate_vs_retention.png` + ![](line_immediate_vs_retention.png) + +- `line_mode_immediate_vs_retention.png` + ![](line_mode_immediate_vs_retention.png) + +- `line_mode_wait_vs_retention.png` + ![](line_mode_wait_vs_retention.png) + +- `line_network_immediate_vs_retention.png` + ![](line_network_immediate_vs_retention.png) + +- `line_network_wait_vs_retention.png` + ![](line_network_wait_vs_retention.png) + +- `line_threshold_0.55_retention_0.20.png` + ![](line_threshold_0.55_retention_0.20.png) + +- `line_threshold_0.55_retention_0.25.png` + ![](line_threshold_0.55_retention_0.25.png) + +- `line_threshold_0.55_retention_0.30.png` + ![](line_threshold_0.55_retention_0.30.png) + +- `line_threshold_0.55_retention_0.35.png` + ![](line_threshold_0.55_retention_0.35.png) + +- `line_threshold_0.55_retention_0.40.png` + ![](line_threshold_0.55_retention_0.40.png) + +- `line_threshold_0.55_retention_0.50.png` + ![](line_threshold_0.55_retention_0.50.png) + +- `line_threshold_0.55_retention_0.60.png` + ![](line_threshold_0.55_retention_0.60.png) + +- `line_wait_vs_retention.png` + ![](line_wait_vs_retention.png) + +## 验收结论 +- 建议首轮灰度点:`threshold=0.25`, `cooldown=60s`(兼顾即时性与 waste)。 +- 次留 35% 下智能策略最佳立即命中来自 `threshold=0.25, cd=30s`,即时率 `38.09%`,Waste `14.03%`。 +- 建议将 `smart_preload` 配置作为实验变量:先以纯手动为对照,再按次留分层和网络监控逐步放量。 diff --git a/Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.20.png b/Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.20.png new file mode 100644 index 0000000..0df3344 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.20.png differ diff --git a/Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.35.png b/Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.35.png new file mode 100644 index 0000000..4a9f347 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.35.png differ diff --git a/Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.60.png b/Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.60.png new file mode 100644 index 0000000..918122c Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/heatmap_immediate_r_0.60.png differ diff --git a/Tools/SmartLoadSensitivity/output/heatmap_preload_success_r_0.20.png b/Tools/SmartLoadSensitivity/output/heatmap_preload_success_r_0.20.png new file mode 100644 index 0000000..66e44c4 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/heatmap_preload_success_r_0.20.png differ diff --git a/Tools/SmartLoadSensitivity/output/heatmap_preload_success_r_0.35.png b/Tools/SmartLoadSensitivity/output/heatmap_preload_success_r_0.35.png new file mode 100644 index 0000000..4db7515 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/heatmap_preload_success_r_0.35.png differ diff --git a/Tools/SmartLoadSensitivity/output/heatmap_preload_success_r_0.60.png b/Tools/SmartLoadSensitivity/output/heatmap_preload_success_r_0.60.png new file mode 100644 index 0000000..680d1d0 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/heatmap_preload_success_r_0.60.png differ diff --git a/Tools/SmartLoadSensitivity/output/heatmap_wait_ms_r_0.20.png b/Tools/SmartLoadSensitivity/output/heatmap_wait_ms_r_0.20.png new file mode 100644 index 0000000..e8d1ae1 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/heatmap_wait_ms_r_0.20.png differ diff --git a/Tools/SmartLoadSensitivity/output/heatmap_wait_ms_r_0.35.png b/Tools/SmartLoadSensitivity/output/heatmap_wait_ms_r_0.35.png new file mode 100644 index 0000000..0e62a7c Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/heatmap_wait_ms_r_0.35.png differ diff --git a/Tools/SmartLoadSensitivity/output/heatmap_wait_ms_r_0.60.png b/Tools/SmartLoadSensitivity/output/heatmap_wait_ms_r_0.60.png new file mode 100644 index 0000000..a11f551 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/heatmap_wait_ms_r_0.60.png differ diff --git a/Tools/SmartLoadSensitivity/output/heatmap_waste_ratio_r_0.20.png b/Tools/SmartLoadSensitivity/output/heatmap_waste_ratio_r_0.20.png new file mode 100644 index 0000000..88940cb Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/heatmap_waste_ratio_r_0.20.png differ diff --git a/Tools/SmartLoadSensitivity/output/heatmap_waste_ratio_r_0.35.png b/Tools/SmartLoadSensitivity/output/heatmap_waste_ratio_r_0.35.png new file mode 100644 index 0000000..45130aa Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/heatmap_waste_ratio_r_0.35.png differ diff --git a/Tools/SmartLoadSensitivity/output/heatmap_waste_ratio_r_0.60.png b/Tools/SmartLoadSensitivity/output/heatmap_waste_ratio_r_0.60.png new file mode 100644 index 0000000..1958104 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/heatmap_waste_ratio_r_0.60.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_immediate_vs_retention.png b/Tools/SmartLoadSensitivity/output/line_immediate_vs_retention.png new file mode 100644 index 0000000..2ed844c Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_immediate_vs_retention.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_mode_immediate_vs_retention.png b/Tools/SmartLoadSensitivity/output/line_mode_immediate_vs_retention.png new file mode 100644 index 0000000..bb6899a Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_mode_immediate_vs_retention.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_mode_wait_vs_retention.png b/Tools/SmartLoadSensitivity/output/line_mode_wait_vs_retention.png new file mode 100644 index 0000000..2e361fb Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_mode_wait_vs_retention.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_network_immediate_vs_retention.png b/Tools/SmartLoadSensitivity/output/line_network_immediate_vs_retention.png new file mode 100644 index 0000000..cc4b361 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_network_immediate_vs_retention.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_network_wait_vs_retention.png b/Tools/SmartLoadSensitivity/output/line_network_wait_vs_retention.png new file mode 100644 index 0000000..89969a2 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_network_wait_vs_retention.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.20.png b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.20.png new file mode 100644 index 0000000..8e868c1 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.20.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.25.png b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.25.png new file mode 100644 index 0000000..a68087e Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.25.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.30.png b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.30.png new file mode 100644 index 0000000..4b9bec3 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.30.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.35.png b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.35.png new file mode 100644 index 0000000..ef54fa8 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.35.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.40.png b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.40.png new file mode 100644 index 0000000..e8f06f6 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.40.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.50.png b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.50.png new file mode 100644 index 0000000..bd8aef4 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.50.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.60.png b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.60.png new file mode 100644 index 0000000..0d480f6 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_threshold_0.55_retention_0.60.png differ diff --git a/Tools/SmartLoadSensitivity/output/line_wait_vs_retention.png b/Tools/SmartLoadSensitivity/output/line_wait_vs_retention.png new file mode 100644 index 0000000..7deb2e6 Binary files /dev/null and b/Tools/SmartLoadSensitivity/output/line_wait_vs_retention.png differ diff --git a/Tools/SmartLoadSensitivity/output/smartload_mode_comparison.csv b/Tools/SmartLoadSensitivity/output/smartload_mode_comparison.csv new file mode 100644 index 0000000..156afc4 --- /dev/null +++ b/Tools/SmartLoadSensitivity/output/smartload_mode_comparison.csv @@ -0,0 +1,8 @@ +retention,manual_immediate,manual_avg_wait_ms,manual_waste_ratio,manual_show_success_rate,smart_threshold,smart_cooldown,smart_immediate,smart_avg_wait_ms,smart_waste_ratio,smart_show_success_rate,delta_immediate,delta_wait_ms +0.20,0.000000,1618.47,0.000000,0.713831,0.20,30,0.386941,1049.57,0.131398,0.811193,0.386941,-568.90 +0.25,0.000000,1640.73,0.000000,0.691270,0.20,30,0.375229,1065.33,0.141574,0.812173,0.375229,-575.40 +0.30,0.000000,1629.38,0.000000,0.705206,0.20,30,0.374202,1060.82,0.133269,0.809381,0.374202,-568.56 +0.35,0.000000,1615.17,0.000000,0.701975,0.25,30,0.380870,1049.72,0.140341,0.813540,0.380870,-565.45 +0.40,0.000000,1617.46,0.000000,0.706496,0.20,30,0.380503,1046.23,0.136426,0.812308,0.380503,-571.24 +0.50,0.000000,1617.67,0.000000,0.704662,0.25,30,0.380229,1046.52,0.140645,0.816228,0.380229,-571.15 +0.60,0.000000,1618.80,0.000000,0.704944,0.25,30,0.380129,1034.76,0.148807,0.817032,0.380129,-584.05 diff --git a/Tools/SmartLoadSensitivity/output/smartload_network_mode_comparison.csv b/Tools/SmartLoadSensitivity/output/smartload_network_mode_comparison.csv new file mode 100644 index 0000000..e469130 --- /dev/null +++ b/Tools/SmartLoadSensitivity/output/smartload_network_mode_comparison.csv @@ -0,0 +1,29 @@ +retention,network,manual_show_requests,manual_immediate,manual_avg_wait_ms,manual_p95_wait_ms,manual_waste_ratio,manual_preload_success,smart_threshold,smart_cooldown,smart_show_requests,smart_immediate,smart_avg_wait_ms,smart_p95_wait_ms,smart_waste_ratio,smart_preload_success,delta_immediate,delta_wait_ms +0.20,wifi,3283,0.000000,1253.08,1817.20,0.000000,0.000000,0.20,30,3335,0.406597,765.85,1818.96,0.125115,0.738227,0.406597,-487.23 +0.20,4g,1864,0.000000,1600.26,2288.73,0.000000,0.000000,0.20,30,1779,0.397976,1002.80,2259.13,0.134786,0.740920,0.397976,-597.45 +0.20,3g,970,0.000000,2188.59,3063.34,0.000000,0.000000,0.20,30,998,0.351703,1450.82,3032.46,0.148199,0.639889,0.351703,-737.77 +0.20,2g,484,0.000000,3024.43,4201.55,0.000000,0.000000,0.30,30,527,0.311195,2184.73,4244.35,0.096419,0.509642,0.311195,-839.70 +0.25,wifi,3550,0.000000,1262.38,1842.06,0.000000,0.000000,0.20,30,3434,0.388759,786.41,1818.67,0.142606,0.736796,0.388759,-475.97 +0.25,4g,1921,0.000000,1607.07,2293.90,0.000000,0.000000,0.20,30,2024,0.397233,997.99,2267.05,0.156792,0.732659,0.397233,-609.07 +0.25,3g,1103,0.000000,2221.42,3084.03,0.000000,0.000000,0.25,30,1062,0.358757,1421.31,3034.89,0.129973,0.633952,0.358757,-800.11 +0.25,2g,539,0.000000,3064.31,4268.59,0.000000,0.000000,0.25,30,581,0.299484,2221.71,4319.85,0.099751,0.498753,0.299484,-842.59 +0.30,wifi,3759,0.000000,1263.36,1848.19,0.000000,0.000000,0.20,30,3793,0.395993,779.43,1829.44,0.140048,0.742376,0.395993,-483.93 +0.30,4g,2117,0.000000,1603.97,2280.83,0.000000,0.000000,0.25,30,2047,0.395213,988.80,2246.33,0.141655,0.714586,0.395213,-615.17 +0.30,3g,1126,0.000000,2190.25,3089.96,0.000000,0.000000,0.20,30,1132,0.330389,1483.44,3041.34,0.118321,0.609415,0.330389,-706.80 +0.30,2g,566,0.000000,3039.49,4152.60,0.000000,0.000000,0.25,30,599,0.297162,2193.38,4266.52,0.094923,0.445916,0.297162,-846.11 +0.35,wifi,4144,0.000000,1248.04,1831.74,0.000000,0.000000,0.25,30,3952,0.401316,766.95,1814.36,0.147770,0.752079,0.401316,-481.09 +0.35,4g,2094,0.000000,1601.49,2286.78,0.000000,0.000000,0.25,30,2264,0.396643,1003.35,2279.23,0.143596,0.723803,0.396643,-598.14 +0.35,3g,1264,0.000000,2165.43,3094.74,0.000000,0.000000,0.20,30,1259,0.326450,1497.75,3038.99,0.136461,0.586354,0.326450,-667.68 +0.35,2g,598,0.000000,3044.10,4245.87,0.000000,0.000000,0.25,30,577,0.320624,2116.43,4204.74,0.114416,0.521739,0.320624,-927.67 +0.40,wifi,4391,0.000000,1244.02,1848.47,0.000000,0.000000,0.20,30,4387,0.397766,772.29,1805.00,0.132374,0.755267,0.397766,-471.73 +0.40,4g,2556,0.000000,1604.33,2273.21,0.000000,0.000000,0.30,30,2395,0.382463,1020.14,2265.42,0.114379,0.710458,0.382463,-584.19 +0.40,3g,1295,0.000000,2171.57,3024.38,0.000000,0.000000,0.20,30,1323,0.359033,1446.22,3068.37,0.123620,0.628035,0.359033,-725.35 +0.40,2g,671,0.000000,3041.91,4215.87,0.000000,0.000000,0.25,30,603,0.323383,2074.58,4113.15,0.123967,0.495868,0.323383,-967.33 +0.50,wifi,5174,0.000000,1244.10,1822.69,0.000000,0.000000,0.20,30,5342,0.389367,782.25,1809.64,0.133083,0.729215,0.389367,-461.85 +0.50,4g,2837,0.000000,1600.34,2279.90,0.000000,0.000000,0.25,30,2886,0.418572,955.80,2242.06,0.135242,0.748272,0.418572,-644.53 +0.50,3g,1531,0.000000,2191.81,3055.27,0.000000,0.000000,0.20,30,1505,0.327575,1510.11,3099.95,0.122526,0.589067,0.327575,-681.70 +0.50,2g,775,0.000000,3040.90,4187.70,0.000000,0.000000,0.25,30,790,0.303797,2191.78,4264.91,0.132042,0.484155,0.303797,-849.13 +0.60,wifi,6171,0.000000,1252.25,1848.35,0.000000,0.000000,0.25,30,6504,0.392681,778.09,1804.57,0.156826,0.760274,0.392681,-474.16 +0.60,4g,3523,0.000000,1591.05,2278.64,0.000000,0.000000,0.25,30,3656,0.396335,1000.78,2283.74,0.150520,0.732186,0.396335,-590.28 +0.60,3g,1878,0.000000,2180.02,3070.56,0.000000,0.000000,0.25,30,1869,0.336544,1490.47,3039.28,0.134644,0.617247,0.336544,-689.56 +0.60,2g,907,0.000000,3058.50,4290.54,0.000000,0.000000,0.25,30,864,0.311343,2124.90,4205.69,0.119335,0.506042,0.311343,-933.60 diff --git a/Tools/SmartLoadSensitivity/output/smartload_retention_rank.csv b/Tools/SmartLoadSensitivity/output/smartload_retention_rank.csv new file mode 100644 index 0000000..db83d49 --- /dev/null +++ b/Tools/SmartLoadSensitivity/output/smartload_retention_rank.csv @@ -0,0 +1,736 @@ +retention,rank,threshold,cooldown,immediate_show,avg_wait_ms,p95_wait_ms,waste_ratio,show_success_rate,delta_immediate,delta_wait_ms,delta_wait_pct,objective_score +0.20,1,0.20,30,0.386941,1049.57,2826.32,0.131398,0.811193,0.386941,-568.90,-0.351504,0.339623 +0.20,2,0.30,30,0.377420,1056.28,2792.28,0.129125,0.802502,0.377420,-562.18,-0.347356,0.332741 +0.20,3,0.25,30,0.373917,1051.27,2744.75,0.134633,0.812434,0.373917,-567.19,-0.350450,0.329688 +0.20,4,0.25,60,0.252769,1249.04,2829.95,0.065685,0.783189,0.252769,-369.42,-0.228255,0.238897 +0.20,5,0.20,60,0.248571,1253.79,2871.60,0.056950,0.773534,0.248571,-364.67,-0.225320,0.237231 +0.20,6,0.35,30,0.231146,1309.70,2887.15,0.050268,0.777421,0.231146,-308.77,-0.190780,0.220779 +0.20,7,0.60,30,0.230462,1316.30,2917.69,0.060176,0.775833,0.230462,-302.17,-0.186701,0.217659 +0.20,8,0.50,30,0.226519,1319.21,2846.99,0.050497,0.772286,0.226519,-299.26,-0.184904,0.216544 +0.20,9,0.55,30,0.227047,1316.35,2856.83,0.056965,0.773554,0.227047,-302.12,-0.186669,0.215905 +0.20,10,0.45,30,0.225011,1329.09,2889.32,0.055601,0.773794,0.225011,-289.38,-0.178796,0.213479 +0.20,11,0.40,30,0.219545,1338.07,2901.91,0.047442,0.769011,0.219545,-280.39,-0.173247,0.210386 +0.20,12,0.25,90,0.194799,1325.50,2885.99,0.026738,0.743653,0.194799,-292.97,-0.181018,0.198462 +0.20,13,0.20,90,0.188625,1336.10,2812.10,0.030737,0.757525,0.188625,-282.36,-0.174463,0.192280 +0.20,14,0.25,120,0.148360,1396.87,2866.52,0.012346,0.741649,0.148360,-221.59,-0.136915,0.161695 +0.20,15,0.20,120,0.146356,1412.64,2871.89,0.014453,0.745004,0.146356,-205.83,-0.127175,0.158295 +0.20,16,0.30,90,0.147955,1420.07,2962.14,0.026227,0.739033,0.147955,-198.39,-0.122580,0.156316 +0.20,17,0.40,60,0.140871,1421.57,2857.77,0.007252,0.733071,0.140871,-196.90,-0.121656,0.155002 +0.20,18,0.30,60,0.143747,1425.28,2871.72,0.020195,0.747607,0.143747,-193.19,-0.119366,0.154056 +0.20,19,0.45,60,0.142857,1438.75,2867.40,0.013738,0.751816,0.142857,-179.72,-0.111041,0.153377 +0.20,20,0.30,120,0.138818,1420.88,2862.83,0.012593,0.746578,0.138818,-197.58,-0.122080,0.152566 +0.20,21,0.35,60,0.138801,1431.34,2885.18,0.008658,0.730101,0.138801,-187.13,-0.115619,0.152295 +0.20,22,0.60,60,0.140597,1439.54,2906.59,0.012400,0.744726,0.140597,-178.93,-0.110553,0.151984 +0.20,23,0.50,60,0.139521,1439.46,2929.21,0.010981,0.748256,0.139521,-179.01,-0.110604,0.151523 +0.20,24,0.55,60,0.137463,1438.51,2854.39,0.011046,0.754662,0.137463,-179.96,-0.111189,0.150164 +0.20,25,0.20,180,0.103976,1472.79,2899.48,0.001963,0.729632,0.103976,-145.67,-0.090008,0.125111 +0.20,26,0.30,180,0.101600,1465.51,2876.71,0.003960,0.732820,0.101600,-152.96,-0.094509,0.123777 +0.20,27,0.25,180,0.102828,1473.97,2900.38,0.006030,0.737487,0.102828,-144.49,-0.089277,0.123376 +0.20,28,0.35,90,0.100211,1503.86,2946.73,0.001025,0.727437,0.100211,-114.61,-0.070814,0.119557 +0.20,29,0.40,90,0.100061,1505.05,2966.81,0.002075,0.728863,0.100061,-113.42,-0.070077,0.119123 +0.20,30,0.50,90,0.097752,1493.22,2914.64,0.000000,0.735103,0.097752,-125.24,-0.077384,0.119104 +0.20,31,0.45,90,0.097638,1493.43,2859.51,0.001034,0.725139,0.097638,-125.04,-0.077259,0.118797 +0.20,32,0.60,90,0.094695,1497.07,2917.43,0.003080,0.724215,0.094695,-121.40,-0.075008,0.115963 +0.20,33,0.55,90,0.095825,1509.80,2916.44,0.005149,0.728866,0.095825,-108.67,-0.067143,0.115068 +0.20,34,0.25,240,0.081678,1497.34,2866.35,0.002608,0.724056,0.081678,-121.13,-0.074840,0.106919 +0.20,35,0.20,240,0.081905,1514.89,2917.23,0.000000,0.728197,0.081905,-103.58,-0.063998,0.105845 +0.20,36,0.60,120,0.078559,1527.68,2919.15,0.000000,0.732563,0.078559,-90.79,-0.056096,0.102224 +0.20,37,0.45,120,0.078467,1530.41,2893.35,0.000000,0.732760,0.078467,-88.06,-0.054408,0.101886 +0.20,38,0.35,120,0.074146,1514.32,2866.60,0.000000,0.731726,0.074146,-104.15,-0.064351,0.100471 +0.20,39,0.55,120,0.075463,1525.54,2913.25,0.000000,0.728423,0.075463,-92.92,-0.057415,0.100270 +0.20,40,0.40,120,0.074319,1531.49,2880.07,0.001342,0.730254,0.074319,-86.98,-0.053742,0.098606 +0.20,41,0.50,120,0.072059,1525.73,2878.33,0.001339,0.720287,0.072059,-92.74,-0.057300,0.097601 +0.20,42,0.30,240,0.070627,1528.00,2915.26,0.002894,0.731707,0.070627,-90.47,-0.055897,0.096060 +0.20,43,0.20,300,0.065776,1522.95,2864.89,0.000000,0.728434,0.065776,-95.52,-0.059020,0.093749 +0.20,44,0.25,300,0.064901,1527.54,2880.98,0.000000,0.715598,0.064901,-90.92,-0.056179,0.092677 +0.20,45,0.30,300,0.064535,1530.78,2929.32,0.000000,0.724081,0.064535,-87.68,-0.054176,0.092096 +0.20,46,0.35,180,0.054881,1556.04,2945.59,0.000000,0.719754,0.054881,-62.43,-0.038571,0.082813 +0.20,47,0.45,180,0.055012,1564.53,2962.17,0.000000,0.722568,0.055012,-53.93,-0.033324,0.082055 +0.20,48,0.55,180,0.052576,1557.06,2929.86,0.000000,0.713114,0.052576,-61.41,-0.037944,0.081097 +0.20,49,0.60,180,0.051581,1552.93,2871.56,0.000000,0.717441,0.051581,-65.53,-0.040490,0.080813 +0.20,50,0.50,180,0.052341,1566.07,2979.63,0.000000,0.714882,0.052341,-52.39,-0.032372,0.080032 +0.20,51,0.40,180,0.049766,1562.13,2935.57,0.000000,0.715729,0.049766,-56.34,-0.034808,0.078623 +0.20,52,0.40,240,0.040261,1563.57,2905.38,0.000000,0.714980,0.040261,-54.89,-0.033916,0.071826 +0.20,53,0.45,240,0.039158,1560.57,2865.35,0.000000,0.715811,0.039158,-57.90,-0.035772,0.071353 +0.20,54,0.35,240,0.040253,1574.70,2901.01,0.000000,0.714609,0.040253,-43.77,-0.027043,0.070707 +0.20,55,0.50,240,0.039862,1575.31,2914.34,0.000000,0.711974,0.039862,-43.16,-0.026666,0.070373 +0.20,56,0.60,240,0.041203,1586.96,2940.61,0.000000,0.707870,0.041203,-31.51,-0.019469,0.070147 +0.20,57,0.55,240,0.037947,1580.10,2964.63,0.000000,0.717164,0.037947,-38.37,-0.023708,0.068553 +0.20,58,0.60,300,0.033736,1574.97,2897.29,0.000000,0.716496,0.033736,-43.49,-0.026872,0.066118 +0.20,59,0.45,300,0.032956,1578.91,2881.60,0.000000,0.705189,0.032956,-39.56,-0.024441,0.065178 +0.20,60,0.50,300,0.033550,1584.49,2908.52,0.000000,0.715732,0.033550,-33.97,-0.020991,0.065036 +0.20,61,0.55,300,0.032740,1586.52,2905.60,0.000000,0.710169,0.032740,-31.95,-0.019741,0.064266 +0.20,62,0.35,300,0.032935,1590.13,2889.35,0.000000,0.711667,0.032935,-28.33,-0.017507,0.064041 +0.20,63,0.40,300,0.030030,1586.41,2899.70,0.000000,0.705706,0.030030,-32.06,-0.019808,0.062380 +0.20,64,0.65,90,0.011313,1619.29,2928.69,0.000000,0.707056,0.011313,0.83,0.000512,0.045990 +0.20,65,0.65,60,0.007329,1635.96,2942.68,0.000000,0.692791,0.007329,17.49,0.010806,0.041534 +0.20,66,0.65,180,0.004637,1625.52,2922.71,0.000000,0.694436,0.004637,7.05,0.004356,0.040694 +0.20,67,0.65,240,0.003202,1620.35,2899.71,0.000000,0.696448,0.003202,1.89,0.001165,0.040206 +0.20,68,0.90,240,0.000000,1605.62,2866.19,0.000000,0.707546,0.000000,-12.85,-0.007940,0.039438 +0.20,69,0.70,90,0.000151,1610.83,2869.66,0.000000,0.706884,0.000151,-7.64,-0.004719,0.039022 +0.20,70,0.65,120,0.000611,1615.97,2864.44,0.000000,0.706665,0.000611,-2.50,-0.001545,0.038831 +0.20,71,0.70,120,0.000446,1615.26,2871.44,0.000000,0.702333,0.000446,-3.20,-0.001980,0.038786 +0.20,72,0.85,60,0.000151,1618.51,2848.06,0.000000,0.709785,0.000151,0.04,0.000027,0.038255 +0.20,73,0.75,240,0.000000,1618.82,2903.04,0.000000,0.717055,0.000000,0.35,0.000217,0.038118 +0.20,74,0.75,30,0.000000,1619.65,2885.03,0.000000,0.698702,0.000000,1.19,0.000734,0.038035 +0.20,75,0.75,60,0.000000,1623.33,2903.25,0.000000,0.709337,0.000000,4.86,0.003004,0.037667 +0.20,76,0.90,120,0.000000,1624.00,2925.63,0.000000,0.704994,0.000000,5.53,0.003416,0.037600 +0.20,77,0.80,60,0.000000,1624.48,2924.08,0.000000,0.704563,0.000000,6.01,0.003715,0.037552 +0.20,78,0.85,240,0.000000,1624.68,2890.16,0.000000,0.704055,0.000000,6.21,0.003839,0.037532 +0.20,79,0.70,180,0.000451,1627.93,2912.13,0.000000,0.705502,0.000451,9.46,0.005844,0.037523 +0.20,80,0.65,300,0.000293,1627.10,2940.75,0.000000,0.704669,0.000293,8.63,0.005332,0.037495 +0.20,81,0.85,90,0.000000,1626.01,2908.40,0.000000,0.703480,0.000000,7.54,0.004660,0.037399 +0.20,82,0.75,90,0.000000,1626.01,2895.56,0.000000,0.703450,0.000000,7.54,0.004661,0.037399 +0.20,83,0.80,300,0.000000,1626.79,2905.61,0.000000,0.703217,0.000000,8.32,0.005142,0.037321 +0.20,84,0.70,240,0.000148,1628.04,2921.78,0.000000,0.697485,0.000148,9.57,0.005914,0.037300 +0.20,85,0.85,300,0.000000,1627.69,2922.72,0.000000,0.691133,0.000000,9.22,0.005699,0.037231 +0.20,86,0.85,180,0.000000,1627.77,2934.60,0.000000,0.704886,0.000000,9.30,0.005747,0.037223 +0.20,87,0.90,90,0.000000,1627.89,2896.98,0.000000,0.688919,0.000000,9.42,0.005823,0.037211 +0.20,88,0.90,300,0.000000,1628.08,2913.23,0.000000,0.702800,0.000000,9.61,0.005941,0.037192 +0.20,89,0.75,120,0.000151,1631.51,2908.73,0.000000,0.703832,0.000151,13.04,0.008058,0.036955 +0.20,90,0.75,300,0.000149,1633.04,2940.41,0.000000,0.702425,0.000149,14.57,0.009002,0.036801 +0.20,91,0.70,60,0.000000,1633.18,2875.70,0.000000,0.703876,0.000000,14.71,0.009088,0.036682 +0.20,92,0.80,180,0.000000,1633.44,2913.78,0.000000,0.703042,0.000000,14.97,0.009250,0.036656 +0.20,93,0.75,180,0.000000,1633.95,2943.46,0.000000,0.706639,0.000000,15.49,0.009569,0.036605 +0.20,94,0.90,180,0.000000,1635.51,2959.63,0.000000,0.699642,0.000000,17.04,0.010529,0.036449 +0.20,95,0.85,30,0.000000,1636.33,2951.55,0.000000,0.701675,0.000000,17.87,0.011040,0.036367 +0.20,96,0.90,60,0.000000,1636.57,2961.98,0.000000,0.705190,0.000000,18.11,0.011188,0.036343 +0.20,97,0.70,300,0.000000,1636.98,2936.09,0.000000,0.701013,0.000000,18.52,0.011441,0.036302 +0.20,98,0.90,30,0.000000,1637.83,2878.58,0.000000,0.700870,0.000000,19.36,0.011961,0.036217 +0.20,99,0.80,90,0.000000,1639.40,2944.29,0.000000,0.697098,0.000000,20.93,0.012933,0.036060 +0.20,100,0.80,240,0.000000,1640.23,2949.07,0.000000,0.696664,0.000000,21.76,0.013446,0.035977 +0.20,101,0.80,120,0.000000,1640.71,2965.63,0.000000,0.697305,0.000000,22.24,0.013742,0.035929 +0.20,102,0.80,30,0.000000,1641.25,2960.59,0.000000,0.691937,0.000000,22.79,0.014078,0.035875 +0.20,103,0.85,120,0.000000,1645.14,2985.68,0.000000,0.690388,0.000000,26.67,0.016479,0.035486 +0.20,104,0.70,30,0.000000,1647.01,2968.14,0.000000,0.697280,0.000000,28.54,0.017635,0.035299 +0.20,105,0.65,30,0.010305,1616.05,2890.62,0.090909,0.712664,0.010305,-2.42,-0.001494,0.027427 +0.25,1,0.20,30,0.375229,1065.33,2818.07,0.141574,0.812173,0.375229,-575.40,-0.350696,0.327813 +0.25,2,0.25,30,0.372601,1057.80,2779.18,0.139934,0.808901,0.372601,-582.93,-0.355285,0.327054 +0.25,3,0.30,30,0.309470,1165.46,2799.23,0.108023,0.788895,0.309470,-475.27,-0.289673,0.278479 +0.25,4,0.25,60,0.257056,1236.18,2797.18,0.067524,0.774770,0.257056,-404.55,-0.246570,0.242817 +0.25,5,0.30,60,0.245262,1236.19,2799.59,0.059494,0.778289,0.245262,-404.54,-0.246563,0.236166 +0.25,6,0.20,60,0.243923,1259.45,2818.97,0.063600,0.766676,0.243923,-381.28,-0.232385,0.232081 +0.25,7,0.45,30,0.227395,1317.95,2910.56,0.054531,0.766075,0.227395,-322.78,-0.196730,0.216476 +0.25,8,0.35,30,0.227406,1318.16,2846.16,0.056175,0.780532,0.227406,-322.57,-0.196601,0.216133 +0.25,9,0.55,30,0.226399,1335.88,2930.49,0.054538,0.769045,0.226399,-304.85,-0.185799,0.213983 +0.25,10,0.60,30,0.228624,1336.45,2942.49,0.063011,0.770380,0.228624,-304.28,-0.185456,0.213790 +0.25,11,0.40,30,0.222532,1325.13,2881.07,0.053074,0.775658,0.222532,-315.60,-0.192353,0.212644 +0.25,12,0.50,30,0.219859,1333.18,2926.50,0.048619,0.760845,0.219859,-307.55,-0.187447,0.210860 +0.25,13,0.25,90,0.188884,1330.39,2833.10,0.027096,0.761326,0.188884,-310.34,-0.189149,0.193761 +0.25,14,0.20,90,0.182131,1335.59,2820.68,0.038013,0.754051,0.182131,-305.14,-0.185977,0.186330 +0.25,15,0.30,90,0.178556,1356.80,2850.42,0.026887,0.757504,0.178556,-283.93,-0.173050,0.183932 +0.25,16,0.25,120,0.147920,1387.80,2862.16,0.014801,0.739319,0.147920,-252.93,-0.154155,0.161803 +0.25,17,0.20,120,0.148402,1409.10,2844.64,0.027250,0.747618,0.148402,-231.63,-0.141172,0.157521 +0.25,18,0.50,60,0.141680,1440.11,2868.24,0.010989,0.739520,0.141680,-200.62,-0.122276,0.152967 +0.25,19,0.35,60,0.138328,1427.89,2908.35,0.010281,0.747370,0.138328,-212.84,-0.129721,0.151984 +0.25,20,0.40,60,0.139860,1438.19,2901.19,0.016984,0.746682,0.139860,-202.54,-0.123443,0.150686 +0.25,21,0.55,60,0.137134,1435.29,2905.27,0.012187,0.751926,0.137134,-205.44,-0.125215,0.150028 +0.25,22,0.45,60,0.136216,1445.61,2926.46,0.008230,0.744383,0.136216,-195.12,-0.118921,0.149144 +0.25,23,0.60,60,0.133457,1441.32,2874.94,0.007545,0.743057,0.133457,-199.41,-0.121534,0.147778 +0.25,24,0.20,180,0.105635,1458.15,2863.72,0.002778,0.734783,0.105635,-182.58,-0.111278,0.127574 +0.25,25,0.25,180,0.100554,1471.51,2882.90,0.001873,0.731998,0.100554,-169.22,-0.103135,0.122862 +0.25,26,0.50,90,0.102263,1486.35,2911.59,0.000971,0.739887,0.102263,-154.38,-0.094095,0.122755 +0.25,27,0.55,90,0.102745,1491.72,2866.67,0.000981,0.729128,0.102745,-149.01,-0.090817,0.122553 +0.25,28,0.40,90,0.101204,1483.78,2884.64,0.000000,0.737262,0.101204,-156.95,-0.095656,0.122464 +0.25,29,0.30,120,0.098321,1482.39,2868.06,0.007216,0.728594,0.098321,-158.34,-0.096504,0.119142 +0.25,30,0.60,90,0.097982,1499.69,2921.96,0.004826,0.726096,0.097982,-141.04,-0.085959,0.117653 +0.25,31,0.35,90,0.097537,1513.41,2960.87,0.002944,0.727375,0.097537,-127.32,-0.077601,0.116346 +0.25,32,0.45,90,0.094914,1498.73,2888.90,0.002901,0.741523,0.094914,-142.00,-0.086545,0.115986 +0.25,33,0.25,240,0.082930,1492.78,2879.42,0.001224,0.731437,0.082930,-147.94,-0.090170,0.108528 +0.25,34,0.20,240,0.082393,1503.57,2930.81,0.003606,0.729966,0.082393,-137.15,-0.083594,0.106596 +0.25,35,0.35,120,0.078863,1518.16,2926.78,0.000000,0.732339,0.078863,-122.57,-0.074705,0.103388 +0.25,36,0.30,240,0.078255,1521.14,2930.05,0.002436,0.723856,0.078255,-119.59,-0.072891,0.102178 +0.25,37,0.45,120,0.076869,1525.98,2917.37,0.001269,0.723528,0.076869,-114.75,-0.069941,0.100957 +0.25,38,0.60,120,0.075728,1519.94,2863.30,0.001258,0.729983,0.075728,-120.79,-0.073618,0.100764 +0.25,39,0.55,120,0.076017,1532.88,2947.04,0.001274,0.726254,0.076017,-107.85,-0.065734,0.099669 +0.25,40,0.50,120,0.073544,1527.07,2900.47,0.000000,0.728573,0.073544,-113.66,-0.069276,0.098774 +0.25,41,0.40,120,0.074649,1535.48,2927.14,0.000000,0.727935,0.074649,-105.25,-0.064147,0.098706 +0.25,42,0.20,300,0.065754,1522.98,2864.81,0.000000,0.723155,0.065754,-117.75,-0.071766,0.093730 +0.25,43,0.25,300,0.063854,1523.82,2868.07,0.000000,0.719383,0.063854,-116.91,-0.071254,0.092316 +0.25,44,0.30,180,0.055291,1534.41,2868.02,0.000000,0.716761,0.055291,-106.32,-0.064799,0.085262 +0.25,45,0.35,180,0.052677,1551.18,2882.87,0.000000,0.718772,0.052677,-89.55,-0.054577,0.081755 +0.25,46,0.40,180,0.051621,1549.12,2929.08,0.000000,0.716155,0.051621,-91.61,-0.055833,0.081223 +0.25,47,0.45,180,0.051872,1554.75,2942.61,0.000000,0.717062,0.051872,-85.98,-0.052406,0.080836 +0.25,48,0.30,300,0.049772,1544.71,2837.40,0.000000,0.717199,0.049772,-96.02,-0.058524,0.080369 +0.25,49,0.55,180,0.051873,1568.11,2931.15,0.000000,0.724578,0.051873,-72.62,-0.044259,0.079500 +0.25,50,0.50,180,0.050325,1560.60,2905.42,0.000000,0.719112,0.050325,-80.13,-0.048837,0.079167 +0.25,51,0.60,180,0.049275,1582.12,2971.17,0.000000,0.712093,0.049275,-58.61,-0.035721,0.076280 +0.25,52,0.40,240,0.040192,1563.61,2879.17,0.000000,0.723170,0.040192,-77.12,-0.047004,0.071773 +0.25,53,0.45,240,0.040968,1573.54,2923.33,0.000000,0.715848,0.040968,-67.19,-0.040951,0.071324 +0.25,54,0.50,240,0.040103,1577.52,2876.63,0.000000,0.717283,0.040103,-63.21,-0.038524,0.070320 +0.25,55,0.35,240,0.039321,1582.42,2916.29,0.000000,0.705233,0.039321,-58.31,-0.035542,0.069283 +0.25,56,0.60,240,0.037929,1574.68,2909.03,0.000000,0.708607,0.037929,-66.05,-0.040256,0.069082 +0.25,57,0.55,240,0.038999,1584.03,2882.58,0.000000,0.718759,0.038999,-56.70,-0.034558,0.068897 +0.25,58,0.55,300,0.032838,1573.42,2864.77,0.000000,0.720311,0.032838,-67.31,-0.041027,0.065645 +0.25,59,0.35,300,0.032185,1583.35,2874.51,0.000000,0.708776,0.032185,-57.38,-0.034975,0.064195 +0.25,60,0.45,300,0.032942,1590.64,2948.35,0.000000,0.706772,0.032942,-50.09,-0.030527,0.063995 +0.25,61,0.60,300,0.030087,1575.38,2874.12,0.000000,0.719703,0.030087,-65.35,-0.039832,0.063523 +0.25,62,0.50,300,0.031986,1591.39,2905.23,0.000000,0.709839,0.031986,-49.34,-0.030074,0.063252 +0.25,63,0.40,300,0.030108,1589.38,2932.90,0.000000,0.729730,0.030108,-51.35,-0.031294,0.062137 +0.25,64,0.65,60,0.011034,1615.23,2909.79,0.000000,0.711699,0.011034,-25.50,-0.015541,0.046201 +0.25,65,0.65,120,0.006199,1623.76,2924.54,0.000000,0.700338,0.006199,-16.97,-0.010343,0.041963 +0.25,66,0.65,90,0.004718,1618.01,2875.09,0.000000,0.700786,0.004718,-22.72,-0.013845,0.041501 +0.25,67,0.90,60,0.000000,1614.47,2904.71,0.000000,0.706207,0.000000,-26.26,-0.016002,0.038553 +0.25,68,0.85,300,0.000000,1617.12,2933.27,0.000000,0.705207,0.000000,-23.61,-0.014392,0.038288 +0.25,69,0.80,180,0.000000,1620.50,2899.92,0.000000,0.707075,0.000000,-20.23,-0.012329,0.037950 +0.25,70,0.75,60,0.000280,1622.60,2932.76,0.000000,0.703201,0.000280,-18.13,-0.011048,0.037936 +0.25,71,0.70,300,0.000000,1621.49,2952.00,0.000000,0.702866,0.000000,-19.24,-0.011729,0.037851 +0.25,72,0.75,300,0.000000,1623.40,2869.91,0.000000,0.706791,0.000000,-17.33,-0.010562,0.037660 +0.25,73,0.80,240,0.000142,1624.77,2910.68,0.000000,0.705032,0.000142,-15.96,-0.009726,0.037622 +0.25,74,0.90,240,0.000000,1624.18,2935.15,0.000000,0.708557,0.000000,-16.55,-0.010087,0.037582 +0.25,75,0.75,240,0.000000,1624.20,2888.35,0.000000,0.701959,0.000000,-16.53,-0.010078,0.037580 +0.25,76,0.80,90,0.000000,1624.22,2915.19,0.000000,0.700565,0.000000,-16.51,-0.010061,0.037578 +0.25,77,0.70,180,0.000000,1625.29,2895.68,0.000000,0.699576,0.000000,-15.44,-0.009413,0.037471 +0.25,78,0.85,90,0.000000,1625.60,2944.20,0.000000,0.698611,0.000000,-15.13,-0.009224,0.037440 +0.25,79,0.70,240,0.000000,1626.88,2891.84,0.000000,0.703503,0.000000,-13.85,-0.008443,0.037312 +0.25,80,0.90,300,0.000000,1627.45,2910.53,0.000000,0.705035,0.000000,-13.28,-0.008093,0.037255 +0.25,81,0.85,240,0.000000,1627.91,2881.28,0.000000,0.716638,0.000000,-12.82,-0.007816,0.037209 +0.25,82,0.65,240,0.000980,1635.29,2904.06,0.000000,0.699440,0.000980,-5.44,-0.003317,0.037157 +0.25,83,0.65,300,0.000000,1628.96,2896.01,0.000000,0.704082,0.000000,-11.77,-0.007173,0.037104 +0.25,84,0.75,30,0.000000,1629.23,2873.35,0.000000,0.705396,0.000000,-11.50,-0.007012,0.037077 +0.25,85,0.75,180,0.000000,1629.70,2927.91,0.000000,0.712009,0.000000,-11.03,-0.006723,0.037030 +0.25,86,0.70,90,0.000000,1630.43,2908.04,0.000000,0.705179,0.000000,-10.30,-0.006275,0.036957 +0.25,87,0.90,30,0.000000,1630.74,2924.30,0.000000,0.703508,0.000000,-9.99,-0.006091,0.036926 +0.25,88,0.85,30,0.000000,1631.02,2913.13,0.000000,0.697887,0.000000,-9.71,-0.005918,0.036898 +0.25,89,0.90,180,0.000000,1631.15,2900.79,0.000000,0.698732,0.000000,-9.58,-0.005838,0.036885 +0.25,90,0.75,120,0.000142,1632.84,2934.45,0.000000,0.708640,0.000142,-7.89,-0.004808,0.036815 +0.25,91,0.65,180,0.000426,1635.82,2967.96,0.000000,0.703509,0.000426,-4.91,-0.002992,0.036716 +0.25,92,0.85,60,0.000000,1633.02,2919.05,0.000000,0.704291,0.000000,-7.71,-0.004702,0.036698 +0.25,93,0.90,120,0.000000,1633.08,2922.26,0.000000,0.709610,0.000000,-7.65,-0.004662,0.036692 +0.25,94,0.80,300,0.000000,1633.13,2960.06,0.000000,0.701536,0.000000,-7.60,-0.004633,0.036687 +0.25,95,0.80,60,0.000000,1636.05,2938.78,0.000000,0.703490,0.000000,-4.68,-0.002853,0.036395 +0.25,96,0.70,120,0.000145,1637.97,2926.57,0.000000,0.706939,0.000145,-2.76,-0.001682,0.036304 +0.25,97,0.85,180,0.000000,1637.09,2966.49,0.000000,0.712812,0.000000,-3.64,-0.002221,0.036291 +0.25,98,0.85,120,0.000141,1640.30,2969.90,0.000000,0.703735,0.000141,-0.43,-0.000260,0.036068 +0.25,99,0.80,120,0.000000,1640.36,2898.92,0.000000,0.694567,0.000000,-0.37,-0.000225,0.035964 +0.25,100,0.90,90,0.000000,1641.38,2964.93,0.000000,0.698893,0.000000,0.65,0.000396,0.035862 +0.25,101,0.75,90,0.000000,1642.43,2896.72,0.000000,0.699081,0.000000,1.70,0.001039,0.035757 +0.25,102,0.80,30,0.000000,1643.04,2944.97,0.000000,0.709379,0.000000,2.31,0.001405,0.035696 +0.25,103,0.70,60,0.000000,1648.61,2995.24,0.000000,0.699715,0.000000,7.88,0.004801,0.035139 +0.25,104,0.70,30,0.002657,1624.21,2927.24,0.030303,0.710629,0.002657,-16.52,-0.010067,0.033378 +0.25,105,0.65,30,0.011121,1627.07,2930.23,0.070866,0.702025,0.011121,-13.66,-0.008327,0.030905 +0.30,1,0.20,30,0.374202,1060.82,2796.79,0.133269,0.809381,0.374202,-568.56,-0.348945,0.329206 +0.30,2,0.25,30,0.372650,1066.09,2795.94,0.130845,0.802498,0.372650,-563.29,-0.345711,0.328077 +0.30,3,0.30,30,0.296203,1194.42,2831.84,0.106646,0.788408,0.296203,-434.96,-0.266951,0.266571 +0.30,4,0.25,60,0.255905,1227.72,2777.57,0.059426,0.774501,0.255905,-401.66,-0.246512,0.244476 +0.30,5,0.20,60,0.250405,1249.26,2824.59,0.066576,0.775932,0.250405,-380.12,-0.233291,0.237042 +0.30,6,0.30,60,0.237347,1262.43,2832.83,0.056117,0.767754,0.237347,-366.95,-0.225211,0.228677 +0.30,7,0.50,30,0.229122,1326.13,2916.61,0.053795,0.779920,0.229122,-303.25,-0.186114,0.217014 +0.30,8,0.55,30,0.228066,1320.34,2892.52,0.063600,0.774689,0.228066,-309.04,-0.189666,0.214892 +0.30,9,0.60,30,0.223910,1334.58,2927.78,0.050633,0.775956,0.223910,-294.80,-0.180927,0.213153 +0.30,10,0.45,30,0.226474,1318.87,2860.11,0.069289,0.772485,0.226474,-310.51,-0.190567,0.212787 +0.30,11,0.35,30,0.227005,1328.52,2870.66,0.068561,0.771257,0.227005,-300.86,-0.184644,0.212339 +0.30,12,0.40,30,0.223688,1324.83,2859.22,0.063286,0.767564,0.223688,-304.55,-0.186911,0.211441 +0.30,13,0.20,90,0.186708,1325.02,2820.23,0.031308,0.763285,0.186708,-304.36,-0.186793,0.191932 +0.30,14,0.25,90,0.184760,1331.41,2832.58,0.035847,0.762396,0.184760,-297.97,-0.182876,0.189022 +0.30,15,0.20,120,0.148818,1405.10,2818.39,0.014440,0.738677,0.148818,-224.28,-0.137648,0.160775 +0.30,16,0.25,120,0.145925,1409.54,2896.94,0.020024,0.737895,0.145925,-219.84,-0.134925,0.157189 +0.30,17,0.55,60,0.141633,1425.50,2872.57,0.010309,0.756091,0.141633,-203.88,-0.125125,0.154531 +0.30,18,0.35,60,0.140933,1422.49,2843.57,0.010107,0.743333,0.140933,-206.89,-0.126977,0.154383 +0.30,19,0.45,60,0.138594,1438.86,2895.28,0.007782,0.748143,0.138594,-190.52,-0.116927,0.151573 +0.30,20,0.50,60,0.140276,1445.22,2932.92,0.012314,0.741802,0.140276,-184.16,-0.113025,0.151208 +0.30,21,0.40,60,0.140053,1445.74,2906.29,0.012715,0.738329,0.140053,-183.64,-0.112708,0.150921 +0.30,22,0.30,120,0.124659,1425.47,2849.52,0.008493,0.740413,0.124659,-203.91,-0.125147,0.143016 +0.30,23,0.60,60,0.126969,1459.79,2937.88,0.011716,0.737455,0.126969,-169.59,-0.104083,0.140556 +0.30,24,0.30,90,0.114327,1483.92,2951.68,0.010606,0.730283,0.114327,-145.46,-0.089272,0.129515 +0.30,25,0.30,180,0.106242,1459.21,2855.03,0.003478,0.726528,0.106242,-170.17,-0.104441,0.127753 +0.30,26,0.20,180,0.103408,1471.45,2885.89,0.004248,0.723067,0.103408,-157.93,-0.096926,0.124391 +0.30,27,0.25,180,0.101819,1480.33,2913.86,0.002622,0.729355,0.101819,-149.05,-0.091477,0.122716 +0.30,28,0.60,90,0.098162,1483.27,2858.05,0.002809,0.733969,0.098162,-146.11,-0.089674,0.119825 +0.30,29,0.35,90,0.099826,1499.49,2882.80,0.000913,0.742251,0.099826,-129.89,-0.079717,0.119746 +0.30,30,0.40,90,0.096039,1486.92,2890.65,0.005525,0.734799,0.096039,-142.46,-0.087431,0.117430 +0.30,31,0.55,90,0.096035,1500.89,2909.57,0.000917,0.732973,0.096035,-128.49,-0.078856,0.116952 +0.30,32,0.50,90,0.095422,1506.01,2900.17,0.001848,0.737221,0.095422,-123.37,-0.075716,0.115825 +0.30,33,0.45,90,0.093640,1503.37,2924.28,0.005460,0.729006,0.093640,-126.01,-0.077338,0.114119 +0.30,34,0.20,240,0.080785,1507.92,2879.84,0.001134,0.727464,0.080785,-121.46,-0.074544,0.105531 +0.30,35,0.55,120,0.080069,1515.26,2902.98,0.002336,0.734879,0.080069,-114.12,-0.070042,0.104056 +0.30,36,0.25,240,0.077846,1505.68,2862.81,0.004587,0.731152,0.077846,-123.70,-0.075918,0.103007 +0.30,37,0.50,120,0.077735,1513.45,2877.04,0.001166,0.722186,0.077735,-115.93,-0.071148,0.102836 +0.30,38,0.40,120,0.075479,1509.30,2864.84,0.001190,0.733476,0.075479,-120.08,-0.073695,0.101667 +0.30,39,0.35,120,0.076410,1521.67,2911.89,0.000000,0.729964,0.076410,-107.71,-0.066102,0.101320 +0.30,40,0.45,120,0.076655,1524.74,2906.47,0.000000,0.716430,0.076655,-104.64,-0.064222,0.101185 +0.30,41,0.60,120,0.073711,1513.85,2836.93,0.001208,0.720536,0.073711,-115.53,-0.070906,0.099971 +0.30,42,0.30,240,0.070021,1529.80,2902.38,0.003846,0.722444,0.070021,-99.58,-0.061113,0.095265 +0.30,43,0.25,300,0.064242,1518.47,2865.32,0.000000,0.719744,0.064242,-110.91,-0.068069,0.093122 +0.30,44,0.20,300,0.063914,1531.44,2922.36,0.000000,0.722641,0.063914,-97.94,-0.060110,0.091596 +0.30,45,0.30,300,0.059003,1542.66,2887.82,0.000000,0.720201,0.059003,-86.72,-0.053225,0.087036 +0.30,46,0.55,180,0.054339,1547.13,2913.04,0.000000,0.714481,0.054339,-82.25,-0.050477,0.083324 +0.30,47,0.35,180,0.053480,1551.99,2934.23,0.000000,0.727593,0.053480,-77.39,-0.047495,0.082236 +0.30,48,0.50,180,0.054040,1560.75,2931.63,0.000000,0.714955,0.054040,-68.63,-0.042123,0.081753 +0.30,49,0.45,180,0.052821,1556.78,2933.06,0.000000,0.717935,0.052821,-72.60,-0.044554,0.081296 +0.30,50,0.40,180,0.048861,1549.65,2877.14,0.000000,0.714737,0.048861,-79.73,-0.048931,0.079237 +0.30,51,0.60,180,0.049880,1564.21,2909.17,0.000000,0.716148,0.049880,-65.17,-0.039998,0.078495 +0.30,52,0.45,240,0.042465,1565.58,2898.62,0.000000,0.719915,0.042465,-63.80,-0.039157,0.073168 +0.30,53,0.40,240,0.041322,1562.97,2865.20,0.000000,0.715543,0.041322,-66.41,-0.040760,0.072629 +0.30,54,0.35,240,0.041098,1567.18,2891.25,0.000000,0.718187,0.041098,-62.20,-0.038176,0.072051 +0.30,55,0.55,240,0.041114,1570.81,2897.95,0.000000,0.721485,0.041114,-58.57,-0.035949,0.071699 +0.30,56,0.60,240,0.040663,1585.56,2930.14,0.000000,0.712331,0.040663,-43.82,-0.026896,0.069909 +0.30,57,0.50,240,0.040992,1589.95,2964.08,0.000000,0.723238,0.040992,-39.43,-0.024201,0.069700 +0.30,58,0.55,300,0.033651,1569.40,2876.39,0.000000,0.719802,0.033651,-59.98,-0.036814,0.066616 +0.30,59,0.60,300,0.033603,1570.58,2878.58,0.000000,0.717891,0.033603,-58.80,-0.036088,0.066465 +0.30,60,0.40,300,0.034551,1582.90,2866.11,0.000000,0.711377,0.034551,-46.48,-0.028527,0.065896 +0.30,61,0.50,300,0.032943,1585.39,2937.61,0.000000,0.721745,0.032943,-43.99,-0.026997,0.064521 +0.30,62,0.45,300,0.030548,1581.73,2895.10,0.000000,0.712533,0.030548,-47.65,-0.029241,0.063210 +0.30,63,0.35,300,0.029798,1579.10,2881.32,0.000000,0.712312,0.029798,-50.28,-0.030858,0.062949 +0.30,64,0.65,90,0.019816,1595.53,2895.66,0.004854,0.702487,0.019816,-33.85,-0.020778,0.053348 +0.30,65,0.65,60,0.012822,1605.72,2865.94,0.013699,0.710061,0.012822,-23.66,-0.014521,0.045664 +0.30,66,0.65,240,0.006451,1629.88,2982.05,0.000000,0.708399,0.006451,0.50,0.000306,0.041528 +0.30,67,0.65,300,0.004837,1623.55,2913.00,0.000000,0.702902,0.004837,-5.83,-0.003579,0.041031 +0.30,68,0.65,180,0.002716,1616.49,2913.70,0.000000,0.699077,0.002716,-12.89,-0.007913,0.040252 +0.30,69,0.80,30,0.000000,1610.04,2873.72,0.000000,0.701003,0.000000,-19.34,-0.011869,0.038996 +0.30,70,0.75,180,0.000000,1611.97,2826.43,0.000000,0.707425,0.000000,-17.41,-0.010683,0.038803 +0.30,71,0.80,120,0.000266,1614.17,2882.98,0.000000,0.704128,0.000266,-15.21,-0.009333,0.038769 +0.30,72,0.90,180,0.000000,1613.55,2887.02,0.000000,0.699815,0.000000,-15.83,-0.009717,0.038645 +0.30,73,0.75,90,0.000000,1614.06,2872.61,0.000000,0.704186,0.000000,-15.32,-0.009400,0.038594 +0.30,74,0.85,30,0.000131,1615.07,2856.12,0.000000,0.698610,0.000131,-14.31,-0.008783,0.038585 +0.30,75,0.80,300,0.000000,1614.38,2862.51,0.000000,0.718061,0.000000,-15.00,-0.009207,0.038562 +0.30,76,0.65,120,0.000935,1624.90,2905.35,0.000000,0.703446,0.000935,-4.48,-0.002748,0.038164 +0.30,77,0.90,30,0.000000,1620.74,2874.49,0.000000,0.694551,0.000000,-8.64,-0.005305,0.037926 +0.30,78,0.75,30,0.000133,1622.62,2886.96,0.000000,0.710806,0.000133,-6.76,-0.004147,0.037831 +0.30,79,0.85,240,0.000000,1621.77,2921.56,0.000000,0.700932,0.000000,-7.61,-0.004668,0.037823 +0.30,80,0.80,60,0.000132,1623.01,2891.57,0.000000,0.697582,0.000132,-6.37,-0.003909,0.037791 +0.30,81,0.75,120,0.000000,1623.51,2887.80,0.000000,0.702517,0.000000,-5.87,-0.003601,0.037649 +0.30,82,0.70,90,0.000000,1623.62,2904.54,0.000000,0.704597,0.000000,-5.76,-0.003533,0.037638 +0.30,83,0.85,90,0.000000,1623.71,2869.96,0.000000,0.707320,0.000000,-5.67,-0.003477,0.037629 +0.30,84,0.70,60,0.000389,1627.19,2917.33,0.000000,0.715100,0.000389,-2.19,-0.001342,0.037553 +0.30,85,0.90,300,0.000000,1624.54,2882.85,0.000000,0.704504,0.000000,-4.84,-0.002969,0.037546 +0.30,86,0.90,120,0.000000,1624.81,2921.52,0.000000,0.704737,0.000000,-4.57,-0.002802,0.037519 +0.30,87,0.90,90,0.000000,1625.18,2872.17,0.000000,0.704149,0.000000,-4.20,-0.002575,0.037482 +0.30,88,0.85,300,0.000000,1625.44,2890.29,0.000000,0.709088,0.000000,-3.94,-0.002417,0.037456 +0.30,89,0.70,240,0.000266,1629.09,2881.65,0.000000,0.694019,0.000266,-0.29,-0.000176,0.037277 +0.30,90,0.80,240,0.000000,1627.42,2916.36,0.000000,0.699426,0.000000,-1.96,-0.001200,0.037258 +0.30,91,0.70,300,0.000000,1627.51,2882.65,0.000000,0.705120,0.000000,-1.87,-0.001145,0.037249 +0.30,92,0.70,120,0.000000,1628.79,2895.65,0.000000,0.703786,0.000000,-0.59,-0.000360,0.037121 +0.30,93,0.70,30,0.000000,1629.18,2944.62,0.000000,0.698404,0.000000,-0.20,-0.000121,0.037082 +0.30,94,0.85,120,0.000000,1629.19,2908.08,0.000000,0.708240,0.000000,-0.19,-0.000115,0.037081 +0.30,95,0.80,180,0.000000,1630.22,2874.71,0.000000,0.694459,0.000000,0.84,0.000518,0.036978 +0.30,96,0.75,240,0.000134,1631.36,2950.09,0.000000,0.705654,0.000134,1.98,0.001217,0.036957 +0.30,97,0.85,60,0.000000,1630.66,2932.93,0.000000,0.708832,0.000000,1.28,0.000787,0.036934 +0.30,98,0.85,180,0.000000,1631.58,2919.63,0.000000,0.710408,0.000000,2.20,0.001352,0.036842 +0.30,99,0.90,60,0.000000,1632.06,2903.31,0.000000,0.693726,0.000000,2.68,0.001646,0.036794 +0.30,100,0.75,60,0.000000,1632.82,2928.38,0.000000,0.697124,0.000000,3.44,0.002109,0.036718 +0.30,101,0.75,300,0.000000,1634.07,2918.78,0.000000,0.711352,0.000000,4.69,0.002880,0.036593 +0.30,102,0.70,180,0.000000,1639.34,2957.29,0.000000,0.699030,0.000000,9.96,0.006111,0.036066 +0.30,103,0.80,90,0.000000,1645.93,2933.85,0.000000,0.701246,0.000000,16.55,0.010159,0.035407 +0.30,104,0.90,240,0.000000,1653.27,3011.55,0.000000,0.701005,0.000000,23.89,0.014663,0.034673 +0.30,105,0.65,30,0.001444,1603.08,2837.32,0.157895,0.708322,0.001444,-26.30,-0.016139,0.009123 +0.35,1,0.25,30,0.380870,1049.72,2786.73,0.140341,0.813540,0.380870,-565.45,-0.350087,0.333568 +0.35,2,0.20,30,0.366477,1072.91,2789.91,0.139632,0.813538,0.366477,-542.26,-0.335732,0.321317 +0.35,3,0.25,60,0.251239,1233.92,2774.25,0.048780,0.779623,0.251239,-381.25,-0.236043,0.242720 +0.35,4,0.30,60,0.245621,1239.22,2812.19,0.057620,0.776092,0.245621,-375.95,-0.232760,0.236488 +0.35,5,0.20,60,0.248145,1241.86,2829.56,0.067458,0.774494,0.248145,-373.31,-0.231128,0.236024 +0.35,6,0.30,30,0.246541,1285.14,2894.03,0.077350,0.777889,0.246541,-330.03,-0.204328,0.228594 +0.35,7,0.50,30,0.229561,1319.72,2892.97,0.049864,0.775387,0.229561,-295.45,-0.182923,0.218748 +0.35,8,0.35,30,0.230466,1318.12,2895.48,0.054355,0.775820,0.230466,-297.05,-0.183913,0.218643 +0.35,9,0.40,30,0.228662,1315.60,2898.17,0.060867,0.775600,0.228662,-299.57,-0.185475,0.216330 +0.35,10,0.45,30,0.221961,1333.34,2948.08,0.048530,0.769745,0.221961,-281.83,-0.174492,0.212333 +0.35,11,0.60,30,0.222769,1312.67,2874.73,0.061992,0.772806,0.222769,-302.50,-0.187286,0.212273 +0.35,12,0.55,30,0.222468,1335.08,2890.70,0.060740,0.773603,0.222468,-280.09,-0.173411,0.210071 +0.35,13,0.20,90,0.194088,1307.92,2794.20,0.030796,0.759636,0.194088,-307.25,-0.190228,0.198910 +0.35,14,0.25,90,0.183017,1342.52,2869.43,0.033274,0.758322,0.183017,-272.65,-0.168804,0.187205 +0.35,15,0.30,90,0.164931,1364.22,2809.85,0.020538,0.754092,0.164931,-250.95,-0.155369,0.174921 +0.35,16,0.25,120,0.153673,1380.77,2831.37,0.022676,0.747932,0.153673,-234.40,-0.145125,0.164959 +0.35,17,0.20,120,0.150596,1384.94,2856.73,0.013430,0.736150,0.150596,-230.23,-0.142541,0.164237 +0.35,18,0.30,120,0.138980,1412.07,2855.76,0.012448,0.746988,0.138980,-203.10,-0.125746,0.153590 +0.35,19,0.50,60,0.138178,1425.28,2835.71,0.010167,0.741812,0.138178,-189.89,-0.117565,0.152163 +0.35,20,0.60,60,0.139342,1429.78,2896.77,0.012129,0.746046,0.139342,-185.39,-0.114781,0.152136 +0.35,21,0.45,60,0.137333,1444.40,2879.45,0.013325,0.738349,0.137333,-170.77,-0.105730,0.149028 +0.35,22,0.55,60,0.136088,1438.22,2893.06,0.014134,0.742487,0.136088,-176.95,-0.109554,0.148613 +0.35,23,0.35,60,0.137859,1445.06,2915.81,0.017221,0.738226,0.137859,-170.11,-0.105319,0.148551 +0.35,24,0.40,60,0.136622,1445.37,2884.93,0.019820,0.743156,0.136622,-169.80,-0.105129,0.147134 +0.35,25,0.20,180,0.108122,1454.14,2830.02,0.002471,0.736796,0.108122,-161.03,-0.099697,0.129777 +0.35,26,0.25,180,0.105693,1455.47,2862.56,0.002441,0.730693,0.105693,-159.70,-0.098875,0.127950 +0.35,27,0.55,90,0.100927,1486.78,2901.41,0.004314,0.728650,0.100927,-128.39,-0.079487,0.121107 +0.35,28,0.30,180,0.098233,1476.49,2869.04,0.002679,0.731867,0.098233,-138.68,-0.085863,0.120579 +0.35,29,0.40,90,0.100631,1499.35,2936.97,0.001689,0.738407,0.100631,-115.82,-0.071706,0.120169 +0.35,30,0.35,90,0.098213,1487.88,2889.61,0.000856,0.732471,0.098213,-127.29,-0.078812,0.119790 +0.35,31,0.60,90,0.098798,1492.16,2911.49,0.003448,0.739419,0.098798,-123.01,-0.076158,0.119253 +0.35,32,0.50,90,0.098148,1488.30,2901.01,0.003413,0.732840,0.098148,-126.87,-0.078549,0.119191 +0.35,33,0.45,90,0.094191,1497.49,2926.58,0.001730,0.737689,0.094191,-117.68,-0.072860,0.115839 +0.35,34,0.25,240,0.076800,1503.86,2876.72,0.001080,0.731509,0.076800,-111.31,-0.068914,0.103158 +0.35,35,0.20,240,0.077641,1507.63,2907.24,0.003215,0.726044,0.077641,-107.54,-0.066584,0.102943 +0.35,36,0.50,120,0.076132,1511.99,2904.49,0.000000,0.728397,0.076132,-103.18,-0.063881,0.102093 +0.35,37,0.35,120,0.076536,1525.24,2899.44,0.001107,0.718386,0.076536,-89.93,-0.055680,0.100830 +0.35,38,0.55,120,0.076458,1534.01,2953.60,0.001104,0.728573,0.076458,-81.16,-0.050248,0.099899 +0.35,39,0.40,120,0.074690,1525.44,2912.23,0.000000,0.732766,0.074690,-89.73,-0.055554,0.099739 +0.35,40,0.45,120,0.071083,1518.93,2903.69,0.001101,0.727053,0.071083,-96.24,-0.059588,0.097645 +0.35,41,0.25,300,0.066974,1515.62,2861.44,0.000000,0.726628,0.066974,-99.55,-0.061635,0.095320 +0.35,42,0.60,120,0.069782,1546.51,2935.77,0.000000,0.720749,0.069782,-68.66,-0.042507,0.094196 +0.35,43,0.20,300,0.065132,1523.77,2913.92,0.000000,0.712533,0.065132,-91.40,-0.056588,0.093215 +0.35,44,0.35,180,0.057379,1556.19,2939.35,0.000000,0.724210,0.057379,-58.98,-0.036517,0.084546 +0.35,45,0.55,180,0.054889,1554.41,2917.10,0.000000,0.714286,0.054889,-60.76,-0.037621,0.082981 +0.35,46,0.40,180,0.053733,1555.22,2903.52,0.000000,0.712641,0.053733,-59.95,-0.037116,0.082091 +0.35,47,0.45,180,0.052755,1551.07,2945.53,0.000000,0.715322,0.052755,-64.10,-0.039689,0.081822 +0.35,48,0.50,180,0.051298,1544.04,2835.37,0.000000,0.725235,0.051298,-71.13,-0.044040,0.081505 +0.35,49,0.60,180,0.049742,1555.51,2887.47,0.000000,0.720638,0.049742,-59.66,-0.036938,0.079269 +0.35,50,0.30,240,0.044958,1558.72,2899.24,0.000000,0.715226,0.044958,-56.45,-0.034947,0.075598 +0.35,51,0.50,240,0.041543,1557.75,2860.44,0.000000,0.708457,0.041543,-57.42,-0.035548,0.073305 +0.35,52,0.55,240,0.039995,1558.90,2856.21,0.000000,0.719544,0.039995,-56.27,-0.034840,0.072107 +0.35,53,0.60,240,0.040306,1564.85,2878.56,0.000000,0.717490,0.040306,-50.32,-0.031152,0.071729 +0.35,54,0.40,240,0.039516,1574.66,2911.52,0.000000,0.709200,0.039516,-40.51,-0.025079,0.070195 +0.35,55,0.45,240,0.038490,1572.54,2876.25,0.000000,0.713398,0.038490,-42.63,-0.026392,0.069689 +0.35,56,0.35,240,0.039411,1582.27,2923.60,0.000000,0.701048,0.039411,-32.90,-0.020372,0.069361 +0.35,57,0.30,300,0.033756,1578.58,2914.41,0.000000,0.714180,0.033756,-36.59,-0.022657,0.065772 +0.35,58,0.45,300,0.033405,1576.81,2880.86,0.000000,0.721580,0.033405,-38.36,-0.023748,0.065702 +0.35,59,0.50,300,0.033436,1593.36,2939.76,0.000000,0.721942,0.033436,-21.81,-0.013501,0.064069 +0.35,60,0.35,300,0.032505,1591.51,2940.63,0.000000,0.716599,0.032505,-23.66,-0.014652,0.063603 +0.35,61,0.40,300,0.030220,1585.27,2885.62,0.000000,0.711479,0.030220,-29.90,-0.018514,0.062627 +0.35,62,0.60,300,0.030497,1591.05,2900.26,0.000000,0.712494,0.030497,-24.12,-0.014936,0.062243 +0.35,63,0.55,300,0.030773,1599.07,2961.75,0.000000,0.712908,0.030773,-16.10,-0.009969,0.061634 +0.35,64,0.65,30,0.014338,1592.89,2851.09,0.033708,0.700123,0.014338,-22.28,-0.013793,0.044006 +0.35,65,0.65,120,0.008289,1621.87,2920.94,0.000000,0.709621,0.008289,6.70,0.004147,0.043616 +0.35,66,0.65,180,0.003329,1608.54,2862.40,0.000000,0.709741,0.003329,-6.63,-0.004103,0.041476 +0.35,67,0.65,90,0.002589,1611.34,2902.73,0.000000,0.712894,0.002589,-3.83,-0.002373,0.040678 +0.35,68,0.65,240,0.002948,1617.67,2941.15,0.000000,0.706793,0.002948,2.50,0.001549,0.040296 +0.35,69,0.75,240,0.000122,1614.40,2862.26,0.000000,0.705667,0.000122,-0.77,-0.000476,0.038645 +0.35,70,0.75,90,0.000244,1615.57,2875.38,0.000000,0.712628,0.000244,0.40,0.000248,0.038614 +0.35,71,0.65,60,0.002202,1631.81,2894.16,0.000000,0.707854,0.002202,16.64,0.010301,0.038361 +0.35,72,0.65,300,0.000614,1621.53,2947.45,0.000000,0.702052,0.000614,6.36,0.003940,0.038277 +0.35,73,0.80,30,0.000000,1620.98,2903.51,0.000000,0.702723,0.000000,5.81,0.003594,0.037902 +0.35,74,0.75,300,0.000125,1622.62,2864.12,0.000000,0.698332,0.000125,7.45,0.004610,0.037826 +0.35,75,0.90,180,0.000000,1622.13,2907.06,0.000000,0.706036,0.000000,6.96,0.004310,0.037787 +0.35,76,0.85,300,0.000000,1622.58,2910.40,0.000000,0.706928,0.000000,7.41,0.004586,0.037742 +0.35,77,0.80,180,0.000000,1622.98,2902.67,0.000000,0.704706,0.000000,7.81,0.004832,0.037702 +0.35,78,0.85,60,0.000000,1623.88,2921.57,0.000000,0.706587,0.000000,8.71,0.005391,0.037612 +0.35,79,0.80,60,0.000000,1623.91,2863.14,0.000000,0.702190,0.000000,8.74,0.005413,0.037609 +0.35,80,0.70,120,0.000253,1626.45,2904.85,0.000000,0.706448,0.000253,11.28,0.006984,0.037532 +0.35,81,0.75,60,0.000248,1627.27,2920.37,0.000000,0.701578,0.000248,12.10,0.007493,0.037447 +0.35,82,0.75,180,0.000000,1625.95,2917.36,0.000000,0.700331,0.000000,10.78,0.006674,0.037405 +0.35,83,0.70,180,0.000000,1626.73,2873.16,0.000000,0.706013,0.000000,11.56,0.007159,0.037327 +0.35,84,0.90,30,0.000000,1626.97,2932.72,0.000000,0.695213,0.000000,11.80,0.007308,0.037303 +0.35,85,0.75,120,0.000000,1627.12,2893.23,0.000000,0.708937,0.000000,11.95,0.007400,0.037288 +0.35,86,0.80,300,0.000000,1627.43,2900.47,0.000000,0.698069,0.000000,12.26,0.007593,0.037257 +0.35,87,0.90,60,0.000000,1627.87,2863.26,0.000000,0.707182,0.000000,12.70,0.007864,0.037213 +0.35,88,0.80,90,0.000000,1628.11,2901.69,0.000000,0.700989,0.000000,12.94,0.008011,0.037189 +0.35,89,0.85,90,0.000000,1628.26,2917.46,0.000000,0.702909,0.000000,13.09,0.008106,0.037174 +0.35,90,0.85,240,0.000000,1628.57,2919.09,0.000000,0.702112,0.000000,13.40,0.008293,0.037143 +0.35,91,0.70,240,0.000123,1629.60,2905.80,0.000000,0.701291,0.000123,14.43,0.008932,0.037126 +0.35,92,0.90,300,0.000000,1628.82,2924.32,0.000000,0.705491,0.000000,13.65,0.008450,0.037118 +0.35,93,0.70,300,0.000483,1632.70,2897.61,0.000000,0.705811,0.000483,17.53,0.010856,0.037068 +0.35,94,0.90,240,0.000000,1630.29,2898.51,0.000000,0.700902,0.000000,15.12,0.009360,0.036971 +0.35,95,0.85,180,0.000000,1630.56,2901.82,0.000000,0.704343,0.000000,15.39,0.009531,0.036944 +0.35,96,0.85,120,0.000000,1631.19,2937.42,0.000000,0.703845,0.000000,16.02,0.009919,0.036881 +0.35,97,0.80,240,0.000124,1632.58,2924.90,0.000000,0.710794,0.000124,17.41,0.010780,0.036829 +0.35,98,0.90,120,0.000000,1632.67,2943.38,0.000000,0.705055,0.000000,17.50,0.010834,0.036733 +0.35,99,0.70,30,0.000368,1638.64,2923.49,0.000000,0.710917,0.000368,23.47,0.014532,0.036394 +0.35,100,0.80,120,0.000126,1637.97,2923.12,0.000000,0.705801,0.000126,22.80,0.014116,0.036291 +0.35,101,0.90,90,0.000000,1637.22,2962.80,0.000000,0.708433,0.000000,22.05,0.013650,0.036278 +0.35,102,0.70,90,0.000000,1638.86,2964.00,0.000000,0.707209,0.000000,23.69,0.014670,0.036114 +0.35,103,0.70,60,0.000000,1644.98,2978.41,0.000000,0.695977,0.000000,29.81,0.018457,0.035502 +0.35,104,0.75,30,0.000483,1634.15,2908.16,0.076923,0.708303,0.000483,18.98,0.011753,0.021538 +0.35,105,0.85,30,0.000124,1613.27,2867.92,0.333333,0.710644,0.000124,-1.90,-0.001179,-0.027906 +0.40,1,0.20,30,0.380503,1046.23,2770.61,0.136426,0.812308,0.380503,-571.24,-0.353167,0.334444 +0.40,2,0.25,30,0.374752,1040.88,2722.77,0.136529,0.813791,0.374752,-576.59,-0.356477,0.330933 +0.40,3,0.30,30,0.350096,1096.03,2779.77,0.126582,0.801567,0.350096,-521.43,-0.322375,0.310148 +0.40,4,0.25,60,0.252975,1234.31,2839.81,0.061921,0.775813,0.252975,-383.16,-0.236888,0.241268 +0.40,5,0.20,60,0.253881,1242.78,2831.60,0.061025,0.773003,0.253881,-374.69,-0.231652,0.241234 +0.40,6,0.35,30,0.227005,1316.45,2891.75,0.047129,0.776620,0.227005,-301.01,-0.186103,0.217833 +0.40,7,0.45,30,0.229264,1318.32,2890.39,0.054523,0.770281,0.229264,-299.14,-0.184946,0.217748 +0.40,8,0.50,30,0.225514,1321.58,2883.81,0.055903,0.772784,0.225514,-295.88,-0.182930,0.214521 +0.40,9,0.55,30,0.225651,1321.05,2916.19,0.061269,0.777791,0.225651,-296.41,-0.183256,0.213596 +0.40,10,0.40,30,0.225368,1327.37,2879.69,0.060264,0.768581,0.225368,-290.09,-0.179349,0.212968 +0.40,11,0.60,30,0.222490,1332.95,2885.93,0.060194,0.778658,0.222490,-284.51,-0.175900,0.210409 +0.40,12,0.30,60,0.201650,1327.55,2867.99,0.048745,0.762718,0.201650,-289.92,-0.179242,0.198651 +0.40,13,0.25,90,0.188109,1321.30,2788.15,0.036750,0.759881,0.188109,-296.16,-0.183103,0.192196 +0.40,14,0.20,90,0.182273,1334.04,2792.08,0.029508,0.766640,0.182273,-283.43,-0.175228,0.188286 +0.40,15,0.20,120,0.148877,1384.40,2843.49,0.013757,0.749971,0.148877,-233.06,-0.144091,0.163022 +0.40,16,0.25,120,0.145762,1407.49,2871.20,0.012487,0.746362,0.145762,-209.98,-0.129819,0.158787 +0.40,17,0.30,90,0.143216,1419.45,2893.19,0.021220,0.739111,0.143216,-198.01,-0.122423,0.154062 +0.40,18,0.40,60,0.141961,1441.07,2912.50,0.013483,0.750465,0.141961,-176.39,-0.109056,0.152569 +0.40,19,0.45,60,0.138331,1429.58,2902.28,0.012771,0.748479,0.138331,-187.88,-0.116158,0.151319 +0.40,20,0.50,60,0.136642,1435.01,2911.49,0.013385,0.739873,0.136642,-182.45,-0.112802,0.149471 +0.40,21,0.35,60,0.137255,1438.56,2902.04,0.018283,0.741792,0.137255,-178.90,-0.110607,0.148566 +0.40,22,0.55,60,0.135842,1452.59,2961.41,0.013408,0.737265,0.135842,-164.87,-0.101933,0.147149 +0.40,23,0.60,60,0.134506,1453.79,2944.85,0.011007,0.752912,0.134506,-163.67,-0.101192,0.146574 +0.40,24,0.30,120,0.127721,1426.95,2832.28,0.012270,0.744673,0.127721,-190.51,-0.117784,0.144255 +0.40,25,0.30,180,0.105305,1449.85,2859.71,0.002261,0.732705,0.105305,-167.62,-0.103629,0.128277 +0.40,26,0.25,180,0.101834,1454.65,2828.65,0.006126,0.733133,0.101834,-162.82,-0.100661,0.124594 +0.40,27,0.20,180,0.101675,1465.04,2919.72,0.008442,0.730572,0.101675,-152.42,-0.094236,0.122980 +0.40,28,0.35,90,0.098845,1480.66,2867.39,0.000799,0.731474,0.098845,-136.80,-0.084579,0.120966 +0.40,29,0.50,90,0.100712,1492.22,2889.86,0.001616,0.733925,0.100712,-125.24,-0.077431,0.120953 +0.40,30,0.40,90,0.098659,1485.27,2857.34,0.003997,0.730835,0.098659,-132.19,-0.081728,0.119735 +0.40,31,0.55,90,0.096925,1485.42,2887.29,0.003213,0.732725,0.096925,-132.04,-0.081635,0.118663 +0.40,32,0.60,90,0.095016,1481.50,2843.57,0.002357,0.731865,0.095016,-135.97,-0.084061,0.117890 +0.40,33,0.45,90,0.095281,1485.19,2864.05,0.004736,0.741025,0.095281,-132.28,-0.081779,0.117231 +0.40,34,0.25,240,0.079106,1505.32,2917.08,0.000000,0.724496,0.079106,-112.15,-0.069335,0.104843 +0.40,35,0.20,240,0.077340,1493.86,2843.67,0.000972,0.732641,0.077340,-123.60,-0.076416,0.104557 +0.40,36,0.30,240,0.075624,1500.74,2852.94,0.000000,0.727336,0.075624,-116.72,-0.072165,0.102863 +0.40,37,0.35,120,0.077329,1510.88,2880.09,0.002020,0.727946,0.077329,-106.59,-0.065897,0.102638 +0.40,38,0.50,120,0.077413,1521.99,2910.07,0.000000,0.726452,0.077413,-95.48,-0.059030,0.101990 +0.40,39,0.60,120,0.075073,1512.79,2910.68,0.000000,0.724656,0.075073,-104.68,-0.064717,0.101273 +0.40,40,0.45,120,0.075825,1521.31,2896.99,0.000000,0.723878,0.075825,-96.16,-0.059450,0.100947 +0.40,41,0.55,120,0.073384,1511.30,2911.63,0.001028,0.729239,0.073384,-106.16,-0.065634,0.100033 +0.40,42,0.40,120,0.074539,1527.18,2937.73,0.000000,0.731567,0.074539,-90.28,-0.055818,0.099459 +0.40,43,0.25,300,0.065579,1524.76,2883.02,0.000000,0.725623,0.065579,-92.70,-0.057313,0.093429 +0.40,44,0.20,300,0.063538,1525.27,2868.03,0.000000,0.722384,0.063538,-92.19,-0.056996,0.091949 +0.40,45,0.30,300,0.056986,1535.09,2906.09,0.000000,0.716672,0.056986,-82.37,-0.050925,0.086381 +0.40,46,0.50,180,0.053489,1548.98,2883.74,0.000000,0.714876,0.053489,-68.49,-0.042343,0.082545 +0.40,47,0.35,180,0.052793,1550.18,2909.02,0.000000,0.719687,0.052793,-67.29,-0.041601,0.081937 +0.40,48,0.45,180,0.052085,1545.41,2867.04,0.000000,0.718907,0.052085,-72.06,-0.044548,0.081918 +0.40,49,0.40,180,0.051694,1558.68,2958.58,0.000000,0.724182,0.051694,-58.79,-0.036346,0.080318 +0.40,50,0.60,180,0.051181,1555.28,2919.94,0.000000,0.716413,0.051181,-62.18,-0.038445,0.080298 +0.40,51,0.55,180,0.051542,1558.95,2889.21,0.000000,0.719877,0.051542,-58.51,-0.036175,0.080184 +0.40,52,0.35,240,0.040749,1564.07,2881.31,0.000000,0.703344,0.040749,-53.39,-0.033011,0.072117 +0.40,53,0.50,240,0.041154,1571.18,2914.36,0.000000,0.718818,0.041154,-46.28,-0.028615,0.071690 +0.40,54,0.55,240,0.041251,1573.41,2880.76,0.000000,0.708296,0.041251,-44.05,-0.027234,0.071534 +0.40,55,0.60,240,0.039643,1567.62,2910.73,0.000000,0.710328,0.039643,-49.84,-0.030816,0.070988 +0.40,56,0.40,240,0.039881,1569.66,2904.03,0.000000,0.712833,0.039881,-47.80,-0.029555,0.070951 +0.40,57,0.45,240,0.038359,1571.91,2883.54,0.000000,0.710200,0.038359,-45.55,-0.028164,0.069660 +0.40,58,0.35,300,0.032900,1573.19,2909.40,0.000000,0.715238,0.032900,-44.27,-0.027372,0.065711 +0.40,59,0.60,300,0.032659,1576.39,2882.49,0.000000,0.721176,0.032659,-41.07,-0.025393,0.065222 +0.40,60,0.40,300,0.032313,1585.29,2944.05,0.000000,0.716691,0.032313,-32.17,-0.019890,0.064090 +0.40,61,0.50,300,0.031622,1585.12,2889.64,0.000000,0.711389,0.031622,-32.35,-0.019999,0.063624 +0.40,62,0.45,300,0.032328,1592.76,2949.08,0.000000,0.711212,0.032328,-24.71,-0.015276,0.063354 +0.40,63,0.55,300,0.030577,1580.60,2880.21,0.000000,0.706741,0.030577,-36.86,-0.022789,0.063343 +0.40,64,0.65,60,0.011296,1602.76,2908.20,0.000000,0.708746,0.011296,-14.70,-0.009090,0.047631 +0.40,65,0.70,90,0.000796,1602.06,2855.71,0.000000,0.712776,0.000796,-15.40,-0.009520,0.040350 +0.40,66,0.65,90,0.002071,1614.03,2915.88,0.000000,0.699528,0.002071,-3.43,-0.002120,0.040046 +0.40,67,0.65,240,0.003188,1625.60,2880.73,0.000000,0.703632,0.003188,8.13,0.005029,0.039672 +0.40,68,0.80,180,0.000000,1606.05,2858.58,0.000000,0.704085,0.000000,-11.41,-0.007056,0.039395 +0.40,69,0.65,120,0.002679,1625.41,2922.00,0.000000,0.705615,0.002679,7.95,0.004914,0.039334 +0.40,70,0.65,300,0.001836,1619.81,2942.62,0.000000,0.704991,0.001836,2.35,0.001452,0.039304 +0.40,71,0.65,180,0.001034,1614.39,2878.76,0.000000,0.702240,0.001034,-3.08,-0.001901,0.039285 +0.40,72,0.75,30,0.000116,1608.12,2872.64,0.000000,0.704633,0.000116,-9.34,-0.005774,0.039269 +0.40,73,0.70,60,0.003125,1629.49,2939.05,0.000000,0.701817,0.003125,12.03,0.007435,0.039239 +0.40,74,0.85,60,0.000000,1607.84,2822.75,0.000000,0.705989,0.000000,-9.62,-0.005947,0.039216 +0.40,75,0.70,240,0.000924,1617.84,2886.71,0.000000,0.708213,0.000924,0.37,0.000229,0.038863 +0.40,76,0.70,300,0.001032,1621.43,2893.64,0.000000,0.695986,0.001032,3.97,0.002452,0.038579 +0.40,77,0.75,60,0.000000,1615.49,2865.20,0.000000,0.698943,0.000000,-1.97,-0.001219,0.038451 +0.40,78,0.75,180,0.000000,1615.90,2857.57,0.000000,0.704610,0.000000,-1.56,-0.000965,0.038410 +0.40,79,0.90,30,0.000114,1616.76,2925.58,0.000000,0.711361,0.000114,-0.70,-0.000435,0.038404 +0.40,80,0.85,90,0.000114,1617.85,2840.60,0.000000,0.708528,0.000114,0.39,0.000240,0.038295 +0.40,81,0.70,120,0.001371,1626.71,2917.27,0.000000,0.708295,0.001371,9.24,0.005713,0.038289 +0.40,82,0.75,300,0.000117,1618.33,2869.43,0.000000,0.702120,0.000117,0.87,0.000536,0.038249 +0.40,83,0.80,120,0.000000,1617.62,2886.42,0.000000,0.717007,0.000000,0.16,0.000097,0.038238 +0.40,84,0.85,300,0.000000,1619.81,2896.54,0.000000,0.697533,0.000000,2.35,0.001452,0.038019 +0.40,85,0.80,90,0.000000,1622.06,2909.94,0.000000,0.702989,0.000000,4.60,0.002841,0.037794 +0.40,86,0.85,30,0.000000,1622.44,2881.20,0.000000,0.705143,0.000000,4.97,0.003075,0.037756 +0.40,87,0.80,240,0.000000,1623.33,2858.85,0.000000,0.703488,0.000000,5.87,0.003630,0.037667 +0.40,88,0.75,90,0.000000,1626.19,2935.98,0.000000,0.703045,0.000000,8.73,0.005396,0.037381 +0.40,89,0.80,300,0.000000,1626.96,2909.82,0.000000,0.699080,0.000000,9.50,0.005874,0.037304 +0.40,90,0.90,240,0.000000,1627.46,2884.36,0.000000,0.712104,0.000000,10.00,0.006183,0.037254 +0.40,91,0.85,120,0.000000,1629.30,2927.83,0.000000,0.703432,0.000000,11.83,0.007316,0.037070 +0.40,92,0.90,300,0.000000,1629.69,2894.30,0.000000,0.690939,0.000000,12.22,0.007557,0.037031 +0.40,93,0.80,60,0.000000,1630.15,2955.88,0.000000,0.701796,0.000000,12.69,0.007845,0.036985 +0.40,94,0.80,30,0.000000,1631.06,2922.54,0.000000,0.704815,0.000000,13.60,0.008408,0.036894 +0.40,95,0.90,180,0.000000,1632.19,2914.66,0.000000,0.703559,0.000000,14.73,0.009106,0.036781 +0.40,96,0.75,120,0.000000,1632.22,2901.65,0.000000,0.704013,0.000000,14.75,0.009122,0.036778 +0.40,97,0.90,120,0.000000,1634.18,2938.17,0.000000,0.711607,0.000000,16.71,0.010332,0.036582 +0.40,98,0.90,60,0.000000,1635.12,2956.75,0.000000,0.711111,0.000000,17.65,0.010915,0.036488 +0.40,99,0.70,180,0.000114,1636.66,2937.64,0.000000,0.703354,0.000114,19.20,0.011869,0.036413 +0.40,100,0.85,180,0.000000,1637.60,2969.43,0.000000,0.701959,0.000000,20.13,0.012447,0.036240 +0.40,101,0.85,240,0.000000,1637.96,2937.74,0.000000,0.700607,0.000000,20.49,0.012671,0.036204 +0.40,102,0.90,90,0.000113,1639.24,2951.60,0.000000,0.701006,0.000113,21.77,0.013462,0.036155 +0.40,103,0.75,240,0.000000,1639.74,2919.49,0.000000,0.701227,0.000000,22.28,0.013775,0.036026 +0.40,104,0.70,30,0.005112,1619.66,2852.54,0.046154,0.698885,0.005112,2.20,0.001361,0.032381 +0.40,105,0.65,30,0.003009,1626.55,2946.21,0.081081,0.706250,0.003009,9.09,0.005619,0.023235 +0.50,1,0.25,30,0.380229,1046.52,2775.72,0.140645,0.816228,0.380229,-571.15,-0.353072,0.333379 +0.50,2,0.20,30,0.369520,1055.08,2772.01,0.133277,0.815620,0.369520,-562.59,-0.347778,0.326501 +0.50,3,0.30,30,0.355257,1085.63,2755.28,0.139302,0.804897,0.355257,-532.05,-0.328896,0.312257 +0.50,4,0.20,60,0.251787,1241.17,2842.09,0.065747,0.776211,0.251787,-376.50,-0.232739,0.238984 +0.50,5,0.25,60,0.247596,1237.31,2796.24,0.063935,0.776635,0.247596,-380.36,-0.235127,0.236799 +0.50,6,0.30,60,0.242296,1249.36,2853.60,0.058523,0.773896,0.242296,-368.31,-0.227678,0.232967 +0.50,7,0.45,30,0.225297,1316.76,2862.78,0.058808,0.781179,0.225297,-300.91,-0.186015,0.214270 +0.50,8,0.60,30,0.223133,1317.15,2851.54,0.060134,0.771527,0.223133,-300.52,-0.185773,0.212451 +0.50,9,0.40,30,0.220733,1316.80,2864.50,0.061485,0.774385,0.220733,-300.87,-0.185991,0.210536 +0.50,10,0.50,30,0.221545,1326.82,2902.54,0.064041,0.768011,0.221545,-290.85,-0.179798,0.209592 +0.50,11,0.35,30,0.220729,1326.74,2876.86,0.066971,0.774693,0.220729,-290.93,-0.179845,0.208442 +0.50,12,0.55,30,0.217008,1328.49,2843.41,0.060011,0.770387,0.217008,-289.18,-0.178763,0.207054 +0.50,13,0.20,90,0.190074,1329.84,2838.17,0.026662,0.754176,0.190074,-287.83,-0.177929,0.194735 +0.50,14,0.25,90,0.187235,1332.63,2802.30,0.025841,0.760071,0.187235,-285.04,-0.176206,0.192634 +0.50,15,0.20,120,0.150831,1385.39,2863.40,0.016859,0.747116,0.150831,-232.28,-0.143589,0.163671 +0.50,16,0.25,120,0.146564,1395.04,2826.56,0.017691,0.742895,0.146564,-222.63,-0.137624,0.159553 +0.50,17,0.40,60,0.139551,1431.02,2869.06,0.010813,0.751633,0.139551,-186.65,-0.115383,0.152421 +0.50,18,0.55,60,0.139603,1423.66,2856.35,0.014699,0.751363,0.139603,-194.01,-0.119934,0.152416 +0.50,19,0.50,60,0.139732,1440.11,2903.71,0.010436,0.748620,0.139732,-177.56,-0.109765,0.151714 +0.50,20,0.45,60,0.137470,1426.51,2832.60,0.013220,0.747746,0.137470,-191.16,-0.118167,0.150933 +0.50,21,0.60,60,0.138711,1437.87,2900.28,0.015722,0.745088,0.138711,-179.80,-0.111146,0.150166 +0.50,22,0.35,60,0.134777,1439.78,2894.86,0.016611,0.741178,0.134777,-177.89,-0.109970,0.147044 +0.50,23,0.30,90,0.110430,1466.44,2874.13,0.012387,0.736719,0.110430,-151.23,-0.093489,0.128180 +0.50,24,0.30,120,0.106674,1451.15,2845.42,0.011436,0.747798,0.106674,-166.52,-0.102935,0.127270 +0.50,25,0.20,180,0.102210,1461.11,2843.41,0.001962,0.727993,0.102210,-156.56,-0.096783,0.125044 +0.50,26,0.30,180,0.101602,1463.17,2824.71,0.003795,0.734402,0.101602,-154.50,-0.095506,0.124045 +0.50,27,0.25,180,0.099003,1456.37,2826.95,0.006631,0.732802,0.099003,-161.30,-0.099714,0.122339 +0.50,28,0.45,90,0.098730,1486.65,2878.09,0.004755,0.736328,0.098730,-131.02,-0.080991,0.119495 +0.50,29,0.55,90,0.097126,1484.17,2821.58,0.000669,0.738040,0.097126,-133.50,-0.082527,0.119437 +0.50,30,0.50,90,0.096312,1480.37,2853.85,0.002027,0.736661,0.096312,-137.30,-0.084877,0.118977 +0.50,31,0.35,90,0.096560,1487.48,2904.10,0.003351,0.730304,0.096560,-130.19,-0.080477,0.118174 +0.50,32,0.60,90,0.096556,1500.40,2910.45,0.000668,0.733288,0.096556,-117.27,-0.072492,0.117416 +0.50,33,0.40,90,0.094937,1497.69,2884.67,0.002730,0.740161,0.094937,-119.98,-0.074170,0.116141 +0.50,34,0.20,240,0.080319,1489.11,2856.49,0.000000,0.724329,0.080319,-128.56,-0.079474,0.107312 +0.50,35,0.25,240,0.079902,1497.34,2881.73,0.001701,0.730732,0.079902,-120.33,-0.074383,0.105857 +0.50,36,0.30,240,0.076099,1503.88,2867.28,0.001818,0.731338,0.076099,-113.79,-0.070345,0.102518 +0.50,37,0.35,120,0.075784,1512.64,2882.55,0.000000,0.728132,0.075784,-105.03,-0.064929,0.101785 +0.50,38,0.40,120,0.076234,1515.52,2887.60,0.001771,0.728258,0.076234,-102.15,-0.063149,0.101458 +0.50,39,0.50,120,0.075801,1515.18,2903.33,0.000876,0.734550,0.075801,-102.49,-0.063359,0.101368 +0.50,40,0.60,120,0.075658,1525.18,2892.60,0.000000,0.722233,0.075658,-92.49,-0.057173,0.100442 +0.50,41,0.55,120,0.073446,1523.39,2888.78,0.002604,0.726515,0.073446,-94.28,-0.058284,0.098553 +0.50,42,0.45,120,0.072911,1524.64,2859.03,0.000866,0.720350,0.072911,-93.03,-0.057508,0.098400 +0.50,43,0.25,300,0.064246,1510.66,2848.68,0.000000,0.720522,0.064246,-107.01,-0.066150,0.093906 +0.50,44,0.20,300,0.065982,1524.77,2880.87,0.000000,0.730023,0.065982,-92.90,-0.057428,0.093710 +0.50,45,0.40,180,0.053165,1546.16,2883.19,0.000000,0.727167,0.053165,-71.51,-0.044209,0.082600 +0.50,46,0.45,180,0.051294,1548.27,2870.08,0.000000,0.718802,0.051294,-69.40,-0.042902,0.081079 +0.50,47,0.50,180,0.051850,1555.09,2883.20,0.000000,0.716887,0.051850,-62.58,-0.038684,0.080786 +0.50,48,0.35,180,0.051335,1554.99,2922.47,0.000000,0.726653,0.051335,-62.68,-0.038746,0.080436 +0.50,49,0.60,180,0.051365,1560.30,2929.34,0.000000,0.722515,0.051365,-57.37,-0.035465,0.079925 +0.50,50,0.55,180,0.050793,1562.63,2916.33,0.000000,0.714523,0.050793,-55.04,-0.034022,0.079292 +0.50,51,0.35,240,0.038848,1552.45,2850.99,0.000000,0.712946,0.038848,-65.22,-0.040319,0.071949 +0.50,52,0.30,300,0.040519,1564.47,2866.89,0.000000,0.717555,0.040519,-53.20,-0.032886,0.071916 +0.50,53,0.45,240,0.040254,1562.79,2863.85,0.000000,0.716303,0.040254,-54.88,-0.033924,0.071898 +0.50,54,0.55,240,0.039483,1564.34,2886.15,0.000000,0.712924,0.039483,-53.33,-0.032965,0.071204 +0.50,55,0.40,240,0.040333,1572.37,2920.64,0.000000,0.720766,0.040333,-45.30,-0.028005,0.070996 +0.50,56,0.60,240,0.039897,1571.27,2906.90,0.000000,0.707960,0.039897,-46.40,-0.028684,0.070801 +0.50,57,0.50,240,0.039050,1571.76,2891.66,0.000000,0.713507,0.039050,-45.91,-0.028379,0.070158 +0.50,58,0.35,300,0.035489,1572.57,2885.22,0.000000,0.718849,0.035489,-45.10,-0.027881,0.067585 +0.50,59,0.60,300,0.031740,1566.62,2879.79,0.000000,0.717183,0.031740,-51.05,-0.031558,0.065556 +0.50,60,0.45,300,0.032908,1575.56,2865.57,0.000000,0.717652,0.032908,-42.11,-0.026033,0.065480 +0.50,61,0.55,300,0.032681,1580.72,2907.12,0.000000,0.715460,0.032681,-36.95,-0.022839,0.064804 +0.50,62,0.50,300,0.031127,1574.21,2828.36,0.000000,0.722356,0.031127,-43.46,-0.026866,0.064368 +0.50,63,0.40,300,0.031646,1586.51,2894.44,0.000000,0.717587,0.031646,-31.16,-0.019261,0.063501 +0.50,64,0.65,120,0.028691,1579.74,2847.63,0.002217,0.716710,0.028691,-37.93,-0.023449,0.061667 +0.50,65,0.65,300,0.001907,1607.10,2851.93,0.000000,0.707610,0.001907,-10.57,-0.006537,0.040626 +0.50,66,0.65,180,0.002042,1622.51,2876.29,0.000000,0.714161,0.002042,4.84,0.002993,0.039178 +0.50,67,0.85,120,0.000191,1610.16,2851.69,0.000000,0.707600,0.000191,-7.51,-0.004645,0.039118 +0.50,68,0.85,180,0.000097,1611.01,2886.53,0.000000,0.710780,0.000097,-6.66,-0.004117,0.038967 +0.50,69,0.65,90,0.002381,1627.32,2940.35,0.000000,0.701528,0.002381,9.65,0.005965,0.038935 +0.50,70,0.65,60,0.000380,1615.89,2869.55,0.000000,0.708539,0.000380,-1.78,-0.001100,0.038677 +0.50,71,0.80,300,0.000097,1614.28,2894.85,0.000000,0.704156,0.000097,-3.39,-0.002097,0.038640 +0.50,72,0.70,180,0.000195,1615.01,2837.66,0.000000,0.706555,0.000195,-2.66,-0.001642,0.038635 +0.50,73,0.70,120,0.000475,1617.03,2875.35,0.000000,0.707083,0.000475,-0.64,-0.000397,0.038630 +0.50,74,0.85,240,0.000000,1613.74,2873.25,0.000000,0.698527,0.000000,-3.93,-0.002432,0.038626 +0.50,75,0.80,120,0.000098,1614.58,2891.62,0.000000,0.703151,0.000098,-3.09,-0.001908,0.038610 +0.50,76,0.70,90,0.000583,1619.38,2882.38,0.000000,0.705420,0.000583,1.71,0.001059,0.038470 +0.50,77,0.75,120,0.000000,1615.51,2889.12,0.000000,0.697339,0.000000,-2.16,-0.001336,0.038449 +0.50,78,0.80,240,0.000000,1615.79,2868.66,0.000000,0.694984,0.000000,-1.88,-0.001161,0.038421 +0.50,79,0.65,240,0.000288,1618.57,2902.61,0.000000,0.711011,0.000288,0.90,0.000555,0.038345 +0.50,80,0.70,240,0.000193,1619.07,2885.93,0.000000,0.715760,0.000193,1.40,0.000865,0.038228 +0.50,81,0.80,180,0.000000,1619.61,2889.72,0.000000,0.711998,0.000000,1.94,0.001201,0.038039 +0.50,82,0.85,300,0.000000,1620.49,2909.20,0.000000,0.699524,0.000000,2.82,0.001746,0.037951 +0.50,83,0.90,30,0.000096,1621.65,2874.52,0.000000,0.699511,0.000096,3.98,0.002463,0.037902 +0.50,84,0.90,60,0.000000,1621.15,2912.24,0.000000,0.695531,0.000000,3.48,0.002153,0.037885 +0.50,85,0.85,30,0.000000,1621.74,2864.67,0.000000,0.700772,0.000000,4.07,0.002517,0.037826 +0.50,86,0.90,300,0.000000,1623.36,2901.22,0.000000,0.697052,0.000000,5.69,0.003517,0.037664 +0.50,87,0.75,90,0.000098,1624.71,2910.93,0.000000,0.705235,0.000098,7.04,0.004355,0.037597 +0.50,88,0.75,240,0.000000,1624.06,2899.01,0.000000,0.712736,0.000000,6.39,0.003949,0.037594 +0.50,89,0.85,60,0.000000,1624.52,2882.25,0.000000,0.701807,0.000000,6.85,0.004234,0.037548 +0.50,90,0.90,120,0.000000,1624.60,2894.33,0.000000,0.707775,0.000000,6.93,0.004286,0.037540 +0.50,91,0.75,300,0.000000,1625.22,2943.36,0.000000,0.707208,0.000000,7.55,0.004666,0.037478 +0.50,92,0.80,30,0.000098,1626.37,2878.95,0.000000,0.702259,0.000098,8.70,0.005375,0.037432 +0.50,93,0.80,90,0.000099,1627.97,2888.85,0.000000,0.710349,0.000099,10.30,0.006367,0.037272 +0.50,94,0.80,60,0.000289,1629.55,2918.18,0.000000,0.708281,0.000289,11.88,0.007347,0.037247 +0.50,95,0.75,30,0.000097,1629.47,2911.31,0.000000,0.704297,0.000097,11.80,0.007294,0.037121 +0.50,96,0.90,90,0.000000,1629.24,2887.80,0.000000,0.712111,0.000000,11.57,0.007150,0.037076 +0.50,97,0.70,300,0.000099,1630.62,2900.21,0.000000,0.706277,0.000099,12.95,0.008003,0.037007 +0.50,98,0.90,180,0.000000,1630.13,2912.77,0.000000,0.709785,0.000000,12.46,0.007701,0.036987 +0.50,99,0.75,60,0.000000,1630.49,2932.52,0.000000,0.702632,0.000000,12.82,0.007927,0.036951 +0.50,100,0.90,240,0.000000,1631.30,2893.02,0.000000,0.701253,0.000000,13.63,0.008425,0.036870 +0.50,101,0.85,90,0.000000,1633.79,2928.67,0.000000,0.698301,0.000000,16.12,0.009967,0.036621 +0.50,102,0.75,180,0.000000,1635.06,2903.23,0.000000,0.700156,0.000000,17.39,0.010748,0.036494 +0.50,103,0.65,30,0.003976,1617.32,2867.45,0.071429,0.709049,0.003976,-0.35,-0.000219,0.026766 +0.50,104,0.70,30,0.000884,1619.76,2887.50,0.111111,0.707523,0.000884,2.09,0.001291,0.016421 +0.50,105,0.70,60,0.000293,1620.87,2922.66,0.250000,0.706078,0.000293,3.20,0.001981,-0.011882 +0.60,1,0.25,30,0.380129,1034.76,2725.84,0.148807,0.817032,0.380129,-584.05,-0.360788,0.332853 +0.60,2,0.20,30,0.369116,1069.56,2794.69,0.139920,0.812255,0.369116,-549.25,-0.339292,0.323442 +0.60,3,0.30,30,0.293170,1193.96,2794.69,0.115015,0.790275,0.293170,-424.84,-0.262443,0.262820 +0.60,4,0.20,60,0.252445,1222.03,2750.04,0.064168,0.780103,0.252445,-396.77,-0.245103,0.241675 +0.60,5,0.25,60,0.250399,1227.37,2777.01,0.066274,0.775303,0.250399,-391.43,-0.241804,0.239288 +0.60,6,0.30,60,0.247806,1235.08,2780.57,0.062158,0.781213,0.247806,-383.72,-0.237039,0.237524 +0.60,7,0.35,30,0.229111,1307.61,2857.78,0.062447,0.776161,0.229111,-311.20,-0.192239,0.217128 +0.60,8,0.60,30,0.225485,1301.93,2803.40,0.062265,0.778505,0.225485,-316.87,-0.195745,0.215193 +0.60,9,0.50,30,0.224005,1310.94,2816.05,0.063158,0.777527,0.224005,-307.86,-0.190180,0.213078 +0.60,10,0.40,30,0.222363,1314.30,2849.69,0.057418,0.774076,0.222363,-304.50,-0.188104,0.212740 +0.60,11,0.55,30,0.223066,1322.17,2847.68,0.061238,0.774634,0.223066,-296.63,-0.183240,0.211681 +0.60,12,0.45,30,0.224003,1320.05,2871.77,0.066652,0.773856,0.224003,-298.75,-0.184553,0.211466 +0.60,13,0.20,90,0.185284,1335.99,2806.59,0.026905,0.760989,0.185284,-282.82,-0.174707,0.190719 +0.60,14,0.25,90,0.184192,1342.48,2833.16,0.025634,0.756467,0.184192,-276.33,-0.170698,0.189560 +0.60,15,0.30,90,0.183137,1336.37,2813.70,0.032980,0.762140,0.183137,-282.43,-0.174471,0.187963 +0.60,16,0.25,120,0.146913,1383.69,2820.34,0.016980,0.749783,0.146913,-235.12,-0.145241,0.161074 +0.60,17,0.20,120,0.146503,1396.94,2886.23,0.016624,0.744716,0.146503,-221.87,-0.137055,0.159533 +0.60,18,0.30,120,0.136572,1405.22,2822.83,0.014615,0.750611,0.136572,-213.58,-0.131940,0.152155 +0.60,19,0.35,60,0.137915,1430.35,2842.70,0.012865,0.749841,0.137915,-188.45,-0.116414,0.150932 +0.60,20,0.45,60,0.136619,1431.77,2886.34,0.015572,0.749064,0.136619,-187.03,-0.115538,0.149342 +0.60,21,0.60,60,0.136102,1430.04,2864.46,0.015997,0.747533,0.136102,-188.77,-0.116610,0.149068 +0.60,22,0.50,60,0.135286,1442.98,2886.71,0.017720,0.750236,0.135286,-175.82,-0.108611,0.146858 +0.60,23,0.55,60,0.135634,1443.81,2876.02,0.018817,0.745324,0.135634,-175.00,-0.108104,0.146800 +0.60,24,0.40,60,0.131682,1436.73,2837.15,0.015787,0.745415,0.131682,-182.08,-0.112477,0.145347 +0.60,25,0.20,180,0.106327,1437.65,2808.27,0.005826,0.734539,0.106327,-181.15,-0.111905,0.129499 +0.60,26,0.25,180,0.103810,1450.22,2820.16,0.004787,0.737143,0.103810,-168.59,-0.104143,0.126688 +0.60,27,0.35,90,0.098265,1476.48,2844.55,0.005423,0.735908,0.098265,-142.32,-0.087919,0.120053 +0.60,28,0.50,90,0.097623,1482.45,2853.00,0.005020,0.737718,0.097623,-136.35,-0.084232,0.119087 +0.60,29,0.60,90,0.096189,1483.75,2852.95,0.000562,0.740433,0.096189,-135.05,-0.083427,0.118845 +0.60,30,0.55,90,0.097234,1488.64,2888.31,0.004484,0.733163,0.097234,-130.17,-0.080408,0.118303 +0.60,31,0.40,90,0.096192,1486.98,2895.16,0.005382,0.740970,0.096192,-131.82,-0.081431,0.117559 +0.60,32,0.45,90,0.095125,1490.73,2872.65,0.002770,0.739470,0.095125,-128.08,-0.079118,0.116961 +0.60,33,0.20,240,0.078813,1493.18,2832.82,0.001374,0.728105,0.078813,-125.62,-0.077601,0.105576 +0.60,34,0.25,240,0.075976,1505.28,2872.61,0.000000,0.730251,0.075976,-113.52,-0.070127,0.102655 +0.60,35,0.55,120,0.077015,1513.13,2861.32,0.000719,0.722617,0.077015,-105.67,-0.065277,0.102453 +0.60,36,0.45,120,0.077211,1516.67,2903.40,0.000722,0.732871,0.077211,-102.14,-0.063095,0.102237 +0.60,37,0.60,120,0.075187,1515.54,2902.55,0.000728,0.729216,0.075187,-103.26,-0.063790,0.100931 +0.60,38,0.30,240,0.072751,1501.04,2849.79,0.000751,0.726811,0.072751,-117.76,-0.072748,0.100672 +0.60,39,0.40,120,0.073458,1512.06,2859.10,0.000720,0.727258,0.073458,-106.74,-0.065940,0.100071 +0.60,40,0.50,120,0.073233,1514.15,2862.11,0.001429,0.732724,0.073233,-104.65,-0.064647,0.099562 +0.60,41,0.35,120,0.071774,1520.14,2881.49,0.002165,0.732493,0.071774,-98.67,-0.060952,0.097795 +0.60,42,0.25,300,0.064516,1513.58,2869.68,0.000000,0.716774,0.064516,-105.23,-0.065004,0.093804 +0.60,43,0.20,300,0.062986,1516.88,2861.63,0.000000,0.730386,0.062986,-101.93,-0.062965,0.092402 +0.60,44,0.30,300,0.061919,1521.46,2853.22,0.000000,0.726572,0.061919,-97.35,-0.060136,0.091197 +0.60,45,0.30,180,0.057366,1542.01,2889.30,0.000936,0.724848,0.057366,-76.80,-0.047442,0.085768 +0.60,46,0.60,180,0.053988,1540.30,2852.55,0.000000,0.724287,0.053988,-78.51,-0.048498,0.083762 +0.60,47,0.45,180,0.052615,1541.96,2856.82,0.000000,0.730717,0.052615,-76.85,-0.047470,0.082634 +0.60,48,0.35,180,0.052982,1550.58,2891.64,0.000000,0.721232,0.052982,-68.22,-0.042145,0.082029 +0.60,49,0.55,180,0.050959,1543.16,2893.52,0.000000,0.721210,0.050959,-75.65,-0.046730,0.081355 +0.60,50,0.50,180,0.051558,1551.00,2889.59,0.000000,0.713538,0.051558,-67.81,-0.041886,0.080991 +0.60,51,0.40,180,0.050180,1555.72,2872.12,0.000000,0.726084,0.050180,-63.08,-0.038969,0.079554 +0.60,52,0.60,240,0.040643,1562.66,2886.18,0.000000,0.720463,0.040643,-56.14,-0.034681,0.072184 +0.60,53,0.50,240,0.039821,1565.05,2886.19,0.000000,0.712942,0.039821,-53.75,-0.033207,0.071370 +0.60,54,0.55,240,0.039599,1564.39,2852.20,0.000000,0.721487,0.039599,-54.41,-0.033612,0.071280 +0.60,55,0.40,240,0.040301,1570.28,2923.00,0.000000,0.720482,0.040301,-48.53,-0.029978,0.071183 +0.60,56,0.45,240,0.038181,1563.61,2856.26,0.000000,0.719203,0.038181,-55.19,-0.034096,0.070366 +0.60,57,0.35,240,0.037224,1565.25,2868.14,0.000000,0.720705,0.037224,-53.55,-0.033082,0.069531 +0.60,58,0.40,300,0.033532,1567.86,2829.89,0.000000,0.723866,0.033532,-50.95,-0.031472,0.066686 +0.60,59,0.55,300,0.032354,1570.04,2876.69,0.000000,0.729078,0.032354,-48.77,-0.030125,0.065644 +0.60,60,0.60,300,0.032230,1569.22,2828.57,0.000000,0.712812,0.032230,-49.58,-0.030631,0.065639 +0.60,61,0.35,300,0.031879,1577.06,2873.70,0.000000,0.717475,0.031879,-41.75,-0.025789,0.064610 +0.60,62,0.45,300,0.031275,1579.01,2864.71,0.000000,0.720734,0.031275,-39.80,-0.024584,0.063991 +0.60,63,0.50,300,0.031565,1581.71,2863.79,0.000000,0.712428,0.031565,-37.10,-0.022915,0.063924 +0.60,64,0.65,60,0.012044,1601.22,2912.32,0.008621,0.712351,0.012044,-17.59,-0.010865,0.046585 +0.60,65,0.65,30,0.019856,1587.70,2882.04,0.045226,0.720117,0.019856,-31.11,-0.019216,0.046084 +0.60,66,0.65,120,0.007882,1604.99,2846.72,0.000000,0.704243,0.007882,-13.81,-0.008531,0.045018 +0.60,67,0.65,300,0.002772,1605.28,2843.01,0.000000,0.713946,0.002772,-13.52,-0.008354,0.041412 +0.60,68,0.65,90,0.003239,1619.22,2905.84,0.000000,0.707820,0.003239,0.42,0.000259,0.040345 +0.60,69,0.75,60,0.000840,1607.19,2843.74,0.000000,0.715398,0.000840,-11.62,-0.007175,0.039869 +0.60,70,0.85,90,0.000000,1603.20,2831.82,0.000000,0.720022,0.000000,-15.61,-0.009641,0.039680 +0.60,71,0.70,300,0.001037,1612.69,2872.18,0.000000,0.706558,0.001037,-6.12,-0.003780,0.039458 +0.60,72,0.90,180,0.000000,1606.55,2855.32,0.000000,0.703222,0.000000,-12.25,-0.007570,0.039345 +0.60,73,0.90,30,0.000235,1609.60,2879.77,0.000000,0.705721,0.000235,-9.21,-0.005687,0.039205 +0.60,74,0.70,120,0.001026,1616.94,2887.19,0.000000,0.703166,0.001026,-1.87,-0.001154,0.039025 +0.60,75,0.85,120,0.000079,1610.34,2863.01,0.000000,0.705252,0.000079,-8.47,-0.005229,0.039021 +0.60,76,0.90,300,0.000000,1610.77,2865.62,0.000000,0.703188,0.000000,-8.03,-0.004963,0.038923 +0.60,77,0.80,90,0.000079,1611.36,2850.06,0.000000,0.708037,0.000079,-7.45,-0.004602,0.038920 +0.60,78,0.70,60,0.000709,1615.90,2867.83,0.000000,0.708783,0.000709,-2.91,-0.001795,0.038906 +0.60,79,0.90,60,0.000000,1610.94,2860.96,0.000000,0.706417,0.000000,-7.86,-0.004858,0.038906 +0.60,80,0.85,180,0.000000,1611.24,2879.79,0.000000,0.704349,0.000000,-7.56,-0.004673,0.038876 +0.60,81,0.80,120,0.000159,1612.56,2904.72,0.000000,0.711859,0.000159,-6.24,-0.003855,0.038855 +0.60,82,0.85,240,0.000000,1611.67,2861.18,0.000000,0.704845,0.000000,-7.14,-0.004410,0.038833 +0.60,83,0.70,90,0.000234,1615.12,2882.76,0.000000,0.711591,0.000234,-3.68,-0.002275,0.038652 +0.60,84,0.70,180,0.000000,1614.09,2888.75,0.000000,0.708829,0.000000,-4.72,-0.002913,0.038591 +0.60,85,0.90,90,0.000000,1615.31,2839.73,0.000000,0.704185,0.000000,-3.50,-0.002161,0.038469 +0.60,86,0.85,60,0.000000,1615.63,2879.29,0.000000,0.709348,0.000000,-3.18,-0.001962,0.038437 +0.60,87,0.75,300,0.000000,1616.00,2867.28,0.000000,0.710697,0.000000,-2.80,-0.001731,0.038400 +0.60,88,0.75,180,0.000000,1616.09,2898.95,0.000000,0.703827,0.000000,-2.71,-0.001677,0.038391 +0.60,89,0.65,240,0.000565,1620.58,2891.00,0.000000,0.715890,0.000565,1.78,0.001098,0.038338 +0.60,90,0.85,30,0.000078,1617.69,2891.94,0.000000,0.709635,0.000078,-1.11,-0.000688,0.038285 +0.60,91,0.75,90,0.000158,1618.49,2888.85,0.000000,0.706255,0.000158,-0.32,-0.000197,0.038262 +0.60,92,0.75,120,0.000156,1618.98,2889.38,0.000000,0.704063,0.000156,0.18,0.000111,0.038211 +0.60,93,0.90,240,0.000000,1619.67,2913.01,0.000000,0.710627,0.000000,0.87,0.000537,0.038033 +0.60,94,0.65,180,0.000554,1624.18,2919.17,0.000000,0.701085,0.000554,5.37,0.003318,0.037970 +0.60,95,0.70,240,0.000000,1621.94,2898.26,0.000000,0.713906,0.000000,3.13,0.001934,0.037806 +0.60,96,0.80,180,0.000000,1622.15,2877.33,0.000000,0.701891,0.000000,3.34,0.002066,0.037785 +0.60,97,0.75,30,0.000239,1624.86,2879.02,0.000000,0.704564,0.000239,6.05,0.003738,0.037681 +0.60,98,0.90,120,0.000000,1623.46,2892.57,0.000000,0.709782,0.000000,4.66,0.002878,0.037654 +0.60,99,0.80,300,0.000000,1624.02,2908.89,0.000000,0.715249,0.000000,5.21,0.003220,0.037598 +0.60,100,0.80,240,0.000000,1626.20,2897.23,0.000000,0.712993,0.000000,7.40,0.004570,0.037380 +0.60,101,0.85,300,0.000000,1626.70,2890.82,0.000000,0.707948,0.000000,7.89,0.004874,0.037330 +0.60,102,0.75,240,0.000155,1628.27,2894.49,0.000000,0.699891,0.000155,9.47,0.005848,0.037281 +0.60,103,0.80,60,0.000308,1631.74,2918.21,0.000000,0.707310,0.000308,12.93,0.007989,0.037042 +0.60,104,0.70,30,0.008743,1601.86,2855.33,0.077778,0.712526,0.008743,-16.95,-0.010468,0.030378 +0.60,105,0.80,30,0.000159,1618.24,2912.50,0.166667,0.709775,0.000159,-0.56,-0.000346,0.004953 diff --git a/Tools/SmartLoadSensitivity/output/smartload_robot_cohort_summary.txt b/Tools/SmartLoadSensitivity/output/smartload_robot_cohort_summary.txt new file mode 100644 index 0000000..f3844af --- /dev/null +++ b/Tools/SmartLoadSensitivity/output/smartload_robot_cohort_summary.txt @@ -0,0 +1,8 @@ +Robot Cohort Summary +=================== +reward_heavy: 1124 +interstitial_focus: 1024 +splash_driven: 985 +balanced: 885 +churn_sensitive: 499 +network_bound: 483 diff --git a/Tools/SmartLoadSensitivity/output/smartload_robot_cohorts.csv b/Tools/SmartLoadSensitivity/output/smartload_robot_cohorts.csv new file mode 100644 index 0000000..5f701c7 --- /dev/null +++ b/Tools/SmartLoadSensitivity/output/smartload_robot_cohorts.csv @@ -0,0 +1,5001 @@ +robot_id,archetype,enter_reward,enter_interstitial,enter_splash,request_reward,request_interstitial,request_splash,fill_affinity,latency_affinity,retention_affinity,network_wifi,network_4g,network_3g,network_2g +bot_00000,splash_driven,0.6553,0.6865,1.0000,1.0000,1.0000,1.0000,0.7812,0.9524,0.9504,0.572506,0.253229,0.125928,0.048337 +bot_00001,splash_driven,1.0000,0.7877,1.0000,0.8838,0.9125,1.0000,0.7844,0.9536,0.8800,0.712907,0.230800,0.046874,0.009419 +bot_00002,splash_driven,0.8897,0.9496,1.0000,0.8844,0.9804,1.0000,1.0000,1.0000,1.0000,0.705423,0.217854,0.067212,0.009511 +bot_00003,balanced,1.0000,0.9951,1.0000,1.0000,1.0000,1.0000,1.0000,0.8262,1.0000,0.344594,0.294294,0.164386,0.196726 +bot_00004,interstitial_focus,0.4929,1.0000,0.7567,0.8217,1.0000,0.5971,1.0000,1.0000,1.0000,0.267813,0.561949,0.096130,0.074108 +bot_00005,reward_heavy,1.0000,0.9712,0.8132,1.0000,0.6516,0.7916,1.0000,0.7940,1.0000,0.498976,0.239056,0.250897,0.011071 +bot_00006,splash_driven,0.6755,0.7911,1.0000,1.0000,1.0000,1.0000,0.7589,0.8711,0.9467,0.880324,0.078444,0.029524,0.011709 +bot_00007,balanced,1.0000,1.0000,1.0000,0.8375,1.0000,1.0000,0.8990,0.8792,1.0000,0.394520,0.427069,0.167717,0.010693 +bot_00008,churn_sensitive,0.5000,0.8724,0.5645,0.7377,0.6154,0.4062,0.7262,1.0000,0.6907,0.280876,0.229820,0.300887,0.188418 +bot_00009,interstitial_focus,0.5995,1.0000,0.6633,0.9013,1.0000,0.4832,1.0000,1.0000,0.9926,0.280452,0.455879,0.123907,0.139761 +bot_00010,reward_heavy,1.0000,0.9275,1.0000,1.0000,0.7994,0.4184,1.0000,0.7819,1.0000,0.586845,0.232752,0.079302,0.101100 +bot_00011,reward_heavy,1.0000,1.0000,0.8903,1.0000,0.9278,0.4363,1.0000,0.9027,1.0000,0.694114,0.257615,0.009383,0.038887 +bot_00012,interstitial_focus,0.5533,1.0000,1.0000,0.6263,1.0000,0.8561,1.0000,0.9539,1.0000,0.257828,0.463296,0.091217,0.187659 +bot_00013,network_bound,0.8575,0.8763,0.9240,1.0000,0.7297,0.8112,0.8330,1.0000,0.8675,0.023282,0.130855,0.468923,0.376940 +bot_00014,interstitial_focus,0.7667,1.0000,1.0000,0.6474,1.0000,0.6489,0.9417,0.9159,1.0000,0.329256,0.499915,0.157610,0.013220 +bot_00015,interstitial_focus,0.9021,1.0000,0.7015,0.6526,1.0000,0.5236,1.0000,1.0000,1.0000,0.244213,0.322767,0.257298,0.175722 +bot_00016,interstitial_focus,0.7720,1.0000,0.9575,0.9947,1.0000,0.8462,0.9546,1.0000,1.0000,0.327062,0.425395,0.114297,0.133246 +bot_00017,interstitial_focus,0.6678,1.0000,1.0000,0.8122,1.0000,0.6208,1.0000,1.0000,1.0000,0.336996,0.373893,0.186864,0.102247 +bot_00018,network_bound,0.8688,0.8285,0.8938,1.0000,0.5705,0.6572,0.5829,1.0000,0.8669,0.218467,0.180859,0.147589,0.453085 +bot_00019,interstitial_focus,0.7783,1.0000,0.8104,0.7717,1.0000,0.5745,0.9753,1.0000,1.0000,0.192098,0.348663,0.307026,0.152213 +bot_00020,splash_driven,1.0000,0.8190,1.0000,1.0000,1.0000,1.0000,1.0000,0.8958,1.0000,0.666391,0.053774,0.159468,0.120368 +bot_00021,reward_heavy,1.0000,1.0000,0.9587,1.0000,0.9166,0.4836,0.9885,0.9747,1.0000,0.607913,0.341373,0.021642,0.029072 +bot_00022,splash_driven,1.0000,1.0000,1.0000,1.0000,0.8733,1.0000,1.0000,1.0000,1.0000,0.783639,0.051395,0.154203,0.010764 +bot_00023,reward_heavy,1.0000,1.0000,0.6866,1.0000,0.8972,0.7642,1.0000,1.0000,1.0000,0.594320,0.255371,0.142295,0.008014 +bot_00024,churn_sensitive,0.4317,0.4890,0.3267,0.7482,0.7177,0.2892,0.6494,1.0000,0.6776,0.116153,0.173410,0.352280,0.358157 +bot_00025,reward_heavy,1.0000,1.0000,0.8400,1.0000,0.6598,0.5723,1.0000,0.7282,1.0000,0.645046,0.212839,0.012719,0.129396 +bot_00026,network_bound,0.8226,0.6382,1.0000,1.0000,0.7119,0.7231,0.6083,1.0000,0.9010,0.058596,0.038995,0.372682,0.529726 +bot_00027,balanced,0.8527,0.9545,0.9448,0.8336,1.0000,0.9997,1.0000,0.9411,1.0000,0.439105,0.357473,0.194413,0.009008 +bot_00028,balanced,0.9040,1.0000,1.0000,1.0000,1.0000,1.0000,0.9488,0.8635,0.9444,0.405811,0.186322,0.306622,0.101245 +bot_00029,interstitial_focus,0.6463,1.0000,0.6102,0.5885,1.0000,0.5617,0.9914,1.0000,1.0000,0.441125,0.302416,0.196348,0.060110 +bot_00030,splash_driven,0.9153,1.0000,1.0000,0.8489,1.0000,1.0000,0.8736,0.9472,1.0000,0.730265,0.137673,0.123320,0.008743 +bot_00031,splash_driven,0.7958,0.9095,1.0000,0.9587,0.9552,1.0000,1.0000,0.8309,1.0000,0.628225,0.304778,0.019538,0.047459 +bot_00032,interstitial_focus,0.6778,1.0000,1.0000,0.7814,1.0000,0.9153,0.8346,1.0000,0.9452,0.326977,0.368116,0.174826,0.130081 +bot_00033,splash_driven,0.7815,1.0000,1.0000,0.8654,0.9482,1.0000,1.0000,0.8419,1.0000,0.812355,0.086761,0.011665,0.089219 +bot_00034,splash_driven,0.7381,0.6980,1.0000,1.0000,1.0000,1.0000,0.8506,1.0000,0.8936,0.928228,0.049267,0.011253,0.011253 +bot_00035,splash_driven,0.6632,0.7089,1.0000,1.0000,1.0000,1.0000,0.7902,0.9914,1.0000,0.795885,0.034951,0.113031,0.056133 +bot_00036,balanced,1.0000,0.9726,0.9841,1.0000,1.0000,0.8323,1.0000,0.9934,0.9212,0.457962,0.369613,0.161794,0.010630 +bot_00037,balanced,1.0000,1.0000,1.0000,0.9755,0.7873,0.9874,0.8792,0.8771,1.0000,0.436466,0.210496,0.339803,0.013235 +bot_00038,splash_driven,1.0000,1.0000,1.0000,0.8678,1.0000,1.0000,0.8376,1.0000,0.9775,0.776354,0.200068,0.011789,0.011789 +bot_00039,interstitial_focus,0.5513,1.0000,0.6619,0.8445,1.0000,0.7733,1.0000,0.9430,0.9724,0.396138,0.346731,0.235956,0.021175 +bot_00040,balanced,1.0000,0.9985,1.0000,0.8477,1.0000,1.0000,0.9198,1.0000,0.9861,0.355944,0.447468,0.165482,0.031106 +bot_00041,interstitial_focus,0.8423,1.0000,0.6279,0.9151,1.0000,0.5721,0.8551,1.0000,1.0000,0.371189,0.251352,0.295146,0.082312 +bot_00042,splash_driven,0.7253,0.6979,1.0000,0.8182,1.0000,1.0000,0.7986,1.0000,0.8851,0.720484,0.260407,0.009555,0.009555 +bot_00043,network_bound,0.6263,0.6391,0.9888,0.8890,0.5843,0.7157,0.5348,1.0000,0.8877,0.035098,0.233776,0.216664,0.514462 +bot_00044,balanced,0.8919,0.9960,1.0000,0.9952,1.0000,0.8844,0.8712,1.0000,0.9431,0.339224,0.469206,0.098177,0.093392 +bot_00045,churn_sensitive,0.3239,0.7324,0.2663,0.6911,0.4119,0.4394,0.6984,1.0000,0.4942,0.152318,0.290286,0.243770,0.313626 +bot_00046,splash_driven,0.6588,1.0000,1.0000,1.0000,0.9346,1.0000,0.8737,1.0000,0.9834,0.645595,0.297077,0.047473,0.009855 +bot_00047,splash_driven,0.7902,0.7671,1.0000,1.0000,1.0000,1.0000,0.9122,0.9982,1.0000,0.742478,0.044407,0.112407,0.100708 +bot_00048,splash_driven,0.6894,0.9640,1.0000,1.0000,1.0000,1.0000,0.9374,1.0000,1.0000,0.679742,0.165552,0.144852,0.009854 +bot_00049,interstitial_focus,0.5854,1.0000,0.8033,0.8768,1.0000,0.8434,1.0000,1.0000,1.0000,0.321322,0.455353,0.212355,0.010969 +bot_00050,interstitial_focus,0.7164,1.0000,0.8584,0.8605,1.0000,0.6079,1.0000,0.9492,1.0000,0.259593,0.460163,0.270902,0.009342 +bot_00051,network_bound,0.9769,0.9428,0.9036,0.7130,0.5643,0.8322,0.7508,1.0000,0.8371,0.046421,0.061015,0.415926,0.476638 +bot_00052,splash_driven,0.6416,1.0000,1.0000,0.9468,1.0000,1.0000,0.9768,1.0000,0.8509,0.668745,0.194372,0.128846,0.008038 +bot_00053,reward_heavy,1.0000,1.0000,0.9903,1.0000,0.8296,0.8213,0.9027,1.0000,1.0000,0.585036,0.219793,0.182524,0.012648 +bot_00054,splash_driven,0.8248,1.0000,1.0000,0.8567,0.9325,1.0000,0.7625,0.9636,1.0000,0.663944,0.188465,0.139448,0.008144 +bot_00055,splash_driven,0.8885,0.7257,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9671,0.616486,0.280272,0.094696,0.008547 +bot_00056,network_bound,0.7929,0.8043,0.8056,0.8267,0.7615,0.5075,0.5930,1.0000,0.9333,0.011710,0.262649,0.357623,0.368018 +bot_00057,interstitial_focus,0.8433,1.0000,1.0000,0.7126,1.0000,0.4835,0.9010,1.0000,1.0000,0.448750,0.348712,0.192338,0.010200 +bot_00058,reward_heavy,1.0000,0.8756,0.9827,1.0000,0.8151,0.4714,0.9379,0.7066,1.0000,0.567130,0.336180,0.086414,0.010276 +bot_00059,churn_sensitive,0.7359,0.6524,0.5191,0.7941,0.4290,0.6670,0.8653,1.0000,0.5374,0.132804,0.253191,0.346394,0.267611 +bot_00060,balanced,0.8356,0.9030,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.381394,0.293819,0.170092,0.154694 +bot_00061,churn_sensitive,0.6616,0.5049,0.2828,0.4416,0.6668,0.6407,0.8285,1.0000,0.6594,0.202820,0.297600,0.394851,0.104729 +bot_00062,splash_driven,0.8025,1.0000,1.0000,0.9014,0.8473,1.0000,0.7520,0.9641,0.9302,0.844773,0.127329,0.013949,0.013949 +bot_00063,reward_heavy,1.0000,0.6248,0.9147,1.0000,0.7775,0.5860,1.0000,0.9288,1.0000,0.644949,0.131591,0.213620,0.009841 +bot_00064,reward_heavy,1.0000,0.5823,0.8403,1.0000,0.6137,0.4686,1.0000,0.9262,1.0000,0.428428,0.301325,0.201905,0.068342 +bot_00065,splash_driven,0.8800,0.9829,1.0000,1.0000,1.0000,1.0000,0.8006,1.0000,0.8969,0.835010,0.114176,0.040713,0.010100 +bot_00066,interstitial_focus,0.9211,1.0000,1.0000,0.6385,1.0000,0.9131,0.9125,1.0000,0.9988,0.308210,0.429211,0.254317,0.008262 +bot_00067,balanced,0.8954,0.9470,0.9045,1.0000,0.9881,0.7845,0.9799,0.9809,0.9671,0.344991,0.497922,0.145488,0.011600 +bot_00068,network_bound,0.9541,0.8042,0.9325,0.9439,0.7777,0.8228,0.7186,1.0000,0.9220,0.222629,0.050336,0.347211,0.379824 +bot_00069,churn_sensitive,0.7445,0.5325,0.4053,0.5506,0.7329,0.2403,0.5773,1.0000,0.4863,0.231467,0.332335,0.315406,0.120793 +bot_00070,network_bound,0.6431,0.9121,0.5887,1.0000,0.8986,0.8729,0.5591,1.0000,0.9007,0.057445,0.091523,0.372881,0.478151 +bot_00071,splash_driven,0.9791,0.9494,1.0000,1.0000,0.9045,1.0000,0.8199,1.0000,0.9040,0.723345,0.095107,0.170818,0.010730 +bot_00072,reward_heavy,1.0000,0.6673,0.9272,1.0000,0.9102,0.8017,0.8931,0.8933,1.0000,0.675276,0.301678,0.011523,0.011523 +bot_00073,reward_heavy,1.0000,0.9010,0.6448,1.0000,0.8871,0.6459,0.9542,0.9320,1.0000,0.592023,0.260947,0.010467,0.136562 +bot_00074,reward_heavy,1.0000,0.8010,0.9409,1.0000,0.8542,0.5676,1.0000,0.9974,1.0000,0.532440,0.297924,0.053655,0.115981 +bot_00075,balanced,0.9531,1.0000,0.9101,1.0000,0.9864,1.0000,1.0000,1.0000,0.9444,0.260505,0.403474,0.247262,0.088758 +bot_00076,network_bound,0.9565,0.8168,0.8422,0.7422,0.8275,0.5087,0.6868,1.0000,0.9288,0.070912,0.120947,0.277133,0.531009 +bot_00077,churn_sensitive,0.3819,0.4955,0.5580,0.5629,0.5321,0.3700,0.7572,1.0000,0.4896,0.193646,0.262292,0.373704,0.170357 +bot_00078,reward_heavy,1.0000,0.9904,0.7965,1.0000,0.8340,0.7632,1.0000,0.8570,1.0000,0.576027,0.152603,0.141783,0.129588 +bot_00079,network_bound,1.0000,0.6544,0.9355,0.8716,0.9115,0.8950,0.5933,1.0000,0.8224,0.211570,0.225116,0.233217,0.330096 +bot_00080,balanced,1.0000,0.9632,0.8775,0.8337,0.8070,1.0000,1.0000,0.8347,0.9710,0.438808,0.339520,0.209922,0.011751 +bot_00081,interstitial_focus,0.9129,1.0000,1.0000,0.9306,1.0000,0.5648,0.9843,1.0000,1.0000,0.342726,0.327364,0.190466,0.139444 +bot_00082,network_bound,0.7858,1.0000,0.8710,0.7346,0.9217,0.5294,0.5982,1.0000,0.7558,0.192756,0.230628,0.157902,0.418714 +bot_00083,churn_sensitive,0.5570,0.7679,0.4076,0.4407,0.4510,0.2726,0.8632,1.0000,0.4942,0.250308,0.186216,0.215777,0.347699 +bot_00084,churn_sensitive,0.6564,0.5365,0.2828,0.7730,0.3306,0.3546,0.5864,1.0000,0.4932,0.191948,0.311124,0.211676,0.285252 +bot_00085,splash_driven,1.0000,0.9408,1.0000,0.9511,0.9135,1.0000,1.0000,0.9968,0.8648,0.730149,0.247984,0.010934,0.010934 +bot_00086,interstitial_focus,0.8521,1.0000,0.6437,0.6474,1.0000,0.8071,1.0000,0.9661,1.0000,0.295382,0.383691,0.309428,0.011498 +bot_00087,reward_heavy,1.0000,0.9855,0.9116,1.0000,0.6351,0.5172,1.0000,0.7488,1.0000,0.570387,0.203984,0.214803,0.010825 +bot_00088,churn_sensitive,0.5116,0.7525,0.5984,0.7017,0.3884,0.6108,0.6718,1.0000,0.5209,0.332151,0.200631,0.402936,0.064282 +bot_00089,network_bound,0.8662,0.8077,0.9491,0.7827,0.8695,0.7912,0.8081,1.0000,0.8624,0.234343,0.275557,0.208710,0.281389 +bot_00090,balanced,1.0000,0.9459,1.0000,0.8955,1.0000,1.0000,0.9223,1.0000,0.9640,0.354380,0.383556,0.209783,0.052281 +bot_00091,balanced,0.8629,1.0000,1.0000,1.0000,1.0000,1.0000,0.9888,0.8462,0.9567,0.546085,0.202646,0.099333,0.151935 +bot_00092,reward_heavy,1.0000,0.9799,0.6564,1.0000,0.6847,0.5152,1.0000,0.8111,1.0000,0.683137,0.209272,0.094831,0.012760 +bot_00093,splash_driven,0.8937,0.8008,1.0000,0.8934,0.8642,1.0000,0.9656,0.8705,0.8854,0.606976,0.251446,0.133813,0.007764 +bot_00094,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9655,1.0000,0.310508,0.431550,0.248008,0.009933 +bot_00095,network_bound,0.9874,0.6925,0.6714,0.7571,0.6803,0.6335,0.6981,1.0000,0.8378,0.150811,0.157475,0.176429,0.515285 +bot_00096,splash_driven,0.7626,0.8914,1.0000,0.9200,0.9716,1.0000,1.0000,1.0000,1.0000,0.716321,0.064844,0.137280,0.081554 +bot_00097,balanced,0.8657,1.0000,0.8696,0.9502,1.0000,1.0000,0.9158,1.0000,0.9759,0.334525,0.243308,0.233681,0.188485 +bot_00098,interstitial_focus,0.4836,1.0000,0.6525,0.9434,1.0000,0.8740,0.8950,1.0000,1.0000,0.281971,0.404457,0.291637,0.021935 +bot_00099,balanced,1.0000,1.0000,1.0000,1.0000,0.8075,0.9389,0.8784,0.8866,0.9029,0.447857,0.370504,0.112292,0.069347 +bot_00100,network_bound,0.7516,0.9239,1.0000,0.8789,0.8871,0.9028,0.5837,1.0000,0.7352,0.206608,0.288191,0.237156,0.268045 +bot_00101,reward_heavy,1.0000,0.9908,0.7153,1.0000,0.5967,0.7933,0.9386,0.7719,1.0000,0.588972,0.131229,0.226897,0.052902 +bot_00102,reward_heavy,1.0000,0.6462,0.6523,1.0000,0.6568,0.8243,1.0000,1.0000,1.0000,0.520505,0.393578,0.074684,0.011234 +bot_00103,interstitial_focus,0.5931,1.0000,0.9361,0.8257,1.0000,0.6290,0.8830,0.9756,1.0000,0.236737,0.503243,0.249253,0.010766 +bot_00104,splash_driven,0.7144,0.9790,1.0000,1.0000,1.0000,1.0000,0.8896,1.0000,0.9894,0.635425,0.237945,0.051884,0.074746 +bot_00105,interstitial_focus,0.8817,1.0000,1.0000,0.8673,1.0000,0.9067,1.0000,1.0000,1.0000,0.333096,0.392161,0.191265,0.083478 +bot_00106,churn_sensitive,0.5859,0.6566,0.3905,0.3872,0.5079,0.2458,0.5809,1.0000,0.6536,0.302430,0.145952,0.411345,0.140273 +bot_00107,balanced,1.0000,1.0000,0.9771,0.9130,1.0000,0.8522,0.9056,0.8910,1.0000,0.359057,0.507773,0.121130,0.012040 +bot_00108,splash_driven,0.7909,0.9805,1.0000,1.0000,0.8459,1.0000,0.9593,0.9941,0.8881,0.621718,0.247135,0.009508,0.121638 +bot_00109,splash_driven,0.8528,1.0000,1.0000,0.9688,1.0000,1.0000,1.0000,0.9239,0.9019,0.593551,0.231880,0.142528,0.032041 +bot_00110,balanced,1.0000,0.9427,1.0000,0.9047,1.0000,1.0000,0.9771,0.9805,1.0000,0.539959,0.336988,0.112473,0.010580 +bot_00111,churn_sensitive,0.6817,0.8587,0.3985,0.5465,0.5669,0.6171,0.7982,1.0000,0.5465,0.131802,0.296251,0.421528,0.150419 +bot_00112,balanced,1.0000,0.9194,0.8711,0.9732,1.0000,0.9430,0.9240,0.8494,1.0000,0.582665,0.253117,0.131007,0.033211 +bot_00113,reward_heavy,1.0000,0.8864,0.6338,1.0000,0.6859,0.7200,1.0000,0.6971,1.0000,0.524632,0.330656,0.026315,0.118396 +bot_00114,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9341,1.0000,0.9791,0.755746,0.163762,0.012150,0.068342 +bot_00115,interstitial_focus,0.5760,1.0000,0.7747,0.8289,1.0000,0.8798,1.0000,0.9519,1.0000,0.409520,0.405582,0.175741,0.009157 +bot_00116,reward_heavy,1.0000,0.8002,0.6874,1.0000,0.9728,0.7373,1.0000,0.9563,1.0000,0.443894,0.341045,0.180861,0.034200 +bot_00117,balanced,0.8426,1.0000,1.0000,1.0000,1.0000,1.0000,0.9782,1.0000,0.9711,0.593292,0.293826,0.100141,0.012741 +bot_00118,network_bound,0.9553,0.9239,1.0000,0.9116,0.8562,0.6335,0.5567,1.0000,0.9027,0.153064,0.049968,0.320427,0.476541 +bot_00119,splash_driven,0.9336,0.8229,1.0000,0.8190,1.0000,1.0000,1.0000,0.9498,0.9710,0.678948,0.290249,0.020358,0.010445 +bot_00120,reward_heavy,1.0000,0.8860,0.7726,1.0000,0.8231,0.5932,1.0000,1.0000,1.0000,0.646783,0.254754,0.046246,0.052217 +bot_00121,interstitial_focus,0.6842,1.0000,1.0000,0.8763,1.0000,0.4810,1.0000,1.0000,1.0000,0.362952,0.420688,0.145441,0.070919 +bot_00122,interstitial_focus,0.7894,1.0000,0.7387,0.9535,1.0000,0.8395,1.0000,0.8852,0.9798,0.372099,0.341278,0.272675,0.013949 +bot_00123,interstitial_focus,0.7637,1.0000,1.0000,0.6547,1.0000,0.6776,0.9527,1.0000,0.9790,0.288443,0.552572,0.149067,0.009918 +bot_00124,balanced,0.8879,1.0000,1.0000,0.9552,0.8129,1.0000,1.0000,1.0000,0.9742,0.349784,0.372181,0.171267,0.106768 +bot_00125,interstitial_focus,0.8313,1.0000,0.6491,0.9627,1.0000,0.7376,0.8656,0.8742,1.0000,0.227234,0.533408,0.229835,0.009522 +bot_00126,interstitial_focus,0.9411,1.0000,0.9746,0.9561,1.0000,0.8021,1.0000,1.0000,0.9473,0.230423,0.445120,0.302247,0.022210 +bot_00127,reward_heavy,1.0000,0.6134,0.7021,1.0000,0.6513,0.4378,0.9418,0.8576,1.0000,0.567243,0.370056,0.012984,0.049717 +bot_00128,network_bound,0.9051,0.7580,0.7361,0.9860,0.9144,0.6262,0.6247,1.0000,0.7270,0.149325,0.256338,0.197887,0.396450 +bot_00129,splash_driven,0.8184,1.0000,1.0000,0.8453,0.8582,1.0000,1.0000,1.0000,0.9165,0.619793,0.167687,0.054944,0.157575 +bot_00130,reward_heavy,1.0000,0.7220,0.6059,1.0000,0.5552,0.6613,1.0000,0.8332,1.0000,0.574303,0.403208,0.012483,0.010006 +bot_00131,network_bound,1.0000,0.6284,0.8698,0.9915,0.8780,0.6528,0.8027,1.0000,0.7421,0.123223,0.229868,0.260927,0.385982 +bot_00132,splash_driven,1.0000,0.8158,1.0000,1.0000,1.0000,1.0000,0.9178,1.0000,0.9703,0.713834,0.241848,0.009493,0.034826 +bot_00133,splash_driven,1.0000,0.8469,1.0000,1.0000,0.8920,1.0000,0.8675,1.0000,0.9161,0.725079,0.256518,0.009201,0.009201 +bot_00134,balanced,1.0000,1.0000,1.0000,0.8478,1.0000,1.0000,0.9950,0.8617,0.9328,0.369985,0.432555,0.188242,0.009218 +bot_00135,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.409964,0.356125,0.223447,0.010464 +bot_00136,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9886,1.0000,1.0000,1.0000,0.9899,0.845619,0.134894,0.009743,0.009743 +bot_00137,interstitial_focus,0.9500,1.0000,0.7768,0.7049,1.0000,0.7884,0.8250,0.8499,1.0000,0.290725,0.449246,0.229587,0.030442 +bot_00138,reward_heavy,1.0000,0.8712,0.9591,1.0000,0.8039,0.8145,1.0000,0.7139,1.0000,0.465701,0.297556,0.208015,0.028728 +bot_00139,balanced,0.8531,1.0000,0.9283,0.8997,1.0000,1.0000,1.0000,0.8288,0.9463,0.509341,0.304307,0.102794,0.083559 +bot_00140,balanced,0.8189,0.9913,0.9527,1.0000,0.8961,0.8265,1.0000,1.0000,0.9547,0.488606,0.352721,0.128862,0.029810 +bot_00141,splash_driven,0.8344,1.0000,1.0000,0.8848,0.9787,1.0000,0.9585,0.9639,0.9363,0.678416,0.240021,0.073048,0.008515 +bot_00142,reward_heavy,1.0000,0.7695,0.9272,1.0000,0.7168,0.4271,0.9386,0.9542,1.0000,0.650865,0.163580,0.167575,0.017981 +bot_00143,reward_heavy,1.0000,0.7567,0.5857,1.0000,0.5835,0.5333,1.0000,0.8583,1.0000,0.558394,0.290008,0.065158,0.086440 +bot_00144,interstitial_focus,0.8950,1.0000,0.7639,0.8910,1.0000,0.4951,0.8080,0.9475,0.9870,0.357157,0.453954,0.180269,0.008620 +bot_00145,churn_sensitive,0.4880,0.6694,0.6519,0.8116,0.5960,0.2423,0.6060,1.0000,0.6865,0.098523,0.280312,0.445887,0.175278 +bot_00146,interstitial_focus,0.5868,1.0000,0.7025,0.9746,1.0000,0.6070,0.8932,0.9874,0.9687,0.333349,0.355634,0.182964,0.128052 +bot_00147,interstitial_focus,0.9538,1.0000,0.6704,0.7635,1.0000,0.6341,0.9357,0.9273,0.9692,0.272971,0.554138,0.162582,0.010309 +bot_00148,churn_sensitive,0.4364,0.5660,0.3168,0.7212,0.4313,0.3822,0.7363,1.0000,0.5079,0.267774,0.251336,0.320283,0.160608 +bot_00149,splash_driven,0.8375,1.0000,1.0000,0.8216,1.0000,1.0000,1.0000,0.8513,0.8701,0.669842,0.218556,0.103850,0.007752 +bot_00150,interstitial_focus,0.7535,1.0000,0.6610,0.9646,1.0000,0.5921,1.0000,1.0000,1.0000,0.368434,0.423478,0.192947,0.015141 +bot_00151,interstitial_focus,0.7081,1.0000,0.8757,0.8498,1.0000,0.8933,0.8142,0.8916,1.0000,0.176438,0.565470,0.247888,0.010204 +bot_00152,reward_heavy,1.0000,0.9410,0.5642,1.0000,0.5613,0.7688,0.9767,1.0000,1.0000,0.580668,0.244587,0.012707,0.162038 +bot_00153,balanced,1.0000,0.9840,1.0000,0.9571,1.0000,1.0000,0.9233,1.0000,1.0000,0.569034,0.227214,0.193206,0.010546 +bot_00154,churn_sensitive,0.6493,0.5403,0.5700,0.4645,0.4902,0.2528,0.7728,1.0000,0.5463,0.114107,0.324963,0.230963,0.329966 +bot_00155,balanced,1.0000,1.0000,1.0000,0.9829,0.9412,1.0000,0.9440,0.8053,0.9963,0.499583,0.318384,0.072859,0.109173 +bot_00156,balanced,1.0000,1.0000,1.0000,1.0000,0.8310,1.0000,0.9995,0.9068,0.8869,0.314263,0.357939,0.159334,0.168464 +bot_00157,network_bound,0.8029,0.9577,0.6482,1.0000,0.6711,0.5061,0.5311,1.0000,0.8021,0.107521,0.222876,0.308567,0.361036 +bot_00158,reward_heavy,1.0000,0.6365,1.0000,1.0000,0.6715,0.4729,0.9802,0.8556,1.0000,0.528263,0.171888,0.194024,0.105825 +bot_00159,splash_driven,0.8232,0.8936,1.0000,0.9475,0.8275,1.0000,0.8115,1.0000,0.8942,0.704934,0.153714,0.130402,0.010951 +bot_00160,churn_sensitive,0.6620,0.5915,0.2954,0.5880,0.7274,0.6494,0.7826,1.0000,0.5748,0.114859,0.241223,0.494018,0.149900 +bot_00161,interstitial_focus,0.8894,1.0000,0.8015,0.8888,1.0000,0.6265,0.8375,0.8716,1.0000,0.290914,0.363895,0.220606,0.124585 +bot_00162,splash_driven,0.8456,0.8861,1.0000,1.0000,0.9849,1.0000,0.9932,0.8313,0.9125,0.804170,0.160132,0.023612,0.012086 +bot_00163,balanced,1.0000,1.0000,1.0000,0.8787,0.8530,1.0000,1.0000,0.9193,1.0000,0.363522,0.200756,0.312297,0.123425 +bot_00164,splash_driven,0.9647,1.0000,1.0000,0.8128,1.0000,1.0000,0.8666,1.0000,0.8403,0.728095,0.108755,0.139425,0.023725 +bot_00165,splash_driven,0.6411,1.0000,1.0000,1.0000,1.0000,1.0000,0.8790,1.0000,0.8728,0.657797,0.133807,0.094737,0.113659 +bot_00166,reward_heavy,1.0000,0.9714,0.5705,1.0000,0.7518,0.8355,0.9317,0.8216,1.0000,0.599904,0.338545,0.053059,0.008492 +bot_00167,splash_driven,0.9085,1.0000,1.0000,1.0000,0.9592,1.0000,1.0000,1.0000,0.9317,0.880909,0.099410,0.009840,0.009840 +bot_00168,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.7738,0.6078,1.0000,0.8054,1.0000,0.634011,0.282468,0.073440,0.010082 +bot_00169,interstitial_focus,0.5373,1.0000,0.6242,0.7698,1.0000,0.8064,1.0000,1.0000,0.9666,0.246075,0.360611,0.255365,0.137948 +bot_00170,balanced,1.0000,1.0000,0.8762,1.0000,0.9785,1.0000,1.0000,0.8973,0.8859,0.394667,0.343509,0.252836,0.008988 +bot_00171,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8469,0.9669,1.0000,0.9136,0.511192,0.221514,0.129575,0.137719 +bot_00172,network_bound,0.7303,0.7665,0.8845,1.0000,0.5715,0.6445,0.6378,1.0000,0.9301,0.048448,0.100373,0.256762,0.594417 +bot_00173,splash_driven,0.7740,0.8886,1.0000,0.9041,1.0000,1.0000,0.7642,0.8105,0.9469,0.754586,0.147664,0.088954,0.008796 +bot_00174,churn_sensitive,0.4948,0.6118,0.3289,0.4653,0.6289,0.6275,0.7354,1.0000,0.5628,0.412577,0.128063,0.227003,0.232356 +bot_00175,interstitial_focus,0.9343,1.0000,0.6378,0.9888,1.0000,0.8859,1.0000,0.8824,1.0000,0.178841,0.348599,0.302886,0.169674 +bot_00176,churn_sensitive,0.4134,0.4542,0.4689,0.4794,0.4185,0.4672,0.6296,1.0000,0.5260,0.142493,0.407611,0.319293,0.130603 +bot_00177,reward_heavy,1.0000,0.9062,0.8411,1.0000,0.7603,0.4155,0.9929,0.8121,1.0000,0.539392,0.203138,0.187426,0.070044 +bot_00178,balanced,0.8725,1.0000,1.0000,1.0000,0.8976,0.9096,1.0000,1.0000,0.9507,0.309460,0.315304,0.324197,0.051039 +bot_00179,balanced,0.9439,1.0000,0.9886,0.9712,1.0000,0.9850,0.9029,0.8309,1.0000,0.283433,0.312019,0.277847,0.126702 +bot_00180,balanced,0.9168,1.0000,0.9170,1.0000,0.8538,1.0000,0.9769,1.0000,1.0000,0.402256,0.264252,0.322329,0.011164 +bot_00181,churn_sensitive,0.5482,0.5315,0.6476,0.6703,0.6221,0.5731,0.8021,1.0000,0.5300,0.125207,0.412006,0.364816,0.097971 +bot_00182,splash_driven,1.0000,0.9666,1.0000,0.8298,1.0000,1.0000,0.9651,1.0000,0.8568,0.783461,0.138831,0.012969,0.064740 +bot_00183,splash_driven,0.8100,0.6990,1.0000,1.0000,0.9352,1.0000,0.9509,1.0000,0.9266,0.771730,0.133961,0.082990,0.011319 +bot_00184,splash_driven,0.9952,0.9811,1.0000,1.0000,0.9455,1.0000,0.8457,1.0000,0.9020,0.610501,0.197756,0.096123,0.095620 +bot_00185,churn_sensitive,0.5664,0.7129,0.6802,0.6465,0.6770,0.5478,0.8771,1.0000,0.5039,0.242817,0.337101,0.198682,0.221401 +bot_00186,splash_driven,0.7403,1.0000,1.0000,0.8848,1.0000,1.0000,0.9945,1.0000,1.0000,0.729606,0.254010,0.008192,0.008192 +bot_00187,churn_sensitive,0.4600,0.4441,0.2280,0.5871,0.5305,0.3172,0.6963,1.0000,0.6683,0.254315,0.292501,0.352388,0.100796 +bot_00188,interstitial_focus,0.8581,1.0000,0.8255,0.7248,1.0000,0.9014,0.9407,0.9417,0.9957,0.315388,0.446050,0.064608,0.173954 +bot_00189,network_bound,0.8818,1.0000,0.6196,0.9911,0.6838,0.7771,0.6837,1.0000,0.8773,0.122487,0.239909,0.309870,0.327735 +bot_00190,balanced,1.0000,1.0000,1.0000,1.0000,0.8527,0.9796,1.0000,0.8115,0.9878,0.426010,0.339523,0.160678,0.073790 +bot_00191,splash_driven,0.8011,0.9884,1.0000,0.9349,0.8829,1.0000,0.8167,0.9271,0.8445,0.714618,0.236674,0.008427,0.040281 +bot_00192,balanced,1.0000,1.0000,1.0000,0.9413,1.0000,0.8901,1.0000,1.0000,0.9309,0.325920,0.403683,0.126233,0.144165 +bot_00193,splash_driven,0.7744,0.9987,1.0000,1.0000,1.0000,1.0000,0.9115,1.0000,1.0000,0.654131,0.307687,0.009360,0.028822 +bot_00194,splash_driven,0.6893,1.0000,1.0000,1.0000,1.0000,1.0000,0.9094,1.0000,0.9573,0.742897,0.083332,0.010294,0.163477 +bot_00195,reward_heavy,1.0000,1.0000,0.8980,1.0000,0.7300,0.6039,0.9563,0.8117,1.0000,0.599364,0.276887,0.008764,0.114986 +bot_00196,interstitial_focus,0.5148,1.0000,0.9893,0.6531,1.0000,0.7055,1.0000,0.8737,0.9399,0.466327,0.354524,0.088966,0.090182 +bot_00197,network_bound,0.9109,0.9516,1.0000,0.7134,0.7446,0.7647,0.6566,1.0000,0.7520,0.187552,0.168856,0.357668,0.285923 +bot_00198,churn_sensitive,0.5959,0.5536,0.3507,0.5460,0.6345,0.6079,0.6595,1.0000,0.4961,0.389825,0.152197,0.224073,0.233905 +bot_00199,balanced,1.0000,1.0000,0.9903,1.0000,0.9336,1.0000,1.0000,1.0000,1.0000,0.469221,0.204317,0.264511,0.061950 +bot_00200,reward_heavy,1.0000,0.8533,0.9488,1.0000,0.7271,0.7250,1.0000,1.0000,1.0000,0.492402,0.364726,0.048920,0.093952 +bot_00201,splash_driven,0.7153,1.0000,1.0000,0.8097,0.9523,1.0000,0.8296,1.0000,0.9299,0.667197,0.191306,0.130634,0.010864 +bot_00202,churn_sensitive,0.7406,0.5747,0.2219,0.8116,0.5347,0.6511,0.7592,1.0000,0.6465,0.312969,0.345802,0.183730,0.157499 +bot_00203,balanced,1.0000,1.0000,1.0000,0.8423,0.8694,0.8106,1.0000,1.0000,0.9122,0.386267,0.226513,0.350133,0.037087 +bot_00204,reward_heavy,1.0000,0.8451,0.6898,1.0000,0.7422,0.8100,1.0000,1.0000,1.0000,0.613684,0.183444,0.192463,0.010409 +bot_00205,reward_heavy,1.0000,0.8817,0.7397,1.0000,0.9221,0.5786,0.9073,0.9864,1.0000,0.727247,0.248742,0.012005,0.012005 +bot_00206,balanced,1.0000,1.0000,1.0000,1.0000,0.8736,0.8349,0.9009,0.8356,0.9884,0.414480,0.233584,0.341556,0.010380 +bot_00207,balanced,1.0000,0.9548,0.9228,0.9740,0.8299,1.0000,0.9666,0.9259,0.9131,0.349207,0.348402,0.273403,0.028988 +bot_00208,network_bound,0.8889,0.7447,0.6670,0.9734,0.7630,0.7951,0.6932,1.0000,0.8740,0.188750,0.100085,0.325753,0.385412 +bot_00209,reward_heavy,1.0000,0.8605,0.6485,1.0000,0.6529,0.7082,1.0000,0.7724,1.0000,0.478127,0.305207,0.207030,0.009636 +bot_00210,interstitial_focus,0.7298,1.0000,0.9639,0.9552,1.0000,0.8306,1.0000,0.8995,1.0000,0.263240,0.487494,0.137933,0.111333 +bot_00211,balanced,1.0000,1.0000,1.0000,1.0000,0.8826,0.9155,0.9263,1.0000,1.0000,0.405640,0.247155,0.226719,0.120486 +bot_00212,interstitial_focus,0.7931,1.0000,1.0000,0.8747,1.0000,0.9073,1.0000,0.8698,0.9718,0.428884,0.354050,0.089786,0.127280 +bot_00213,network_bound,0.7091,0.6140,0.7689,1.0000,0.6285,0.8583,0.7861,1.0000,0.9285,0.259095,0.157222,0.287359,0.296324 +bot_00214,reward_heavy,1.0000,1.0000,0.7197,1.0000,0.8414,0.5340,1.0000,0.8388,1.0000,0.517039,0.300712,0.174630,0.007618 +bot_00215,splash_driven,0.9171,0.7420,1.0000,0.9217,1.0000,1.0000,1.0000,0.9073,0.9072,0.703999,0.273060,0.011470,0.011470 +bot_00216,balanced,0.9347,1.0000,1.0000,1.0000,0.9409,1.0000,1.0000,0.8357,1.0000,0.403673,0.229339,0.354094,0.012895 +bot_00217,balanced,0.9625,1.0000,1.0000,1.0000,1.0000,0.8088,0.9572,0.8812,0.8978,0.294156,0.275191,0.361584,0.069069 +bot_00218,reward_heavy,1.0000,0.6296,1.0000,1.0000,0.7166,0.5994,1.0000,0.9543,1.0000,0.523185,0.294551,0.174916,0.007348 +bot_00219,balanced,1.0000,0.9787,0.9193,1.0000,1.0000,1.0000,1.0000,1.0000,0.8944,0.485283,0.234872,0.204754,0.075091 +bot_00220,interstitial_focus,0.8313,1.0000,0.8223,0.7997,1.0000,0.9073,0.9198,0.8654,1.0000,0.221877,0.393342,0.261047,0.123735 +bot_00221,balanced,0.8660,1.0000,1.0000,1.0000,1.0000,1.0000,0.9542,0.8529,0.9590,0.297346,0.283209,0.260095,0.159350 +bot_00222,reward_heavy,1.0000,0.7056,0.6616,1.0000,0.6355,0.6200,0.9464,0.7383,1.0000,0.530826,0.244503,0.142948,0.081723 +bot_00223,reward_heavy,1.0000,1.0000,0.7856,1.0000,0.6389,0.7059,1.0000,0.8127,1.0000,0.564028,0.221758,0.205758,0.008455 +bot_00224,interstitial_focus,0.5529,1.0000,0.7798,0.7407,1.0000,0.8473,0.9734,0.9719,0.9979,0.361651,0.530135,0.098597,0.009617 +bot_00225,churn_sensitive,0.3564,0.6511,0.4396,0.4481,0.3944,0.5636,0.6699,1.0000,0.5472,0.131010,0.220814,0.465262,0.182914 +bot_00226,interstitial_focus,0.7423,1.0000,0.6714,0.8656,1.0000,0.8000,1.0000,1.0000,1.0000,0.222253,0.414531,0.254061,0.109155 +bot_00227,reward_heavy,1.0000,0.8546,0.5866,1.0000,0.7662,0.7439,1.0000,0.8215,1.0000,0.552773,0.237986,0.124985,0.084256 +bot_00228,reward_heavy,1.0000,0.9677,0.7070,1.0000,0.7224,0.4274,1.0000,0.8781,1.0000,0.580329,0.333938,0.008200,0.077533 +bot_00229,churn_sensitive,0.5897,0.7699,0.3961,0.7073,0.5960,0.4358,0.8133,1.0000,0.5723,0.197899,0.159018,0.217053,0.426031 +bot_00230,splash_driven,0.6744,1.0000,1.0000,0.9983,0.9508,1.0000,1.0000,0.8643,0.8745,0.657370,0.184619,0.009953,0.148058 +bot_00231,network_bound,1.0000,0.9961,0.8951,0.6981,0.6821,0.5326,0.8229,1.0000,0.9398,0.196343,0.206036,0.297338,0.300283 +bot_00232,splash_driven,1.0000,1.0000,1.0000,0.8958,1.0000,1.0000,0.9678,1.0000,0.8479,0.774293,0.186937,0.028692,0.010078 +bot_00233,interstitial_focus,0.8706,1.0000,0.8960,0.8234,1.0000,0.6820,1.0000,1.0000,1.0000,0.249098,0.492535,0.249394,0.008973 +bot_00234,churn_sensitive,0.3625,0.8783,0.5288,0.5421,0.7223,0.4574,0.7516,1.0000,0.4943,0.282842,0.279101,0.293400,0.144657 +bot_00235,churn_sensitive,0.4665,0.8326,0.3060,0.8024,0.5604,0.4392,0.8586,1.0000,0.6635,0.379798,0.234483,0.220052,0.165667 +bot_00236,reward_heavy,1.0000,1.0000,0.9399,1.0000,0.8129,0.7424,0.9208,1.0000,1.0000,0.692666,0.229035,0.066816,0.011483 +bot_00237,churn_sensitive,0.6083,0.4097,0.4687,0.6017,0.7643,0.6058,0.6667,1.0000,0.6099,0.169570,0.279782,0.373793,0.176855 +bot_00238,interstitial_focus,0.8300,1.0000,0.6145,0.9329,1.0000,0.6567,0.9084,0.9179,1.0000,0.275849,0.488056,0.128067,0.108028 +bot_00239,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9831,1.0000,0.421666,0.218922,0.290488,0.068923 +bot_00240,balanced,0.9239,1.0000,1.0000,1.0000,1.0000,1.0000,0.8690,1.0000,1.0000,0.430461,0.465613,0.074414,0.029513 +bot_00241,reward_heavy,1.0000,0.8388,0.5877,1.0000,0.9379,0.5498,0.8821,0.8120,1.0000,0.634733,0.268348,0.085851,0.011068 +bot_00242,balanced,1.0000,0.9438,1.0000,1.0000,1.0000,0.8330,1.0000,1.0000,1.0000,0.317232,0.309405,0.239675,0.133688 +bot_00243,splash_driven,1.0000,0.9658,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9996,0.668339,0.225035,0.091476,0.015150 +bot_00244,splash_driven,1.0000,0.8982,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9309,0.909004,0.047559,0.030387,0.013050 +bot_00245,reward_heavy,1.0000,0.9028,0.8513,1.0000,0.6723,0.5721,0.8900,0.8125,1.0000,0.611747,0.273127,0.018866,0.096260 +bot_00246,balanced,0.9192,1.0000,1.0000,0.9961,0.8330,1.0000,0.8843,0.9049,1.0000,0.281993,0.404920,0.304042,0.009045 +bot_00247,splash_driven,0.7448,0.6818,1.0000,1.0000,1.0000,1.0000,1.0000,0.9958,0.9728,0.878484,0.069622,0.012951,0.038943 +bot_00248,splash_driven,0.9476,1.0000,1.0000,1.0000,1.0000,1.0000,0.9331,1.0000,0.8776,0.743273,0.147585,0.097779,0.011362 +bot_00249,splash_driven,0.6498,0.9005,1.0000,1.0000,0.9076,1.0000,0.8738,0.8824,0.9143,0.585524,0.200925,0.158640,0.054911 +bot_00250,reward_heavy,1.0000,0.6104,0.9051,1.0000,0.6784,0.4200,0.9142,0.9732,1.0000,0.601761,0.373091,0.014642,0.010506 +bot_00251,balanced,0.8420,0.9272,0.8636,1.0000,1.0000,0.9287,1.0000,1.0000,0.9878,0.274457,0.373938,0.158669,0.192936 +bot_00252,splash_driven,0.7598,1.0000,1.0000,0.8513,0.8484,1.0000,0.9974,0.9839,1.0000,0.698830,0.114089,0.123974,0.063108 +bot_00253,reward_heavy,1.0000,0.9218,0.9993,1.0000,0.8508,0.7153,0.9164,0.8496,1.0000,0.569168,0.390616,0.027725,0.012491 +bot_00254,balanced,0.9275,0.9626,1.0000,1.0000,0.7962,1.0000,0.8987,0.9757,0.9901,0.317998,0.208803,0.339228,0.133971 +bot_00255,reward_heavy,1.0000,0.7401,1.0000,1.0000,0.8878,0.4178,1.0000,0.9003,1.0000,0.465352,0.282006,0.137154,0.115488 +bot_00256,splash_driven,0.8873,1.0000,1.0000,0.8824,1.0000,1.0000,1.0000,1.0000,0.9962,0.670536,0.307795,0.010834,0.010834 +bot_00257,reward_heavy,1.0000,0.7972,1.0000,1.0000,0.6596,0.6587,1.0000,0.9825,1.0000,0.565521,0.164715,0.175119,0.094645 +bot_00258,interstitial_focus,0.6929,1.0000,0.9337,0.8008,1.0000,0.5607,1.0000,1.0000,1.0000,0.326687,0.430289,0.134313,0.108711 +bot_00259,network_bound,0.8148,0.9457,0.8509,0.6836,0.6183,0.5549,0.7699,1.0000,0.7096,0.117908,0.149438,0.239065,0.493588 +bot_00260,interstitial_focus,0.7113,1.0000,0.7813,0.7173,1.0000,0.5082,0.8638,1.0000,1.0000,0.406985,0.268513,0.268039,0.056463 +bot_00261,reward_heavy,1.0000,0.9392,0.8437,1.0000,0.6735,0.4280,1.0000,1.0000,1.0000,0.798687,0.178795,0.011259,0.011259 +bot_00262,reward_heavy,1.0000,0.7993,0.9470,1.0000,0.6249,0.5072,1.0000,0.7871,1.0000,0.712975,0.196888,0.078354,0.011783 +bot_00263,interstitial_focus,0.5252,1.0000,0.7740,0.8032,1.0000,0.9162,0.8685,0.9537,0.9971,0.392283,0.431184,0.168103,0.008430 +bot_00264,balanced,0.8508,1.0000,1.0000,0.9014,1.0000,0.7852,1.0000,1.0000,0.9837,0.352406,0.352031,0.282873,0.012691 +bot_00265,reward_heavy,1.0000,1.0000,0.6302,1.0000,0.5862,0.4616,1.0000,0.9126,1.0000,0.575777,0.405178,0.009522,0.009522 +bot_00266,reward_heavy,1.0000,1.0000,0.9140,1.0000,0.8871,0.5447,1.0000,1.0000,1.0000,0.535843,0.342871,0.112171,0.009115 +bot_00267,interstitial_focus,0.4971,1.0000,1.0000,0.9596,1.0000,0.8874,0.9372,1.0000,1.0000,0.346935,0.428870,0.045190,0.179005 +bot_00268,reward_heavy,1.0000,0.9153,1.0000,1.0000,0.8428,0.7973,0.8901,0.7684,1.0000,0.588283,0.322578,0.080314,0.008826 +bot_00269,reward_heavy,1.0000,0.9682,0.8773,1.0000,0.6924,0.7392,0.9976,1.0000,1.0000,0.534974,0.239609,0.103912,0.121504 +bot_00270,balanced,1.0000,0.9647,1.0000,0.9984,0.7888,0.9940,1.0000,0.8674,1.0000,0.422180,0.187696,0.231359,0.158765 +bot_00271,network_bound,1.0000,0.8350,0.9382,1.0000,0.7158,0.8436,0.6321,1.0000,0.8903,0.162054,0.208605,0.368167,0.261174 +bot_00272,interstitial_focus,0.7801,1.0000,0.8932,0.6134,1.0000,0.5145,1.0000,1.0000,1.0000,0.164137,0.397502,0.244846,0.193516 +bot_00273,balanced,1.0000,1.0000,0.8614,0.9512,0.8419,0.9112,0.9087,0.9931,0.9996,0.326127,0.277844,0.233642,0.162387 +bot_00274,splash_driven,0.8037,1.0000,1.0000,0.9329,1.0000,1.0000,0.7597,0.8505,0.9636,0.705356,0.203387,0.082419,0.008839 +bot_00275,churn_sensitive,0.7046,0.5620,0.3229,0.7735,0.4758,0.2783,0.6398,1.0000,0.5310,0.176701,0.181827,0.355845,0.285627 +bot_00276,reward_heavy,1.0000,1.0000,0.7306,1.0000,0.7304,0.7476,1.0000,0.8928,1.0000,0.561901,0.316336,0.007959,0.113805 +bot_00277,splash_driven,0.7915,0.9708,1.0000,1.0000,0.9531,1.0000,0.9500,0.8983,1.0000,0.771135,0.165912,0.054169,0.008783 +bot_00278,interstitial_focus,0.5230,1.0000,1.0000,0.9253,1.0000,0.5898,0.9307,0.8461,1.0000,0.365462,0.260894,0.285391,0.088253 +bot_00279,churn_sensitive,0.3863,0.6628,0.4791,0.5355,0.6750,0.2726,0.6995,1.0000,0.6841,0.293303,0.150395,0.366576,0.189726 +bot_00280,balanced,0.9369,1.0000,1.0000,0.9969,0.8441,1.0000,1.0000,1.0000,1.0000,0.361039,0.359720,0.271245,0.007996 +bot_00281,balanced,1.0000,0.9493,1.0000,0.9983,1.0000,1.0000,0.9403,0.9884,1.0000,0.489702,0.319495,0.180491,0.010311 +bot_00282,churn_sensitive,0.7612,0.8429,0.6399,0.7215,0.4601,0.5211,0.8158,1.0000,0.6130,0.178869,0.208933,0.340135,0.272063 +bot_00283,splash_driven,1.0000,1.0000,1.0000,0.9602,1.0000,1.0000,0.9734,1.0000,0.8568,0.881215,0.064734,0.044098,0.009953 +bot_00284,balanced,0.8413,1.0000,0.8881,0.8473,0.8330,0.8951,0.9258,1.0000,0.9076,0.446675,0.235551,0.242318,0.075456 +bot_00285,balanced,1.0000,1.0000,0.9308,1.0000,1.0000,1.0000,0.9875,1.0000,1.0000,0.296550,0.293685,0.284520,0.125245 +bot_00286,balanced,1.0000,1.0000,1.0000,0.8362,1.0000,1.0000,0.9936,1.0000,1.0000,0.370942,0.337092,0.277331,0.014635 +bot_00287,splash_driven,0.6952,0.8067,1.0000,1.0000,1.0000,1.0000,0.9271,0.9729,0.8685,0.632039,0.166276,0.079270,0.122414 +bot_00288,reward_heavy,1.0000,0.6452,0.8598,1.0000,0.6704,0.7719,1.0000,0.9643,1.0000,0.624631,0.280205,0.057679,0.037486 +bot_00289,interstitial_focus,0.7817,1.0000,0.9292,0.7140,1.0000,0.7203,0.8650,0.9616,1.0000,0.202796,0.515199,0.271997,0.010008 +bot_00290,balanced,0.9231,1.0000,0.8718,1.0000,1.0000,0.7988,1.0000,1.0000,0.9653,0.442473,0.218165,0.303277,0.036084 +bot_00291,interstitial_focus,0.7863,1.0000,1.0000,0.5880,1.0000,0.8382,0.9961,0.8220,0.9848,0.229793,0.412503,0.327194,0.030510 +bot_00292,interstitial_focus,0.5070,1.0000,0.6155,0.9493,1.0000,0.6059,0.9617,0.8204,1.0000,0.395394,0.388589,0.158744,0.057273 +bot_00293,reward_heavy,1.0000,0.7137,0.6888,1.0000,0.5677,0.8197,0.9491,0.8106,1.0000,0.518328,0.248125,0.151622,0.081925 +bot_00294,churn_sensitive,0.3319,0.5491,0.2809,0.6881,0.7618,0.4901,0.7481,1.0000,0.6842,0.218154,0.251239,0.346509,0.184099 +bot_00295,splash_driven,0.8274,1.0000,1.0000,1.0000,1.0000,1.0000,0.9128,0.9801,1.0000,0.617864,0.188379,0.074569,0.119188 +bot_00296,churn_sensitive,0.6045,0.7525,0.5923,0.7262,0.3319,0.5870,0.8314,1.0000,0.5488,0.269437,0.119346,0.307434,0.303783 +bot_00297,interstitial_focus,0.4863,1.0000,0.8758,0.8024,1.0000,0.7914,1.0000,1.0000,1.0000,0.447367,0.426030,0.113517,0.013086 +bot_00298,balanced,0.8141,1.0000,0.9240,1.0000,1.0000,0.8238,1.0000,0.9238,0.9216,0.307943,0.259001,0.212378,0.220678 +bot_00299,interstitial_focus,0.6672,1.0000,0.9471,0.8715,1.0000,0.8374,0.8016,1.0000,1.0000,0.273154,0.450343,0.207628,0.068875 +bot_00300,balanced,0.9772,1.0000,0.9772,1.0000,1.0000,0.9623,0.9251,0.8402,1.0000,0.394025,0.344428,0.167743,0.093804 +bot_00301,network_bound,0.8185,0.6226,0.7707,0.8152,0.8476,0.6770,0.7998,1.0000,0.7806,0.060739,0.149456,0.257386,0.532418 +bot_00302,reward_heavy,1.0000,0.9569,0.6272,1.0000,0.6687,0.7705,1.0000,0.7933,1.0000,0.446497,0.307304,0.165562,0.080636 +bot_00303,churn_sensitive,0.4499,0.4710,0.4010,0.7925,0.3735,0.2657,0.6198,1.0000,0.4707,0.152583,0.361900,0.210904,0.274613 +bot_00304,reward_heavy,1.0000,0.7971,0.7702,1.0000,0.6868,0.7422,1.0000,1.0000,1.0000,0.614376,0.247974,0.129393,0.008257 +bot_00305,interstitial_focus,0.6788,1.0000,0.8985,0.9267,1.0000,0.5160,0.8338,0.9793,0.9741,0.315925,0.338146,0.276164,0.069765 +bot_00306,reward_heavy,1.0000,0.8902,0.9597,1.0000,0.9336,0.7635,1.0000,0.7758,1.0000,0.523531,0.247219,0.155849,0.073401 +bot_00307,interstitial_focus,0.9503,1.0000,0.9891,0.6383,1.0000,0.9128,0.8962,0.8949,1.0000,0.365349,0.339681,0.154473,0.140498 +bot_00308,reward_heavy,1.0000,0.9838,0.8555,1.0000,0.7635,0.6229,0.9390,0.8745,1.0000,0.551666,0.275032,0.162969,0.010332 +bot_00309,reward_heavy,1.0000,0.9249,0.9666,1.0000,0.6450,0.7346,1.0000,0.7061,1.0000,0.709551,0.134808,0.145708,0.009933 +bot_00310,splash_driven,1.0000,0.9731,1.0000,0.9362,1.0000,1.0000,0.8482,1.0000,1.0000,0.799495,0.078089,0.009606,0.112810 +bot_00311,interstitial_focus,0.6623,1.0000,0.6976,0.9041,1.0000,0.8397,1.0000,0.9086,1.0000,0.222879,0.446368,0.174880,0.155874 +bot_00312,splash_driven,0.7539,0.7832,1.0000,1.0000,0.9996,1.0000,0.9633,1.0000,0.8888,0.589062,0.282873,0.119492,0.008573 +bot_00313,splash_driven,0.8539,1.0000,1.0000,1.0000,0.8502,1.0000,1.0000,0.9648,0.9053,0.757805,0.144340,0.087844,0.010011 +bot_00314,interstitial_focus,0.5275,1.0000,0.6878,0.9993,1.0000,0.7024,0.9741,0.9489,1.0000,0.183631,0.531097,0.070648,0.214623 +bot_00315,interstitial_focus,0.7962,1.0000,0.6381,0.5877,1.0000,0.8100,1.0000,0.8509,0.9597,0.357450,0.422556,0.208129,0.011865 +bot_00316,splash_driven,0.6976,0.9180,1.0000,1.0000,1.0000,1.0000,0.9870,1.0000,1.0000,0.889164,0.058225,0.011872,0.040739 +bot_00317,reward_heavy,1.0000,0.9919,0.7038,1.0000,0.9364,0.6001,0.9945,1.0000,1.0000,0.630774,0.175832,0.181261,0.012133 +bot_00318,splash_driven,0.8948,1.0000,1.0000,1.0000,0.8837,1.0000,0.9297,1.0000,0.9458,0.688929,0.088313,0.192598,0.030160 +bot_00319,splash_driven,0.8842,0.7792,1.0000,1.0000,1.0000,1.0000,0.9725,0.8731,0.9092,0.645421,0.224318,0.121143,0.009119 +bot_00320,reward_heavy,1.0000,0.6764,0.8150,1.0000,0.8834,0.6798,0.9988,0.7583,1.0000,0.475505,0.366800,0.096312,0.061383 +bot_00321,balanced,0.9980,1.0000,1.0000,0.8963,0.9388,0.8457,0.9965,1.0000,1.0000,0.461325,0.177997,0.350534,0.010144 +bot_00322,splash_driven,0.7696,0.7337,1.0000,1.0000,0.8479,1.0000,0.9229,1.0000,0.9465,0.751568,0.060995,0.020374,0.167063 +bot_00323,balanced,1.0000,1.0000,1.0000,0.8507,0.9423,0.9581,0.8810,1.0000,0.9239,0.446739,0.220811,0.277865,0.054585 +bot_00324,reward_heavy,1.0000,0.8205,0.7414,1.0000,0.5528,0.5069,1.0000,1.0000,1.0000,0.603665,0.372710,0.011812,0.011812 +bot_00325,splash_driven,0.6476,1.0000,1.0000,1.0000,1.0000,1.0000,0.7571,0.9325,0.9029,0.607960,0.146226,0.119668,0.126146 +bot_00326,balanced,0.9950,1.0000,1.0000,0.8548,1.0000,1.0000,0.8659,1.0000,1.0000,0.375630,0.236884,0.260362,0.127124 +bot_00327,balanced,0.9594,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8012,1.0000,0.488225,0.326388,0.171740,0.013647 +bot_00328,balanced,0.9663,1.0000,0.9855,1.0000,0.8901,1.0000,0.8492,1.0000,1.0000,0.550267,0.220766,0.125956,0.103011 +bot_00329,reward_heavy,1.0000,0.8630,0.8979,1.0000,0.7157,0.4067,1.0000,0.8573,1.0000,0.544574,0.227676,0.178274,0.049476 +bot_00330,interstitial_focus,0.6972,1.0000,0.8894,0.6542,1.0000,0.6960,0.9034,0.8771,1.0000,0.236756,0.457172,0.294265,0.011807 +bot_00331,reward_heavy,1.0000,0.6691,0.7342,1.0000,0.5521,0.7210,1.0000,0.9887,1.0000,0.589882,0.253367,0.148384,0.008366 +bot_00332,splash_driven,0.9429,1.0000,1.0000,1.0000,1.0000,1.0000,0.9004,1.0000,0.8597,0.601715,0.213333,0.047142,0.137810 +bot_00333,splash_driven,0.7004,0.8594,1.0000,1.0000,1.0000,1.0000,1.0000,0.9768,0.8698,0.891036,0.088292,0.010336,0.010336 +bot_00334,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8237,1.0000,1.0000,0.688854,0.118603,0.181831,0.010712 +bot_00335,reward_heavy,1.0000,0.5967,0.5968,1.0000,0.9233,0.4608,1.0000,0.7062,1.0000,0.626273,0.261822,0.064793,0.047112 +bot_00336,splash_driven,0.9285,1.0000,1.0000,1.0000,1.0000,1.0000,0.9758,0.8621,0.8553,0.762295,0.130337,0.097324,0.010044 +bot_00337,splash_driven,0.6838,0.8172,1.0000,1.0000,1.0000,1.0000,0.8022,0.9963,0.9996,0.634107,0.140872,0.088962,0.136059 +bot_00338,interstitial_focus,0.9428,1.0000,0.8711,0.6629,1.0000,0.6199,0.8266,0.8731,1.0000,0.195857,0.325988,0.366354,0.111802 +bot_00339,balanced,0.8241,0.9214,0.8689,0.9332,1.0000,1.0000,0.8725,1.0000,1.0000,0.466271,0.255254,0.266280,0.012195 +bot_00340,interstitial_focus,0.8776,1.0000,0.6374,0.7057,1.0000,0.9088,0.8129,0.9414,1.0000,0.301452,0.275774,0.318443,0.104331 +bot_00341,interstitial_focus,0.5673,1.0000,0.9246,0.9557,1.0000,0.5434,0.9955,1.0000,1.0000,0.226319,0.488254,0.129373,0.156054 +bot_00342,churn_sensitive,0.5227,0.8260,0.2882,0.4619,0.7218,0.2548,0.6480,1.0000,0.5847,0.208459,0.273610,0.411105,0.106826 +bot_00343,network_bound,0.6137,0.7815,0.7550,0.8911,0.5964,0.7132,0.6301,1.0000,0.7834,0.119941,0.307780,0.260515,0.311764 +bot_00344,interstitial_focus,0.8114,1.0000,0.7099,0.5999,1.0000,0.7756,0.9967,1.0000,1.0000,0.374684,0.419941,0.195432,0.009943 +bot_00345,reward_heavy,1.0000,0.6211,0.9859,1.0000,0.8989,0.6718,1.0000,0.7457,1.0000,0.618765,0.233510,0.134785,0.012939 +bot_00346,reward_heavy,1.0000,1.0000,0.7964,1.0000,0.9733,0.5508,0.8844,0.7321,1.0000,0.709045,0.263981,0.013487,0.013487 +bot_00347,splash_driven,0.6855,0.8593,1.0000,1.0000,0.8742,1.0000,0.8281,1.0000,0.9317,0.773430,0.205680,0.010445,0.010445 +bot_00348,network_bound,0.7544,0.6290,0.9996,0.7234,0.5992,0.7629,0.8127,1.0000,0.7224,0.211971,0.226029,0.355708,0.206292 +bot_00349,balanced,1.0000,0.9618,0.9420,1.0000,0.9225,0.8816,1.0000,0.8380,0.9784,0.445978,0.242377,0.187604,0.124041 +bot_00350,churn_sensitive,0.4521,0.4258,0.5505,0.4500,0.6122,0.3064,0.6815,1.0000,0.4960,0.225416,0.296723,0.415334,0.062527 +bot_00351,network_bound,0.6774,0.7245,0.6076,1.0000,0.8607,0.6248,0.6210,1.0000,0.7118,0.174756,0.152188,0.318375,0.354681 +bot_00352,balanced,1.0000,1.0000,0.9406,0.9576,1.0000,1.0000,0.9391,1.0000,1.0000,0.559218,0.244002,0.082783,0.113997 +bot_00353,balanced,1.0000,1.0000,1.0000,1.0000,0.9158,0.8130,0.9441,0.9253,1.0000,0.315954,0.381815,0.293695,0.008536 +bot_00354,reward_heavy,1.0000,0.9075,0.8110,1.0000,0.7490,0.7252,1.0000,0.7250,1.0000,0.611784,0.154490,0.222913,0.010814 +bot_00355,interstitial_focus,0.4966,1.0000,1.0000,0.8204,1.0000,0.5007,1.0000,0.8732,1.0000,0.303221,0.331450,0.234244,0.131084 +bot_00356,reward_heavy,1.0000,0.6921,0.9006,1.0000,0.7457,0.4036,0.9369,1.0000,1.0000,0.438758,0.289334,0.175830,0.096078 +bot_00357,churn_sensitive,0.6168,0.7953,0.5226,0.4725,0.4125,0.3174,0.7667,1.0000,0.5267,0.116420,0.456947,0.256929,0.169704 +bot_00358,balanced,0.8709,1.0000,0.8766,1.0000,0.9054,1.0000,0.8837,1.0000,1.0000,0.275345,0.419942,0.187818,0.116895 +bot_00359,reward_heavy,1.0000,0.5948,0.9008,1.0000,0.5488,0.7889,1.0000,0.7023,1.0000,0.587445,0.192560,0.187863,0.032132 +bot_00360,interstitial_focus,0.5563,1.0000,0.7114,0.7349,1.0000,0.5886,1.0000,0.8229,0.9581,0.425447,0.387152,0.176275,0.011127 +bot_00361,splash_driven,0.7985,0.6842,1.0000,0.8340,0.8953,1.0000,0.9401,0.9547,1.0000,0.736220,0.090838,0.030126,0.142816 +bot_00362,network_bound,1.0000,0.9614,0.8210,0.8748,0.5886,0.7662,0.7910,1.0000,0.7943,0.174631,0.130189,0.288679,0.406501 +bot_00363,reward_heavy,1.0000,0.9797,0.6835,1.0000,0.8225,0.4362,1.0000,0.9552,1.0000,0.648868,0.148086,0.194066,0.008980 +bot_00364,balanced,1.0000,1.0000,1.0000,1.0000,0.8633,0.9171,0.9000,1.0000,0.9677,0.378694,0.347325,0.119827,0.154155 +bot_00365,reward_heavy,1.0000,0.8053,0.8135,1.0000,0.8845,0.7537,1.0000,0.7875,1.0000,0.583600,0.252354,0.055886,0.108159 +bot_00366,interstitial_focus,0.5489,1.0000,0.9732,0.7365,1.0000,0.7871,0.8117,1.0000,1.0000,0.261236,0.469309,0.259855,0.009600 +bot_00367,balanced,0.9996,1.0000,1.0000,0.9981,0.8256,1.0000,1.0000,0.9868,0.9590,0.524898,0.299609,0.163307,0.012186 +bot_00368,interstitial_focus,0.7100,1.0000,0.9716,0.8776,1.0000,0.5469,1.0000,0.8668,1.0000,0.359584,0.371603,0.081908,0.186904 +bot_00369,reward_heavy,1.0000,0.8142,0.8011,1.0000,0.7137,0.4894,1.0000,0.9069,1.0000,0.555240,0.243822,0.065199,0.135739 +bot_00370,network_bound,0.8454,1.0000,0.8898,1.0000,0.7704,0.7343,0.7757,1.0000,0.8838,0.045622,0.233369,0.322129,0.398880 +bot_00371,splash_driven,0.9246,0.7325,1.0000,0.9894,1.0000,1.0000,0.8448,1.0000,0.8632,0.643056,0.252504,0.096337,0.008103 +bot_00372,splash_driven,1.0000,1.0000,1.0000,0.8825,0.8590,1.0000,1.0000,1.0000,0.9675,0.864195,0.040080,0.085618,0.010107 +bot_00373,reward_heavy,1.0000,0.6548,0.9606,1.0000,0.8676,0.6729,1.0000,0.9120,1.0000,0.636374,0.278668,0.058167,0.026790 +bot_00374,reward_heavy,1.0000,0.7320,0.8120,1.0000,0.5935,0.7990,0.9213,0.7198,1.0000,0.586814,0.308350,0.094096,0.010740 +bot_00375,interstitial_focus,0.5351,1.0000,0.8380,0.9867,1.0000,0.7276,1.0000,1.0000,1.0000,0.289163,0.369319,0.235792,0.105726 +bot_00376,churn_sensitive,0.4743,0.7590,0.4919,0.4208,0.5064,0.6010,0.6366,1.0000,0.4973,0.313585,0.245758,0.162521,0.278135 +bot_00377,churn_sensitive,0.7359,0.5627,0.3186,0.5156,0.5283,0.4227,0.6070,1.0000,0.5853,0.165058,0.436600,0.242141,0.156201 +bot_00378,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8052,1.0000,0.9587,1.0000,0.296615,0.269159,0.246553,0.187673 +bot_00379,splash_driven,0.9476,0.8998,1.0000,1.0000,1.0000,1.0000,0.7804,0.9139,0.8752,0.749269,0.049095,0.011699,0.189937 +bot_00380,reward_heavy,1.0000,0.6533,0.9466,1.0000,0.8032,0.4988,1.0000,0.9229,1.0000,0.612676,0.141717,0.139605,0.106002 +bot_00381,churn_sensitive,0.6001,0.4824,0.4339,0.7399,0.3534,0.6772,0.8302,0.9844,0.6567,0.305617,0.147727,0.336503,0.210153 +bot_00382,interstitial_focus,0.5354,1.0000,0.6602,0.8954,1.0000,0.7408,0.9918,1.0000,1.0000,0.181100,0.540705,0.205909,0.072285 +bot_00383,splash_driven,1.0000,0.9405,1.0000,1.0000,0.9621,1.0000,0.7623,1.0000,0.8710,0.608998,0.181054,0.137374,0.072574 +bot_00384,balanced,0.8989,0.9051,1.0000,1.0000,1.0000,0.8276,0.9171,0.8621,1.0000,0.268581,0.418517,0.148997,0.163905 +bot_00385,interstitial_focus,0.6701,1.0000,0.6437,0.7171,1.0000,0.6208,1.0000,0.8649,0.9916,0.245019,0.491475,0.237032,0.026474 +bot_00386,balanced,0.8936,0.9864,1.0000,1.0000,1.0000,1.0000,0.9118,1.0000,0.9292,0.418695,0.348993,0.133013,0.099300 +bot_00387,balanced,1.0000,0.9137,1.0000,0.9606,0.8110,1.0000,1.0000,0.9566,1.0000,0.411287,0.201621,0.270099,0.116993 +bot_00388,balanced,1.0000,1.0000,1.0000,1.0000,0.9861,1.0000,1.0000,0.8377,0.8908,0.298576,0.287889,0.300018,0.113517 +bot_00389,balanced,0.8801,0.9617,1.0000,1.0000,1.0000,0.9791,0.9055,0.8901,0.8996,0.409982,0.270468,0.307266,0.012284 +bot_00390,balanced,1.0000,1.0000,1.0000,1.0000,0.8339,0.8924,1.0000,1.0000,1.0000,0.405365,0.370857,0.147142,0.076636 +bot_00391,network_bound,0.9865,0.7915,0.7781,0.6820,0.9990,0.7236,0.6252,1.0000,0.7367,0.115288,0.301233,0.182681,0.400798 +bot_00392,interstitial_focus,0.9260,1.0000,0.7127,0.8311,1.0000,0.8495,0.8083,1.0000,1.0000,0.373831,0.503062,0.111150,0.011957 +bot_00393,reward_heavy,1.0000,0.6039,0.8659,1.0000,0.6423,0.4072,1.0000,0.9950,1.0000,0.600113,0.151209,0.113248,0.135429 +bot_00394,balanced,1.0000,1.0000,0.9451,0.8526,0.9690,1.0000,1.0000,1.0000,1.0000,0.378409,0.404859,0.201728,0.015004 +bot_00395,interstitial_focus,0.5312,1.0000,0.8371,0.9906,1.0000,0.8482,0.9990,1.0000,0.9496,0.518134,0.319217,0.151253,0.011396 +bot_00396,balanced,1.0000,1.0000,1.0000,0.8714,1.0000,1.0000,0.9459,1.0000,0.9621,0.313541,0.301246,0.305803,0.079411 +bot_00397,balanced,0.8617,0.9322,1.0000,1.0000,0.9525,1.0000,1.0000,0.8333,0.9111,0.321330,0.313270,0.335195,0.030206 +bot_00398,balanced,1.0000,1.0000,1.0000,0.8437,0.8645,1.0000,0.8802,0.8066,1.0000,0.512980,0.209449,0.265360,0.012210 +bot_00399,splash_driven,0.7101,0.7299,1.0000,1.0000,0.9627,1.0000,0.7511,1.0000,0.8885,0.571649,0.284471,0.009041,0.134839 +bot_00400,splash_driven,0.8272,0.9148,1.0000,1.0000,1.0000,1.0000,0.8230,1.0000,0.9800,0.753885,0.099516,0.137979,0.008620 +bot_00401,balanced,1.0000,0.9988,1.0000,0.9344,0.8867,1.0000,0.8734,1.0000,1.0000,0.236213,0.349227,0.304849,0.109711 +bot_00402,churn_sensitive,0.4928,0.5550,0.3457,0.4083,0.3593,0.6702,0.6794,1.0000,0.6080,0.433277,0.150480,0.183852,0.232391 +bot_00403,network_bound,0.8145,0.8540,0.6001,1.0000,0.8632,0.8181,0.8008,1.0000,0.7177,0.150386,0.067622,0.319139,0.462853 +bot_00404,churn_sensitive,0.6778,0.5984,0.4496,0.4654,0.6915,0.5740,0.6930,1.0000,0.6237,0.188849,0.187434,0.351952,0.271765 +bot_00405,interstitial_focus,0.5872,1.0000,0.8901,0.7201,1.0000,0.7285,0.9649,0.9483,1.0000,0.190986,0.487792,0.312125,0.009097 +bot_00406,interstitial_focus,0.6409,1.0000,0.8001,0.8392,1.0000,0.7995,0.8630,1.0000,1.0000,0.344633,0.453583,0.192327,0.009457 +bot_00407,splash_driven,0.7686,1.0000,1.0000,1.0000,0.8636,1.0000,1.0000,0.8163,0.8870,0.609509,0.248207,0.009944,0.132340 +bot_00408,reward_heavy,1.0000,0.9370,0.9550,1.0000,0.6382,0.4842,1.0000,0.9214,1.0000,0.571029,0.261924,0.021910,0.145137 +bot_00409,interstitial_focus,0.5379,1.0000,0.7094,0.6353,1.0000,0.7189,0.9969,0.8334,1.0000,0.273105,0.464256,0.253937,0.008702 +bot_00410,balanced,1.0000,1.0000,0.8773,1.0000,0.8626,0.9568,1.0000,0.9209,1.0000,0.408403,0.323734,0.141257,0.126606 +bot_00411,reward_heavy,1.0000,0.6417,0.6932,1.0000,0.5582,0.6352,0.9849,0.7170,1.0000,0.528977,0.148432,0.171590,0.151001 +bot_00412,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.9434,0.7833,1.0000,0.7189,1.0000,0.519286,0.259493,0.096467,0.124754 +bot_00413,network_bound,0.9572,0.6412,0.8961,0.7291,0.7079,0.9134,0.6878,1.0000,0.7787,0.142727,0.088411,0.278407,0.490455 +bot_00414,splash_driven,0.6810,1.0000,1.0000,1.0000,0.9337,1.0000,0.8202,0.8695,1.0000,0.637337,0.107044,0.165310,0.090309 +bot_00415,reward_heavy,1.0000,0.8100,0.8358,1.0000,0.7593,0.6167,1.0000,1.0000,1.0000,0.466467,0.381738,0.115471,0.036325 +bot_00416,interstitial_focus,0.7465,1.0000,0.7757,0.5813,1.0000,0.5398,0.9712,0.8665,1.0000,0.249411,0.430421,0.220113,0.100055 +bot_00417,reward_heavy,1.0000,1.0000,0.8728,1.0000,0.7006,0.4092,1.0000,0.7234,1.0000,0.571341,0.196492,0.211351,0.020816 +bot_00418,splash_driven,0.9211,0.9975,1.0000,0.8434,1.0000,1.0000,1.0000,1.0000,1.0000,0.701127,0.165346,0.119707,0.013820 +bot_00419,churn_sensitive,0.7106,0.5107,0.3682,0.5493,0.5714,0.3481,0.7219,1.0000,0.6134,0.182150,0.201278,0.241448,0.375124 +bot_00420,reward_heavy,1.0000,0.7498,0.7508,1.0000,0.9294,0.4052,0.8948,0.9770,1.0000,0.454768,0.227947,0.167356,0.149930 +bot_00421,splash_driven,0.7155,0.7527,1.0000,1.0000,1.0000,1.0000,0.7784,0.9103,0.8463,0.749078,0.218002,0.021698,0.011222 +bot_00422,interstitial_focus,0.5718,1.0000,0.8139,0.8968,1.0000,0.5705,0.8066,1.0000,0.9791,0.416713,0.401890,0.146815,0.034582 +bot_00423,splash_driven,1.0000,1.0000,1.0000,0.9183,0.9767,1.0000,0.8347,0.8191,0.9147,0.825207,0.151681,0.011556,0.011556 +bot_00424,splash_driven,0.7326,0.7397,1.0000,1.0000,0.8303,1.0000,0.9855,1.0000,0.9368,0.732652,0.184643,0.074324,0.008381 +bot_00425,splash_driven,1.0000,0.7246,1.0000,0.8083,1.0000,1.0000,0.9338,0.8732,0.8956,0.725956,0.256046,0.008999,0.008999 +bot_00426,interstitial_focus,0.7482,1.0000,0.9209,0.6297,1.0000,0.5059,0.9668,1.0000,0.9585,0.415281,0.359899,0.160110,0.064710 +bot_00427,interstitial_focus,0.5304,1.0000,0.9181,0.5908,1.0000,0.8791,1.0000,0.9637,0.9631,0.328287,0.430134,0.230065,0.011514 +bot_00428,splash_driven,1.0000,1.0000,1.0000,0.8617,0.8863,1.0000,0.8313,0.8678,0.9477,0.552964,0.245166,0.114600,0.087270 +bot_00429,splash_driven,1.0000,1.0000,1.0000,0.9320,0.8640,1.0000,0.9153,1.0000,1.0000,0.705635,0.277216,0.008575,0.008575 +bot_00430,interstitial_focus,0.5001,1.0000,0.8379,0.6787,1.0000,0.7595,0.9097,1.0000,1.0000,0.219388,0.365640,0.225692,0.189280 +bot_00431,churn_sensitive,0.4772,0.5766,0.6625,0.6076,0.5333,0.5425,0.7168,1.0000,0.6667,0.272578,0.186473,0.319652,0.221297 +bot_00432,reward_heavy,1.0000,0.6464,0.8416,1.0000,0.9219,0.7345,0.9502,1.0000,1.0000,0.469373,0.356981,0.077515,0.096130 +bot_00433,balanced,0.9219,1.0000,1.0000,1.0000,1.0000,1.0000,0.9871,0.8020,0.9036,0.352796,0.346579,0.292186,0.008439 +bot_00434,reward_heavy,1.0000,0.9255,0.8233,1.0000,0.7331,0.6033,0.9516,0.8583,1.0000,0.617994,0.176422,0.128785,0.076799 +bot_00435,balanced,1.0000,1.0000,1.0000,1.0000,0.9508,0.8185,0.9669,0.8996,1.0000,0.387490,0.398312,0.165329,0.048868 +bot_00436,churn_sensitive,0.4036,0.7487,0.2746,0.4040,0.7316,0.6672,0.7134,1.0000,0.5231,0.129776,0.434344,0.211701,0.224179 +bot_00437,reward_heavy,1.0000,0.7338,0.6874,1.0000,0.7226,0.5073,0.9116,0.8233,1.0000,0.460423,0.365962,0.164483,0.009132 +bot_00438,interstitial_focus,0.6918,1.0000,0.6346,0.9467,1.0000,0.5712,0.8345,1.0000,1.0000,0.371974,0.552365,0.064367,0.011295 +bot_00439,interstitial_focus,0.6736,1.0000,0.6152,0.5644,1.0000,0.8310,0.8865,0.8444,1.0000,0.304284,0.372734,0.203123,0.119858 +bot_00440,network_bound,0.9283,0.7092,0.6685,0.8524,0.6662,0.8747,0.8261,1.0000,0.9145,0.074408,0.084832,0.255846,0.584914 +bot_00441,splash_driven,0.7649,0.8564,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8624,0.785632,0.172475,0.031118,0.010775 +bot_00442,splash_driven,0.7757,0.7391,1.0000,0.8425,1.0000,1.0000,0.9933,0.8431,0.9449,0.575801,0.259663,0.155797,0.008739 +bot_00443,splash_driven,0.7239,1.0000,1.0000,1.0000,0.8808,1.0000,1.0000,1.0000,0.8707,0.900628,0.037717,0.051432,0.010224 +bot_00444,churn_sensitive,0.3203,0.4683,0.3037,0.6366,0.6829,0.5065,0.7750,1.0000,0.6207,0.241045,0.197779,0.408221,0.152956 +bot_00445,churn_sensitive,0.7516,0.6388,0.6278,0.5360,0.5443,0.4386,0.6216,1.0000,0.6906,0.372871,0.242770,0.258459,0.125900 +bot_00446,balanced,1.0000,1.0000,1.0000,0.9471,0.8077,1.0000,1.0000,1.0000,1.0000,0.434142,0.229900,0.327115,0.008843 +bot_00447,splash_driven,0.9941,1.0000,1.0000,0.8514,0.8841,1.0000,0.8393,1.0000,0.9936,0.713869,0.060456,0.100869,0.124806 +bot_00448,interstitial_focus,0.6434,1.0000,0.6815,0.7658,1.0000,0.8372,0.9455,1.0000,0.9366,0.220911,0.424794,0.219486,0.134810 +bot_00449,interstitial_focus,0.5480,1.0000,0.6970,0.5823,1.0000,0.8651,0.8254,1.0000,0.9632,0.334088,0.444837,0.211769,0.009306 +bot_00450,splash_driven,0.9597,0.8543,1.0000,1.0000,0.8164,1.0000,1.0000,1.0000,0.9237,0.656181,0.281331,0.008619,0.053869 +bot_00451,interstitial_focus,0.6248,1.0000,0.7615,0.9773,1.0000,0.6909,0.9197,0.9585,0.9772,0.250794,0.433043,0.108818,0.207344 +bot_00452,splash_driven,0.7672,1.0000,1.0000,0.9473,0.9218,1.0000,1.0000,1.0000,0.9306,0.712932,0.213037,0.057597,0.016434 +bot_00453,reward_heavy,1.0000,0.8887,1.0000,1.0000,0.6175,0.8148,0.9865,1.0000,1.0000,0.659961,0.245463,0.011266,0.083310 +bot_00454,interstitial_focus,0.6902,1.0000,0.8972,0.5796,1.0000,0.6178,1.0000,0.9369,1.0000,0.257167,0.516771,0.080807,0.145255 +bot_00455,churn_sensitive,0.6277,0.5717,0.2204,0.6428,0.4965,0.6121,0.6254,1.0000,0.6238,0.109146,0.320776,0.235442,0.334635 +bot_00456,churn_sensitive,0.7773,0.7466,0.3820,0.4979,0.7598,0.3997,0.6328,1.0000,0.4666,0.246955,0.246777,0.260444,0.245824 +bot_00457,reward_heavy,1.0000,0.7684,0.8410,1.0000,0.8451,0.5466,1.0000,0.7688,1.0000,0.597510,0.337909,0.020565,0.044017 +bot_00458,interstitial_focus,0.9577,1.0000,0.7662,0.9663,1.0000,0.8069,1.0000,1.0000,1.0000,0.440106,0.390914,0.158612,0.010368 +bot_00459,churn_sensitive,0.5357,0.6692,0.2776,0.3990,0.6529,0.3900,0.7572,1.0000,0.6735,0.211267,0.192497,0.482264,0.113972 +bot_00460,splash_driven,0.8348,0.7903,1.0000,1.0000,0.9854,1.0000,0.8412,1.0000,1.0000,0.824694,0.111226,0.009437,0.054643 +bot_00461,balanced,1.0000,0.9751,0.8643,1.0000,0.8277,1.0000,0.9165,0.9986,1.0000,0.378612,0.253380,0.357146,0.010862 +bot_00462,churn_sensitive,0.6949,0.7258,0.3160,0.7052,0.5813,0.3375,0.7678,1.0000,0.5975,0.328377,0.184376,0.332107,0.155141 +bot_00463,interstitial_focus,0.5287,1.0000,0.7211,0.7319,1.0000,0.5304,1.0000,0.8290,1.0000,0.355282,0.449427,0.059498,0.135793 +bot_00464,churn_sensitive,0.7321,0.7032,0.2913,0.5745,0.7298,0.6605,0.7258,1.0000,0.4615,0.355095,0.267025,0.291931,0.085949 +bot_00465,churn_sensitive,0.4265,0.4099,0.3844,0.7470,0.5496,0.6096,0.7728,1.0000,0.6515,0.144415,0.261146,0.345122,0.249316 +bot_00466,reward_heavy,1.0000,0.7422,0.5983,1.0000,0.5852,0.5841,0.9782,0.9718,1.0000,0.492818,0.240818,0.152174,0.114190 +bot_00467,churn_sensitive,0.7833,0.6605,0.4646,0.7628,0.7432,0.4285,0.7436,1.0000,0.4817,0.276241,0.265022,0.144361,0.314375 +bot_00468,reward_heavy,1.0000,0.8870,0.8382,1.0000,0.7274,0.4639,1.0000,0.9272,1.0000,0.586279,0.148543,0.206661,0.058517 +bot_00469,interstitial_focus,0.8315,1.0000,0.9890,0.5645,1.0000,0.4963,1.0000,0.9419,1.0000,0.293205,0.467206,0.222159,0.017430 +bot_00470,balanced,1.0000,1.0000,0.9388,1.0000,0.9966,1.0000,0.9734,1.0000,0.8809,0.342066,0.327602,0.185674,0.144658 +bot_00471,splash_driven,1.0000,0.7190,1.0000,1.0000,1.0000,1.0000,0.9075,1.0000,0.8557,0.661686,0.316813,0.010750,0.010750 +bot_00472,reward_heavy,1.0000,0.7162,0.6467,1.0000,0.9202,0.7502,0.9096,0.8723,1.0000,0.570110,0.334322,0.087248,0.008319 +bot_00473,interstitial_focus,0.6055,1.0000,0.7121,0.9831,1.0000,0.6785,0.8885,0.9649,0.9961,0.212845,0.469533,0.198873,0.118749 +bot_00474,balanced,0.9691,1.0000,0.8962,0.8978,0.9528,0.8187,1.0000,1.0000,0.9699,0.351350,0.233630,0.403045,0.011974 +bot_00475,network_bound,0.6601,0.8539,0.8834,0.8677,0.9069,0.6049,0.7195,1.0000,0.7298,0.016978,0.301240,0.333559,0.348223 +bot_00476,splash_driven,0.7380,0.9485,1.0000,1.0000,1.0000,1.0000,0.8586,1.0000,0.9546,0.706229,0.110872,0.091652,0.091246 +bot_00477,churn_sensitive,0.3691,0.5432,0.6721,0.5577,0.5923,0.6605,0.8561,1.0000,0.6161,0.120287,0.339776,0.372140,0.167797 +bot_00478,balanced,0.8145,1.0000,1.0000,1.0000,0.9989,0.8390,1.0000,0.8335,0.9011,0.269756,0.174787,0.350941,0.204516 +bot_00479,interstitial_focus,0.6237,1.0000,0.6227,0.9563,1.0000,0.8262,1.0000,0.9865,1.0000,0.443272,0.354174,0.191463,0.011090 +bot_00480,splash_driven,1.0000,0.7783,1.0000,0.8063,1.0000,1.0000,0.8774,0.9300,1.0000,0.647694,0.270880,0.008851,0.072574 +bot_00481,balanced,0.8370,1.0000,0.9570,0.9318,0.9422,0.8712,1.0000,1.0000,1.0000,0.478063,0.190495,0.254499,0.076943 +bot_00482,splash_driven,0.7200,1.0000,1.0000,0.8269,0.9500,1.0000,0.8052,1.0000,0.9193,0.691006,0.229737,0.008642,0.070616 +bot_00483,interstitial_focus,0.6210,1.0000,0.9642,0.5760,1.0000,0.5735,0.8758,1.0000,0.9364,0.303076,0.496480,0.165353,0.035091 +bot_00484,splash_driven,0.6561,0.7281,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8953,0.542233,0.276360,0.172574,0.008833 +bot_00485,interstitial_focus,0.5893,1.0000,0.7445,0.9830,1.0000,0.7785,1.0000,1.0000,1.0000,0.237755,0.486850,0.061227,0.214168 +bot_00486,reward_heavy,1.0000,0.8291,0.5798,1.0000,0.8601,0.5844,0.9015,0.9932,1.0000,0.537099,0.308958,0.146231,0.007712 +bot_00487,balanced,0.8605,1.0000,1.0000,1.0000,1.0000,0.7833,0.8965,0.8799,0.9791,0.452391,0.262797,0.174650,0.110161 +bot_00488,interstitial_focus,0.5859,1.0000,0.7502,0.7517,1.0000,0.6395,1.0000,0.8993,1.0000,0.232040,0.358380,0.397811,0.011769 +bot_00489,balanced,0.8293,1.0000,1.0000,1.0000,0.9012,0.9792,1.0000,1.0000,0.9318,0.389098,0.334736,0.132304,0.143863 +bot_00490,reward_heavy,1.0000,0.9465,0.8165,1.0000,0.6057,0.5955,1.0000,0.8642,1.0000,0.720259,0.143386,0.126015,0.010340 +bot_00491,reward_heavy,1.0000,0.7157,0.7770,1.0000,0.6916,0.7934,1.0000,0.9591,1.0000,0.727169,0.251108,0.010861,0.010861 +bot_00492,reward_heavy,1.0000,0.5994,0.7368,1.0000,0.5431,0.7855,1.0000,0.9994,1.0000,0.682139,0.241788,0.065165,0.010908 +bot_00493,splash_driven,0.7183,1.0000,1.0000,0.8742,1.0000,1.0000,0.8660,0.9048,1.0000,0.757274,0.081853,0.029572,0.131302 +bot_00494,interstitial_focus,0.8084,1.0000,0.9131,0.5895,1.0000,0.6830,0.9484,1.0000,1.0000,0.256604,0.477841,0.256895,0.008660 +bot_00495,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8670,0.8473,0.9050,0.444017,0.367661,0.172286,0.016035 +bot_00496,splash_driven,0.9788,1.0000,1.0000,0.9743,0.8180,1.0000,1.0000,1.0000,0.9231,0.627469,0.211106,0.151262,0.010163 +bot_00497,splash_driven,0.6604,0.9838,1.0000,0.8952,0.8201,1.0000,0.9279,1.0000,0.9211,0.835548,0.137676,0.013388,0.013388 +bot_00498,balanced,0.8662,1.0000,1.0000,0.8533,0.9354,1.0000,0.9763,0.9895,0.9390,0.421762,0.285050,0.174246,0.118942 +bot_00499,reward_heavy,1.0000,0.6878,0.7105,1.0000,0.5971,0.4279,1.0000,0.9945,1.0000,0.641855,0.340821,0.008662,0.008662 +bot_00500,splash_driven,0.6537,0.7294,1.0000,0.9826,1.0000,1.0000,0.8833,1.0000,1.0000,0.679309,0.198763,0.103237,0.018691 +bot_00501,churn_sensitive,0.6979,0.8477,0.4881,0.5078,0.4886,0.3842,0.7293,1.0000,0.5360,0.112441,0.306761,0.356822,0.223976 +bot_00502,splash_driven,0.9838,1.0000,1.0000,1.0000,1.0000,1.0000,0.9388,0.9060,0.9649,0.665043,0.230683,0.096057,0.008217 +bot_00503,network_bound,0.8441,0.6419,0.7695,0.7759,0.7557,0.7429,0.5320,1.0000,0.7157,0.071351,0.123857,0.296015,0.508777 +bot_00504,balanced,1.0000,1.0000,1.0000,0.9083,1.0000,0.7928,1.0000,0.8344,1.0000,0.481537,0.353170,0.151820,0.013473 +bot_00505,churn_sensitive,0.6256,0.8322,0.5686,0.3829,0.7401,0.5048,0.5838,1.0000,0.5104,0.235408,0.451445,0.236678,0.076469 +bot_00506,splash_driven,0.9928,0.6972,1.0000,0.8888,1.0000,1.0000,0.8340,1.0000,1.0000,0.681303,0.100059,0.160049,0.058589 +bot_00507,reward_heavy,1.0000,1.0000,0.7624,1.0000,0.6671,0.7113,0.9454,0.8991,1.0000,0.572056,0.171642,0.061202,0.195100 +bot_00508,balanced,1.0000,1.0000,1.0000,1.0000,0.8423,1.0000,0.9839,1.0000,1.0000,0.487366,0.231940,0.104392,0.176301 +bot_00509,interstitial_focus,0.5173,1.0000,0.8283,0.6799,1.0000,0.5510,0.9977,0.9077,1.0000,0.331461,0.344652,0.166807,0.157081 +bot_00510,network_bound,0.7832,0.9354,0.6648,0.7701,0.6745,0.6174,0.6885,1.0000,0.8168,0.211524,0.188545,0.282241,0.317690 +bot_00511,churn_sensitive,0.6884,0.5133,0.6687,0.4536,0.5641,0.5687,0.6719,1.0000,0.4948,0.259667,0.243889,0.286642,0.209802 +bot_00512,network_bound,1.0000,0.7571,0.5641,0.7984,0.7313,0.8854,0.7439,1.0000,0.8536,0.009025,0.254199,0.318746,0.418029 +bot_00513,splash_driven,0.8959,1.0000,1.0000,0.8155,1.0000,1.0000,0.8942,1.0000,0.9222,0.799859,0.176633,0.011754,0.011754 +bot_00514,splash_driven,0.7574,1.0000,1.0000,1.0000,1.0000,1.0000,0.9047,1.0000,0.8485,0.769288,0.132291,0.073775,0.024646 +bot_00515,balanced,1.0000,0.9511,1.0000,1.0000,1.0000,0.9431,1.0000,0.8263,1.0000,0.433954,0.370245,0.184036,0.011765 +bot_00516,network_bound,0.8622,0.9120,0.8920,0.8819,0.6044,0.6509,0.8046,1.0000,0.7827,0.012463,0.083606,0.325728,0.578203 +bot_00517,reward_heavy,1.0000,0.7142,0.9249,1.0000,0.7115,0.4484,1.0000,0.8238,1.0000,0.577806,0.177832,0.128467,0.115895 +bot_00518,splash_driven,0.7902,0.8573,1.0000,1.0000,0.9451,1.0000,1.0000,0.8531,0.9813,0.722360,0.260432,0.008604,0.008604 +bot_00519,splash_driven,0.8648,0.8602,1.0000,1.0000,0.9486,1.0000,0.8225,1.0000,0.9184,0.733700,0.227630,0.030264,0.008406 +bot_00520,interstitial_focus,0.6503,1.0000,0.8968,0.7037,1.0000,0.5836,0.9760,0.8430,1.0000,0.323140,0.377121,0.193465,0.106274 +bot_00521,reward_heavy,1.0000,0.8701,1.0000,1.0000,0.8833,0.4060,1.0000,0.9065,1.0000,0.460871,0.310151,0.219555,0.009422 +bot_00522,churn_sensitive,0.4928,0.6871,0.2835,0.4941,0.4844,0.6279,0.6238,1.0000,0.5195,0.233781,0.150934,0.409396,0.205890 +bot_00523,network_bound,1.0000,0.9663,0.5615,0.8421,0.7989,0.8644,0.6887,1.0000,0.9038,0.078047,0.286339,0.374641,0.260973 +bot_00524,reward_heavy,1.0000,0.7118,1.0000,1.0000,0.8606,0.6336,0.9705,0.7818,1.0000,0.599649,0.205874,0.157336,0.037141 +bot_00525,interstitial_focus,0.8210,1.0000,0.7978,0.5649,1.0000,0.8618,0.8112,0.8981,1.0000,0.342601,0.406228,0.144223,0.106948 +bot_00526,reward_heavy,1.0000,0.9891,0.6973,1.0000,0.9039,0.5585,1.0000,0.9899,1.0000,0.737217,0.241025,0.010879,0.010879 +bot_00527,network_bound,0.9161,0.6222,0.9624,1.0000,0.9003,0.8268,0.6683,1.0000,0.8694,0.047033,0.051131,0.426501,0.475336 +bot_00528,reward_heavy,1.0000,0.8351,0.9825,1.0000,0.8490,0.8027,1.0000,0.7445,1.0000,0.656947,0.311243,0.013800,0.018010 +bot_00529,splash_driven,0.7246,0.7706,1.0000,0.8591,0.9261,1.0000,1.0000,1.0000,1.0000,0.870536,0.104453,0.012505,0.012505 +bot_00530,churn_sensitive,0.3258,0.7480,0.2328,0.8142,0.7086,0.6012,0.6647,1.0000,0.6557,0.107170,0.446673,0.332504,0.113654 +bot_00531,balanced,0.8953,1.0000,0.8996,1.0000,1.0000,0.8912,0.8971,0.9497,1.0000,0.459730,0.367054,0.163653,0.009564 +bot_00532,network_bound,0.6529,0.9816,0.6980,0.7250,0.8396,0.6412,0.6119,1.0000,0.8195,0.011646,0.193048,0.194817,0.600489 +bot_00533,interstitial_focus,0.4949,1.0000,0.7490,0.8733,1.0000,0.9114,1.0000,1.0000,1.0000,0.328957,0.429210,0.124146,0.117687 +bot_00534,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9480,0.9256,1.0000,0.8958,0.454421,0.318172,0.213791,0.013615 +bot_00535,interstitial_focus,0.5281,1.0000,0.8070,0.6271,1.0000,0.8078,0.9077,0.8579,1.0000,0.380878,0.400244,0.090887,0.127992 +bot_00536,balanced,1.0000,1.0000,1.0000,1.0000,0.9202,0.8702,1.0000,1.0000,0.9060,0.337776,0.385080,0.264478,0.012666 +bot_00537,interstitial_focus,0.6648,1.0000,1.0000,0.8815,1.0000,0.4907,0.9611,1.0000,0.9768,0.243521,0.327919,0.348450,0.080110 +bot_00538,splash_driven,0.7057,0.6884,1.0000,1.0000,0.8440,1.0000,1.0000,0.9646,1.0000,0.607779,0.196785,0.150144,0.045291 +bot_00539,churn_sensitive,0.6515,0.4908,0.3051,0.5272,0.6861,0.4388,0.6831,1.0000,0.4611,0.185310,0.240260,0.322793,0.251637 +bot_00540,balanced,1.0000,1.0000,1.0000,1.0000,0.8207,0.9142,1.0000,0.9877,1.0000,0.406127,0.336851,0.196900,0.060121 +bot_00541,splash_driven,0.7333,0.8938,1.0000,0.8834,0.8680,1.0000,0.9243,0.9059,0.8996,0.879243,0.073705,0.035874,0.011179 +bot_00542,churn_sensitive,0.3443,0.5016,0.2726,0.5910,0.4295,0.4108,0.7815,1.0000,0.6747,0.276569,0.199340,0.368340,0.155751 +bot_00543,balanced,1.0000,1.0000,1.0000,0.9437,1.0000,0.9546,0.9862,1.0000,1.0000,0.444083,0.244586,0.137706,0.173625 +bot_00544,interstitial_focus,0.6244,1.0000,0.7364,0.6405,1.0000,0.6619,1.0000,1.0000,0.9715,0.210548,0.457160,0.204943,0.127349 +bot_00545,balanced,0.9940,1.0000,1.0000,1.0000,0.9925,1.0000,0.9631,1.0000,0.9885,0.534626,0.307689,0.146890,0.010795 +bot_00546,churn_sensitive,0.4053,0.5835,0.5454,0.5657,0.3982,0.3165,0.6581,1.0000,0.6702,0.350736,0.190138,0.173921,0.285204 +bot_00547,network_bound,0.6810,1.0000,0.7313,0.6731,0.9816,0.8868,0.6710,1.0000,0.7733,0.097520,0.075599,0.338724,0.488157 +bot_00548,reward_heavy,1.0000,0.6900,0.5624,1.0000,0.7664,0.6061,1.0000,0.9988,1.0000,0.650735,0.328472,0.010396,0.010396 +bot_00549,reward_heavy,1.0000,0.8833,0.9300,1.0000,0.9019,0.4232,1.0000,0.8032,1.0000,0.740982,0.143386,0.104727,0.010905 +bot_00550,splash_driven,0.9839,0.6859,1.0000,0.8291,1.0000,1.0000,1.0000,0.8539,0.8455,0.586740,0.201277,0.112439,0.099544 +bot_00551,splash_driven,0.9765,0.7213,1.0000,1.0000,1.0000,1.0000,1.0000,0.9671,0.8995,0.717202,0.264093,0.009352,0.009352 +bot_00552,interstitial_focus,0.9510,1.0000,0.7922,0.7851,1.0000,0.9191,0.8418,0.9947,1.0000,0.434960,0.450811,0.101574,0.012655 +bot_00553,churn_sensitive,0.3884,0.8238,0.2884,0.8002,0.3598,0.4793,0.7490,1.0000,0.5796,0.295124,0.280659,0.242186,0.182031 +bot_00554,splash_driven,0.8492,0.7717,1.0000,1.0000,0.9089,1.0000,0.7875,1.0000,0.8406,0.714190,0.182013,0.009553,0.094245 +bot_00555,splash_driven,0.6737,0.7197,1.0000,0.8823,0.9229,1.0000,1.0000,1.0000,1.0000,0.588364,0.220800,0.108373,0.082463 +bot_00556,splash_driven,0.7175,0.9042,1.0000,1.0000,1.0000,1.0000,0.8741,0.8806,0.9795,0.658678,0.114848,0.146533,0.079941 +bot_00557,interstitial_focus,0.8365,1.0000,0.8197,0.6628,1.0000,0.7315,1.0000,1.0000,1.0000,0.245135,0.463851,0.170056,0.120959 +bot_00558,reward_heavy,1.0000,1.0000,0.7044,1.0000,0.5929,0.7048,1.0000,0.7386,1.0000,0.585912,0.355745,0.049665,0.008678 +bot_00559,interstitial_focus,0.4928,1.0000,0.9994,0.6488,1.0000,0.4911,1.0000,1.0000,1.0000,0.232252,0.607040,0.141654,0.019055 +bot_00560,interstitial_focus,0.5978,1.0000,0.9342,0.7250,1.0000,0.8732,0.8867,1.0000,1.0000,0.487846,0.411450,0.090111,0.010592 +bot_00561,reward_heavy,1.0000,0.6101,1.0000,1.0000,0.9016,0.6773,1.0000,1.0000,1.0000,0.589300,0.313386,0.048816,0.048498 +bot_00562,splash_driven,1.0000,1.0000,1.0000,1.0000,0.8107,1.0000,0.8537,1.0000,1.0000,0.644633,0.243893,0.007836,0.103638 +bot_00563,reward_heavy,1.0000,0.7338,1.0000,1.0000,0.8788,0.4609,0.9713,0.6927,1.0000,0.508806,0.293696,0.069129,0.128369 +bot_00564,churn_sensitive,0.6739,0.6562,0.5022,0.5220,0.6362,0.5168,0.8214,1.0000,0.5381,0.133269,0.471378,0.221347,0.174005 +bot_00565,reward_heavy,1.0000,0.6660,0.9270,1.0000,0.9624,0.5576,1.0000,0.7303,1.0000,0.492570,0.380020,0.009248,0.118162 +bot_00566,interstitial_focus,0.8309,1.0000,1.0000,0.6738,1.0000,0.8506,1.0000,1.0000,1.0000,0.373006,0.224985,0.277756,0.124253 +bot_00567,network_bound,0.8022,0.7228,0.5932,0.8280,0.8712,0.6002,0.8000,1.0000,0.7628,0.055489,0.137758,0.331327,0.475425 +bot_00568,reward_heavy,1.0000,0.8095,0.8685,1.0000,0.8936,0.4926,0.9408,0.8981,1.0000,0.562592,0.156422,0.229467,0.051519 +bot_00569,splash_driven,0.8166,0.9598,1.0000,1.0000,1.0000,1.0000,0.8203,1.0000,0.9071,0.593682,0.201218,0.108796,0.096304 +bot_00570,splash_driven,0.7190,1.0000,1.0000,0.8220,0.8319,1.0000,0.9126,1.0000,0.9310,0.678964,0.117409,0.142036,0.061591 +bot_00571,reward_heavy,1.0000,0.6129,0.7519,1.0000,0.7548,0.6133,1.0000,0.9360,1.0000,0.624737,0.198849,0.167325,0.009089 +bot_00572,splash_driven,1.0000,0.7178,1.0000,0.9134,1.0000,1.0000,0.9907,1.0000,0.9625,0.881310,0.091743,0.014255,0.012692 +bot_00573,churn_sensitive,0.5801,0.8068,0.2833,0.5079,0.7465,0.4283,0.6120,1.0000,0.5903,0.172784,0.309435,0.308970,0.208810 +bot_00574,balanced,1.0000,1.0000,1.0000,0.8358,1.0000,0.8684,0.9953,0.9316,0.9358,0.422194,0.386293,0.179853,0.011660 +bot_00575,balanced,1.0000,1.0000,1.0000,1.0000,0.9083,0.9477,0.9142,1.0000,1.0000,0.454416,0.354472,0.084267,0.106845 +bot_00576,interstitial_focus,0.8540,1.0000,0.7091,0.8397,1.0000,0.6403,0.9005,1.0000,0.9592,0.202319,0.409132,0.242193,0.146356 +bot_00577,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9488,1.0000,0.438543,0.226760,0.260570,0.074127 +bot_00578,network_bound,0.8111,0.6948,0.5708,0.7376,0.7360,0.5012,0.7697,1.0000,0.8818,0.009327,0.299643,0.223235,0.467795 +bot_00579,balanced,0.9657,1.0000,0.9345,1.0000,0.9518,1.0000,0.8735,1.0000,1.0000,0.363979,0.370280,0.257135,0.008606 +bot_00580,balanced,1.0000,1.0000,1.0000,0.8550,0.8092,1.0000,0.9789,0.9008,1.0000,0.391659,0.468037,0.090376,0.049927 +bot_00581,churn_sensitive,0.3246,0.7929,0.4520,0.6827,0.4327,0.4777,0.7770,1.0000,0.4676,0.195055,0.285145,0.238358,0.281442 +bot_00582,network_bound,0.9838,0.8043,0.5791,1.0000,0.7171,0.6277,0.5644,1.0000,0.8636,0.010980,0.163978,0.281768,0.543274 +bot_00583,splash_driven,0.6977,1.0000,1.0000,0.9770,0.8925,1.0000,1.0000,1.0000,0.9477,0.647631,0.256220,0.010375,0.085774 +bot_00584,balanced,1.0000,1.0000,0.8917,1.0000,0.7936,0.8552,1.0000,1.0000,0.9296,0.310640,0.320801,0.187207,0.181352 +bot_00585,interstitial_focus,0.8417,1.0000,0.6554,0.7599,1.0000,0.6956,1.0000,0.9706,1.0000,0.322753,0.355869,0.217378,0.104000 +bot_00586,splash_driven,0.8638,0.7963,1.0000,1.0000,0.9563,1.0000,1.0000,1.0000,0.9643,0.833074,0.094113,0.060108,0.012705 +bot_00587,interstitial_focus,0.9262,1.0000,0.8316,0.6086,1.0000,0.8118,1.0000,0.9383,1.0000,0.300922,0.374010,0.314785,0.010282 +bot_00588,balanced,0.8723,0.9449,1.0000,1.0000,0.8475,1.0000,1.0000,0.8311,1.0000,0.411774,0.363580,0.212038,0.012608 +bot_00589,network_bound,0.9202,0.9854,0.9315,0.9186,0.5625,0.6256,0.7639,1.0000,0.8619,0.162340,0.163834,0.215156,0.458671 +bot_00590,splash_driven,1.0000,0.7292,1.0000,0.8725,1.0000,1.0000,0.9900,0.9027,1.0000,0.648958,0.241121,0.099278,0.010642 +bot_00591,reward_heavy,1.0000,0.9820,0.6038,1.0000,0.5532,0.7882,1.0000,1.0000,1.0000,0.536712,0.287873,0.134735,0.040679 +bot_00592,reward_heavy,1.0000,0.5960,0.6473,1.0000,0.7353,0.4438,0.9724,0.9215,1.0000,0.650354,0.332112,0.008767,0.008767 +bot_00593,reward_heavy,1.0000,0.6337,0.7337,1.0000,0.7008,0.4289,0.9771,1.0000,1.0000,0.684087,0.188215,0.012381,0.115318 +bot_00594,balanced,0.9070,1.0000,1.0000,1.0000,1.0000,1.0000,0.9763,1.0000,0.9746,0.314114,0.373909,0.242690,0.069287 +bot_00595,interstitial_focus,0.7194,1.0000,0.7695,0.5838,1.0000,0.8435,1.0000,1.0000,1.0000,0.192934,0.456668,0.337176,0.013222 +bot_00596,reward_heavy,1.0000,0.7664,0.8567,1.0000,0.9541,0.4917,0.9583,0.9002,1.0000,0.536646,0.277848,0.074914,0.110592 +bot_00597,balanced,0.8574,1.0000,1.0000,1.0000,1.0000,0.9942,0.8862,0.9259,1.0000,0.349456,0.327567,0.226746,0.096231 +bot_00598,reward_heavy,1.0000,0.8626,0.6973,1.0000,0.7660,0.5001,0.9514,1.0000,1.0000,0.548664,0.307988,0.134496,0.008852 +bot_00599,network_bound,0.6977,0.8031,0.8987,0.8555,0.5676,0.5783,0.5954,1.0000,0.7000,0.162410,0.177284,0.235900,0.424405 +bot_00600,reward_heavy,1.0000,0.7830,0.6192,1.0000,0.6307,0.4999,0.9241,0.9715,1.0000,0.547532,0.295129,0.148419,0.008920 +bot_00601,interstitial_focus,0.7810,1.0000,0.9234,0.7538,1.0000,0.5133,1.0000,0.9288,1.0000,0.256382,0.421594,0.241811,0.080213 +bot_00602,network_bound,1.0000,1.0000,0.5819,0.6629,0.8488,0.5014,0.7545,1.0000,0.8588,0.147666,0.290655,0.144458,0.417222 +bot_00603,reward_heavy,1.0000,0.7943,0.9889,1.0000,0.5679,0.7585,1.0000,0.8196,1.0000,0.520691,0.332442,0.116897,0.029970 +bot_00604,reward_heavy,1.0000,0.6792,0.6640,1.0000,0.6520,0.7947,1.0000,1.0000,1.0000,0.738741,0.150050,0.101200,0.010010 +bot_00605,interstitial_focus,0.5233,1.0000,0.8558,0.5674,1.0000,0.8700,0.8374,1.0000,1.0000,0.318857,0.418964,0.252016,0.010162 +bot_00606,network_bound,0.9832,0.9720,0.6098,0.9744,0.6105,0.6136,0.5704,1.0000,0.7193,0.131481,0.155371,0.207113,0.506035 +bot_00607,network_bound,0.6385,1.0000,0.6274,0.6792,0.7943,0.7748,0.8271,1.0000,0.8598,0.171005,0.228790,0.375130,0.225076 +bot_00608,splash_driven,0.9433,0.9346,1.0000,1.0000,1.0000,1.0000,0.8895,1.0000,1.0000,0.614214,0.211333,0.072590,0.101863 +bot_00609,splash_driven,0.9247,0.8612,1.0000,0.9282,0.8597,1.0000,0.9134,1.0000,0.9567,0.685951,0.250044,0.010974,0.053032 +bot_00610,interstitial_focus,0.4998,1.0000,1.0000,0.9803,1.0000,0.5666,1.0000,0.9370,1.0000,0.349287,0.538701,0.084124,0.027888 +bot_00611,splash_driven,1.0000,0.9599,1.0000,1.0000,1.0000,1.0000,1.0000,0.9924,1.0000,0.849607,0.052411,0.012647,0.085335 +bot_00612,interstitial_focus,0.7133,1.0000,0.9331,0.7896,1.0000,0.7698,0.9121,0.9060,1.0000,0.380577,0.511342,0.097278,0.010804 +bot_00613,reward_heavy,1.0000,0.8359,0.7199,1.0000,0.9769,0.7291,0.9504,0.7517,1.0000,0.523532,0.255210,0.188889,0.032369 +bot_00614,interstitial_focus,0.4976,1.0000,0.6947,0.9867,1.0000,0.5183,1.0000,0.9918,0.9509,0.270051,0.547000,0.059056,0.123893 +bot_00615,balanced,1.0000,1.0000,1.0000,1.0000,0.8437,0.8367,0.8962,1.0000,0.9085,0.341512,0.433581,0.214671,0.010237 +bot_00616,splash_driven,0.6937,1.0000,1.0000,1.0000,0.9704,1.0000,0.8128,0.9056,0.9652,0.654371,0.193575,0.008702,0.143352 +bot_00617,churn_sensitive,0.5888,0.4018,0.5654,0.7719,0.7585,0.4682,0.6850,1.0000,0.6523,0.296958,0.353562,0.237976,0.111503 +bot_00618,splash_driven,1.0000,1.0000,1.0000,0.8212,0.9278,1.0000,1.0000,1.0000,1.0000,0.794439,0.125667,0.012541,0.067354 +bot_00619,reward_heavy,1.0000,0.8144,0.6217,1.0000,0.5569,0.8098,1.0000,0.8097,1.0000,0.519676,0.412802,0.011169,0.056353 +bot_00620,network_bound,0.6681,0.7780,0.8939,0.7627,0.6152,0.8694,0.6987,1.0000,0.7224,0.153033,0.123024,0.308632,0.415311 +bot_00621,interstitial_focus,0.6199,1.0000,0.6866,0.7238,1.0000,0.7672,1.0000,0.8416,0.9532,0.379396,0.404869,0.203882,0.011854 +bot_00622,network_bound,1.0000,0.7634,0.9995,1.0000,0.9022,0.7759,0.6523,1.0000,0.7015,0.140644,0.251232,0.161930,0.446193 +bot_00623,interstitial_focus,0.5082,1.0000,0.8930,0.8861,1.0000,0.6319,0.8969,1.0000,1.0000,0.362965,0.402079,0.225962,0.008994 +bot_00624,interstitial_focus,0.4831,1.0000,0.9488,0.7321,1.0000,0.5290,0.9058,1.0000,0.9382,0.353778,0.328977,0.305483,0.011762 +bot_00625,splash_driven,0.8519,0.8434,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.679520,0.152008,0.159696,0.008776 +bot_00626,splash_driven,0.7045,1.0000,1.0000,1.0000,0.9022,1.0000,0.8425,1.0000,0.9575,0.585766,0.297658,0.009541,0.107035 +bot_00627,network_bound,0.9124,0.8387,0.8071,0.7941,0.9739,0.6153,0.7265,1.0000,0.7811,0.011637,0.212472,0.187291,0.588599 +bot_00628,reward_heavy,1.0000,0.6500,0.9536,1.0000,0.7227,0.4993,0.9455,1.0000,1.0000,0.588180,0.211431,0.101689,0.098700 +bot_00629,interstitial_focus,0.7263,1.0000,0.9981,0.6923,1.0000,0.5318,0.8811,1.0000,1.0000,0.349675,0.342353,0.298302,0.009671 +bot_00630,interstitial_focus,0.6526,1.0000,0.6775,0.9275,1.0000,0.5846,1.0000,0.9493,1.0000,0.472919,0.333754,0.131669,0.061659 +bot_00631,interstitial_focus,0.9488,1.0000,1.0000,0.8364,1.0000,0.9057,0.8790,1.0000,0.9882,0.413968,0.274517,0.187786,0.123728 +bot_00632,network_bound,1.0000,0.9296,0.6760,0.7735,0.8770,0.5299,0.7516,1.0000,0.7867,0.013099,0.332725,0.202886,0.451290 +bot_00633,balanced,0.8802,1.0000,1.0000,0.9898,1.0000,1.0000,1.0000,1.0000,0.9996,0.460654,0.275211,0.142544,0.121591 +bot_00634,balanced,1.0000,0.8917,0.9430,1.0000,0.8018,0.8460,1.0000,1.0000,0.9720,0.399335,0.327949,0.248627,0.024089 +bot_00635,interstitial_focus,0.8995,1.0000,0.7233,0.8982,1.0000,0.8227,1.0000,1.0000,0.9676,0.276065,0.465077,0.249322,0.009536 +bot_00636,interstitial_focus,0.5625,1.0000,0.7132,0.6107,1.0000,0.6162,0.9256,1.0000,1.0000,0.361146,0.524145,0.104529,0.010180 +bot_00637,balanced,1.0000,0.9122,0.8645,0.9440,1.0000,0.9596,0.9163,0.8368,1.0000,0.449739,0.334143,0.205191,0.010928 +bot_00638,interstitial_focus,0.8149,1.0000,0.8495,0.9893,1.0000,0.6313,1.0000,1.0000,0.9453,0.259613,0.529033,0.201345,0.010010 +bot_00639,interstitial_focus,0.8415,1.0000,0.7246,0.8885,1.0000,0.6741,1.0000,1.0000,1.0000,0.369782,0.485556,0.086969,0.057693 +bot_00640,reward_heavy,1.0000,0.6970,0.6727,1.0000,0.6566,0.7512,1.0000,0.8391,1.0000,0.636768,0.207283,0.136136,0.019812 +bot_00641,balanced,0.8208,1.0000,1.0000,0.9829,0.9260,1.0000,1.0000,1.0000,1.0000,0.455865,0.288777,0.067819,0.187539 +bot_00642,reward_heavy,1.0000,0.6686,0.6734,1.0000,0.6277,0.5943,1.0000,0.7175,1.0000,0.523736,0.274163,0.116251,0.085851 +bot_00643,balanced,1.0000,0.9152,1.0000,1.0000,1.0000,1.0000,0.8526,0.8904,1.0000,0.281176,0.415560,0.257393,0.045870 +bot_00644,churn_sensitive,0.5367,0.6517,0.3891,0.5685,0.6312,0.3537,0.7211,1.0000,0.5338,0.328458,0.220315,0.230122,0.221106 +bot_00645,churn_sensitive,0.3191,0.7388,0.3979,0.5949,0.4997,0.2779,0.6955,1.0000,0.5927,0.167615,0.327092,0.367314,0.137979 +bot_00646,splash_driven,0.9767,0.6906,1.0000,1.0000,1.0000,1.0000,0.8781,0.8708,1.0000,0.584150,0.237447,0.130636,0.047766 +bot_00647,balanced,1.0000,0.9944,1.0000,1.0000,0.9701,1.0000,0.9386,1.0000,0.8870,0.379755,0.290844,0.224242,0.105160 +bot_00648,reward_heavy,1.0000,0.8097,0.5626,1.0000,0.7780,0.5367,0.9974,0.9840,1.0000,0.761572,0.211234,0.013597,0.013597 +bot_00649,reward_heavy,1.0000,0.7922,0.9824,1.0000,0.9144,0.7727,0.9577,0.9198,1.0000,0.598051,0.229039,0.106975,0.065934 +bot_00650,interstitial_focus,0.6831,1.0000,0.6950,0.9635,1.0000,0.7356,1.0000,1.0000,1.0000,0.396540,0.338056,0.072502,0.192902 +bot_00651,reward_heavy,1.0000,0.8741,1.0000,1.0000,0.8248,0.5950,1.0000,1.0000,1.0000,0.575573,0.194285,0.220767,0.009375 +bot_00652,splash_driven,0.8888,0.9354,1.0000,1.0000,1.0000,1.0000,0.8484,0.9669,1.0000,0.633883,0.243085,0.115004,0.008028 +bot_00653,reward_heavy,1.0000,1.0000,0.9358,1.0000,0.6056,0.8204,1.0000,0.9930,1.0000,0.712720,0.163980,0.034780,0.088520 +bot_00654,splash_driven,0.6694,0.9238,1.0000,0.9414,1.0000,1.0000,0.8342,0.8480,0.9837,0.762430,0.107123,0.008714,0.121732 +bot_00655,reward_heavy,1.0000,0.6068,0.9244,1.0000,0.7698,0.5068,0.9944,0.8586,1.0000,0.704828,0.131931,0.153492,0.009749 +bot_00656,churn_sensitive,0.4005,0.7863,0.2173,0.7549,0.6314,0.2568,0.6994,1.0000,0.5208,0.211912,0.260797,0.273415,0.253876 +bot_00657,balanced,1.0000,0.8961,1.0000,1.0000,0.8201,1.0000,1.0000,0.8350,1.0000,0.408144,0.417093,0.160511,0.014252 +bot_00658,splash_driven,0.7473,1.0000,1.0000,1.0000,0.9827,1.0000,0.8001,0.9127,1.0000,0.784073,0.108497,0.087817,0.019613 +bot_00659,splash_driven,0.8596,0.9571,1.0000,1.0000,0.9083,1.0000,0.9914,0.8524,0.9533,0.643129,0.226747,0.007577,0.122547 +bot_00660,splash_driven,0.6945,1.0000,1.0000,0.9773,1.0000,1.0000,1.0000,0.8541,0.9616,0.706878,0.193893,0.024371,0.074858 +bot_00661,interstitial_focus,0.8339,1.0000,0.8601,0.7737,1.0000,0.4918,0.8303,1.0000,1.0000,0.401783,0.491137,0.096095,0.010985 +bot_00662,balanced,1.0000,1.0000,0.9817,1.0000,0.9176,0.8913,1.0000,0.8444,1.0000,0.466069,0.313005,0.135328,0.085597 +bot_00663,interstitial_focus,0.9235,1.0000,0.9296,0.7316,1.0000,0.4944,1.0000,0.8207,1.0000,0.237635,0.450169,0.300676,0.011520 +bot_00664,splash_driven,0.7039,0.6860,1.0000,1.0000,1.0000,1.0000,0.7778,1.0000,0.8684,0.762166,0.173875,0.055044,0.008915 +bot_00665,network_bound,0.7431,0.7151,1.0000,0.8029,0.5792,0.8719,0.8186,1.0000,0.9077,0.149732,0.241917,0.352829,0.255523 +bot_00666,splash_driven,0.7026,0.9022,1.0000,0.9461,0.9749,1.0000,1.0000,1.0000,1.0000,0.662748,0.220546,0.109059,0.007647 +bot_00667,reward_heavy,1.0000,0.9169,0.6945,1.0000,0.6565,0.5648,1.0000,0.8575,1.0000,0.419872,0.263903,0.180140,0.136084 +bot_00668,network_bound,0.8174,0.8468,0.7306,0.7506,0.9079,0.6570,0.6320,1.0000,0.7265,0.128259,0.148072,0.241288,0.482381 +bot_00669,interstitial_focus,0.7789,1.0000,0.7921,0.5860,1.0000,0.8181,1.0000,0.8453,0.9303,0.426295,0.452837,0.109448,0.011421 +bot_00670,interstitial_focus,0.7306,1.0000,0.7372,0.6037,1.0000,0.8881,0.8663,0.9304,1.0000,0.369666,0.416574,0.139209,0.074551 +bot_00671,interstitial_focus,0.6845,1.0000,0.7061,0.8960,1.0000,0.8676,1.0000,1.0000,0.9487,0.204125,0.539485,0.245893,0.010497 +bot_00672,reward_heavy,1.0000,0.9118,0.6415,1.0000,0.8468,0.8180,1.0000,1.0000,1.0000,0.569762,0.251568,0.166579,0.012092 +bot_00673,churn_sensitive,0.5123,0.5615,0.3044,0.6141,0.6836,0.2510,0.8623,1.0000,0.6737,0.290471,0.245257,0.185047,0.279225 +bot_00674,balanced,1.0000,1.0000,0.9089,0.8456,0.8175,0.9552,1.0000,0.8018,1.0000,0.403839,0.356636,0.227273,0.012252 +bot_00675,splash_driven,1.0000,0.7899,1.0000,1.0000,1.0000,1.0000,0.9633,1.0000,1.0000,0.679240,0.191029,0.120892,0.008839 +bot_00676,interstitial_focus,0.6886,1.0000,0.7240,0.6872,1.0000,0.7494,1.0000,0.8404,1.0000,0.378120,0.377887,0.211425,0.032568 +bot_00677,network_bound,0.7320,0.6573,0.9371,0.9987,0.7859,0.7987,0.7160,1.0000,0.7476,0.110874,0.078381,0.247897,0.562848 +bot_00678,balanced,1.0000,1.0000,1.0000,1.0000,0.9166,1.0000,0.8880,1.0000,0.9130,0.359735,0.296549,0.268778,0.074938 +bot_00679,network_bound,0.6957,1.0000,0.6379,0.7057,0.9201,0.8293,0.5514,1.0000,0.7186,0.133011,0.102789,0.416113,0.348087 +bot_00680,balanced,0.9783,0.9108,1.0000,1.0000,0.8878,0.9249,1.0000,0.8706,1.0000,0.328472,0.340767,0.321103,0.009658 +bot_00681,splash_driven,0.9922,0.7655,1.0000,1.0000,1.0000,1.0000,0.7809,1.0000,0.9663,0.770887,0.103771,0.009481,0.115861 +bot_00682,balanced,0.8666,1.0000,0.9409,1.0000,0.9548,1.0000,1.0000,1.0000,1.0000,0.505245,0.198761,0.127875,0.168118 +bot_00683,splash_driven,0.9282,0.7519,1.0000,0.9132,0.9348,1.0000,0.9408,1.0000,1.0000,0.716716,0.260244,0.011520,0.011520 +bot_00684,interstitial_focus,0.4853,1.0000,0.9759,0.9072,1.0000,0.5186,0.8736,0.9451,1.0000,0.352060,0.377631,0.129407,0.140902 +bot_00685,interstitial_focus,0.7169,1.0000,0.8910,0.7640,1.0000,0.5600,0.9618,1.0000,1.0000,0.423169,0.331891,0.235922,0.009018 +bot_00686,balanced,1.0000,0.8841,1.0000,0.9001,1.0000,1.0000,0.8897,1.0000,0.8975,0.252396,0.383173,0.310729,0.053702 +bot_00687,churn_sensitive,0.4372,0.6651,0.2709,0.3898,0.3562,0.5241,0.6300,1.0000,0.6741,0.163429,0.159024,0.399469,0.278077 +bot_00688,churn_sensitive,0.5283,0.7278,0.5646,0.7141,0.6245,0.6261,0.7849,1.0000,0.4859,0.283848,0.259744,0.342750,0.113658 +bot_00689,churn_sensitive,0.7831,0.8296,0.6160,0.5572,0.3995,0.5538,0.7001,1.0000,0.4874,0.266688,0.205594,0.325186,0.202533 +bot_00690,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.371113,0.306253,0.243338,0.079296 +bot_00691,churn_sensitive,0.4760,0.6875,0.4433,0.6898,0.5103,0.4236,0.6057,1.0000,0.4797,0.290257,0.207099,0.317296,0.185348 +bot_00692,splash_driven,1.0000,1.0000,1.0000,0.9639,1.0000,1.0000,0.8236,1.0000,1.0000,0.680217,0.132634,0.177557,0.009593 +bot_00693,reward_heavy,1.0000,0.9198,0.6066,1.0000,0.9315,0.7214,0.8849,0.7590,1.0000,0.733454,0.183654,0.036071,0.046820 +bot_00694,churn_sensitive,0.7023,0.5146,0.6839,0.6978,0.5383,0.5403,0.8723,1.0000,0.5893,0.303852,0.242741,0.233027,0.220381 +bot_00695,interstitial_focus,0.6813,1.0000,0.6610,0.7437,1.0000,0.8053,0.8764,1.0000,1.0000,0.233092,0.561587,0.066466,0.138855 +bot_00696,churn_sensitive,0.6112,0.5564,0.3689,0.7770,0.5538,0.4352,0.8101,1.0000,0.5259,0.308403,0.145848,0.255130,0.290619 +bot_00697,churn_sensitive,0.6165,0.4354,0.2249,0.4355,0.6421,0.6492,0.7583,1.0000,0.6049,0.270743,0.267027,0.250469,0.211761 +bot_00698,reward_heavy,1.0000,0.9383,0.6099,1.0000,0.9603,0.7523,1.0000,1.0000,1.0000,0.561884,0.202033,0.153272,0.082811 +bot_00699,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.7520,0.8741,1.0000,0.786371,0.048293,0.067588,0.097748 +bot_00700,reward_heavy,1.0000,0.8868,0.7328,1.0000,0.9697,0.4532,1.0000,1.0000,1.0000,0.513584,0.296642,0.180360,0.009414 +bot_00701,network_bound,0.9267,0.8665,0.7223,0.7391,0.8493,0.5715,0.7538,1.0000,0.7540,0.180695,0.216138,0.230041,0.373126 +bot_00702,splash_driven,0.8124,0.9817,1.0000,1.0000,0.9950,1.0000,1.0000,0.9077,0.8967,0.565805,0.237884,0.128931,0.067380 +bot_00703,reward_heavy,1.0000,0.8770,0.7196,1.0000,0.7890,0.4432,1.0000,1.0000,1.0000,0.500867,0.298993,0.190227,0.009913 +bot_00704,interstitial_focus,0.9097,1.0000,0.9129,0.6373,1.0000,0.8890,1.0000,1.0000,1.0000,0.406737,0.375036,0.139323,0.078903 +bot_00705,network_bound,0.8691,0.8076,0.7932,0.7890,0.6682,0.8188,0.6530,1.0000,0.8515,0.104667,0.144951,0.235530,0.514852 +bot_00706,interstitial_focus,0.5612,1.0000,0.6972,0.6533,1.0000,0.9069,0.9234,1.0000,1.0000,0.396141,0.287688,0.238053,0.078117 +bot_00707,balanced,0.8179,0.9082,0.9332,1.0000,0.8261,0.9344,1.0000,1.0000,1.0000,0.416548,0.237747,0.329946,0.015759 +bot_00708,interstitial_focus,0.4823,1.0000,0.7503,0.8205,1.0000,0.7442,0.9910,0.8782,1.0000,0.386971,0.396872,0.101324,0.114833 +bot_00709,splash_driven,0.6830,0.7575,1.0000,1.0000,1.0000,1.0000,0.8145,1.0000,0.8431,0.696900,0.191173,0.103783,0.008144 +bot_00710,interstitial_focus,0.6677,1.0000,0.9887,0.8998,1.0000,0.8610,0.8932,1.0000,1.0000,0.301022,0.355034,0.334376,0.009568 +bot_00711,network_bound,0.7582,1.0000,0.9901,1.0000,0.9364,0.7739,0.7629,1.0000,0.7091,0.158885,0.110410,0.371077,0.359628 +bot_00712,splash_driven,0.7409,0.9944,1.0000,1.0000,0.8237,1.0000,0.9045,0.8763,0.9924,0.688279,0.074234,0.134489,0.102997 +bot_00713,splash_driven,0.6619,1.0000,1.0000,1.0000,1.0000,1.0000,0.8528,1.0000,1.0000,0.746629,0.142188,0.101272,0.009912 +bot_00714,interstitial_focus,0.7136,1.0000,0.8580,0.9629,1.0000,0.7557,0.8254,0.9625,1.0000,0.178369,0.481812,0.236389,0.103430 +bot_00715,splash_driven,1.0000,1.0000,1.0000,0.8631,0.9873,1.0000,0.9656,1.0000,0.9715,0.654569,0.120755,0.161128,0.063549 +bot_00716,reward_heavy,1.0000,1.0000,0.5784,1.0000,0.6280,0.7682,1.0000,0.8826,1.0000,0.748964,0.222687,0.018130,0.010219 +bot_00717,balanced,1.0000,1.0000,0.8944,1.0000,0.8660,1.0000,1.0000,0.9486,0.9209,0.566655,0.334605,0.088040,0.010700 +bot_00718,churn_sensitive,0.6569,0.4805,0.5072,0.5228,0.3358,0.5135,0.5701,1.0000,0.4873,0.300619,0.223609,0.176445,0.299326 +bot_00719,network_bound,0.8722,0.6966,0.6513,1.0000,0.6963,0.8641,0.6620,1.0000,0.7710,0.019660,0.253175,0.232707,0.494458 +bot_00720,splash_driven,0.9326,0.7260,1.0000,1.0000,1.0000,1.0000,0.8014,0.9512,0.8877,0.588872,0.292082,0.109623,0.009423 +bot_00721,reward_heavy,1.0000,0.9493,0.6993,1.0000,0.7590,0.6185,1.0000,0.9519,1.0000,0.694014,0.169683,0.032435,0.103867 +bot_00722,churn_sensitive,0.4123,0.5561,0.2964,0.7714,0.3974,0.3043,0.7529,1.0000,0.4893,0.255506,0.175276,0.373450,0.195768 +bot_00723,reward_heavy,1.0000,0.9794,0.9825,1.0000,0.6779,0.8203,1.0000,1.0000,1.0000,0.499701,0.424520,0.065558,0.010221 +bot_00724,splash_driven,0.8973,1.0000,1.0000,0.9985,0.8539,1.0000,0.8944,1.0000,0.8864,0.562598,0.240816,0.065702,0.130884 +bot_00725,balanced,1.0000,0.9246,1.0000,0.9950,1.0000,1.0000,0.9554,0.9302,1.0000,0.342396,0.368384,0.279161,0.010058 +bot_00726,balanced,1.0000,0.9244,1.0000,0.9566,1.0000,1.0000,1.0000,1.0000,0.9186,0.514920,0.205418,0.268015,0.011647 +bot_00727,interstitial_focus,0.9052,1.0000,0.9382,0.9741,1.0000,0.8232,0.9110,1.0000,1.0000,0.272394,0.343843,0.253067,0.130696 +bot_00728,churn_sensitive,0.5700,0.7723,0.5314,0.8084,0.3706,0.6657,0.5653,1.0000,0.6420,0.148123,0.211593,0.395314,0.244970 +bot_00729,balanced,1.0000,1.0000,0.8670,1.0000,1.0000,0.7960,0.9920,1.0000,1.0000,0.424137,0.384982,0.181919,0.008962 +bot_00730,churn_sensitive,0.6942,0.6417,0.4912,0.4036,0.3549,0.2974,0.7184,1.0000,0.6496,0.174190,0.357118,0.384410,0.084282 +bot_00731,churn_sensitive,0.4624,0.7855,0.6680,0.4885,0.7103,0.5518,0.5899,1.0000,0.6934,0.268237,0.230889,0.344664,0.156210 +bot_00732,network_bound,0.8622,1.0000,0.9310,1.0000,0.9956,0.6948,0.6435,1.0000,0.8843,0.009924,0.153932,0.375078,0.461066 +bot_00733,interstitial_focus,0.8961,1.0000,0.7466,0.5638,1.0000,0.4806,0.8576,1.0000,1.0000,0.411524,0.251644,0.261598,0.075234 +bot_00734,splash_driven,0.6673,0.9865,1.0000,0.8143,0.9861,1.0000,0.8501,0.8369,0.9367,0.787368,0.193526,0.009553,0.009553 +bot_00735,splash_driven,0.8736,1.0000,1.0000,0.9609,0.8676,1.0000,0.9698,1.0000,1.0000,0.706894,0.223769,0.010521,0.058816 +bot_00736,interstitial_focus,0.4860,1.0000,0.9761,0.7656,1.0000,0.8583,0.8652,1.0000,0.9889,0.267862,0.437001,0.209419,0.085719 +bot_00737,interstitial_focus,0.9115,1.0000,0.9486,0.6461,1.0000,0.7375,0.8955,0.8576,1.0000,0.278185,0.505509,0.206674,0.009632 +bot_00738,interstitial_focus,0.5889,1.0000,1.0000,0.7659,1.0000,0.5216,1.0000,0.8597,1.0000,0.367318,0.314790,0.290251,0.027641 +bot_00739,reward_heavy,1.0000,0.7575,0.8132,1.0000,0.6547,0.5521,0.9685,0.7015,1.0000,0.719282,0.205535,0.011056,0.064127 +bot_00740,splash_driven,0.9899,0.9607,1.0000,0.9417,1.0000,1.0000,1.0000,0.8842,1.0000,0.757128,0.077046,0.114001,0.051826 +bot_00741,network_bound,0.6730,0.6612,0.9751,1.0000,0.7819,0.9171,0.5293,1.0000,0.8435,0.297444,0.090018,0.244669,0.367870 +bot_00742,reward_heavy,1.0000,0.7238,0.5925,1.0000,0.7381,0.7609,0.9137,0.8462,1.0000,0.682311,0.144933,0.161819,0.010937 +bot_00743,interstitial_focus,0.7079,1.0000,1.0000,0.9523,1.0000,0.6102,0.8659,1.0000,1.0000,0.355757,0.316428,0.190351,0.137463 +bot_00744,interstitial_focus,0.9508,1.0000,0.9439,0.7504,1.0000,0.8364,0.9137,1.0000,1.0000,0.402850,0.427581,0.057256,0.112312 +bot_00745,balanced,1.0000,1.0000,0.9623,1.0000,1.0000,0.8140,0.9432,1.0000,0.9962,0.536310,0.220614,0.164598,0.078478 +bot_00746,splash_driven,0.8294,1.0000,1.0000,0.8532,0.8390,1.0000,1.0000,1.0000,0.8975,0.731933,0.084185,0.055815,0.128067 +bot_00747,splash_driven,0.7723,1.0000,1.0000,0.8222,0.8533,1.0000,0.8832,1.0000,1.0000,0.702780,0.208800,0.078844,0.009577 +bot_00748,churn_sensitive,0.3854,0.8576,0.3263,0.6113,0.7019,0.3755,0.7496,1.0000,0.5301,0.183259,0.405418,0.238173,0.173150 +bot_00749,interstitial_focus,0.6287,1.0000,1.0000,0.9657,1.0000,0.7904,0.8017,0.9498,1.0000,0.360752,0.305195,0.264799,0.069254 +bot_00750,splash_driven,0.6941,0.7225,1.0000,0.9674,1.0000,1.0000,0.7917,0.8621,0.9390,0.635991,0.278957,0.010926,0.074126 +bot_00751,interstitial_focus,0.7657,1.0000,0.6882,0.9172,1.0000,0.5902,1.0000,1.0000,1.0000,0.283365,0.585955,0.087400,0.043280 +bot_00752,splash_driven,0.6553,1.0000,1.0000,1.0000,0.8718,1.0000,0.8163,1.0000,0.9261,0.725922,0.141640,0.011889,0.120549 +bot_00753,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8523,0.8596,1.0000,1.0000,0.422494,0.290350,0.279471,0.007686 +bot_00754,balanced,1.0000,0.9171,1.0000,1.0000,1.0000,1.0000,1.0000,0.8637,1.0000,0.452107,0.391722,0.142682,0.013488 +bot_00755,reward_heavy,1.0000,0.9660,1.0000,1.0000,0.7718,0.4116,1.0000,0.8247,1.0000,0.566836,0.405150,0.009875,0.018140 +bot_00756,balanced,1.0000,0.8889,1.0000,0.9818,1.0000,1.0000,1.0000,1.0000,0.9021,0.273157,0.228785,0.291153,0.206905 +bot_00757,reward_heavy,1.0000,0.6646,0.7961,1.0000,0.8880,0.7978,1.0000,0.6871,1.0000,0.598341,0.276685,0.040338,0.084636 +bot_00758,network_bound,1.0000,0.9057,0.7492,0.8659,0.9888,0.6135,0.6479,1.0000,0.8155,0.213114,0.100428,0.269463,0.416995 +bot_00759,reward_heavy,1.0000,0.5816,0.9714,1.0000,0.5453,0.4818,1.0000,0.7184,1.0000,0.575349,0.399056,0.016279,0.009316 +bot_00760,splash_driven,0.8411,1.0000,1.0000,0.8906,1.0000,1.0000,0.7702,1.0000,0.9132,0.688112,0.163689,0.123268,0.024932 +bot_00761,splash_driven,1.0000,0.9914,1.0000,0.9774,1.0000,1.0000,0.8241,0.8839,1.0000,0.784241,0.169344,0.037108,0.009308 +bot_00762,balanced,0.8341,1.0000,1.0000,0.8945,1.0000,1.0000,0.9068,1.0000,0.9850,0.310592,0.304262,0.225072,0.160075 +bot_00763,reward_heavy,1.0000,1.0000,0.7339,1.0000,0.9596,0.5178,1.0000,0.9656,1.0000,0.524376,0.426448,0.016535,0.032642 +bot_00764,reward_heavy,1.0000,0.8194,0.9181,1.0000,0.8067,0.7345,1.0000,0.9574,1.0000,0.695966,0.182722,0.111026,0.010285 +bot_00765,churn_sensitive,0.6174,0.4807,0.6197,0.6334,0.3853,0.3453,0.6717,1.0000,0.5141,0.216918,0.369238,0.198678,0.215166 +bot_00766,reward_heavy,1.0000,1.0000,0.8674,1.0000,0.6737,0.6539,1.0000,1.0000,1.0000,0.778517,0.191376,0.019251,0.010857 +bot_00767,reward_heavy,1.0000,0.7950,0.6857,1.0000,0.6277,0.4247,0.8971,1.0000,1.0000,0.501718,0.298854,0.191675,0.007753 +bot_00768,balanced,1.0000,1.0000,0.8842,1.0000,0.8775,0.9578,0.9581,0.8689,1.0000,0.381595,0.336498,0.199550,0.082357 +bot_00769,splash_driven,0.6804,1.0000,1.0000,1.0000,1.0000,1.0000,0.7949,1.0000,0.8912,0.675955,0.177478,0.009648,0.136919 +bot_00770,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9712,0.9033,0.8915,0.390886,0.428639,0.169744,0.010732 +bot_00771,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9860,0.8445,0.9311,0.343737,0.360823,0.136945,0.158494 +bot_00772,splash_driven,0.6762,1.0000,1.0000,0.9067,0.8372,1.0000,1.0000,1.0000,1.0000,0.772758,0.177705,0.008839,0.040698 +bot_00773,splash_driven,1.0000,0.9203,1.0000,1.0000,1.0000,1.0000,0.8246,1.0000,1.0000,0.624850,0.234372,0.131495,0.009283 +bot_00774,interstitial_focus,0.8370,1.0000,1.0000,0.8366,1.0000,0.5338,1.0000,1.0000,1.0000,0.321957,0.404443,0.212245,0.061354 +bot_00775,splash_driven,1.0000,0.9272,1.0000,0.8412,1.0000,1.0000,1.0000,0.8172,1.0000,0.565494,0.238723,0.083044,0.112739 +bot_00776,network_bound,0.7392,0.8955,0.6453,0.9729,0.7130,0.7294,0.8022,1.0000,0.7821,0.195479,0.097335,0.296065,0.411121 +bot_00777,splash_driven,0.6887,0.9261,1.0000,0.9223,0.9717,1.0000,1.0000,1.0000,1.0000,0.695166,0.132784,0.030392,0.141657 +bot_00778,churn_sensitive,0.3549,0.8021,0.2199,0.5290,0.5452,0.2732,0.8394,1.0000,0.6260,0.379215,0.240170,0.226130,0.154485 +bot_00779,churn_sensitive,0.5979,0.7585,0.5767,0.6791,0.6265,0.6525,0.6325,1.0000,0.5611,0.093269,0.320326,0.303888,0.282516 +bot_00780,interstitial_focus,0.7519,1.0000,0.6735,0.6045,1.0000,0.6001,0.8059,1.0000,1.0000,0.350155,0.492424,0.141920,0.015501 +bot_00781,splash_driven,0.8822,1.0000,1.0000,0.9863,0.8993,1.0000,0.7733,0.8501,0.9796,0.638381,0.215692,0.009403,0.136524 +bot_00782,splash_driven,0.8437,1.0000,1.0000,0.8893,0.9571,1.0000,1.0000,1.0000,0.8714,0.629971,0.099332,0.132699,0.137997 +bot_00783,reward_heavy,1.0000,0.7764,0.5995,1.0000,0.6232,0.4547,1.0000,0.7732,1.0000,0.567833,0.304882,0.009533,0.117752 +bot_00784,reward_heavy,1.0000,1.0000,0.7507,1.0000,0.8767,0.6176,0.9640,0.9229,1.0000,0.570485,0.221416,0.197053,0.011046 +bot_00785,reward_heavy,1.0000,0.6596,0.9286,1.0000,0.9769,0.8223,0.9877,0.7052,1.0000,0.464723,0.311121,0.176818,0.047338 +bot_00786,interstitial_focus,0.8485,1.0000,0.8715,0.6442,1.0000,0.7430,0.8848,0.9002,0.9868,0.450276,0.467418,0.071774,0.010532 +bot_00787,churn_sensitive,0.4085,0.8611,0.6004,0.5333,0.4436,0.5601,0.8411,1.0000,0.5802,0.231348,0.156557,0.494823,0.117272 +bot_00788,churn_sensitive,0.6905,0.7275,0.3641,0.4415,0.6940,0.6752,0.8265,1.0000,0.5166,0.280689,0.297085,0.364762,0.057464 +bot_00789,splash_driven,0.9020,1.0000,1.0000,0.9922,1.0000,1.0000,0.9418,1.0000,0.8826,0.645273,0.061786,0.165682,0.127260 +bot_00790,reward_heavy,1.0000,0.9564,0.9769,1.0000,0.7613,0.5274,0.9295,0.7410,1.0000,0.750518,0.224965,0.012259,0.012259 +bot_00791,interstitial_focus,0.8121,1.0000,0.8521,0.7788,1.0000,0.8629,0.8784,0.8430,1.0000,0.371735,0.315356,0.276359,0.036550 +bot_00792,network_bound,0.9670,0.8834,0.6203,0.8833,0.7698,0.7938,0.7651,1.0000,0.8755,0.241622,0.082860,0.350006,0.325512 +bot_00793,splash_driven,1.0000,0.9635,1.0000,0.9652,0.8947,1.0000,1.0000,1.0000,0.9325,0.707417,0.117048,0.010723,0.164811 +bot_00794,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8470,0.9956,0.258576,0.314997,0.298430,0.127997 +bot_00795,interstitial_focus,0.6775,1.0000,0.7728,0.8668,1.0000,0.6937,0.9546,1.0000,1.0000,0.443787,0.401787,0.063919,0.090506 +bot_00796,interstitial_focus,0.9089,1.0000,0.7218,0.6847,1.0000,0.6185,1.0000,0.8362,1.0000,0.277712,0.406407,0.270819,0.045062 +bot_00797,reward_heavy,1.0000,0.7530,0.6103,1.0000,0.7506,0.6943,1.0000,0.9724,1.0000,0.480314,0.403009,0.022029,0.094648 +bot_00798,reward_heavy,1.0000,0.9243,0.8699,1.0000,0.6779,0.4508,0.9351,1.0000,1.0000,0.596203,0.104610,0.177495,0.121693 +bot_00799,balanced,0.9144,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.348415,0.267398,0.338691,0.045495 +bot_00800,interstitial_focus,0.9036,1.0000,1.0000,0.6511,1.0000,0.7214,1.0000,1.0000,1.0000,0.312148,0.455255,0.168192,0.064405 +bot_00801,network_bound,0.7511,0.6712,0.9817,0.6815,0.7980,0.8087,0.6924,1.0000,0.7349,0.088031,0.239776,0.303249,0.368944 +bot_00802,splash_driven,1.0000,0.9848,1.0000,0.9370,1.0000,1.0000,1.0000,1.0000,0.9021,0.687304,0.201535,0.102150,0.009011 +bot_00803,splash_driven,0.6707,0.7712,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8876,0.790997,0.040738,0.136541,0.031724 +bot_00804,interstitial_focus,0.8487,1.0000,0.6207,0.6621,1.0000,0.8801,1.0000,0.9205,0.9779,0.311701,0.456385,0.223122,0.008792 +bot_00805,network_bound,1.0000,0.8386,0.6888,0.9479,0.6478,0.5814,0.6276,1.0000,0.8302,0.011953,0.206659,0.290069,0.491318 +bot_00806,reward_heavy,1.0000,0.9759,0.9244,1.0000,0.6746,0.6589,0.9052,0.8081,1.0000,0.532979,0.445940,0.010540,0.010540 +bot_00807,splash_driven,1.0000,0.9912,1.0000,1.0000,0.8578,1.0000,0.8395,1.0000,1.0000,0.664444,0.237637,0.086482,0.011437 +bot_00808,splash_driven,0.7181,0.8649,1.0000,0.8793,1.0000,1.0000,0.8336,1.0000,1.0000,0.714885,0.207916,0.009955,0.067245 +bot_00809,interstitial_focus,0.8955,1.0000,0.9939,0.8448,1.0000,0.5149,0.9675,1.0000,1.0000,0.345931,0.449861,0.044847,0.159361 +bot_00810,balanced,0.9297,1.0000,0.8682,1.0000,0.9184,0.9506,0.8930,0.9188,1.0000,0.430747,0.289847,0.270378,0.009028 +bot_00811,splash_driven,1.0000,1.0000,1.0000,1.0000,0.8744,1.0000,0.7830,1.0000,0.9046,0.828306,0.064292,0.096224,0.011177 +bot_00812,balanced,0.8911,1.0000,1.0000,0.9656,1.0000,0.9742,0.9364,0.9809,0.9339,0.260092,0.403979,0.239021,0.096908 +bot_00813,churn_sensitive,0.7358,0.6098,0.4653,0.7072,0.6548,0.6150,0.8476,1.0000,0.6438,0.096637,0.254440,0.466883,0.182039 +bot_00814,interstitial_focus,0.6535,1.0000,0.9403,0.5876,1.0000,0.5883,0.8633,0.9037,1.0000,0.256269,0.319366,0.260023,0.164343 +bot_00815,reward_heavy,1.0000,1.0000,0.7453,1.0000,0.5589,0.6128,1.0000,0.8495,1.0000,0.485805,0.335362,0.153874,0.024960 +bot_00816,interstitial_focus,0.8201,1.0000,0.9130,0.8815,1.0000,0.9135,0.9522,0.9574,1.0000,0.383472,0.422830,0.185174,0.008524 +bot_00817,interstitial_focus,0.6442,1.0000,0.9976,0.7813,1.0000,0.5935,0.8307,1.0000,1.0000,0.368734,0.519946,0.098182,0.013138 +bot_00818,reward_heavy,1.0000,0.6147,0.9406,1.0000,0.9508,0.4763,1.0000,0.9620,1.0000,0.592198,0.354439,0.010395,0.042967 +bot_00819,reward_heavy,1.0000,0.6125,1.0000,1.0000,0.7686,0.7513,1.0000,0.8441,1.0000,0.800590,0.176421,0.011494,0.011494 +bot_00820,interstitial_focus,0.6783,1.0000,0.8800,0.6081,1.0000,0.7815,0.9392,1.0000,0.9311,0.368366,0.334336,0.287264,0.010033 +bot_00821,interstitial_focus,0.6495,1.0000,0.6918,0.9643,1.0000,0.7209,1.0000,1.0000,0.9672,0.218758,0.455094,0.177102,0.149046 +bot_00822,interstitial_focus,0.6963,1.0000,1.0000,0.6470,1.0000,0.8334,0.9592,1.0000,1.0000,0.305323,0.353750,0.329190,0.011737 +bot_00823,reward_heavy,1.0000,0.7391,0.8659,1.0000,0.8482,0.4431,1.0000,0.9553,1.0000,0.680018,0.290796,0.014593,0.014593 +bot_00824,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9186,1.0000,1.0000,0.389359,0.353423,0.245888,0.011330 +bot_00825,reward_heavy,1.0000,0.6199,0.6930,1.0000,0.9525,0.4783,0.9714,1.0000,1.0000,0.533080,0.257675,0.200413,0.008831 +bot_00826,balanced,0.9617,1.0000,1.0000,1.0000,0.9698,0.9315,1.0000,1.0000,1.0000,0.271826,0.394367,0.221391,0.112415 +bot_00827,churn_sensitive,0.6061,0.4582,0.6761,0.4081,0.6056,0.3123,0.8228,1.0000,0.6501,0.301094,0.404497,0.157374,0.137035 +bot_00828,reward_heavy,1.0000,1.0000,0.8102,1.0000,0.7700,0.4673,0.9453,1.0000,1.0000,0.670578,0.309074,0.010174,0.010174 +bot_00829,interstitial_focus,0.7528,1.0000,0.6880,0.7435,1.0000,0.7785,1.0000,1.0000,1.0000,0.194349,0.359436,0.275181,0.171034 +bot_00830,network_bound,0.7468,0.8942,1.0000,0.7745,0.8480,0.9306,0.7037,1.0000,0.7177,0.216600,0.207018,0.193265,0.383116 +bot_00831,network_bound,1.0000,1.0000,0.8420,0.9935,0.8474,0.8093,0.7102,1.0000,0.9060,0.130069,0.156973,0.292807,0.420150 +bot_00832,balanced,1.0000,0.9700,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9798,0.340614,0.491610,0.156504,0.011271 +bot_00833,interstitial_focus,0.8009,1.0000,0.9813,0.8239,1.0000,0.6656,0.9715,1.0000,1.0000,0.356982,0.507514,0.124800,0.010704 +bot_00834,interstitial_focus,0.5166,1.0000,0.6085,0.7989,1.0000,0.5981,1.0000,1.0000,1.0000,0.359708,0.384457,0.150317,0.105518 +bot_00835,churn_sensitive,0.6053,0.7203,0.6352,0.5401,0.3575,0.3796,0.7238,1.0000,0.6874,0.285208,0.260234,0.221108,0.233450 +bot_00836,reward_heavy,1.0000,0.9569,0.9218,1.0000,0.8305,0.7216,1.0000,0.9095,1.0000,0.703265,0.246796,0.014218,0.035722 +bot_00837,network_bound,1.0000,0.8914,0.5627,0.9669,0.6917,0.9092,0.5317,1.0000,0.8381,0.117110,0.187139,0.226657,0.469094 +bot_00838,interstitial_focus,0.8419,1.0000,0.7312,0.7212,1.0000,0.6287,0.9067,1.0000,0.9822,0.249814,0.478376,0.256982,0.014828 +bot_00839,network_bound,0.6500,1.0000,1.0000,0.8403,0.8996,0.7477,0.7108,1.0000,0.8706,0.188015,0.124670,0.368096,0.319219 +bot_00840,splash_driven,0.8622,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8232,0.9822,0.695632,0.213353,0.037453,0.053562 +bot_00841,splash_driven,1.0000,0.7913,1.0000,1.0000,1.0000,1.0000,0.8761,1.0000,0.8619,0.946073,0.032464,0.010732,0.010732 +bot_00842,churn_sensitive,0.5853,0.8488,0.4540,0.5844,0.4541,0.5752,0.6714,1.0000,0.6057,0.144148,0.322388,0.385842,0.147623 +bot_00843,splash_driven,0.8735,1.0000,1.0000,1.0000,0.9123,1.0000,0.9393,1.0000,1.0000,0.783155,0.099669,0.104947,0.012228 +bot_00844,interstitial_focus,0.8148,1.0000,0.8263,0.9219,1.0000,0.8579,0.8187,1.0000,0.9644,0.412182,0.411514,0.133221,0.043083 +bot_00845,interstitial_focus,0.8039,1.0000,0.6212,0.7611,1.0000,0.6696,0.9690,1.0000,1.0000,0.172287,0.505860,0.202376,0.119477 +bot_00846,splash_driven,0.8816,1.0000,1.0000,0.8682,0.8948,1.0000,0.7930,1.0000,0.9074,0.705524,0.046592,0.173863,0.074021 +bot_00847,splash_driven,0.6869,0.9477,1.0000,1.0000,0.8884,1.0000,0.8723,0.9426,1.0000,0.821949,0.159015,0.009518,0.009518 +bot_00848,interstitial_focus,0.8033,1.0000,0.6242,0.8948,1.0000,0.7863,1.0000,1.0000,1.0000,0.207829,0.525440,0.119480,0.147251 +bot_00849,interstitial_focus,0.9526,1.0000,0.7519,0.9336,1.0000,0.6056,0.8607,0.9833,1.0000,0.359294,0.350935,0.280598,0.009172 +bot_00850,reward_heavy,1.0000,0.9842,0.5900,1.0000,0.5417,0.6435,1.0000,1.0000,1.0000,0.465164,0.309122,0.216048,0.009665 +bot_00851,interstitial_focus,0.6706,1.0000,0.6783,0.6590,1.0000,0.8301,0.9055,1.0000,0.9360,0.175448,0.407682,0.295885,0.120985 +bot_00852,reward_heavy,1.0000,0.7092,0.5723,1.0000,0.7655,0.8274,0.9055,1.0000,1.0000,0.545070,0.322235,0.124893,0.007802 +bot_00853,balanced,0.9034,1.0000,0.9237,0.8623,1.0000,1.0000,1.0000,0.9694,0.9080,0.433158,0.404305,0.148215,0.014322 +bot_00854,reward_heavy,1.0000,0.6972,0.9678,1.0000,0.9666,0.8227,1.0000,1.0000,1.0000,0.466999,0.317125,0.128744,0.087132 +bot_00855,reward_heavy,1.0000,0.8944,0.8309,1.0000,0.6817,0.7238,1.0000,0.9024,1.0000,0.540540,0.169145,0.174020,0.116295 +bot_00856,interstitial_focus,0.8445,1.0000,0.6556,0.8090,1.0000,0.6177,1.0000,0.8518,1.0000,0.169572,0.384826,0.279748,0.165854 +bot_00857,network_bound,0.6867,1.0000,0.7058,1.0000,0.9214,0.7698,0.5877,1.0000,0.9216,0.016616,0.099104,0.403041,0.481240 +bot_00858,interstitial_focus,0.8832,1.0000,0.7837,0.9990,1.0000,0.5679,1.0000,1.0000,1.0000,0.207234,0.478618,0.208267,0.105880 +bot_00859,balanced,1.0000,1.0000,0.9331,0.8879,1.0000,0.8986,0.9488,1.0000,1.0000,0.444954,0.380773,0.129913,0.044359 +bot_00860,splash_driven,1.0000,1.0000,1.0000,0.8897,1.0000,1.0000,0.8814,1.0000,0.8512,0.577608,0.298183,0.009097,0.115112 +bot_00861,churn_sensitive,0.3518,0.7207,0.4193,0.4813,0.3443,0.4733,0.7500,1.0000,0.6854,0.261103,0.139057,0.300717,0.299123 +bot_00862,interstitial_focus,0.5075,1.0000,1.0000,0.6688,1.0000,0.5736,0.8359,1.0000,1.0000,0.340807,0.389675,0.142406,0.127112 +bot_00863,interstitial_focus,0.7013,1.0000,0.7172,0.5977,1.0000,0.5477,0.8697,1.0000,0.9380,0.329668,0.461395,0.200799,0.008138 +bot_00864,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9871,0.8685,1.0000,0.419696,0.208333,0.304124,0.067847 +bot_00865,splash_driven,1.0000,0.9790,1.0000,0.8403,1.0000,1.0000,0.8062,1.0000,0.9030,0.633740,0.229254,0.051243,0.085764 +bot_00866,splash_driven,1.0000,0.9941,1.0000,1.0000,1.0000,1.0000,0.7831,1.0000,0.9448,0.775223,0.204800,0.009989,0.009989 +bot_00867,reward_heavy,1.0000,1.0000,0.8813,1.0000,0.5743,0.7756,0.8946,0.9106,1.0000,0.524434,0.238925,0.226501,0.010140 +bot_00868,splash_driven,0.7531,1.0000,1.0000,0.8359,0.8215,1.0000,0.7507,0.8801,0.8558,0.811182,0.081698,0.096227,0.010893 +bot_00869,churn_sensitive,0.6226,0.4879,0.6699,0.7561,0.5582,0.4383,0.8739,1.0000,0.5382,0.257070,0.233430,0.266913,0.242587 +bot_00870,splash_driven,1.0000,1.0000,1.0000,1.0000,0.8889,1.0000,0.7551,0.9467,0.9832,0.765519,0.214534,0.009974,0.009974 +bot_00871,splash_driven,0.7058,0.9494,1.0000,0.9203,0.8884,1.0000,0.9238,1.0000,0.9766,0.707957,0.126107,0.100794,0.065143 +bot_00872,balanced,0.8926,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9561,0.9860,0.380352,0.394502,0.216523,0.008622 +bot_00873,splash_driven,1.0000,0.9833,1.0000,0.9702,1.0000,1.0000,1.0000,1.0000,1.0000,0.599812,0.170491,0.162510,0.067187 +bot_00874,network_bound,0.8701,0.6101,0.8807,0.9316,0.6237,0.9396,0.6814,1.0000,0.8420,0.108000,0.224511,0.371417,0.296071 +bot_00875,balanced,0.8910,0.9749,1.0000,0.9259,1.0000,1.0000,0.8422,1.0000,0.9206,0.244004,0.415226,0.320835,0.019935 +bot_00876,balanced,1.0000,0.9155,1.0000,1.0000,0.8563,0.9478,0.8860,1.0000,0.9989,0.317511,0.218418,0.256089,0.207982 +bot_00877,interstitial_focus,0.9550,1.0000,0.6782,0.8026,1.0000,0.6557,0.8788,0.8264,1.0000,0.322643,0.397218,0.113081,0.167058 +bot_00878,churn_sensitive,0.4199,0.8268,0.6473,0.7588,0.6619,0.6064,0.8390,1.0000,0.5347,0.158552,0.145648,0.413744,0.282055 +bot_00879,splash_driven,0.7309,0.7425,1.0000,0.8617,0.8809,1.0000,0.8847,0.8376,0.9415,0.636198,0.236393,0.120021,0.007388 +bot_00880,splash_driven,0.6415,0.8847,1.0000,0.9136,0.8561,1.0000,1.0000,0.8199,0.9286,0.757648,0.043687,0.102201,0.096463 +bot_00881,churn_sensitive,0.4147,0.7771,0.4020,0.7784,0.4823,0.6502,0.6320,1.0000,0.5438,0.310010,0.291053,0.253784,0.145153 +bot_00882,balanced,1.0000,1.0000,1.0000,0.9717,0.8060,1.0000,1.0000,1.0000,1.0000,0.344929,0.249325,0.283195,0.122551 +bot_00883,reward_heavy,1.0000,0.9309,0.5774,1.0000,0.7193,0.5658,0.9745,0.8630,1.0000,0.707312,0.133471,0.148975,0.010241 +bot_00884,interstitial_focus,0.9163,1.0000,0.9276,0.6731,1.0000,0.7838,0.8907,1.0000,1.0000,0.344999,0.391636,0.220335,0.043031 +bot_00885,network_bound,0.7099,1.0000,0.7150,0.9647,0.6181,0.8824,0.7624,1.0000,0.7525,0.191534,0.191825,0.188182,0.428459 +bot_00886,interstitial_focus,0.7561,1.0000,0.9543,0.5903,1.0000,0.7211,1.0000,0.9689,1.0000,0.467255,0.410304,0.055594,0.066847 +bot_00887,interstitial_focus,0.5526,1.0000,0.9900,0.5713,1.0000,0.8302,1.0000,0.8446,1.0000,0.412570,0.313183,0.264891,0.009356 +bot_00888,reward_heavy,1.0000,1.0000,0.7761,1.0000,0.9520,0.5902,1.0000,0.8670,1.0000,0.686261,0.191343,0.037553,0.084844 +bot_00889,balanced,0.9976,1.0000,1.0000,1.0000,0.9496,1.0000,1.0000,0.9278,0.9908,0.441535,0.243123,0.165783,0.149559 +bot_00890,splash_driven,0.7921,0.8131,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.702919,0.209154,0.079530,0.008397 +bot_00891,churn_sensitive,0.4874,0.8007,0.4566,0.6683,0.3887,0.2454,0.8350,1.0000,0.5026,0.353828,0.123241,0.185351,0.337580 +bot_00892,reward_heavy,1.0000,0.8638,0.7738,1.0000,0.7913,0.7836,0.9951,1.0000,1.0000,0.625380,0.207433,0.158257,0.008930 +bot_00893,reward_heavy,1.0000,0.6614,0.7339,1.0000,0.7909,0.6802,1.0000,1.0000,1.0000,0.655794,0.243640,0.090503,0.010063 +bot_00894,balanced,0.8936,1.0000,1.0000,1.0000,1.0000,1.0000,0.9878,0.8316,0.9564,0.435552,0.363549,0.192032,0.008866 +bot_00895,balanced,1.0000,1.0000,0.9154,0.9657,1.0000,0.9699,0.8585,1.0000,1.0000,0.443606,0.384126,0.160675,0.011594 +bot_00896,balanced,1.0000,0.9390,1.0000,0.9898,0.9258,0.8496,1.0000,0.8229,1.0000,0.369036,0.235160,0.384550,0.011255 +bot_00897,interstitial_focus,0.5131,1.0000,1.0000,0.5667,1.0000,0.7411,0.9814,1.0000,1.0000,0.231726,0.330471,0.334325,0.103478 +bot_00898,network_bound,0.9883,1.0000,0.5700,0.9485,0.8337,0.8413,0.5308,1.0000,0.9095,0.149584,0.197252,0.192239,0.460925 +bot_00899,network_bound,0.9157,0.7625,0.9875,0.7561,0.6558,0.9346,0.5887,1.0000,0.8329,0.224832,0.148177,0.286457,0.340535 +bot_00900,network_bound,0.9468,0.6165,0.9469,1.0000,0.8136,0.6118,0.6828,1.0000,0.8006,0.186985,0.197990,0.305522,0.309503 +bot_00901,interstitial_focus,0.7392,1.0000,1.0000,0.6460,1.0000,0.4940,1.0000,1.0000,1.0000,0.383335,0.294733,0.154122,0.167810 +bot_00902,network_bound,0.8810,0.9527,1.0000,0.6850,0.9790,0.7832,0.6114,1.0000,0.7058,0.231113,0.095768,0.340258,0.332860 +bot_00903,balanced,0.8727,0.9265,1.0000,1.0000,1.0000,1.0000,0.8676,0.8267,1.0000,0.241419,0.271717,0.310306,0.176558 +bot_00904,reward_heavy,1.0000,0.7176,0.8930,1.0000,0.6377,0.5198,0.9069,1.0000,1.0000,0.489765,0.265223,0.129650,0.115362 +bot_00905,reward_heavy,1.0000,0.5918,0.7457,1.0000,0.8294,0.5973,1.0000,0.7010,1.0000,0.527941,0.254891,0.125917,0.091251 +bot_00906,churn_sensitive,0.7776,0.4940,0.4915,0.4793,0.6725,0.6713,0.8709,1.0000,0.4957,0.178098,0.342534,0.394892,0.084476 +bot_00907,balanced,0.9355,0.9685,1.0000,1.0000,0.9555,1.0000,0.9462,1.0000,1.0000,0.364708,0.350332,0.275138,0.009822 +bot_00908,interstitial_focus,0.7071,1.0000,0.6524,0.6049,1.0000,0.5944,0.9722,0.8825,1.0000,0.291941,0.403010,0.164360,0.140688 +bot_00909,reward_heavy,1.0000,0.9185,0.6020,1.0000,0.6865,0.4319,1.0000,0.7495,1.0000,0.660958,0.209247,0.119933,0.009863 +bot_00910,network_bound,0.9388,0.8041,0.9820,0.8297,0.7568,0.8759,0.7225,1.0000,0.8535,0.022449,0.269928,0.339649,0.367974 +bot_00911,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8277,0.9804,0.337423,0.370992,0.282032,0.009552 +bot_00912,balanced,1.0000,1.0000,1.0000,0.8316,0.9060,1.0000,0.9844,1.0000,0.9368,0.377607,0.196305,0.395970,0.030118 +bot_00913,interstitial_focus,0.7819,1.0000,0.7407,0.7332,1.0000,0.7819,0.8281,0.9907,1.0000,0.362109,0.413150,0.144538,0.080203 +bot_00914,splash_driven,0.9141,0.9445,1.0000,1.0000,1.0000,1.0000,0.8294,1.0000,1.0000,0.713205,0.266073,0.012380,0.008342 +bot_00915,reward_heavy,1.0000,0.9204,0.5885,1.0000,0.7889,0.5094,1.0000,0.9707,1.0000,0.607231,0.241247,0.142335,0.009186 +bot_00916,network_bound,0.7164,0.9389,0.8810,0.7530,0.7539,0.5551,0.7374,1.0000,0.8210,0.203362,0.159001,0.293043,0.344594 +bot_00917,reward_heavy,1.0000,0.7729,0.7408,1.0000,0.9340,0.6886,1.0000,1.0000,1.0000,0.486538,0.175465,0.176955,0.161043 +bot_00918,balanced,1.0000,1.0000,1.0000,1.0000,0.8420,1.0000,0.8815,0.8178,0.9392,0.436243,0.338699,0.067185,0.157874 +bot_00919,balanced,1.0000,1.0000,1.0000,1.0000,0.8358,1.0000,1.0000,0.9463,1.0000,0.320167,0.340902,0.327771,0.011160 +bot_00920,churn_sensitive,0.4737,0.5193,0.3890,0.4597,0.5124,0.3416,0.8736,1.0000,0.6520,0.371753,0.178026,0.332105,0.118115 +bot_00921,balanced,1.0000,0.9754,1.0000,1.0000,1.0000,0.9681,1.0000,1.0000,0.9149,0.414348,0.452345,0.107420,0.025887 +bot_00922,interstitial_focus,0.8081,1.0000,0.8892,0.8302,1.0000,0.6758,0.8887,0.8305,1.0000,0.371646,0.469341,0.147857,0.011156 +bot_00923,interstitial_focus,0.5716,1.0000,1.0000,0.8230,1.0000,0.5792,1.0000,0.8427,1.0000,0.171901,0.531772,0.119476,0.176852 +bot_00924,reward_heavy,1.0000,0.7093,0.8721,1.0000,0.9084,0.7210,1.0000,0.9952,1.0000,0.537151,0.227776,0.225931,0.009143 +bot_00925,reward_heavy,1.0000,1.0000,0.9902,1.0000,0.9371,0.6035,1.0000,0.8345,1.0000,0.491695,0.315025,0.185133,0.008147 +bot_00926,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9192,0.8839,1.0000,1.0000,0.412291,0.349407,0.182818,0.055484 +bot_00927,reward_heavy,1.0000,0.9835,0.9150,1.0000,0.8511,0.8166,1.0000,0.9540,1.0000,0.526401,0.317301,0.027055,0.129242 +bot_00928,reward_heavy,1.0000,0.9467,0.7315,1.0000,0.8739,0.7305,1.0000,0.8340,1.0000,0.553630,0.194868,0.241464,0.010038 +bot_00929,reward_heavy,1.0000,0.6895,0.6279,1.0000,0.8464,0.6589,0.9882,0.8487,1.0000,0.599852,0.216998,0.034849,0.148301 +bot_00930,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9265,0.9709,0.8926,0.9766,0.246547,0.338488,0.331616,0.083349 +bot_00931,reward_heavy,1.0000,0.7035,0.8308,1.0000,0.5411,0.4686,1.0000,0.8494,1.0000,0.515277,0.352650,0.103198,0.028875 +bot_00932,network_bound,0.9805,0.8108,0.5642,0.9955,0.6524,0.8487,0.5294,1.0000,0.7705,0.212209,0.130126,0.207883,0.449782 +bot_00933,interstitial_focus,0.5060,1.0000,0.8848,0.7206,1.0000,0.4893,0.8505,1.0000,1.0000,0.344315,0.583994,0.060781,0.010909 +bot_00934,splash_driven,0.9402,0.8673,1.0000,0.9125,1.0000,1.0000,0.9996,1.0000,0.8884,0.818219,0.098169,0.011477,0.072136 +bot_00935,splash_driven,1.0000,0.6876,1.0000,0.9365,0.8959,1.0000,0.8037,0.8214,1.0000,0.715594,0.154942,0.100480,0.028984 +bot_00936,splash_driven,0.7126,1.0000,1.0000,1.0000,1.0000,1.0000,0.7805,0.8190,0.9410,0.819494,0.159075,0.010715,0.010715 +bot_00937,reward_heavy,1.0000,1.0000,0.6648,1.0000,0.8688,0.7690,0.8808,1.0000,1.0000,0.520457,0.208082,0.174143,0.097318 +bot_00938,splash_driven,0.9258,0.9098,1.0000,1.0000,1.0000,1.0000,0.8221,1.0000,0.9903,0.673045,0.224555,0.051205,0.051196 +bot_00939,interstitial_focus,0.8035,1.0000,1.0000,0.6531,1.0000,0.5702,0.8920,1.0000,1.0000,0.190954,0.396731,0.275157,0.137158 +bot_00940,interstitial_focus,0.7358,1.0000,0.8698,0.8463,1.0000,0.7326,0.8633,1.0000,0.9533,0.256084,0.407103,0.248742,0.088071 +bot_00941,splash_driven,0.6976,0.9093,1.0000,0.8999,1.0000,1.0000,0.9590,1.0000,0.9871,0.847501,0.039138,0.084747,0.028614 +bot_00942,reward_heavy,1.0000,0.6692,0.7176,1.0000,0.6516,0.7851,1.0000,1.0000,1.0000,0.563096,0.336588,0.083301,0.017015 +bot_00943,interstitial_focus,0.5792,1.0000,0.6195,0.6242,1.0000,0.5027,0.9242,1.0000,1.0000,0.365394,0.299146,0.301752,0.033708 +bot_00944,reward_heavy,1.0000,0.6820,0.7653,1.0000,0.6049,0.5502,0.9395,0.9131,1.0000,0.492565,0.365434,0.131559,0.010442 +bot_00945,reward_heavy,1.0000,0.7770,0.9338,1.0000,0.5722,0.8370,1.0000,0.7635,1.0000,0.570328,0.267006,0.154954,0.007713 +bot_00946,interstitial_focus,0.8036,1.0000,1.0000,0.7724,1.0000,0.7559,0.9477,1.0000,1.0000,0.382807,0.361172,0.206365,0.049656 +bot_00947,balanced,0.8390,1.0000,1.0000,0.9740,1.0000,1.0000,0.9236,0.9319,0.8930,0.318694,0.308688,0.308648,0.063970 +bot_00948,interstitial_focus,0.9203,1.0000,0.8824,0.9722,1.0000,0.9117,1.0000,0.9056,0.9686,0.300883,0.372604,0.122768,0.203745 +bot_00949,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9733,1.0000,1.0000,0.9406,1.0000,0.638721,0.132659,0.122918,0.105702 +bot_00950,reward_heavy,1.0000,0.9405,0.9739,1.0000,0.8875,0.6974,1.0000,0.6846,1.0000,0.628757,0.239183,0.120729,0.011330 +bot_00951,splash_driven,1.0000,0.9625,1.0000,1.0000,1.0000,1.0000,0.9870,0.9884,0.9984,0.797745,0.079400,0.112281,0.010574 +bot_00952,balanced,1.0000,0.8986,1.0000,0.9123,1.0000,1.0000,1.0000,1.0000,1.0000,0.327449,0.275864,0.205861,0.190826 +bot_00953,network_bound,1.0000,1.0000,0.6607,1.0000,0.9313,0.7763,0.8243,1.0000,0.9054,0.118885,0.232428,0.361689,0.286998 +bot_00954,splash_driven,0.8918,0.8598,1.0000,0.8381,0.9706,1.0000,0.8660,1.0000,0.9437,0.713090,0.085532,0.077731,0.123647 +bot_00955,interstitial_focus,0.9266,1.0000,0.8043,0.8889,1.0000,0.5014,0.8098,1.0000,0.9667,0.432465,0.416662,0.141504,0.009369 +bot_00956,reward_heavy,1.0000,0.9161,0.9921,1.0000,0.9392,0.4029,1.0000,0.7496,1.0000,0.475852,0.308456,0.100173,0.115519 +bot_00957,reward_heavy,1.0000,0.7823,0.7411,1.0000,0.5923,0.5621,1.0000,0.8475,1.0000,0.613488,0.208887,0.166722,0.010903 +bot_00958,interstitial_focus,0.6639,1.0000,1.0000,0.9351,1.0000,0.7386,0.9276,0.8645,1.0000,0.323382,0.395478,0.172826,0.108313 +bot_00959,splash_driven,1.0000,0.9344,1.0000,1.0000,0.9456,1.0000,1.0000,0.8332,0.8650,0.821672,0.041937,0.100498,0.035893 +bot_00960,balanced,0.8647,0.8934,0.9241,1.0000,0.8503,0.8123,0.9820,1.0000,0.9842,0.509500,0.282866,0.146058,0.061576 +bot_00961,splash_driven,0.9707,1.0000,1.0000,1.0000,0.9910,1.0000,0.9973,0.9190,1.0000,0.795493,0.040560,0.154096,0.009852 +bot_00962,churn_sensitive,0.4002,0.5475,0.2338,0.6360,0.3742,0.6751,0.8700,1.0000,0.6511,0.232393,0.290175,0.253267,0.224165 +bot_00963,churn_sensitive,0.3366,0.8669,0.5977,0.6269,0.6589,0.5382,0.5743,1.0000,0.6754,0.261708,0.216332,0.327377,0.194583 +bot_00964,churn_sensitive,0.7395,0.6972,0.4360,0.5732,0.4650,0.6442,0.8635,1.0000,0.5243,0.142971,0.287658,0.295528,0.273842 +bot_00965,balanced,0.9783,1.0000,1.0000,1.0000,1.0000,0.8310,0.9132,1.0000,0.9435,0.343438,0.298839,0.339124,0.018599 +bot_00966,interstitial_focus,0.5801,1.0000,0.6171,0.7455,1.0000,0.8854,1.0000,0.8757,1.0000,0.308977,0.504666,0.173396,0.012961 +bot_00967,interstitial_focus,0.7572,1.0000,0.6338,0.8998,1.0000,0.7512,1.0000,1.0000,1.0000,0.224388,0.293589,0.303822,0.178201 +bot_00968,splash_driven,0.9670,0.7652,1.0000,1.0000,0.9389,1.0000,0.9966,0.8581,0.9795,0.724453,0.104478,0.077520,0.093549 +bot_00969,balanced,0.8890,0.9849,1.0000,1.0000,0.9530,0.9879,1.0000,0.9599,1.0000,0.433576,0.345984,0.212481,0.007959 +bot_00970,interstitial_focus,0.6383,1.0000,0.6816,0.8681,1.0000,0.8607,0.8418,0.8367,1.0000,0.252949,0.368449,0.272506,0.106096 +bot_00971,interstitial_focus,0.8215,1.0000,0.8463,0.8534,1.0000,0.5603,0.8335,0.8951,1.0000,0.388382,0.349976,0.091051,0.170591 +bot_00972,reward_heavy,1.0000,0.5864,1.0000,1.0000,0.6655,0.5772,1.0000,0.8205,1.0000,0.625282,0.357054,0.008832,0.008832 +bot_00973,churn_sensitive,0.5642,0.4146,0.4795,0.5020,0.6979,0.4329,0.8565,1.0000,0.6698,0.325401,0.165321,0.311475,0.197803 +bot_00974,interstitial_focus,0.5758,1.0000,0.6854,0.8216,1.0000,0.8268,0.8676,1.0000,0.9799,0.390592,0.335512,0.244066,0.029830 +bot_00975,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9833,1.0000,0.9898,0.723690,0.212618,0.008769,0.054923 +bot_00976,interstitial_focus,0.8685,1.0000,1.0000,0.7539,1.0000,0.6079,1.0000,0.9708,1.0000,0.223999,0.421544,0.343304,0.011153 +bot_00977,balanced,1.0000,0.9983,1.0000,0.8913,1.0000,1.0000,0.9046,0.9670,1.0000,0.382773,0.199537,0.262273,0.155417 +bot_00978,churn_sensitive,0.4417,0.6255,0.6630,0.6470,0.7319,0.5051,0.8648,1.0000,0.5914,0.190839,0.303574,0.395687,0.109900 +bot_00979,churn_sensitive,0.4016,0.4805,0.2275,0.4007,0.6494,0.6031,0.7907,1.0000,0.6107,0.238409,0.219251,0.289729,0.252611 +bot_00980,reward_heavy,1.0000,0.9642,0.6673,1.0000,0.9004,0.8034,1.0000,0.9060,1.0000,0.724238,0.247939,0.013911,0.013911 +bot_00981,reward_heavy,1.0000,0.8991,0.8038,1.0000,0.5631,0.4447,0.9952,1.0000,1.0000,0.735031,0.241957,0.011506,0.011506 +bot_00982,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8395,0.8492,0.9698,1.0000,0.427487,0.219957,0.213358,0.139199 +bot_00983,interstitial_focus,0.5546,1.0000,1.0000,0.7865,1.0000,0.8972,0.9917,1.0000,1.0000,0.417218,0.311063,0.182384,0.089335 +bot_00984,reward_heavy,1.0000,0.7339,1.0000,1.0000,0.7196,0.7197,1.0000,0.6991,1.0000,0.496271,0.279063,0.105642,0.119024 +bot_00985,reward_heavy,1.0000,0.8563,0.8698,1.0000,0.7304,0.5431,1.0000,0.7290,1.0000,0.551676,0.179844,0.163601,0.104878 +bot_00986,interstitial_focus,0.5505,1.0000,0.9734,0.9440,1.0000,0.8017,0.9610,1.0000,1.0000,0.365443,0.325401,0.246963,0.062192 +bot_00987,reward_heavy,1.0000,0.6205,0.6333,1.0000,0.9164,0.7991,0.9844,1.0000,1.0000,0.590215,0.192808,0.170516,0.046461 +bot_00988,reward_heavy,1.0000,0.5915,0.8582,1.0000,0.6162,0.7913,1.0000,1.0000,1.0000,0.435451,0.246455,0.184069,0.134025 +bot_00989,balanced,1.0000,1.0000,1.0000,1.0000,0.9366,0.8971,1.0000,1.0000,1.0000,0.544272,0.337223,0.105124,0.013381 +bot_00990,splash_driven,1.0000,0.6877,1.0000,0.9399,1.0000,1.0000,0.8733,1.0000,0.9401,0.789191,0.185861,0.012474,0.012474 +bot_00991,balanced,0.8923,1.0000,0.9026,0.9100,1.0000,0.9609,1.0000,1.0000,1.0000,0.526131,0.247662,0.206565,0.019642 +bot_00992,churn_sensitive,0.3975,0.6366,0.2361,0.7828,0.4701,0.2493,0.6403,1.0000,0.6196,0.208448,0.127877,0.390957,0.272718 +bot_00993,balanced,1.0000,0.8916,1.0000,0.9853,1.0000,0.9322,1.0000,0.8718,1.0000,0.379719,0.268604,0.341334,0.010343 +bot_00994,churn_sensitive,0.6868,0.5544,0.6228,0.5511,0.5848,0.5959,0.6563,1.0000,0.5127,0.186638,0.234489,0.352603,0.226270 +bot_00995,interstitial_focus,0.7462,1.0000,0.7006,0.9600,1.0000,0.8087,1.0000,1.0000,0.9853,0.281068,0.437988,0.210273,0.070672 +bot_00996,splash_driven,0.8841,0.7100,1.0000,1.0000,1.0000,1.0000,0.7765,0.8417,1.0000,0.826032,0.154720,0.009624,0.009624 +bot_00997,interstitial_focus,0.7583,1.0000,0.9576,0.5757,1.0000,0.7914,1.0000,0.8277,0.9932,0.444924,0.279553,0.263248,0.012275 +bot_00998,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8779,1.0000,0.8047,1.0000,0.378272,0.282379,0.164889,0.174460 +bot_00999,reward_heavy,1.0000,0.9682,1.0000,1.0000,0.5978,0.8013,1.0000,0.8393,1.0000,0.408210,0.361189,0.218881,0.011721 +bot_01000,churn_sensitive,0.5420,0.4649,0.3503,0.8128,0.7359,0.4988,0.7566,1.0000,0.5183,0.198033,0.126323,0.420342,0.255302 +bot_01001,balanced,1.0000,0.8853,1.0000,1.0000,1.0000,0.8751,1.0000,0.8115,0.9661,0.434058,0.212070,0.133603,0.220269 +bot_01002,interstitial_focus,0.7504,1.0000,0.8465,0.8182,1.0000,0.6012,0.9998,1.0000,1.0000,0.401781,0.504287,0.084461,0.009471 +bot_01003,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9563,1.0000,1.0000,0.732602,0.244057,0.011670,0.011670 +bot_01004,balanced,0.9212,1.0000,1.0000,0.9749,0.9290,0.9384,0.9522,0.8625,1.0000,0.338278,0.226000,0.293437,0.142285 +bot_01005,splash_driven,0.9459,0.7464,1.0000,0.9774,0.8718,1.0000,0.9451,0.9023,0.9938,0.877856,0.100981,0.010581,0.010581 +bot_01006,reward_heavy,1.0000,0.8308,0.9083,1.0000,0.9698,0.4026,1.0000,0.8997,1.0000,0.503758,0.422381,0.037295,0.036566 +bot_01007,splash_driven,0.7204,1.0000,1.0000,1.0000,1.0000,1.0000,0.9772,0.8185,0.8987,0.655562,0.223605,0.061372,0.059460 +bot_01008,reward_heavy,1.0000,0.6393,0.8631,1.0000,0.5802,0.6957,0.9353,0.6854,1.0000,0.688814,0.260104,0.009311,0.041771 +bot_01009,interstitial_focus,0.6698,1.0000,0.9142,0.8718,1.0000,0.5722,0.8958,1.0000,1.0000,0.222284,0.451743,0.172375,0.153598 +bot_01010,interstitial_focus,0.9455,1.0000,0.8222,0.7184,1.0000,0.8866,1.0000,1.0000,1.0000,0.484204,0.424210,0.081155,0.010431 +bot_01011,network_bound,0.9597,0.8448,0.9409,0.9215,0.7138,0.5255,0.6876,1.0000,0.9378,0.023614,0.143600,0.310878,0.521909 +bot_01012,splash_driven,0.8815,0.9825,1.0000,0.8760,1.0000,1.0000,0.8905,0.8676,0.8532,0.584022,0.311236,0.009583,0.095159 +bot_01013,reward_heavy,1.0000,0.6709,1.0000,1.0000,0.6211,0.6189,1.0000,0.7807,1.0000,0.443063,0.377115,0.052409,0.127414 +bot_01014,reward_heavy,1.0000,0.6576,0.5940,1.0000,0.6056,0.5506,0.9602,0.9812,1.0000,0.719849,0.229499,0.010943,0.039709 +bot_01015,splash_driven,0.9047,0.9206,1.0000,0.9082,0.8779,1.0000,0.7618,1.0000,0.9375,0.740657,0.175048,0.074755,0.009540 +bot_01016,splash_driven,0.9608,0.8189,1.0000,1.0000,1.0000,1.0000,0.7567,0.9403,1.0000,0.779015,0.199433,0.010776,0.010776 +bot_01017,network_bound,0.8169,0.9387,0.6284,0.9355,0.9590,0.9015,0.5705,1.0000,0.8306,0.162984,0.207099,0.365703,0.264214 +bot_01018,churn_sensitive,0.4758,0.5324,0.3982,0.7419,0.4116,0.6619,0.8014,1.0000,0.4947,0.389883,0.209011,0.272083,0.129023 +bot_01019,balanced,1.0000,0.8941,0.9412,1.0000,0.8649,0.7941,0.9780,0.8412,0.9412,0.384889,0.338540,0.249296,0.027275 +bot_01020,splash_driven,0.7973,0.9551,1.0000,0.8035,1.0000,1.0000,0.9629,1.0000,0.9054,0.674867,0.228406,0.041327,0.055401 +bot_01021,interstitial_focus,0.9004,1.0000,0.9813,0.5732,1.0000,0.6732,0.8101,0.9455,1.0000,0.385330,0.316362,0.287944,0.010363 +bot_01022,balanced,1.0000,0.9039,1.0000,1.0000,1.0000,0.9655,1.0000,0.8262,1.0000,0.447072,0.310653,0.144883,0.097392 +bot_01023,network_bound,0.8981,0.7503,0.6817,1.0000,0.7294,0.6633,0.5508,1.0000,0.7166,0.183111,0.201071,0.202096,0.413723 +bot_01024,splash_driven,0.6853,0.8393,1.0000,0.8175,1.0000,1.0000,1.0000,1.0000,0.9012,0.624601,0.134225,0.157712,0.083463 +bot_01025,churn_sensitive,0.5039,0.6993,0.6859,0.6005,0.6252,0.2407,0.8039,0.9841,0.5978,0.157980,0.371310,0.231125,0.239585 +bot_01026,interstitial_focus,0.8740,1.0000,1.0000,0.8403,1.0000,0.7464,1.0000,0.8290,1.0000,0.279146,0.496300,0.158035,0.066519 +bot_01027,interstitial_focus,0.5409,1.0000,0.9661,0.7643,1.0000,0.7491,0.9286,1.0000,1.0000,0.216505,0.455618,0.149488,0.178390 +bot_01028,interstitial_focus,0.9334,1.0000,0.7297,0.6006,1.0000,0.9151,0.9116,1.0000,0.9885,0.217382,0.538804,0.215187,0.028627 +bot_01029,splash_driven,0.9040,0.9296,1.0000,0.8636,0.9746,1.0000,0.8917,0.8302,0.9327,0.717359,0.263152,0.009745,0.009745 +bot_01030,churn_sensitive,0.3196,0.4566,0.5866,0.7206,0.6978,0.2542,0.7556,1.0000,0.5386,0.303622,0.250049,0.332325,0.114005 +bot_01031,splash_driven,0.7310,0.8595,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.796311,0.053869,0.033654,0.116166 +bot_01032,balanced,0.8997,1.0000,0.9747,1.0000,1.0000,1.0000,1.0000,1.0000,0.9417,0.401908,0.294570,0.209643,0.093880 +bot_01033,interstitial_focus,0.5019,1.0000,1.0000,0.8538,1.0000,0.5236,0.8503,1.0000,0.9689,0.251872,0.399384,0.337347,0.011398 +bot_01034,balanced,0.9242,0.9935,1.0000,0.8680,1.0000,1.0000,1.0000,1.0000,1.0000,0.477522,0.289246,0.223631,0.009602 +bot_01035,churn_sensitive,0.5409,0.7198,0.2361,0.7472,0.6684,0.3466,0.6912,1.0000,0.6624,0.343822,0.352936,0.250530,0.052712 +bot_01036,splash_driven,0.7039,0.7527,1.0000,0.9413,0.8676,1.0000,1.0000,1.0000,0.9976,0.782742,0.099058,0.109373,0.008827 +bot_01037,splash_driven,0.7768,1.0000,1.0000,0.9010,1.0000,1.0000,0.7534,1.0000,0.8978,0.630711,0.238325,0.120943,0.010021 +bot_01038,splash_driven,0.7286,0.9190,1.0000,1.0000,0.9376,1.0000,0.8257,1.0000,1.0000,0.682433,0.101271,0.068377,0.147919 +bot_01039,interstitial_focus,0.6244,1.0000,0.6451,0.8756,1.0000,0.7458,0.8901,0.9149,0.9813,0.225843,0.379040,0.271823,0.123294 +bot_01040,reward_heavy,1.0000,0.6952,0.6475,1.0000,0.8048,0.6029,0.8925,0.9289,1.0000,0.516130,0.363902,0.103824,0.016144 +bot_01041,interstitial_focus,0.8788,1.0000,0.6599,0.6984,1.0000,0.6143,0.9435,0.8704,0.9336,0.304512,0.508470,0.176190,0.010828 +bot_01042,reward_heavy,1.0000,0.6659,0.6732,1.0000,0.8668,0.7395,0.9147,0.8258,1.0000,0.537779,0.203555,0.247519,0.011147 +bot_01043,reward_heavy,1.0000,0.9646,0.9795,1.0000,0.9571,0.6777,1.0000,0.9733,1.0000,0.571721,0.318551,0.056148,0.053580 +bot_01044,splash_driven,1.0000,0.6880,1.0000,1.0000,1.0000,1.0000,0.9051,1.0000,0.9470,0.600421,0.281546,0.008720,0.109313 +bot_01045,splash_driven,1.0000,0.7604,1.0000,0.9563,1.0000,1.0000,0.8878,1.0000,1.0000,0.670225,0.183079,0.009628,0.137069 +bot_01046,churn_sensitive,0.5926,0.4935,0.6462,0.7152,0.5153,0.6681,0.6235,1.0000,0.5684,0.326029,0.359399,0.205585,0.108987 +bot_01047,reward_heavy,1.0000,0.9274,0.6193,1.0000,0.5977,0.7317,1.0000,1.0000,1.0000,0.634508,0.204034,0.150924,0.010534 +bot_01048,splash_driven,0.6657,0.7425,1.0000,1.0000,0.9512,1.0000,0.8983,0.9906,0.9885,0.778812,0.164564,0.046976,0.009648 +bot_01049,interstitial_focus,0.6224,1.0000,1.0000,0.9441,1.0000,0.8176,1.0000,0.8369,0.9324,0.232879,0.421247,0.251565,0.094309 +bot_01050,reward_heavy,1.0000,1.0000,0.7583,1.0000,0.7111,0.6770,0.9409,0.8896,1.0000,0.613290,0.255028,0.010257,0.121424 +bot_01051,interstitial_focus,0.5041,1.0000,0.7785,0.7499,1.0000,0.6976,0.9250,1.0000,1.0000,0.350600,0.302282,0.239597,0.107521 +bot_01052,churn_sensitive,0.6876,0.6153,0.5958,0.4981,0.4015,0.4562,0.6361,1.0000,0.6941,0.373353,0.161631,0.193587,0.271428 +bot_01053,churn_sensitive,0.4043,0.5783,0.2663,0.7891,0.5319,0.4806,0.7471,1.0000,0.5027,0.272669,0.326872,0.319883,0.080575 +bot_01054,interstitial_focus,0.9327,1.0000,0.8931,0.8113,1.0000,0.5749,0.9825,1.0000,0.9339,0.443811,0.359353,0.154525,0.042310 +bot_01055,network_bound,0.7060,0.7637,0.7022,1.0000,0.8104,0.8879,0.6769,1.0000,0.8960,0.151797,0.201142,0.318710,0.328351 +bot_01056,interstitial_focus,0.7915,1.0000,0.6644,0.8381,1.0000,0.4886,1.0000,1.0000,1.0000,0.282914,0.438446,0.152293,0.126347 +bot_01057,reward_heavy,1.0000,0.6049,1.0000,1.0000,0.6557,0.5416,0.8953,0.9078,1.0000,0.499133,0.249163,0.162267,0.089437 +bot_01058,interstitial_focus,0.7419,1.0000,0.7558,0.9868,1.0000,0.9073,0.9330,1.0000,1.0000,0.307862,0.400468,0.222050,0.069619 +bot_01059,interstitial_focus,0.9320,1.0000,0.8460,0.6439,1.0000,0.6375,1.0000,1.0000,1.0000,0.217913,0.395980,0.233731,0.152376 +bot_01060,interstitial_focus,0.6014,1.0000,0.6598,0.9112,1.0000,0.8992,1.0000,0.9369,1.0000,0.362853,0.280591,0.290961,0.065595 +bot_01061,splash_driven,0.9041,0.9552,1.0000,0.9449,1.0000,1.0000,0.8716,1.0000,1.0000,0.720578,0.120059,0.062665,0.096698 +bot_01062,balanced,0.9479,1.0000,1.0000,1.0000,0.9345,0.9893,1.0000,1.0000,0.9315,0.486929,0.406025,0.096756,0.010290 +bot_01063,interstitial_focus,0.6577,1.0000,1.0000,0.6616,1.0000,0.7229,0.9311,0.8890,0.9477,0.230749,0.330116,0.270191,0.168943 +bot_01064,balanced,1.0000,1.0000,0.9737,0.9498,1.0000,0.8156,0.8803,1.0000,1.0000,0.405871,0.224234,0.269887,0.100007 +bot_01065,network_bound,0.8928,0.8099,0.9407,0.9016,0.6151,0.8878,0.7229,1.0000,0.7746,0.013099,0.059497,0.498969,0.428434 +bot_01066,balanced,1.0000,1.0000,1.0000,0.9981,1.0000,0.9075,0.9254,1.0000,1.0000,0.453498,0.262757,0.126789,0.156956 +bot_01067,splash_driven,0.7974,0.7647,1.0000,0.8061,1.0000,1.0000,0.9687,0.9846,0.8771,0.730763,0.038974,0.093392,0.136871 +bot_01068,network_bound,1.0000,0.8190,0.6531,1.0000,0.8069,0.7009,0.6368,1.0000,0.8222,0.051071,0.190836,0.350871,0.407222 +bot_01069,churn_sensitive,0.4149,0.7481,0.6854,0.4817,0.5496,0.4306,0.6913,1.0000,0.6793,0.204599,0.318074,0.303675,0.173653 +bot_01070,churn_sensitive,0.4778,0.7653,0.3306,0.3923,0.5470,0.4701,0.8051,1.0000,0.6498,0.143550,0.168183,0.520633,0.167634 +bot_01071,network_bound,0.7852,0.6520,0.9561,0.9944,0.9596,0.8180,0.8190,1.0000,0.8768,0.017859,0.118766,0.294759,0.568616 +bot_01072,interstitial_focus,0.4931,1.0000,0.9300,0.8453,1.0000,0.9088,0.8164,0.9070,0.9838,0.304919,0.569629,0.093509,0.031943 +bot_01073,churn_sensitive,0.4505,0.7382,0.5304,0.6801,0.4317,0.3545,0.7298,1.0000,0.5742,0.309796,0.306698,0.275246,0.108260 +bot_01074,reward_heavy,1.0000,0.9733,1.0000,1.0000,0.6663,0.6300,1.0000,0.7234,1.0000,0.573645,0.252019,0.082489,0.091847 +bot_01075,splash_driven,0.8646,0.8744,1.0000,1.0000,1.0000,1.0000,0.8169,0.9720,1.0000,0.751637,0.206064,0.020997,0.021302 +bot_01076,balanced,0.9731,0.9397,0.9693,0.8565,0.9198,1.0000,1.0000,1.0000,1.0000,0.385404,0.210740,0.374625,0.029231 +bot_01077,network_bound,0.6177,0.7562,1.0000,0.7933,0.7143,0.8846,0.7737,1.0000,0.9361,0.222040,0.185588,0.199170,0.393201 +bot_01078,network_bound,0.9113,0.8110,0.7559,0.8183,0.6022,0.6981,0.5585,1.0000,0.7061,0.131801,0.235939,0.310395,0.321865 +bot_01079,churn_sensitive,0.6672,0.6764,0.6069,0.7683,0.3394,0.3731,0.6636,1.0000,0.5695,0.175255,0.257014,0.359234,0.208497 +bot_01080,splash_driven,0.6474,0.7289,1.0000,1.0000,0.8136,1.0000,0.8160,1.0000,1.0000,0.806052,0.170807,0.012617,0.010524 +bot_01081,interstitial_focus,0.7630,1.0000,0.6923,0.9160,1.0000,0.8313,0.9175,1.0000,1.0000,0.363917,0.453039,0.169033,0.014010 +bot_01082,reward_heavy,1.0000,0.8347,0.5833,1.0000,0.7314,0.6645,1.0000,0.7366,1.0000,0.471515,0.304499,0.149526,0.074460 +bot_01083,splash_driven,0.6819,0.9059,1.0000,0.8123,0.9097,1.0000,1.0000,0.9031,0.9943,0.648583,0.034277,0.163865,0.153275 +bot_01084,balanced,0.9555,1.0000,1.0000,1.0000,0.8209,1.0000,0.9564,0.8036,1.0000,0.350184,0.270452,0.223160,0.156203 +bot_01085,splash_driven,0.7396,0.8356,1.0000,0.9420,1.0000,1.0000,1.0000,0.9031,0.9226,0.821638,0.108315,0.013179,0.056868 +bot_01086,splash_driven,0.7231,1.0000,1.0000,0.9347,0.9683,1.0000,0.9144,0.9186,1.0000,0.886914,0.078091,0.025082,0.009914 +bot_01087,reward_heavy,1.0000,1.0000,0.6522,1.0000,0.9146,0.4432,0.9632,0.9305,1.0000,0.414694,0.271972,0.188925,0.124410 +bot_01088,balanced,0.9063,1.0000,1.0000,1.0000,1.0000,0.8604,1.0000,1.0000,0.8866,0.350747,0.394619,0.245847,0.008787 +bot_01089,splash_driven,0.6596,0.9621,1.0000,1.0000,1.0000,1.0000,0.7947,1.0000,1.0000,0.807661,0.064007,0.119238,0.009094 +bot_01090,interstitial_focus,0.5671,1.0000,0.6738,0.8749,1.0000,0.7134,0.9407,0.9971,1.0000,0.370226,0.376086,0.134383,0.119304 +bot_01091,reward_heavy,1.0000,0.6377,0.6686,1.0000,0.5607,0.6701,0.9812,1.0000,1.0000,0.554714,0.266729,0.170534,0.008024 +bot_01092,network_bound,0.7059,0.6719,0.8223,0.9164,0.6019,0.9261,0.6720,1.0000,0.9299,0.011031,0.194597,0.474011,0.320361 +bot_01093,reward_heavy,1.0000,0.9452,0.9060,1.0000,0.5564,0.6283,1.0000,0.8689,1.0000,0.555677,0.279687,0.101044,0.063592 +bot_01094,splash_driven,0.9928,0.9169,1.0000,0.9521,1.0000,1.0000,0.8090,1.0000,0.9149,0.620680,0.234451,0.136941,0.007927 +bot_01095,reward_heavy,1.0000,0.7755,0.5642,1.0000,0.8676,0.4254,1.0000,0.9627,1.0000,0.530772,0.169503,0.220602,0.079124 +bot_01096,interstitial_focus,0.5641,1.0000,0.6906,0.6846,1.0000,0.5739,1.0000,0.9138,1.0000,0.436442,0.503911,0.049960,0.009688 +bot_01097,balanced,1.0000,0.9504,1.0000,1.0000,0.9105,0.7984,0.9736,1.0000,0.8879,0.420813,0.198165,0.225637,0.155386 +bot_01098,reward_heavy,1.0000,0.8061,0.7404,1.0000,0.7807,0.7157,1.0000,0.8405,1.0000,0.756302,0.157435,0.012602,0.073662 +bot_01099,network_bound,1.0000,0.8661,0.7849,0.8840,0.7709,0.6564,0.6390,1.0000,0.7882,0.338187,0.096811,0.241144,0.323857 +bot_01100,balanced,0.8891,0.8876,0.8847,1.0000,1.0000,0.8427,1.0000,0.8451,0.9160,0.422802,0.216896,0.350368,0.009935 +bot_01101,churn_sensitive,0.4425,0.5846,0.2746,0.8120,0.3758,0.5716,0.7865,0.9944,0.6144,0.137465,0.360165,0.236292,0.266078 +bot_01102,balanced,0.9332,1.0000,1.0000,1.0000,0.8321,0.8409,1.0000,1.0000,1.0000,0.385506,0.288983,0.105413,0.220097 +bot_01103,balanced,0.8957,1.0000,1.0000,1.0000,0.9690,0.9398,1.0000,1.0000,1.0000,0.362158,0.251334,0.200367,0.186141 +bot_01104,interstitial_focus,0.9136,1.0000,0.5922,0.8301,1.0000,0.6918,0.9752,0.9845,1.0000,0.367868,0.340463,0.178798,0.112872 +bot_01105,reward_heavy,1.0000,0.9837,0.7409,1.0000,0.8330,0.7866,0.9472,0.7181,1.0000,0.529930,0.163611,0.174784,0.131675 +bot_01106,balanced,0.9309,1.0000,1.0000,1.0000,0.9685,0.8426,0.9605,0.9625,0.9596,0.560536,0.310586,0.115526,0.013352 +bot_01107,interstitial_focus,0.7838,1.0000,0.6865,0.9101,1.0000,0.6138,0.9487,1.0000,1.0000,0.211661,0.575483,0.104089,0.108768 +bot_01108,reward_heavy,1.0000,0.9977,0.5705,1.0000,0.6413,0.7450,1.0000,1.0000,1.0000,0.531012,0.274738,0.172311,0.021939 +bot_01109,network_bound,0.6189,0.7852,0.8172,0.9850,0.7253,0.9298,0.7526,1.0000,0.7355,0.235977,0.213825,0.145073,0.405125 +bot_01110,reward_heavy,1.0000,0.8939,0.5668,1.0000,0.6513,0.4666,1.0000,0.8526,1.0000,0.466895,0.301566,0.146044,0.085494 +bot_01111,network_bound,0.8293,0.8642,0.6800,0.9037,0.7338,0.7583,0.7954,1.0000,0.7276,0.010508,0.134260,0.449407,0.405824 +bot_01112,balanced,1.0000,1.0000,1.0000,0.8959,0.7850,1.0000,1.0000,0.9357,1.0000,0.404839,0.319636,0.086225,0.189300 +bot_01113,churn_sensitive,0.6635,0.5011,0.2819,0.6803,0.4308,0.6565,0.6487,0.9815,0.6761,0.299400,0.116784,0.390978,0.192838 +bot_01114,reward_heavy,1.0000,0.9601,0.8797,1.0000,0.6470,0.6015,0.9418,1.0000,1.0000,0.526086,0.235539,0.187892,0.050482 +bot_01115,balanced,0.9926,1.0000,1.0000,1.0000,1.0000,1.0000,0.9090,0.8799,0.9181,0.320166,0.439170,0.202557,0.038107 +bot_01116,splash_driven,1.0000,0.9727,1.0000,0.8468,0.9684,1.0000,0.8312,0.8669,0.9824,0.654080,0.069332,0.149180,0.127407 +bot_01117,interstitial_focus,0.7111,1.0000,0.9345,0.5929,1.0000,0.7528,0.9480,0.8646,0.9773,0.224391,0.531213,0.168327,0.076069 +bot_01118,network_bound,0.8741,0.6804,0.8210,0.7628,0.9558,0.5631,0.6581,1.0000,0.7467,0.075340,0.252473,0.309245,0.362941 +bot_01119,splash_driven,0.7209,1.0000,1.0000,0.9754,0.8507,1.0000,0.7995,1.0000,1.0000,0.764255,0.180669,0.043109,0.011966 +bot_01120,interstitial_focus,0.8167,1.0000,0.6336,0.6400,1.0000,0.6278,0.8738,0.8481,1.0000,0.240592,0.469713,0.280486,0.009209 +bot_01121,reward_heavy,1.0000,0.9594,0.9486,1.0000,0.9271,0.5765,1.0000,1.0000,1.0000,0.644899,0.177147,0.168155,0.009798 +bot_01122,churn_sensitive,0.5415,0.6391,0.6145,0.6503,0.7449,0.4338,0.7657,1.0000,0.5121,0.362787,0.192669,0.362692,0.081852 +bot_01123,balanced,0.9801,1.0000,1.0000,1.0000,0.8493,1.0000,1.0000,1.0000,0.9927,0.367709,0.415262,0.208189,0.008840 +bot_01124,reward_heavy,1.0000,0.6924,0.5730,1.0000,0.5526,0.4862,1.0000,0.7374,1.0000,0.560658,0.251975,0.159971,0.027397 +bot_01125,reward_heavy,1.0000,0.9956,1.0000,1.0000,0.5807,0.4683,1.0000,0.8691,1.0000,0.688785,0.194604,0.102772,0.013839 +bot_01126,interstitial_focus,0.7740,1.0000,1.0000,0.7372,1.0000,0.7834,0.8790,1.0000,1.0000,0.394516,0.308480,0.127117,0.169887 +bot_01127,reward_heavy,1.0000,0.7048,0.7428,1.0000,0.9368,0.6207,1.0000,0.7903,1.0000,0.555038,0.318424,0.118867,0.007670 +bot_01128,interstitial_focus,0.7550,1.0000,0.8699,0.7978,1.0000,0.6277,0.8915,1.0000,1.0000,0.294558,0.438089,0.118785,0.148568 +bot_01129,balanced,0.8829,1.0000,1.0000,0.9548,0.9360,0.9775,1.0000,1.0000,0.9912,0.374152,0.159938,0.304273,0.161636 +bot_01130,interstitial_focus,0.5298,1.0000,0.6592,0.7485,1.0000,0.5568,1.0000,1.0000,1.0000,0.280075,0.406034,0.288705,0.025186 +bot_01131,balanced,0.9181,1.0000,0.8942,0.9360,1.0000,0.9526,1.0000,1.0000,0.9913,0.472570,0.170860,0.268846,0.087724 +bot_01132,splash_driven,0.8261,1.0000,1.0000,0.8599,1.0000,1.0000,0.9846,1.0000,1.0000,0.893948,0.084334,0.010859,0.010859 +bot_01133,churn_sensitive,0.5633,0.7309,0.5990,0.4363,0.5429,0.6227,0.7953,1.0000,0.6185,0.108516,0.228222,0.339770,0.323492 +bot_01134,reward_heavy,1.0000,0.6793,0.8600,1.0000,0.7326,0.6116,1.0000,0.8598,1.0000,0.505374,0.317809,0.098592,0.078225 +bot_01135,churn_sensitive,0.3169,0.8639,0.4654,0.7655,0.7656,0.2554,0.7788,1.0000,0.6891,0.325397,0.209935,0.294911,0.169757 +bot_01136,churn_sensitive,0.3711,0.8699,0.4282,0.4845,0.6296,0.5518,0.8117,1.0000,0.6687,0.195426,0.324056,0.352995,0.127523 +bot_01137,interstitial_focus,0.6624,1.0000,0.8762,0.5633,1.0000,0.7659,0.9733,0.9064,0.9489,0.378338,0.336020,0.276092,0.009550 +bot_01138,reward_heavy,1.0000,0.8255,0.9126,1.0000,0.6659,0.4419,1.0000,0.9696,1.0000,0.522297,0.272486,0.133230,0.071987 +bot_01139,interstitial_focus,0.5198,1.0000,0.7435,0.8243,1.0000,0.7929,1.0000,1.0000,1.0000,0.283536,0.603153,0.089828,0.023482 +bot_01140,churn_sensitive,0.7729,0.7489,0.4919,0.4279,0.3540,0.6437,0.6898,1.0000,0.6457,0.276331,0.243851,0.280204,0.199614 +bot_01141,balanced,1.0000,1.0000,0.9486,0.8804,0.7889,1.0000,0.9574,0.9248,1.0000,0.387286,0.440359,0.153339,0.019016 +bot_01142,reward_heavy,1.0000,0.6617,0.7027,1.0000,0.8966,0.7660,1.0000,0.7414,1.0000,0.511270,0.318284,0.161841,0.008605 +bot_01143,interstitial_focus,0.5588,1.0000,0.8359,0.8147,1.0000,0.7173,1.0000,0.8730,1.0000,0.200971,0.433475,0.244632,0.120922 +bot_01144,balanced,0.9504,1.0000,1.0000,0.9561,0.9752,0.8608,1.0000,0.9567,0.9547,0.265625,0.346308,0.305839,0.082227 +bot_01145,splash_driven,0.8584,1.0000,1.0000,0.8743,1.0000,1.0000,1.0000,0.9852,0.8881,0.657075,0.050754,0.171719,0.120452 +bot_01146,reward_heavy,1.0000,0.7819,0.7305,1.0000,0.8736,0.5151,0.8828,1.0000,1.0000,0.486125,0.345406,0.043375,0.125094 +bot_01147,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9492,1.0000,0.9543,0.555346,0.311301,0.092460,0.040892 +bot_01148,reward_heavy,1.0000,0.7569,0.7631,1.0000,0.9281,0.4830,0.9125,0.9753,1.0000,0.489294,0.371942,0.129674,0.009090 +bot_01149,reward_heavy,1.0000,0.6806,0.8263,1.0000,0.7786,0.5645,1.0000,0.9706,1.0000,0.654189,0.325039,0.010386,0.010386 +bot_01150,balanced,1.0000,0.9699,0.9426,1.0000,0.8706,0.7898,1.0000,1.0000,0.9273,0.442393,0.250150,0.188862,0.118595 +bot_01151,splash_driven,0.6785,1.0000,1.0000,0.9347,1.0000,1.0000,0.8384,0.9635,0.9639,0.832509,0.124032,0.030283,0.013176 +bot_01152,reward_heavy,1.0000,0.8606,0.7508,1.0000,0.9107,0.6437,1.0000,0.7621,1.0000,0.520775,0.187427,0.151074,0.140725 +bot_01153,interstitial_focus,0.6312,1.0000,1.0000,0.9669,1.0000,0.6284,1.0000,0.9149,1.0000,0.272356,0.483781,0.213493,0.030370 +bot_01154,splash_driven,0.7381,0.8849,1.0000,0.9716,0.9123,1.0000,0.9809,1.0000,1.0000,0.648340,0.181926,0.161633,0.008101 +bot_01155,balanced,1.0000,1.0000,1.0000,0.9644,1.0000,0.9507,1.0000,0.8906,1.0000,0.358446,0.347728,0.285788,0.008037 +bot_01156,network_bound,0.6570,0.6960,0.6290,1.0000,0.7620,0.8091,0.8241,1.0000,0.9197,0.155498,0.192673,0.253839,0.397990 +bot_01157,reward_heavy,1.0000,0.6723,0.7363,1.0000,0.8009,0.8101,1.0000,0.8029,1.0000,0.486751,0.266078,0.128437,0.118734 +bot_01158,churn_sensitive,0.4789,0.6227,0.6553,0.7872,0.3644,0.3023,0.7069,1.0000,0.5784,0.339813,0.188814,0.286906,0.184467 +bot_01159,reward_heavy,1.0000,0.6788,0.9896,1.0000,0.6830,0.5694,1.0000,0.9909,1.0000,0.620874,0.246936,0.123364,0.008826 +bot_01160,interstitial_focus,0.6052,1.0000,1.0000,0.9789,1.0000,0.8413,1.0000,1.0000,1.0000,0.362100,0.316336,0.291209,0.030355 +bot_01161,splash_driven,1.0000,0.9261,1.0000,1.0000,1.0000,1.0000,0.8858,1.0000,0.8790,0.706234,0.218758,0.066100,0.008908 +bot_01162,balanced,1.0000,0.9769,1.0000,1.0000,0.7824,1.0000,1.0000,1.0000,0.8860,0.461370,0.400522,0.124447,0.013661 +bot_01163,network_bound,0.9581,0.9777,0.7946,0.9162,0.9146,0.5138,0.5289,1.0000,0.7289,0.135883,0.203591,0.264679,0.395847 +bot_01164,interstitial_focus,0.5103,1.0000,0.8355,0.8335,1.0000,0.6313,1.0000,1.0000,1.0000,0.402076,0.450051,0.082221,0.065652 +bot_01165,interstitial_focus,0.6965,1.0000,0.9292,0.7644,1.0000,0.7316,0.8103,1.0000,1.0000,0.413328,0.330062,0.139238,0.117371 +bot_01166,splash_driven,1.0000,0.7818,1.0000,1.0000,0.8381,1.0000,0.8929,1.0000,0.9868,0.607623,0.275544,0.107933,0.008900 +bot_01167,churn_sensitive,0.6692,0.7492,0.2570,0.5801,0.6333,0.4087,0.6374,1.0000,0.6148,0.233428,0.203965,0.251448,0.311159 +bot_01168,splash_driven,0.8162,0.7758,1.0000,1.0000,1.0000,1.0000,0.7672,0.9825,0.8625,0.840444,0.132871,0.013342,0.013342 +bot_01169,reward_heavy,1.0000,0.8643,0.9653,1.0000,0.9547,0.5673,0.9837,1.0000,1.0000,0.543858,0.145765,0.220249,0.090127 +bot_01170,network_bound,0.6256,0.7940,0.9655,0.7828,0.9335,0.8717,0.6670,1.0000,0.8336,0.009372,0.170876,0.335328,0.484423 +bot_01171,balanced,1.0000,1.0000,1.0000,0.8639,0.8274,0.7923,1.0000,1.0000,1.0000,0.292959,0.338981,0.181216,0.186844 +bot_01172,churn_sensitive,0.5573,0.6647,0.6136,0.6881,0.4107,0.4477,0.5868,1.0000,0.4710,0.218842,0.315190,0.203232,0.262736 +bot_01173,churn_sensitive,0.7480,0.6958,0.5107,0.4116,0.5676,0.5587,0.5629,1.0000,0.5489,0.171293,0.224027,0.373390,0.231290 +bot_01174,churn_sensitive,0.4609,0.7250,0.6573,0.5996,0.7382,0.5454,0.6374,1.0000,0.5057,0.298043,0.282858,0.208561,0.210537 +bot_01175,interstitial_focus,0.8398,1.0000,1.0000,0.6068,1.0000,0.7460,0.8522,1.0000,1.0000,0.283918,0.388136,0.284730,0.043216 +bot_01176,interstitial_focus,0.9115,1.0000,0.8644,0.6037,1.0000,0.8644,1.0000,0.9813,1.0000,0.294581,0.549927,0.136838,0.018654 +bot_01177,interstitial_focus,0.9499,1.0000,1.0000,0.8925,1.0000,0.7322,0.9658,0.9194,0.9493,0.346809,0.558688,0.083307,0.011196 +bot_01178,splash_driven,0.7262,0.8553,1.0000,0.8471,0.8544,1.0000,1.0000,0.8203,0.8461,0.783214,0.043188,0.104138,0.069460 +bot_01179,interstitial_focus,0.5174,1.0000,0.9412,0.9879,1.0000,0.7644,1.0000,0.9671,1.0000,0.340904,0.497046,0.063546,0.098505 +bot_01180,splash_driven,0.8591,0.9106,1.0000,1.0000,1.0000,1.0000,0.9170,0.8356,1.0000,0.735788,0.172409,0.082296,0.009507 +bot_01181,network_bound,0.8629,0.6167,0.8686,1.0000,0.7036,0.6391,0.7253,1.0000,0.7526,0.068072,0.295912,0.165660,0.470357 +bot_01182,interstitial_focus,0.5692,1.0000,1.0000,0.8740,1.0000,0.6112,0.9310,0.8614,1.0000,0.291365,0.348468,0.349055,0.011112 +bot_01183,network_bound,0.8790,0.7371,0.9158,0.9758,0.7909,0.8017,0.7684,1.0000,0.8356,0.102666,0.047860,0.344842,0.504632 +bot_01184,interstitial_focus,0.8499,1.0000,0.6662,0.6456,1.0000,0.7531,0.9376,0.9755,0.9403,0.411539,0.279991,0.179955,0.128515 +bot_01185,splash_driven,0.9201,1.0000,1.0000,0.9564,1.0000,1.0000,0.7777,0.8648,0.9510,0.607180,0.169284,0.082591,0.140945 +bot_01186,network_bound,0.9512,0.8207,0.8162,1.0000,0.6564,0.8803,0.6797,1.0000,0.8133,0.149526,0.058693,0.408614,0.383167 +bot_01187,churn_sensitive,0.5338,0.5279,0.3090,0.5005,0.6578,0.3615,0.8687,1.0000,0.6559,0.331947,0.181761,0.355125,0.131167 +bot_01188,reward_heavy,1.0000,0.7273,0.9530,1.0000,0.5636,0.4014,1.0000,0.8510,1.0000,0.475580,0.285394,0.178644,0.060382 +bot_01189,splash_driven,0.7726,0.9038,1.0000,1.0000,0.8978,1.0000,0.8672,1.0000,0.9334,0.722930,0.177256,0.031759,0.068056 +bot_01190,balanced,0.8603,1.0000,1.0000,1.0000,0.9185,1.0000,1.0000,1.0000,0.9839,0.378706,0.379437,0.100588,0.141270 +bot_01191,network_bound,0.7817,0.7616,0.9010,0.9267,0.9074,0.8680,0.6140,1.0000,0.8205,0.015555,0.101127,0.439141,0.444177 +bot_01192,reward_heavy,1.0000,0.9045,0.7058,1.0000,0.5564,0.8115,0.9136,0.7584,1.0000,0.527564,0.218170,0.085244,0.169022 +bot_01193,balanced,0.8941,1.0000,0.9863,0.8591,0.8143,1.0000,1.0000,1.0000,0.9308,0.472723,0.317736,0.186662,0.022879 +bot_01194,reward_heavy,1.0000,0.8350,1.0000,1.0000,0.6780,0.5578,0.9138,0.9101,1.0000,0.642045,0.150721,0.198050,0.009185 +bot_01195,balanced,0.8584,1.0000,1.0000,1.0000,0.8924,1.0000,1.0000,1.0000,1.0000,0.471490,0.326547,0.189919,0.012043 +bot_01196,churn_sensitive,0.3950,0.4045,0.4695,0.4325,0.4076,0.5187,0.8572,1.0000,0.5098,0.202486,0.376399,0.234401,0.186713 +bot_01197,reward_heavy,1.0000,0.7415,0.8321,1.0000,0.7564,0.6232,0.8993,0.9199,1.0000,0.514023,0.215207,0.259760,0.011010 +bot_01198,interstitial_focus,0.8997,1.0000,0.9993,0.6834,1.0000,0.8301,0.8554,0.8229,0.9626,0.276402,0.374246,0.199995,0.149356 +bot_01199,network_bound,0.9910,0.9348,0.8697,0.9094,0.7863,0.7420,0.5238,1.0000,0.7067,0.013987,0.291772,0.327039,0.367202 +bot_01200,splash_driven,1.0000,1.0000,1.0000,0.8663,1.0000,1.0000,0.8367,0.8483,1.0000,0.612769,0.232019,0.107294,0.047917 +bot_01201,churn_sensitive,0.5091,0.7893,0.2531,0.3915,0.4779,0.3854,0.7473,0.9952,0.5230,0.205223,0.390219,0.297672,0.106886 +bot_01202,interstitial_focus,0.6789,1.0000,1.0000,0.9895,1.0000,0.8253,0.8770,0.9804,1.0000,0.350034,0.495894,0.141012,0.013060 +bot_01203,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9053,0.8803,1.0000,0.393582,0.245640,0.350251,0.010527 +bot_01204,splash_driven,0.8333,0.9352,1.0000,1.0000,1.0000,1.0000,0.9891,1.0000,0.8451,0.667940,0.187804,0.114155,0.030101 +bot_01205,reward_heavy,1.0000,0.7308,0.8949,1.0000,0.9395,0.8046,1.0000,1.0000,1.0000,0.631359,0.349825,0.009408,0.009408 +bot_01206,network_bound,0.7853,0.9979,0.9587,0.8221,0.9330,0.8203,0.7508,1.0000,0.8793,0.040383,0.173540,0.441866,0.344211 +bot_01207,interstitial_focus,0.4960,1.0000,0.9787,0.7336,1.0000,0.6150,1.0000,1.0000,1.0000,0.277301,0.411147,0.299669,0.011884 +bot_01208,balanced,0.9394,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9892,0.9225,0.563282,0.322166,0.095535,0.019016 +bot_01209,balanced,0.8621,1.0000,0.9818,1.0000,1.0000,0.8775,1.0000,1.0000,1.0000,0.452026,0.237469,0.166818,0.143687 +bot_01210,churn_sensitive,0.3246,0.5041,0.3388,0.7001,0.3332,0.4621,0.6913,1.0000,0.6027,0.254958,0.307971,0.186130,0.250940 +bot_01211,interstitial_focus,0.7097,1.0000,0.8210,0.8302,1.0000,0.7110,1.0000,0.9465,1.0000,0.152090,0.439995,0.254316,0.153599 +bot_01212,balanced,1.0000,1.0000,1.0000,1.0000,0.9808,0.8731,1.0000,0.9511,1.0000,0.309043,0.294118,0.284229,0.112610 +bot_01213,interstitial_focus,0.9460,1.0000,0.7074,0.6539,1.0000,0.8621,0.9805,0.9777,0.9742,0.317409,0.402992,0.085007,0.194592 +bot_01214,balanced,1.0000,0.9284,1.0000,0.9753,1.0000,1.0000,0.9503,0.9129,0.8934,0.427720,0.310513,0.248313,0.013454 +bot_01215,churn_sensitive,0.4688,0.7991,0.3096,0.6251,0.6091,0.4332,0.7015,1.0000,0.4999,0.168502,0.286236,0.262141,0.283120 +bot_01216,reward_heavy,1.0000,0.9136,0.8095,1.0000,0.9444,0.6536,0.9476,0.8451,1.0000,0.444035,0.300973,0.138789,0.116203 +bot_01217,reward_heavy,1.0000,1.0000,0.9373,1.0000,0.5657,0.8353,1.0000,0.9121,1.0000,0.554467,0.276793,0.155343,0.013397 +bot_01218,network_bound,1.0000,0.8234,0.7633,0.6785,0.5908,0.6730,0.6374,1.0000,0.8761,0.033822,0.280254,0.418791,0.267134 +bot_01219,reward_heavy,1.0000,0.9125,0.5638,1.0000,0.9415,0.5870,1.0000,0.9211,1.0000,0.630006,0.314174,0.045644,0.010176 +bot_01220,splash_driven,0.8690,0.8346,1.0000,0.8291,0.8449,1.0000,0.7580,0.9996,0.8694,0.846149,0.131793,0.011029,0.011029 +bot_01221,splash_driven,1.0000,1.0000,1.0000,0.9599,0.9775,1.0000,1.0000,0.9158,1.0000,0.711201,0.193058,0.084779,0.010963 +bot_01222,interstitial_focus,0.6492,1.0000,0.6718,0.6588,1.0000,0.5760,0.8699,1.0000,1.0000,0.383642,0.430355,0.126851,0.059152 +bot_01223,splash_driven,0.8025,0.8876,1.0000,0.8630,0.9402,1.0000,1.0000,1.0000,0.8414,0.799345,0.155142,0.012548,0.032965 +bot_01224,interstitial_focus,0.6584,1.0000,0.6922,0.6349,1.0000,0.6559,1.0000,1.0000,1.0000,0.341713,0.434297,0.102899,0.121091 +bot_01225,interstitial_focus,0.5700,1.0000,0.9555,0.9061,1.0000,0.6783,0.9913,0.9083,1.0000,0.230925,0.416490,0.233769,0.118816 +bot_01226,splash_driven,1.0000,1.0000,1.0000,0.9259,0.9422,1.0000,0.7978,0.9220,0.9184,0.644426,0.216515,0.130128,0.008931 +bot_01227,interstitial_focus,0.6965,1.0000,0.9915,0.5940,1.0000,0.5567,1.0000,1.0000,1.0000,0.222858,0.441800,0.301673,0.033669 +bot_01228,reward_heavy,1.0000,0.9323,0.6550,1.0000,0.7716,0.6554,1.0000,1.0000,1.0000,0.663387,0.168915,0.157195,0.010503 +bot_01229,splash_driven,1.0000,0.7114,1.0000,1.0000,0.9778,1.0000,1.0000,1.0000,1.0000,0.496124,0.250511,0.140627,0.112738 +bot_01230,balanced,1.0000,1.0000,1.0000,0.8743,0.9601,1.0000,0.9106,0.8635,0.8871,0.288609,0.297904,0.257930,0.155556 +bot_01231,splash_driven,0.6542,0.8438,1.0000,0.9546,1.0000,1.0000,0.8944,1.0000,1.0000,0.737268,0.221731,0.008501,0.032500 +bot_01232,splash_driven,0.8633,1.0000,1.0000,1.0000,0.9319,1.0000,0.8899,0.9282,0.9555,0.720900,0.217032,0.053167,0.008901 +bot_01233,interstitial_focus,0.7556,1.0000,0.8590,0.7425,1.0000,0.5762,1.0000,0.9323,1.0000,0.265415,0.348454,0.373963,0.012168 +bot_01234,balanced,0.8554,1.0000,1.0000,1.0000,1.0000,0.9138,1.0000,1.0000,1.0000,0.399614,0.245483,0.179361,0.175543 +bot_01235,reward_heavy,1.0000,0.9309,0.6850,1.0000,0.8071,0.8063,1.0000,0.8872,1.0000,0.666439,0.216502,0.009023,0.108036 +bot_01236,balanced,0.8758,1.0000,1.0000,1.0000,0.8627,0.8841,0.9736,0.8831,0.9929,0.434910,0.407999,0.141361,0.015729 +bot_01237,reward_heavy,1.0000,0.9016,0.9377,1.0000,0.5576,0.4716,1.0000,0.7622,1.0000,0.611357,0.233781,0.145506,0.009356 +bot_01238,reward_heavy,1.0000,0.7051,0.6652,1.0000,0.8974,0.5769,1.0000,0.9570,1.0000,0.573890,0.269350,0.100739,0.056022 +bot_01239,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9129,1.0000,0.9510,1.0000,0.9653,0.661366,0.231366,0.008809,0.098459 +bot_01240,splash_driven,0.7888,0.9200,1.0000,1.0000,0.9391,1.0000,1.0000,0.8575,0.9373,0.606458,0.266039,0.039906,0.087597 +bot_01241,balanced,0.8257,1.0000,1.0000,1.0000,0.9092,1.0000,1.0000,0.9015,0.9715,0.315499,0.413646,0.261557,0.009298 +bot_01242,reward_heavy,1.0000,0.6994,0.6387,1.0000,0.6888,0.8130,1.0000,0.7590,1.0000,0.681079,0.290113,0.014404,0.014404 +bot_01243,reward_heavy,1.0000,0.6035,0.5878,1.0000,0.8514,0.8137,1.0000,0.8601,1.0000,0.610201,0.279848,0.096885,0.013066 +bot_01244,splash_driven,0.9816,0.9005,1.0000,1.0000,1.0000,1.0000,0.8994,0.8769,0.9093,0.652624,0.245039,0.066496,0.035842 +bot_01245,churn_sensitive,0.3534,0.4259,0.2910,0.4054,0.5144,0.2702,0.6957,1.0000,0.5619,0.314702,0.156935,0.341273,0.187090 +bot_01246,reward_heavy,1.0000,0.6414,0.6813,1.0000,0.9200,0.5897,0.9415,0.7559,1.0000,0.492656,0.302284,0.197126,0.007934 +bot_01247,interstitial_focus,0.4974,1.0000,0.8855,0.8534,1.0000,0.8938,0.9428,1.0000,1.0000,0.186674,0.405217,0.357206,0.050903 +bot_01248,network_bound,0.7129,0.9986,0.6023,0.9428,0.5686,0.5387,0.6388,1.0000,0.9299,0.063799,0.209437,0.417584,0.309180 +bot_01249,balanced,1.0000,1.0000,1.0000,0.8381,0.8502,0.9855,1.0000,0.8229,1.0000,0.449283,0.215619,0.324342,0.010755 +bot_01250,interstitial_focus,0.6622,1.0000,1.0000,0.9829,1.0000,0.8051,0.9899,0.8671,1.0000,0.330573,0.425434,0.233985,0.010008 +bot_01251,reward_heavy,1.0000,1.0000,0.8734,1.0000,0.7354,0.6186,0.9954,0.8313,1.0000,0.452680,0.320351,0.217612,0.009356 +bot_01252,interstitial_focus,0.7480,1.0000,0.8593,0.5603,1.0000,0.6123,0.9398,1.0000,1.0000,0.436210,0.285287,0.179479,0.099024 +bot_01253,splash_driven,0.6470,1.0000,1.0000,0.9081,0.9166,1.0000,0.7992,1.0000,1.0000,0.838368,0.134352,0.013640,0.013640 +bot_01254,churn_sensitive,0.4612,0.7911,0.5334,0.5051,0.6986,0.3379,0.6701,0.9811,0.5022,0.246811,0.211076,0.306233,0.235880 +bot_01255,balanced,0.8994,0.9242,0.9195,1.0000,0.9758,0.8508,0.9866,0.9339,0.9665,0.431882,0.288671,0.126133,0.153314 +bot_01256,interstitial_focus,0.5846,1.0000,0.6690,0.7434,1.0000,0.4871,0.9551,1.0000,1.0000,0.291765,0.303207,0.264292,0.140736 +bot_01257,balanced,0.8210,1.0000,0.8895,1.0000,1.0000,1.0000,0.9272,1.0000,1.0000,0.406360,0.204900,0.223860,0.164881 +bot_01258,splash_driven,0.6779,0.8515,1.0000,0.8785,1.0000,1.0000,0.9392,0.8265,1.0000,0.683776,0.183411,0.028764,0.104049 +bot_01259,balanced,0.9177,1.0000,1.0000,1.0000,0.9440,0.8891,1.0000,1.0000,0.9126,0.397326,0.194929,0.396507,0.011238 +bot_01260,balanced,1.0000,1.0000,1.0000,0.9571,0.8847,0.8929,1.0000,1.0000,0.9427,0.386662,0.422852,0.086240,0.104246 +bot_01261,reward_heavy,1.0000,0.9126,0.9513,1.0000,0.9518,0.5496,1.0000,0.8894,1.0000,0.366293,0.326434,0.184632,0.122641 +bot_01262,network_bound,0.6760,0.7285,0.8471,1.0000,0.7163,0.5503,0.5852,1.0000,0.9123,0.344946,0.101470,0.211349,0.342235 +bot_01263,splash_driven,0.7340,1.0000,1.0000,1.0000,1.0000,1.0000,0.8971,1.0000,0.8715,0.761029,0.068073,0.162249,0.008650 +bot_01264,splash_driven,0.7561,1.0000,1.0000,1.0000,0.9485,1.0000,0.8947,0.8784,0.9451,0.732213,0.122967,0.013280,0.131541 +bot_01265,reward_heavy,1.0000,0.7327,0.7829,1.0000,0.9347,0.5660,0.9311,0.8609,1.0000,0.531788,0.348956,0.110206,0.009051 +bot_01266,balanced,1.0000,1.0000,1.0000,0.9872,1.0000,1.0000,0.9402,1.0000,1.0000,0.602901,0.201221,0.182154,0.013724 +bot_01267,interstitial_focus,0.4974,1.0000,1.0000,0.9542,1.0000,0.5848,0.8865,1.0000,1.0000,0.317898,0.400937,0.117682,0.163483 +bot_01268,balanced,1.0000,0.8979,1.0000,0.8620,1.0000,1.0000,0.9336,0.9211,1.0000,0.475898,0.310411,0.202025,0.011666 +bot_01269,churn_sensitive,0.6440,0.8739,0.4230,0.7700,0.5831,0.6228,0.6359,1.0000,0.5129,0.433317,0.141825,0.331532,0.093325 +bot_01270,interstitial_focus,0.9138,1.0000,0.7467,0.6875,1.0000,0.8163,1.0000,1.0000,0.9342,0.279044,0.503204,0.116686,0.101065 +bot_01271,balanced,1.0000,0.8876,0.9436,1.0000,1.0000,1.0000,1.0000,0.9498,1.0000,0.426587,0.280721,0.108803,0.183889 +bot_01272,network_bound,0.6436,0.9012,0.7387,0.7330,0.6182,0.9286,0.5754,1.0000,0.7128,0.177003,0.072884,0.432932,0.317182 +bot_01273,balanced,1.0000,0.9385,1.0000,1.0000,0.9662,1.0000,0.9869,1.0000,0.9013,0.368689,0.387634,0.198124,0.045553 +bot_01274,reward_heavy,1.0000,1.0000,0.8060,1.0000,0.5423,0.6860,1.0000,1.0000,1.0000,0.555022,0.363228,0.072662,0.009088 +bot_01275,interstitial_focus,0.8859,1.0000,0.6544,0.7356,1.0000,0.6298,0.8340,0.9106,0.9827,0.336424,0.376026,0.277074,0.010476 +bot_01276,balanced,1.0000,1.0000,1.0000,1.0000,0.9145,1.0000,0.8706,1.0000,0.8947,0.475568,0.409452,0.105325,0.009654 +bot_01277,interstitial_focus,0.5578,1.0000,0.8147,0.9707,1.0000,0.9150,0.8984,0.9391,1.0000,0.338254,0.345714,0.263835,0.052196 +bot_01278,interstitial_focus,0.6154,1.0000,0.8247,0.7150,1.0000,0.6826,0.8493,1.0000,1.0000,0.339710,0.319778,0.278882,0.061630 +bot_01279,balanced,1.0000,1.0000,1.0000,0.8954,1.0000,0.9217,1.0000,1.0000,1.0000,0.483770,0.336273,0.165652,0.014305 +bot_01280,balanced,1.0000,1.0000,0.9584,1.0000,0.9497,1.0000,1.0000,0.8166,0.9632,0.409368,0.327444,0.249653,0.013535 +bot_01281,reward_heavy,1.0000,0.9538,0.8916,1.0000,0.9270,0.7264,1.0000,0.9212,1.0000,0.749571,0.222501,0.013964,0.013964 +bot_01282,interstitial_focus,0.9449,1.0000,0.8860,0.8584,1.0000,0.6713,0.9930,1.0000,1.0000,0.248854,0.376732,0.265513,0.108901 +bot_01283,network_bound,0.9927,0.6683,0.6707,0.9702,0.6539,0.6894,0.5744,1.0000,0.8555,0.034778,0.174829,0.421853,0.368541 +bot_01284,splash_driven,0.7813,0.8324,1.0000,1.0000,0.8222,1.0000,0.7805,0.8256,1.0000,0.878029,0.073331,0.035847,0.012793 +bot_01285,reward_heavy,1.0000,0.7231,0.8613,1.0000,0.7554,0.4276,0.9250,1.0000,1.0000,0.535985,0.197037,0.251168,0.015810 +bot_01286,splash_driven,0.8632,0.7320,1.0000,0.8252,1.0000,1.0000,0.9138,0.8157,1.0000,0.710207,0.200045,0.081422,0.008326 +bot_01287,splash_driven,0.7374,1.0000,1.0000,0.9672,1.0000,1.0000,0.9884,0.9338,1.0000,0.757267,0.132214,0.101923,0.008595 +bot_01288,interstitial_focus,0.5944,1.0000,1.0000,0.7627,1.0000,0.6046,1.0000,0.9762,1.0000,0.262992,0.481912,0.246120,0.008976 +bot_01289,splash_driven,0.6941,0.9585,1.0000,0.8138,0.8350,1.0000,0.9836,0.8188,1.0000,0.659088,0.211938,0.008468,0.120507 +bot_01290,network_bound,0.9843,0.7370,0.8835,0.7723,0.6157,0.7975,0.6600,1.0000,0.7436,0.262792,0.069424,0.160461,0.507323 +bot_01291,splash_driven,1.0000,1.0000,1.0000,1.0000,0.8569,1.0000,0.9897,1.0000,0.8610,0.563228,0.210001,0.077936,0.148835 +bot_01292,reward_heavy,1.0000,0.5891,0.6416,1.0000,0.5437,0.4226,0.9313,0.7206,1.0000,0.503340,0.289610,0.197906,0.009144 +bot_01293,network_bound,0.8136,0.7160,0.8481,1.0000,0.9967,0.9192,0.7750,1.0000,0.7371,0.009713,0.283643,0.230815,0.475830 +bot_01294,interstitial_focus,0.7874,1.0000,0.7313,0.6219,1.0000,0.7801,1.0000,0.9027,1.0000,0.370062,0.345318,0.272434,0.012185 +bot_01295,splash_driven,0.8956,0.7722,1.0000,1.0000,1.0000,1.0000,0.8166,1.0000,0.8438,0.680152,0.085525,0.142303,0.092020 +bot_01296,splash_driven,0.7469,0.6926,1.0000,0.9431,1.0000,1.0000,0.7636,1.0000,0.8440,0.569369,0.257038,0.164981,0.008611 +bot_01297,reward_heavy,1.0000,0.9560,0.8725,1.0000,0.8397,0.4158,0.9613,1.0000,1.0000,0.469062,0.295827,0.225153,0.009957 +bot_01298,splash_driven,1.0000,0.8495,1.0000,0.8378,1.0000,1.0000,0.8712,1.0000,0.9659,0.729846,0.239163,0.021986,0.009005 +bot_01299,reward_heavy,1.0000,0.8743,0.8977,1.0000,0.7864,0.4489,0.9302,1.0000,1.0000,0.628143,0.350796,0.010531,0.010531 +bot_01300,balanced,1.0000,1.0000,1.0000,0.8602,0.9814,1.0000,1.0000,1.0000,0.9196,0.364598,0.343195,0.091116,0.201092 +bot_01301,splash_driven,0.8083,0.8136,1.0000,0.9796,1.0000,1.0000,1.0000,1.0000,1.0000,0.774532,0.207210,0.009129,0.009129 +bot_01302,network_bound,0.6272,0.7562,0.7765,0.9664,0.5960,0.5611,0.5313,1.0000,0.7676,0.103103,0.184637,0.258917,0.453344 +bot_01303,churn_sensitive,0.4651,0.7396,0.4656,0.7643,0.4866,0.6513,0.6215,1.0000,0.5780,0.228030,0.258590,0.206956,0.306424 +bot_01304,balanced,0.8899,0.9596,1.0000,1.0000,1.0000,0.9091,1.0000,1.0000,0.9763,0.420508,0.244814,0.167631,0.167047 +bot_01305,network_bound,0.9565,0.8952,0.9926,1.0000,0.6974,0.8945,0.5809,1.0000,0.9050,0.009718,0.239942,0.374269,0.376071 +bot_01306,churn_sensitive,0.6084,0.4591,0.3694,0.8145,0.6850,0.4338,0.7568,1.0000,0.6838,0.253526,0.292692,0.222240,0.231541 +bot_01307,splash_driven,0.9344,0.9839,1.0000,1.0000,1.0000,1.0000,0.9535,1.0000,0.9550,0.675862,0.226796,0.089002,0.008340 +bot_01308,splash_driven,0.7504,1.0000,1.0000,0.8495,1.0000,1.0000,0.9331,0.9865,1.0000,0.633195,0.146095,0.129462,0.091248 +bot_01309,balanced,1.0000,0.9088,1.0000,0.8748,1.0000,0.8075,0.9614,1.0000,0.9269,0.500833,0.168450,0.304355,0.026363 +bot_01310,interstitial_focus,0.8962,1.0000,0.7518,0.7608,1.0000,0.6418,0.8890,0.8901,1.0000,0.296354,0.249772,0.281538,0.172336 +bot_01311,network_bound,0.8158,0.9032,0.7869,0.7666,0.8222,0.7707,0.6435,1.0000,0.7560,0.074049,0.245663,0.226921,0.453367 +bot_01312,network_bound,0.8124,0.7073,0.7191,0.9382,0.9648,0.8479,0.7034,1.0000,0.8482,0.201852,0.130493,0.327160,0.340494 +bot_01313,reward_heavy,1.0000,0.6046,0.9834,1.0000,0.7278,0.6208,0.9484,0.9410,1.0000,0.508441,0.404541,0.075759,0.011259 +bot_01314,interstitial_focus,0.5325,1.0000,0.6371,0.9546,1.0000,0.6287,0.8471,1.0000,1.0000,0.251281,0.419050,0.320094,0.009575 +bot_01315,network_bound,0.9488,0.7759,0.6495,0.9288,0.7476,0.8447,0.7784,1.0000,0.8355,0.145048,0.222557,0.175153,0.457242 +bot_01316,reward_heavy,1.0000,1.0000,0.9101,1.0000,0.7298,0.5435,1.0000,0.9542,1.0000,0.439105,0.348968,0.172714,0.039213 +bot_01317,reward_heavy,1.0000,0.7714,0.9494,1.0000,0.8198,0.5588,1.0000,0.7096,1.0000,0.578997,0.272875,0.062332,0.085795 +bot_01318,interstitial_focus,0.8139,1.0000,0.7860,0.5704,1.0000,0.8089,0.9677,0.8837,1.0000,0.296649,0.445054,0.249754,0.008543 +bot_01319,network_bound,0.8594,0.9623,0.5789,1.0000,0.8914,0.9284,0.8147,1.0000,0.8431,0.077132,0.213188,0.337523,0.372157 +bot_01320,network_bound,0.9998,0.9741,0.9758,1.0000,0.9003,0.6080,0.8223,1.0000,0.9085,0.139564,0.252873,0.219800,0.387762 +bot_01321,reward_heavy,1.0000,0.6810,1.0000,1.0000,0.5672,0.5439,1.0000,0.8020,1.0000,0.637054,0.225180,0.128181,0.009586 +bot_01322,churn_sensitive,0.5742,0.4975,0.5208,0.6551,0.6346,0.6549,0.5608,1.0000,0.6688,0.365151,0.202218,0.309780,0.122850 +bot_01323,splash_driven,0.6625,0.8059,1.0000,1.0000,0.8958,1.0000,0.7637,0.9269,1.0000,0.643690,0.201774,0.134304,0.020231 +bot_01324,interstitial_focus,0.8738,1.0000,0.8193,0.9780,1.0000,0.9185,0.8329,0.9497,0.9979,0.287328,0.406705,0.216342,0.089625 +bot_01325,churn_sensitive,0.4175,0.8255,0.6760,0.5168,0.5430,0.6329,0.7692,1.0000,0.6526,0.315204,0.172419,0.217208,0.295170 +bot_01326,reward_heavy,1.0000,0.8177,0.8613,1.0000,0.5951,0.7928,0.9756,1.0000,1.0000,0.588596,0.353159,0.045766,0.012479 +bot_01327,interstitial_focus,0.7981,1.0000,0.6388,0.8181,1.0000,0.7119,1.0000,1.0000,0.9403,0.308623,0.470318,0.167871,0.053189 +bot_01328,reward_heavy,1.0000,0.7019,0.8707,1.0000,0.8284,0.5777,1.0000,0.7824,1.0000,0.524540,0.360135,0.105478,0.009847 +bot_01329,balanced,1.0000,0.9280,1.0000,0.8328,1.0000,1.0000,0.8772,0.9635,1.0000,0.479377,0.297356,0.213505,0.009763 +bot_01330,network_bound,0.8649,0.8950,0.5796,0.6656,0.8921,0.6588,0.5420,1.0000,0.7671,0.138891,0.122190,0.165593,0.573326 +bot_01331,reward_heavy,1.0000,0.6483,0.7529,1.0000,0.7043,0.6435,0.9612,1.0000,1.0000,0.587636,0.281185,0.119906,0.011273 +bot_01332,splash_driven,0.9401,0.9630,1.0000,1.0000,1.0000,1.0000,0.7564,1.0000,1.0000,0.728415,0.249813,0.010886,0.010886 +bot_01333,balanced,0.9453,1.0000,0.9457,1.0000,0.7872,0.8156,0.9381,1.0000,1.0000,0.429834,0.337860,0.150186,0.082120 +bot_01334,splash_driven,0.7994,1.0000,1.0000,1.0000,1.0000,1.0000,0.8925,0.8267,0.8897,0.759172,0.069625,0.069002,0.102201 +bot_01335,reward_heavy,1.0000,0.8222,1.0000,1.0000,0.6998,0.7860,0.9823,0.7377,1.0000,0.541006,0.438207,0.010394,0.010394 +bot_01336,churn_sensitive,0.6593,0.5028,0.4202,0.7391,0.4908,0.4925,0.7548,1.0000,0.6389,0.240071,0.195448,0.353563,0.210919 +bot_01337,reward_heavy,1.0000,0.7374,0.7004,1.0000,0.8736,0.6891,1.0000,0.9502,1.0000,0.544914,0.295161,0.152006,0.007919 +bot_01338,reward_heavy,1.0000,0.9245,0.8290,1.0000,0.7465,0.6892,0.9258,0.7756,1.0000,0.572867,0.300260,0.115793,0.011079 +bot_01339,balanced,0.9000,0.9331,1.0000,1.0000,0.9721,0.8950,1.0000,1.0000,0.9074,0.318578,0.278135,0.316595,0.086693 +bot_01340,balanced,0.8261,1.0000,0.9052,0.9979,0.9781,1.0000,0.8588,1.0000,0.9924,0.265086,0.419347,0.133508,0.182060 +bot_01341,balanced,1.0000,1.0000,0.9146,1.0000,0.9746,0.9469,1.0000,1.0000,1.0000,0.326106,0.416641,0.190341,0.066912 +bot_01342,reward_heavy,1.0000,1.0000,0.9222,1.0000,0.5725,0.8169,1.0000,0.7725,1.0000,0.559966,0.332503,0.097156,0.010375 +bot_01343,churn_sensitive,0.5177,0.7802,0.2650,0.7694,0.4087,0.4977,0.6411,1.0000,0.6842,0.277020,0.228843,0.373847,0.120290 +bot_01344,reward_heavy,1.0000,0.9736,0.8348,1.0000,0.9554,0.8079,0.9723,0.8086,1.0000,0.669404,0.167304,0.153772,0.009520 +bot_01345,balanced,1.0000,1.0000,1.0000,0.8489,0.9235,0.9154,1.0000,1.0000,1.0000,0.452958,0.233308,0.237581,0.076153 +bot_01346,balanced,1.0000,0.9953,1.0000,1.0000,1.0000,1.0000,0.9077,1.0000,1.0000,0.413213,0.215364,0.290593,0.080830 +bot_01347,churn_sensitive,0.7364,0.4840,0.4165,0.7655,0.3675,0.6571,0.8309,1.0000,0.6165,0.298836,0.157043,0.435276,0.108844 +bot_01348,reward_heavy,1.0000,0.8351,0.8210,1.0000,0.7242,0.5351,0.9318,0.8014,1.0000,0.606589,0.368980,0.015627,0.008803 +bot_01349,network_bound,0.8639,0.8464,0.7982,0.9074,0.9969,0.5328,0.7307,1.0000,0.7772,0.021524,0.104224,0.429176,0.445076 +bot_01350,splash_driven,0.8358,1.0000,1.0000,1.0000,1.0000,1.0000,0.8180,1.0000,0.9128,0.782952,0.095631,0.008893,0.112524 +bot_01351,interstitial_focus,0.6320,1.0000,0.8191,0.8276,1.0000,0.4839,1.0000,1.0000,1.0000,0.259999,0.441713,0.208764,0.089524 +bot_01352,interstitial_focus,0.8269,1.0000,0.8660,0.8325,1.0000,0.9115,0.8217,0.9345,0.9533,0.315450,0.434356,0.160597,0.089597 +bot_01353,splash_driven,0.8180,1.0000,1.0000,0.9699,0.8151,1.0000,1.0000,1.0000,0.9502,0.677587,0.204049,0.040141,0.078223 +bot_01354,reward_heavy,1.0000,0.7849,0.5961,1.0000,0.5663,0.4835,0.9982,1.0000,1.0000,0.584861,0.269285,0.113871,0.031984 +bot_01355,reward_heavy,1.0000,0.8116,1.0000,1.0000,0.8121,0.5585,1.0000,1.0000,1.0000,0.541379,0.300941,0.008970,0.148710 +bot_01356,interstitial_focus,0.6109,1.0000,1.0000,0.8743,1.0000,0.7705,1.0000,1.0000,1.0000,0.210127,0.433382,0.304605,0.051886 +bot_01357,interstitial_focus,0.9047,1.0000,0.7550,0.8442,1.0000,0.8600,0.9516,1.0000,1.0000,0.472326,0.303229,0.200634,0.023811 +bot_01358,balanced,0.8742,0.8988,0.8954,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.410155,0.358557,0.222756,0.008532 +bot_01359,reward_heavy,1.0000,0.6632,0.8386,1.0000,0.5404,0.8124,1.0000,0.9248,1.0000,0.816674,0.159758,0.011784,0.011784 +bot_01360,reward_heavy,1.0000,0.7444,0.6542,1.0000,0.9476,0.7145,0.9147,0.7242,1.0000,0.395262,0.314617,0.176002,0.114119 +bot_01361,interstitial_focus,0.8379,1.0000,0.6300,0.7027,1.0000,0.5155,1.0000,1.0000,1.0000,0.287549,0.550609,0.150950,0.010893 +bot_01362,balanced,0.8530,1.0000,0.9611,1.0000,1.0000,0.7862,0.8778,0.9431,1.0000,0.259694,0.351703,0.361949,0.026655 +bot_01363,network_bound,1.0000,0.9304,0.6717,1.0000,0.8705,0.6498,0.7752,1.0000,0.7514,0.141347,0.108291,0.377704,0.372658 +bot_01364,reward_heavy,1.0000,0.6828,0.9039,1.0000,0.8365,0.7826,1.0000,1.0000,1.0000,0.458104,0.356235,0.177041,0.008621 +bot_01365,splash_driven,0.8062,1.0000,1.0000,0.9591,0.9929,1.0000,0.9928,1.0000,1.0000,0.678615,0.284878,0.026358,0.010149 +bot_01366,reward_heavy,1.0000,1.0000,0.8562,1.0000,0.9043,0.5593,0.9851,0.9695,1.0000,0.638687,0.285650,0.055983,0.019679 +bot_01367,interstitial_focus,0.6783,1.0000,0.8145,0.9919,1.0000,0.8286,1.0000,1.0000,1.0000,0.298233,0.376992,0.169746,0.155029 +bot_01368,interstitial_focus,0.8991,1.0000,0.8829,0.6137,1.0000,0.6556,0.9259,0.9901,1.0000,0.329845,0.335233,0.274718,0.060203 +bot_01369,balanced,0.8750,1.0000,0.9221,1.0000,1.0000,0.9170,1.0000,1.0000,1.0000,0.240791,0.413417,0.336321,0.009472 +bot_01370,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9084,1.0000,1.0000,0.9456,0.514530,0.253577,0.222038,0.009855 +bot_01371,network_bound,0.6739,0.7980,0.7274,1.0000,0.6673,0.7461,0.5426,1.0000,0.8225,0.247491,0.261059,0.171635,0.319815 +bot_01372,splash_driven,1.0000,1.0000,1.0000,0.9760,0.9848,1.0000,0.7809,1.0000,0.9209,0.765032,0.050867,0.122239,0.061861 +bot_01373,interstitial_focus,0.8006,1.0000,0.6636,0.7903,1.0000,0.8759,1.0000,0.8242,0.9901,0.384661,0.293263,0.185981,0.136095 +bot_01374,balanced,1.0000,1.0000,1.0000,1.0000,0.9325,1.0000,1.0000,1.0000,1.0000,0.493334,0.278321,0.144487,0.083858 +bot_01375,balanced,0.9783,1.0000,0.9748,1.0000,0.9340,1.0000,0.9536,0.9812,0.9797,0.400833,0.261049,0.211972,0.126146 +bot_01376,balanced,1.0000,1.0000,0.9743,0.9306,0.8059,1.0000,1.0000,1.0000,1.0000,0.313093,0.286308,0.249226,0.151373 +bot_01377,reward_heavy,1.0000,1.0000,0.6661,1.0000,0.6547,0.4809,1.0000,1.0000,1.0000,0.678033,0.128722,0.109436,0.083809 +bot_01378,network_bound,0.6715,0.9703,0.9881,0.9932,0.8844,0.8336,0.8117,1.0000,0.8384,0.101865,0.213519,0.280331,0.404286 +bot_01379,reward_heavy,1.0000,0.9246,0.8219,1.0000,0.8053,0.5148,0.9115,0.7866,1.0000,0.734839,0.151766,0.024501,0.088894 +bot_01380,splash_driven,0.8714,0.9041,1.0000,1.0000,0.9356,1.0000,0.9189,0.9451,0.9923,0.840699,0.072562,0.020556,0.066183 +bot_01381,reward_heavy,1.0000,0.9716,0.7227,1.0000,0.5946,0.4497,0.9096,0.8711,1.0000,0.620489,0.229177,0.064225,0.086108 +bot_01382,balanced,1.0000,0.9593,1.0000,1.0000,0.8135,0.8251,1.0000,0.8386,1.0000,0.448253,0.268800,0.266007,0.016940 +bot_01383,reward_heavy,1.0000,0.8181,0.9450,1.0000,0.6182,0.4101,1.0000,0.9525,1.0000,0.622350,0.285169,0.041343,0.051139 +bot_01384,reward_heavy,1.0000,1.0000,0.9691,1.0000,0.6482,0.5768,1.0000,0.7743,1.0000,0.556354,0.315635,0.083671,0.044341 +bot_01385,network_bound,0.8217,0.8769,0.7010,1.0000,0.5685,0.6146,0.7787,1.0000,0.8444,0.008650,0.271777,0.332251,0.387322 +bot_01386,splash_driven,0.9267,0.8422,1.0000,1.0000,0.9605,1.0000,0.7920,0.8271,1.0000,0.637031,0.090320,0.102562,0.170087 +bot_01387,splash_driven,0.6814,0.8222,1.0000,1.0000,0.9180,1.0000,0.7963,1.0000,1.0000,0.671401,0.087005,0.115598,0.125996 +bot_01388,splash_driven,0.8428,0.9052,1.0000,1.0000,1.0000,1.0000,0.8987,1.0000,0.9198,0.661851,0.131478,0.164124,0.042548 +bot_01389,interstitial_focus,0.7699,1.0000,0.9295,0.6327,1.0000,0.9098,0.8122,0.9906,1.0000,0.365335,0.367212,0.134086,0.133368 +bot_01390,splash_driven,0.9150,1.0000,1.0000,0.8566,0.9455,1.0000,0.9572,0.8863,0.9664,0.664179,0.150856,0.174179,0.010786 +bot_01391,interstitial_focus,0.8318,1.0000,0.6435,0.6684,1.0000,0.6300,1.0000,1.0000,1.0000,0.435036,0.425870,0.125330,0.013765 +bot_01392,interstitial_focus,0.9566,1.0000,0.9883,0.9362,1.0000,0.4834,0.8084,1.0000,0.9738,0.395410,0.316699,0.130360,0.157530 +bot_01393,churn_sensitive,0.6184,0.6371,0.4682,0.8147,0.3916,0.6583,0.8597,1.0000,0.4763,0.153870,0.228362,0.409668,0.208100 +bot_01394,churn_sensitive,0.7707,0.5151,0.4268,0.4563,0.5046,0.3935,0.8056,0.9801,0.6369,0.242670,0.294409,0.247253,0.215668 +bot_01395,reward_heavy,1.0000,1.0000,0.9107,1.0000,0.6596,0.5756,0.9713,0.6816,1.0000,0.562595,0.258768,0.168807,0.009831 +bot_01396,interstitial_focus,0.9230,1.0000,0.6935,0.6507,1.0000,0.7287,0.9731,1.0000,1.0000,0.300841,0.507064,0.159431,0.032664 +bot_01397,balanced,0.9219,1.0000,1.0000,0.8799,0.9162,1.0000,1.0000,1.0000,1.0000,0.537821,0.309300,0.140190,0.012690 +bot_01398,splash_driven,0.6824,0.6918,1.0000,0.9837,1.0000,1.0000,0.8856,1.0000,0.8858,0.847801,0.069556,0.011196,0.071447 +bot_01399,reward_heavy,1.0000,0.8447,0.6549,1.0000,0.7445,0.4581,1.0000,0.7691,1.0000,0.422744,0.268768,0.176896,0.131592 +bot_01400,splash_driven,1.0000,0.7238,1.0000,0.8664,0.8373,1.0000,0.9844,1.0000,1.0000,0.686196,0.214690,0.088423,0.010691 +bot_01401,reward_heavy,1.0000,0.6452,0.9635,1.0000,0.8230,0.5204,0.9604,0.8167,1.0000,0.669874,0.182948,0.136869,0.010309 +bot_01402,network_bound,1.0000,0.6528,0.7208,1.0000,0.9645,0.7432,0.6957,1.0000,0.8312,0.148551,0.150582,0.361241,0.339626 +bot_01403,reward_heavy,1.0000,0.5898,0.7880,1.0000,0.8314,0.5378,0.9275,0.9917,1.0000,0.662309,0.211678,0.114834,0.011179 +bot_01404,interstitial_focus,0.6583,1.0000,0.9738,0.7536,1.0000,0.8047,0.8928,0.8866,1.0000,0.356744,0.323141,0.283300,0.036816 +bot_01405,balanced,0.9392,0.9491,1.0000,1.0000,0.9178,0.9269,1.0000,0.8917,1.0000,0.414807,0.337817,0.220687,0.026689 +bot_01406,interstitial_focus,0.7334,1.0000,0.6234,0.8978,1.0000,0.6352,1.0000,0.9364,1.0000,0.348053,0.297349,0.275680,0.078919 +bot_01407,churn_sensitive,0.7797,0.5084,0.3971,0.7063,0.6015,0.4987,0.6533,1.0000,0.4830,0.314536,0.163889,0.272003,0.249573 +bot_01408,splash_driven,0.9285,0.7587,1.0000,0.9651,0.8490,1.0000,1.0000,0.9600,0.8643,0.760516,0.088873,0.057234,0.093377 +bot_01409,splash_driven,0.8276,1.0000,1.0000,1.0000,0.9184,1.0000,0.9092,1.0000,0.8892,0.591626,0.293045,0.106090,0.009238 +bot_01410,balanced,1.0000,1.0000,0.9197,0.9881,1.0000,0.9152,0.8835,1.0000,1.0000,0.265160,0.334329,0.254171,0.146340 +bot_01411,reward_heavy,1.0000,0.9810,0.7499,1.0000,0.6356,0.5046,1.0000,0.9920,1.0000,0.503688,0.302942,0.182407,0.010963 +bot_01412,reward_heavy,1.0000,0.6685,1.0000,1.0000,0.7319,0.7033,1.0000,0.9834,1.0000,0.467524,0.306372,0.139601,0.086503 +bot_01413,interstitial_focus,0.7051,1.0000,0.7834,0.9784,1.0000,0.7333,1.0000,0.9406,1.0000,0.211284,0.534010,0.235105,0.019601 +bot_01414,interstitial_focus,0.5312,1.0000,1.0000,0.7428,1.0000,0.8940,0.8621,1.0000,1.0000,0.221029,0.603735,0.164386,0.010850 +bot_01415,reward_heavy,1.0000,0.7875,0.6016,1.0000,0.5907,0.7859,1.0000,1.0000,1.0000,0.567363,0.235633,0.142422,0.054582 +bot_01416,reward_heavy,1.0000,0.8867,0.7918,1.0000,0.7541,0.7700,1.0000,0.9275,1.0000,0.728017,0.240668,0.015658,0.015658 +bot_01417,interstitial_focus,0.5425,1.0000,1.0000,0.8834,1.0000,0.4834,0.9603,0.9331,1.0000,0.330207,0.378917,0.257438,0.033438 +bot_01418,churn_sensitive,0.7322,0.4199,0.6260,0.4675,0.7248,0.6426,0.8542,1.0000,0.6727,0.263220,0.315033,0.239603,0.182144 +bot_01419,interstitial_focus,0.8011,1.0000,0.9584,0.7852,1.0000,0.7359,1.0000,0.8361,1.0000,0.378231,0.425808,0.095059,0.100902 +bot_01420,splash_driven,0.8902,0.8204,1.0000,0.8472,0.8380,1.0000,1.0000,1.0000,0.9602,0.698542,0.274743,0.009129,0.017586 +bot_01421,splash_driven,0.6795,1.0000,1.0000,0.9456,0.8379,1.0000,0.7661,0.9649,0.9169,0.630147,0.226002,0.034287,0.109564 +bot_01422,interstitial_focus,0.9319,1.0000,0.9706,0.6029,1.0000,0.4960,1.0000,0.9260,0.9985,0.377879,0.371868,0.212222,0.038031 +bot_01423,reward_heavy,1.0000,1.0000,0.8828,1.0000,0.7437,0.4243,1.0000,0.7653,1.0000,0.499993,0.250521,0.138243,0.111243 +bot_01424,splash_driven,1.0000,0.7384,1.0000,1.0000,0.8412,1.0000,0.8977,1.0000,0.8461,0.666146,0.181045,0.010098,0.142711 +bot_01425,interstitial_focus,0.5663,1.0000,0.7879,0.9092,1.0000,0.8873,0.9493,0.8231,1.0000,0.368556,0.526858,0.093638,0.010948 +bot_01426,splash_driven,0.6739,0.7118,1.0000,0.8494,0.9042,1.0000,1.0000,1.0000,0.9062,0.628878,0.291550,0.022717,0.056855 +bot_01427,balanced,0.8138,0.9390,1.0000,0.9963,1.0000,1.0000,0.9418,0.9970,1.0000,0.331620,0.298776,0.166826,0.202777 +bot_01428,network_bound,0.6175,0.7875,0.7779,1.0000,0.9169,0.5068,0.6202,1.0000,0.8961,0.064831,0.060149,0.396165,0.478855 +bot_01429,splash_driven,0.8423,0.8435,1.0000,1.0000,1.0000,1.0000,0.9512,1.0000,1.0000,0.777372,0.114283,0.034839,0.073506 +bot_01430,reward_heavy,1.0000,0.9795,0.9994,1.0000,0.9010,0.7627,0.9976,0.8472,1.0000,0.540583,0.394349,0.054430,0.010638 +bot_01431,balanced,1.0000,1.0000,1.0000,0.9568,1.0000,0.8402,0.9647,0.9614,1.0000,0.268547,0.304679,0.258138,0.168636 +bot_01432,reward_heavy,1.0000,0.8725,0.6071,1.0000,0.8610,0.4927,1.0000,0.9389,1.0000,0.599723,0.145591,0.244129,0.010556 +bot_01433,interstitial_focus,0.9576,1.0000,0.5955,0.8353,1.0000,0.7299,0.9486,1.0000,1.0000,0.213624,0.465111,0.295701,0.025564 +bot_01434,balanced,0.8609,1.0000,0.9069,1.0000,1.0000,1.0000,1.0000,1.0000,0.8946,0.333618,0.337434,0.303316,0.025632 +bot_01435,reward_heavy,1.0000,1.0000,0.9845,1.0000,0.6366,0.5695,1.0000,1.0000,1.0000,0.448827,0.266383,0.153211,0.131579 +bot_01436,interstitial_focus,0.7930,1.0000,1.0000,0.8939,1.0000,0.7821,0.8744,0.9925,1.0000,0.320277,0.540477,0.125820,0.013426 +bot_01437,balanced,0.8871,0.9577,1.0000,0.9115,1.0000,0.8927,1.0000,0.8097,0.9072,0.324658,0.321848,0.220670,0.132824 +bot_01438,interstitial_focus,0.9056,1.0000,0.6754,0.6361,1.0000,0.7795,1.0000,1.0000,1.0000,0.258498,0.380562,0.229589,0.131351 +bot_01439,interstitial_focus,0.8264,1.0000,0.8666,0.7672,1.0000,0.7182,1.0000,0.9597,0.9306,0.378303,0.419983,0.177658,0.024055 +bot_01440,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.9205,0.6782,1.0000,0.8157,1.0000,0.663910,0.188803,0.132942,0.014344 +bot_01441,balanced,1.0000,1.0000,1.0000,0.8641,0.8083,1.0000,0.9771,0.9589,1.0000,0.404222,0.205963,0.226833,0.162982 +bot_01442,splash_driven,0.7109,1.0000,1.0000,1.0000,1.0000,1.0000,0.8498,0.8898,0.9253,0.655528,0.164017,0.124741,0.055714 +bot_01443,balanced,0.8974,0.9063,1.0000,1.0000,0.9428,1.0000,0.9019,0.9191,0.9179,0.307829,0.482763,0.198925,0.010484 +bot_01444,network_bound,0.7094,0.7187,1.0000,0.7626,0.9589,0.8896,0.8343,1.0000,0.8484,0.166569,0.248543,0.165994,0.418894 +bot_01445,reward_heavy,1.0000,0.6222,0.9642,1.0000,0.7752,0.5282,1.0000,0.7380,1.0000,0.660960,0.312603,0.013218,0.013218 +bot_01446,network_bound,1.0000,0.9993,0.6896,0.9619,0.9488,0.6979,0.7032,1.0000,0.8749,0.072692,0.268990,0.270948,0.387370 +bot_01447,network_bound,0.7633,0.7066,0.6929,0.7734,0.9185,0.8186,0.5497,1.0000,0.8800,0.183465,0.218840,0.210637,0.387058 +bot_01448,interstitial_focus,0.9274,1.0000,0.9719,0.7875,1.0000,0.5298,1.0000,1.0000,1.0000,0.260026,0.348864,0.172189,0.218921 +bot_01449,reward_heavy,1.0000,0.9495,0.8328,1.0000,0.8477,0.4105,1.0000,0.9477,1.0000,0.574437,0.216399,0.197864,0.011299 +bot_01450,network_bound,0.9081,0.8109,0.7133,1.0000,0.8752,0.6549,0.6944,1.0000,0.9336,0.074055,0.087604,0.441523,0.396818 +bot_01451,network_bound,1.0000,0.6927,0.5704,0.9630,0.9137,0.7681,0.7469,1.0000,0.7697,0.212001,0.119517,0.372809,0.295673 +bot_01452,interstitial_focus,0.7626,1.0000,0.8384,0.8632,1.0000,0.5593,0.8046,1.0000,1.0000,0.251423,0.487574,0.246694,0.014309 +bot_01453,splash_driven,1.0000,0.9934,1.0000,1.0000,0.9916,1.0000,0.7778,0.8526,1.0000,0.609952,0.212532,0.168598,0.008918 +bot_01454,interstitial_focus,0.4883,1.0000,0.8228,0.7308,1.0000,0.5542,0.9310,1.0000,1.0000,0.433612,0.309263,0.246958,0.010166 +bot_01455,splash_driven,1.0000,0.6914,1.0000,1.0000,1.0000,1.0000,0.7762,1.0000,1.0000,0.915187,0.063410,0.010702,0.010702 +bot_01456,interstitial_focus,0.5872,1.0000,0.8009,0.6447,1.0000,0.8560,1.0000,1.0000,1.0000,0.440526,0.311650,0.236560,0.011265 +bot_01457,splash_driven,0.9345,0.8355,1.0000,0.9144,1.0000,1.0000,0.7922,0.9192,0.9406,0.554242,0.261143,0.110925,0.073690 +bot_01458,balanced,1.0000,1.0000,0.9256,1.0000,0.9918,0.9151,1.0000,0.9496,1.0000,0.425683,0.373688,0.192011,0.008618 +bot_01459,balanced,0.9532,1.0000,1.0000,0.8349,0.8194,1.0000,0.8600,0.9384,0.9154,0.471354,0.245263,0.124160,0.159223 +bot_01460,reward_heavy,1.0000,0.8826,0.7609,1.0000,0.5880,0.4976,1.0000,0.7467,1.0000,0.703480,0.275241,0.010639,0.010639 +bot_01461,churn_sensitive,0.5644,0.8096,0.3231,0.7936,0.6276,0.3514,0.8259,1.0000,0.6226,0.163666,0.364307,0.309491,0.162535 +bot_01462,reward_heavy,1.0000,0.6610,0.9917,1.0000,0.5950,0.6555,1.0000,0.7382,1.0000,0.597406,0.131472,0.153567,0.117555 +bot_01463,reward_heavy,1.0000,0.6702,0.8058,1.0000,0.6094,0.6728,1.0000,1.0000,1.0000,0.614405,0.145750,0.230154,0.009692 +bot_01464,balanced,1.0000,1.0000,1.0000,0.8591,0.9780,0.9757,1.0000,0.9719,1.0000,0.360021,0.386022,0.240153,0.013804 +bot_01465,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.7994,1.0000,0.9624,0.686561,0.277911,0.024779,0.010749 +bot_01466,reward_heavy,1.0000,0.6400,0.9739,1.0000,0.9120,0.7248,0.8818,0.9588,1.0000,0.501609,0.342591,0.013807,0.141993 +bot_01467,network_bound,0.9363,0.7455,0.7127,1.0000,0.9566,0.7563,0.7537,1.0000,0.7742,0.165638,0.152183,0.182071,0.500109 +bot_01468,splash_driven,0.8844,1.0000,1.0000,1.0000,1.0000,1.0000,0.9040,0.8595,1.0000,0.667391,0.094958,0.131973,0.105678 +bot_01469,splash_driven,0.9265,0.8419,1.0000,1.0000,1.0000,1.0000,0.9029,1.0000,0.9891,0.692966,0.138522,0.144124,0.024387 +bot_01470,splash_driven,0.9689,1.0000,1.0000,1.0000,0.8920,1.0000,0.9453,0.9335,0.9854,0.751116,0.227231,0.010827,0.010827 +bot_01471,interstitial_focus,0.8470,1.0000,0.7416,0.7024,1.0000,0.6817,0.8806,0.8422,1.0000,0.283948,0.384996,0.204523,0.126533 +bot_01472,interstitial_focus,0.7437,1.0000,0.8774,0.9652,1.0000,0.6429,0.9723,0.8493,1.0000,0.379517,0.306074,0.290247,0.024161 +bot_01473,splash_driven,0.6664,1.0000,1.0000,0.9254,1.0000,1.0000,1.0000,1.0000,1.0000,0.729179,0.044041,0.096809,0.129971 +bot_01474,splash_driven,0.6446,0.9666,1.0000,1.0000,0.9637,1.0000,1.0000,1.0000,0.8855,0.782392,0.074963,0.129991,0.012654 +bot_01475,reward_heavy,1.0000,0.6472,1.0000,1.0000,0.6472,0.8275,0.8895,0.8947,1.0000,0.590206,0.230029,0.170329,0.009437 +bot_01476,balanced,1.0000,0.9186,1.0000,0.9503,0.8836,0.8111,1.0000,1.0000,1.0000,0.324446,0.340224,0.199936,0.135394 +bot_01477,balanced,1.0000,1.0000,1.0000,0.9221,1.0000,0.9636,1.0000,0.9162,0.9753,0.340806,0.262419,0.384101,0.012674 +bot_01478,reward_heavy,1.0000,0.9071,0.9007,1.0000,0.8664,0.6390,1.0000,0.9182,1.0000,0.752359,0.215421,0.016110,0.016110 +bot_01479,churn_sensitive,0.4258,0.6318,0.3116,0.8074,0.5887,0.3321,0.6642,1.0000,0.5510,0.210742,0.313739,0.234295,0.241223 +bot_01480,balanced,1.0000,1.0000,0.9069,0.8373,1.0000,1.0000,1.0000,1.0000,1.0000,0.422347,0.248324,0.317728,0.011602 +bot_01481,splash_driven,0.9630,0.8759,1.0000,1.0000,1.0000,1.0000,0.9513,0.8589,1.0000,0.747200,0.091499,0.152087,0.009214 +bot_01482,balanced,1.0000,1.0000,0.9728,1.0000,1.0000,1.0000,0.9178,1.0000,1.0000,0.656621,0.237108,0.093565,0.012706 +bot_01483,balanced,1.0000,1.0000,0.8714,1.0000,1.0000,1.0000,1.0000,1.0000,0.9578,0.300194,0.323481,0.365498,0.010827 +bot_01484,reward_heavy,1.0000,0.6392,0.9042,1.0000,0.6836,0.4842,1.0000,0.7433,1.0000,0.482719,0.376796,0.079290,0.061195 +bot_01485,interstitial_focus,0.8613,1.0000,0.9450,0.8501,1.0000,0.5159,1.0000,0.8208,0.9722,0.295708,0.374165,0.205030,0.125096 +bot_01486,balanced,1.0000,1.0000,0.9750,0.9421,1.0000,1.0000,0.9374,1.0000,1.0000,0.428360,0.333669,0.094379,0.143592 +bot_01487,interstitial_focus,0.6362,1.0000,0.9826,0.7199,1.0000,0.7771,1.0000,1.0000,0.9393,0.322847,0.304186,0.195530,0.177437 +bot_01488,network_bound,1.0000,0.8358,0.9418,0.8131,0.5658,0.7865,0.6608,1.0000,0.7628,0.023052,0.179856,0.412081,0.385011 +bot_01489,churn_sensitive,0.6476,0.6366,0.5812,0.6096,0.7621,0.6111,0.7636,1.0000,0.5767,0.392852,0.152601,0.354082,0.100464 +bot_01490,splash_driven,1.0000,0.7055,1.0000,0.9028,0.8415,1.0000,1.0000,1.0000,1.0000,0.718888,0.103811,0.084541,0.092760 +bot_01491,balanced,0.8704,1.0000,1.0000,1.0000,0.7872,0.8800,0.9980,1.0000,1.0000,0.298299,0.322261,0.253303,0.126138 +bot_01492,interstitial_focus,0.9003,1.0000,0.8150,0.6916,1.0000,0.9069,0.8467,1.0000,0.9375,0.231343,0.445646,0.311982,0.011029 +bot_01493,splash_driven,0.7864,1.0000,1.0000,1.0000,0.8159,1.0000,1.0000,0.8416,0.9504,0.711024,0.169559,0.108742,0.010675 +bot_01494,interstitial_focus,0.5423,1.0000,0.6860,0.6132,1.0000,0.5486,0.8073,0.8212,1.0000,0.226913,0.429015,0.292708,0.051363 +bot_01495,interstitial_focus,0.8162,1.0000,0.8664,0.8828,1.0000,0.9136,0.9425,1.0000,1.0000,0.210401,0.468515,0.268067,0.053017 +bot_01496,splash_driven,0.8601,0.7879,1.0000,1.0000,0.9975,1.0000,1.0000,0.8608,0.8557,0.820018,0.133783,0.012651,0.033549 +bot_01497,interstitial_focus,0.7557,1.0000,0.6582,0.6712,1.0000,0.5194,1.0000,0.8378,1.0000,0.288693,0.573570,0.127015,0.010722 +bot_01498,splash_driven,0.9110,0.8034,1.0000,1.0000,1.0000,1.0000,0.9366,0.8454,1.0000,0.672884,0.183025,0.040492,0.103599 +bot_01499,splash_driven,0.7760,0.9523,1.0000,1.0000,1.0000,1.0000,0.8265,0.8407,0.9608,0.734621,0.151003,0.034617,0.079759 +bot_01500,splash_driven,0.7149,0.9427,1.0000,0.8902,0.9605,1.0000,0.9674,1.0000,0.8834,0.633569,0.230839,0.125452,0.010139 +bot_01501,interstitial_focus,0.5020,1.0000,0.8212,0.7969,1.0000,0.8281,0.9932,0.9502,1.0000,0.337190,0.337795,0.158861,0.166153 +bot_01502,reward_heavy,1.0000,0.9814,1.0000,1.0000,0.6178,0.5733,1.0000,1.0000,1.0000,0.614994,0.339054,0.009204,0.036747 +bot_01503,interstitial_focus,0.7719,1.0000,0.8289,0.9772,1.0000,0.7656,0.8191,0.9201,0.9438,0.237994,0.461423,0.125762,0.174821 +bot_01504,splash_driven,0.9768,0.7130,1.0000,1.0000,0.8508,1.0000,0.8766,1.0000,0.9188,0.667776,0.198923,0.122500,0.010802 +bot_01505,interstitial_focus,0.9075,1.0000,0.6767,0.8324,1.0000,0.7139,0.9452,1.0000,0.9914,0.258832,0.503681,0.225028,0.012459 +bot_01506,network_bound,0.9084,0.6384,0.8928,0.7818,0.9966,0.6418,0.7741,1.0000,0.9167,0.017332,0.192830,0.288849,0.500989 +bot_01507,splash_driven,0.8135,0.8819,1.0000,1.0000,0.9569,1.0000,1.0000,1.0000,0.8716,0.692202,0.161700,0.100702,0.045395 +bot_01508,network_bound,0.7999,0.8830,0.9614,0.8236,0.5944,0.5426,0.6536,1.0000,0.7872,0.212005,0.044239,0.320750,0.423006 +bot_01509,balanced,0.9868,1.0000,1.0000,0.8607,1.0000,1.0000,0.9976,1.0000,0.9628,0.382700,0.323563,0.283192,0.010544 +bot_01510,splash_driven,0.7170,0.8875,1.0000,1.0000,0.8527,1.0000,0.7630,0.9004,1.0000,0.848298,0.103729,0.037945,0.010028 +bot_01511,interstitial_focus,0.4850,1.0000,0.9181,0.6450,1.0000,0.5842,0.8574,0.9726,0.9678,0.288013,0.562366,0.137462,0.012158 +bot_01512,interstitial_focus,0.6958,1.0000,0.8756,0.7120,1.0000,0.8002,1.0000,1.0000,1.0000,0.352590,0.442108,0.194763,0.010539 +bot_01513,interstitial_focus,0.9368,1.0000,0.9577,0.6954,1.0000,0.5879,0.8455,1.0000,0.9819,0.324349,0.268346,0.260515,0.146791 +bot_01514,splash_driven,0.9485,0.9843,1.0000,0.9053,0.9960,1.0000,0.7879,1.0000,1.0000,0.701567,0.156137,0.128878,0.013418 +bot_01515,churn_sensitive,0.5923,0.4780,0.6512,0.4781,0.7357,0.2425,0.7339,1.0000,0.6079,0.185376,0.263022,0.249855,0.301746 +bot_01516,network_bound,0.8022,0.6978,0.7356,0.9346,0.7041,0.7541,0.5489,1.0000,0.8965,0.042402,0.240593,0.384578,0.332427 +bot_01517,interstitial_focus,0.6401,1.0000,0.9234,0.7571,1.0000,0.6140,0.9332,1.0000,1.0000,0.257604,0.391048,0.172328,0.179020 +bot_01518,network_bound,1.0000,0.7559,0.7326,0.9006,0.5898,0.8018,0.7102,1.0000,0.7726,0.106657,0.189351,0.310185,0.393807 +bot_01519,network_bound,0.8959,0.7415,0.7017,0.8474,0.5740,0.6651,0.6483,1.0000,0.8154,0.010238,0.236590,0.293144,0.460028 +bot_01520,network_bound,1.0000,1.0000,0.5822,0.6766,0.9789,0.8899,0.7259,1.0000,0.8007,0.102879,0.055861,0.401036,0.440225 +bot_01521,interstitial_focus,0.4986,1.0000,0.9368,0.6839,1.0000,0.7197,0.9001,1.0000,1.0000,0.272107,0.345357,0.254957,0.127579 +bot_01522,splash_driven,0.8551,1.0000,1.0000,1.0000,1.0000,1.0000,0.9670,0.9323,1.0000,0.688265,0.167753,0.017855,0.126127 +bot_01523,balanced,1.0000,1.0000,1.0000,0.9221,1.0000,1.0000,1.0000,0.9701,0.9967,0.372850,0.338207,0.280789,0.008153 +bot_01524,reward_heavy,1.0000,0.5918,0.8579,1.0000,0.8341,0.7859,1.0000,0.6890,1.0000,0.594043,0.324513,0.069661,0.011782 +bot_01525,splash_driven,0.6744,1.0000,1.0000,0.9169,1.0000,1.0000,0.9263,1.0000,1.0000,0.754389,0.149946,0.012232,0.083434 +bot_01526,splash_driven,0.9055,1.0000,1.0000,0.9784,0.8829,1.0000,0.7617,1.0000,0.8573,0.751889,0.190270,0.047330,0.010512 +bot_01527,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8629,0.8720,1.0000,0.398828,0.361904,0.231142,0.008127 +bot_01528,reward_heavy,1.0000,0.7792,0.9971,1.0000,0.8660,0.5484,1.0000,0.9198,1.0000,0.520810,0.374081,0.094045,0.011063 +bot_01529,balanced,1.0000,1.0000,1.0000,1.0000,0.9797,1.0000,0.8478,0.8361,1.0000,0.526768,0.214532,0.233099,0.025601 +bot_01530,reward_heavy,1.0000,0.9143,0.9187,1.0000,0.8885,0.5465,0.9187,0.8240,1.0000,0.518668,0.356834,0.102440,0.022057 +bot_01531,interstitial_focus,0.7013,1.0000,0.7664,0.5981,1.0000,0.8825,0.8062,1.0000,1.0000,0.386105,0.506347,0.096301,0.011247 +bot_01532,interstitial_focus,0.7340,1.0000,0.7939,0.7674,1.0000,0.8785,0.9469,1.0000,1.0000,0.297430,0.377676,0.314888,0.010006 +bot_01533,balanced,1.0000,1.0000,0.9070,1.0000,1.0000,1.0000,1.0000,0.9367,1.0000,0.337007,0.419544,0.081516,0.161933 +bot_01534,splash_driven,0.7619,0.7335,1.0000,0.9824,1.0000,1.0000,0.9245,1.0000,0.9281,0.730116,0.074061,0.050335,0.145488 +bot_01535,interstitial_focus,0.8307,1.0000,0.9022,0.8411,1.0000,0.8876,0.8378,1.0000,0.9588,0.268488,0.429503,0.187095,0.114915 +bot_01536,reward_heavy,1.0000,0.8993,0.6939,1.0000,0.7570,0.4030,0.9707,1.0000,1.0000,0.708104,0.193334,0.087746,0.010816 +bot_01537,balanced,1.0000,1.0000,1.0000,1.0000,0.9328,0.9584,1.0000,1.0000,1.0000,0.298201,0.453670,0.236961,0.011168 +bot_01538,reward_heavy,1.0000,0.7830,0.9443,1.0000,0.5496,0.7258,1.0000,0.7511,1.0000,0.547378,0.418183,0.022559,0.011880 +bot_01539,splash_driven,0.8436,0.9198,1.0000,1.0000,0.8262,1.0000,0.7977,1.0000,0.8796,0.646384,0.234850,0.008116,0.110649 +bot_01540,reward_heavy,1.0000,0.7454,0.6348,1.0000,0.8406,0.4087,0.9081,0.6976,1.0000,0.685655,0.198225,0.012029,0.104090 +bot_01541,network_bound,1.0000,1.0000,0.9445,0.7864,0.7653,0.6782,0.8107,1.0000,0.9325,0.221390,0.161895,0.202170,0.414545 +bot_01542,reward_heavy,1.0000,0.6231,0.8594,1.0000,0.6322,0.5573,0.9544,0.6883,1.0000,0.680733,0.220167,0.085335,0.013765 +bot_01543,splash_driven,0.7701,0.7598,1.0000,0.8592,0.8507,1.0000,0.7686,0.9723,0.8758,0.680244,0.178469,0.130652,0.010636 +bot_01544,interstitial_focus,0.8064,1.0000,0.8610,0.9038,1.0000,0.5349,1.0000,1.0000,1.0000,0.391949,0.343289,0.118958,0.145804 +bot_01545,balanced,0.8477,1.0000,1.0000,0.8573,1.0000,0.8131,0.8973,0.8479,1.0000,0.375754,0.301416,0.180442,0.142388 +bot_01546,network_bound,0.7366,0.9477,0.9399,0.7540,0.7677,0.5599,0.6477,1.0000,0.8921,0.127128,0.261771,0.346549,0.264552 +bot_01547,interstitial_focus,0.9598,1.0000,0.8527,0.8995,1.0000,0.8844,1.0000,1.0000,1.0000,0.294461,0.429938,0.264821,0.010779 +bot_01548,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.412787,0.265847,0.230256,0.091110 +bot_01549,balanced,0.9608,1.0000,1.0000,1.0000,0.8388,0.9911,0.9163,0.8376,0.8814,0.360756,0.351255,0.278644,0.009345 +bot_01550,splash_driven,0.7714,0.8738,1.0000,0.8356,1.0000,1.0000,0.8687,1.0000,1.0000,0.884871,0.094659,0.010235,0.010235 +bot_01551,reward_heavy,1.0000,0.7001,0.8353,1.0000,0.6864,0.6882,1.0000,0.9718,1.0000,0.490884,0.297559,0.177104,0.034452 +bot_01552,balanced,1.0000,1.0000,0.9630,1.0000,1.0000,0.7889,0.8967,0.9448,1.0000,0.422607,0.218248,0.232458,0.126687 +bot_01553,reward_heavy,1.0000,0.9907,0.6585,1.0000,0.8040,0.4566,1.0000,1.0000,1.0000,0.625352,0.156625,0.167708,0.050315 +bot_01554,reward_heavy,1.0000,0.8024,0.6051,1.0000,0.7416,0.8175,0.9057,0.7016,1.0000,0.645929,0.310590,0.034581,0.008900 +bot_01555,balanced,1.0000,0.9128,1.0000,0.9125,0.7809,0.7823,0.8442,0.9116,1.0000,0.316345,0.500888,0.111619,0.071148 +bot_01556,balanced,1.0000,0.9385,1.0000,1.0000,0.8627,0.8149,0.9259,0.9907,0.9871,0.324033,0.384689,0.175515,0.115763 +bot_01557,network_bound,0.8068,0.8716,0.9904,0.8065,0.8884,0.8860,0.5222,1.0000,0.7644,0.080824,0.201741,0.386373,0.331062 +bot_01558,interstitial_focus,0.9115,1.0000,0.9609,0.8446,1.0000,0.6898,1.0000,1.0000,1.0000,0.280914,0.450106,0.086638,0.182341 +bot_01559,interstitial_focus,0.9463,1.0000,0.9806,0.8268,1.0000,0.7447,0.9758,1.0000,0.9430,0.352751,0.335199,0.141121,0.170930 +bot_01560,balanced,1.0000,0.9312,1.0000,1.0000,0.9840,0.8261,0.8752,1.0000,0.9960,0.433704,0.388448,0.169221,0.008627 +bot_01561,network_bound,0.6154,0.8167,0.8014,0.9048,0.7117,0.9075,0.5758,1.0000,0.8121,0.065395,0.193992,0.229412,0.511201 +bot_01562,churn_sensitive,0.3265,0.6479,0.2260,0.7868,0.6828,0.5987,0.7558,1.0000,0.5525,0.221659,0.225891,0.309002,0.243448 +bot_01563,splash_driven,0.7548,0.7349,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.871784,0.085221,0.013678,0.029318 +bot_01564,reward_heavy,1.0000,0.8360,0.8498,1.0000,0.5882,0.6937,1.0000,0.9430,1.0000,0.533925,0.309569,0.037438,0.119067 +bot_01565,reward_heavy,1.0000,0.8023,0.7989,1.0000,0.8320,0.5507,1.0000,0.9184,1.0000,0.485657,0.346935,0.158869,0.008538 +bot_01566,interstitial_focus,0.9167,1.0000,0.9912,0.9610,1.0000,0.6081,0.8224,0.8252,1.0000,0.247816,0.479996,0.113793,0.158395 +bot_01567,splash_driven,1.0000,0.7102,1.0000,0.8022,0.9181,1.0000,0.9077,0.9096,0.8617,0.841982,0.122258,0.013363,0.022397 +bot_01568,splash_driven,0.9220,1.0000,1.0000,1.0000,0.8683,1.0000,0.9859,1.0000,0.8628,0.708515,0.242936,0.009578,0.038971 +bot_01569,balanced,0.8134,0.8979,1.0000,1.0000,1.0000,0.8860,0.9188,1.0000,0.9318,0.249877,0.261579,0.316307,0.172237 +bot_01570,interstitial_focus,0.9450,1.0000,0.7694,0.9377,1.0000,0.8461,0.9070,1.0000,0.9638,0.215130,0.370792,0.226627,0.187450 +bot_01571,churn_sensitive,0.6206,0.6234,0.6530,0.6959,0.4080,0.5174,0.6875,1.0000,0.5625,0.287740,0.142178,0.230205,0.339877 +bot_01572,reward_heavy,1.0000,0.7738,0.7633,1.0000,0.9340,0.5109,1.0000,0.9208,1.0000,0.470759,0.278989,0.170941,0.079311 +bot_01573,reward_heavy,1.0000,0.7527,0.8999,1.0000,0.8086,0.7582,1.0000,0.8516,1.0000,0.656403,0.243390,0.009455,0.090752 +bot_01574,reward_heavy,1.0000,0.6610,0.5874,1.0000,0.7888,0.5182,1.0000,1.0000,1.0000,0.514808,0.309817,0.110209,0.065166 +bot_01575,splash_driven,0.9021,0.9478,1.0000,1.0000,0.9043,1.0000,0.8383,0.9992,1.0000,0.513291,0.248677,0.132224,0.105807 +bot_01576,reward_heavy,1.0000,0.6221,0.7371,1.0000,0.8405,0.6101,1.0000,0.8770,1.0000,0.461780,0.323567,0.117296,0.097357 +bot_01577,reward_heavy,1.0000,1.0000,0.8597,1.0000,0.8432,0.6838,1.0000,0.9876,1.0000,0.449304,0.351027,0.191180,0.008489 +bot_01578,reward_heavy,1.0000,0.6547,0.7110,1.0000,0.8636,0.6459,0.9200,1.0000,1.0000,0.486639,0.370245,0.132576,0.010540 +bot_01579,interstitial_focus,0.6545,1.0000,1.0000,0.6671,1.0000,0.5036,0.9471,1.0000,1.0000,0.394256,0.486370,0.064788,0.054587 +bot_01580,splash_driven,0.6821,0.8740,1.0000,0.9873,1.0000,1.0000,0.9798,0.9000,0.9113,0.732555,0.244960,0.011242,0.011242 +bot_01581,churn_sensitive,0.4708,0.8494,0.4291,0.7381,0.4591,0.2566,0.5792,1.0000,0.6695,0.236898,0.149316,0.357252,0.256533 +bot_01582,reward_heavy,1.0000,0.8075,0.7248,1.0000,0.8614,0.8229,1.0000,0.7295,1.0000,0.573678,0.208652,0.207198,0.010472 +bot_01583,splash_driven,0.9038,0.7998,1.0000,0.9006,0.9284,1.0000,0.9100,0.8896,1.0000,0.626371,0.241512,0.101268,0.030848 +bot_01584,balanced,1.0000,1.0000,0.8605,0.8313,0.8934,0.8852,0.8777,1.0000,1.0000,0.407036,0.290918,0.292015,0.010031 +bot_01585,churn_sensitive,0.4507,0.4446,0.6843,0.4055,0.7456,0.3686,0.8338,1.0000,0.6959,0.173353,0.341850,0.373085,0.111712 +bot_01586,balanced,0.9235,1.0000,1.0000,0.9363,0.8500,0.7882,0.9996,0.8309,1.0000,0.396871,0.305654,0.183443,0.114032 +bot_01587,reward_heavy,1.0000,0.9408,0.6768,1.0000,0.8910,0.8050,0.9532,0.8449,1.0000,0.729900,0.198660,0.010914,0.060526 +bot_01588,reward_heavy,1.0000,1.0000,0.6346,1.0000,0.7638,0.4705,1.0000,0.7562,1.0000,0.525101,0.300522,0.166682,0.007695 +bot_01589,reward_heavy,1.0000,0.9732,0.7943,1.0000,0.9406,0.6027,1.0000,0.6944,1.0000,0.513264,0.278280,0.166816,0.041640 +bot_01590,churn_sensitive,0.5013,0.6476,0.2740,0.4968,0.6879,0.3197,0.7712,1.0000,0.5330,0.266101,0.337768,0.155890,0.240241 +bot_01591,churn_sensitive,0.6559,0.8443,0.6781,0.5870,0.3454,0.3589,0.7492,1.0000,0.5913,0.110818,0.272381,0.296678,0.320123 +bot_01592,reward_heavy,1.0000,0.9112,0.8483,1.0000,0.7385,0.7080,1.0000,0.8105,1.0000,0.612077,0.187581,0.064948,0.135394 +bot_01593,interstitial_focus,0.9420,1.0000,1.0000,0.6207,1.0000,0.8872,1.0000,0.9642,0.9616,0.297319,0.336256,0.172373,0.194052 +bot_01594,interstitial_focus,0.9466,1.0000,0.7955,0.8016,1.0000,0.5070,0.9573,0.9043,0.9869,0.399345,0.472644,0.048358,0.079653 +bot_01595,balanced,0.9815,0.9031,1.0000,1.0000,1.0000,0.8285,1.0000,0.9991,1.0000,0.521198,0.321837,0.146371,0.010595 +bot_01596,network_bound,0.9510,1.0000,0.5670,0.9983,0.9632,0.7108,0.7046,1.0000,0.8185,0.163954,0.078989,0.357374,0.399683 +bot_01597,reward_heavy,1.0000,0.9092,0.9582,1.0000,0.8828,0.6626,1.0000,0.9701,1.0000,0.685214,0.228270,0.012007,0.074510 +bot_01598,reward_heavy,1.0000,0.8343,0.8347,1.0000,0.7651,0.7397,0.8887,0.7732,1.0000,0.633240,0.182653,0.095645,0.088462 +bot_01599,churn_sensitive,0.4054,0.8067,0.4292,0.4084,0.5042,0.6483,0.6958,1.0000,0.5533,0.360694,0.303918,0.274526,0.060862 +bot_01600,reward_heavy,1.0000,0.8829,0.8206,1.0000,0.5542,0.5768,1.0000,0.7512,1.0000,0.511909,0.242947,0.056516,0.188628 +bot_01601,balanced,0.9016,1.0000,1.0000,0.9922,0.9335,0.8778,1.0000,1.0000,0.9182,0.398670,0.296160,0.102160,0.203010 +bot_01602,balanced,0.8536,0.9961,1.0000,1.0000,1.0000,0.8164,0.8632,0.9430,0.9108,0.366438,0.194964,0.215958,0.222640 +bot_01603,churn_sensitive,0.4724,0.7782,0.3108,0.5392,0.4385,0.3754,0.7524,0.9952,0.5124,0.217577,0.230639,0.409989,0.141795 +bot_01604,balanced,1.0000,1.0000,1.0000,0.9429,1.0000,1.0000,1.0000,0.8139,1.0000,0.374615,0.352025,0.211123,0.062237 +bot_01605,reward_heavy,1.0000,0.6285,0.8555,1.0000,0.8766,0.7929,0.9298,0.9196,1.0000,0.561022,0.229066,0.091571,0.118340 +bot_01606,balanced,1.0000,1.0000,0.9391,0.8589,1.0000,0.7947,0.9941,0.9554,0.9090,0.317322,0.270740,0.318116,0.093822 +bot_01607,splash_driven,0.6893,1.0000,1.0000,1.0000,0.9963,1.0000,0.8174,1.0000,0.8453,0.822283,0.123570,0.009756,0.044391 +bot_01608,churn_sensitive,0.3449,0.6241,0.5367,0.6275,0.5565,0.5973,0.8329,1.0000,0.6565,0.172865,0.196684,0.392405,0.238047 +bot_01609,reward_heavy,1.0000,0.6740,0.7951,1.0000,0.9683,0.8397,1.0000,1.0000,1.0000,0.672256,0.303808,0.011968,0.011968 +bot_01610,splash_driven,0.7900,1.0000,1.0000,1.0000,0.8187,1.0000,0.9917,0.9348,1.0000,0.667592,0.254617,0.067961,0.009830 +bot_01611,reward_heavy,1.0000,0.7133,0.9667,1.0000,0.8894,0.8054,1.0000,0.7852,1.0000,0.645640,0.183964,0.158691,0.011704 +bot_01612,reward_heavy,1.0000,0.6680,0.6397,1.0000,0.9534,0.4707,1.0000,0.9744,1.0000,0.709701,0.194578,0.086119,0.009602 +bot_01613,splash_driven,1.0000,0.7411,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9941,0.907866,0.071735,0.010199,0.010199 +bot_01614,churn_sensitive,0.5449,0.8471,0.5391,0.6433,0.4447,0.2510,0.7215,1.0000,0.4930,0.119161,0.249965,0.349456,0.281419 +bot_01615,interstitial_focus,0.5043,1.0000,0.8299,0.6622,1.0000,0.7638,0.9674,1.0000,1.0000,0.330039,0.402777,0.214215,0.052969 +bot_01616,churn_sensitive,0.3181,0.4890,0.5021,0.7016,0.3864,0.5842,0.7535,1.0000,0.5249,0.229661,0.282706,0.275477,0.212156 +bot_01617,balanced,0.8927,1.0000,0.8724,1.0000,0.8695,1.0000,1.0000,0.8432,0.9304,0.260360,0.399679,0.207853,0.132108 +bot_01618,splash_driven,0.8990,1.0000,1.0000,1.0000,1.0000,1.0000,0.9346,1.0000,0.8765,0.856006,0.054599,0.011089,0.078306 +bot_01619,splash_driven,0.7275,0.8097,1.0000,0.8001,0.8440,1.0000,0.8935,0.9027,0.9855,0.645367,0.209371,0.076267,0.068995 +bot_01620,balanced,1.0000,1.0000,1.0000,1.0000,0.9223,0.8623,1.0000,1.0000,1.0000,0.338285,0.417913,0.191596,0.052206 +bot_01621,balanced,1.0000,1.0000,1.0000,1.0000,0.9043,0.9670,0.9230,0.9399,0.9258,0.475051,0.314384,0.163050,0.047516 +bot_01622,splash_driven,0.7577,0.7740,1.0000,1.0000,1.0000,1.0000,0.8611,1.0000,1.0000,0.747635,0.230578,0.010893,0.010893 +bot_01623,network_bound,1.0000,0.8997,0.5724,0.8597,0.9707,0.7784,0.7683,1.0000,0.7262,0.021442,0.035863,0.435145,0.507550 +bot_01624,balanced,1.0000,1.0000,0.8743,1.0000,1.0000,0.8497,1.0000,1.0000,0.9458,0.300893,0.381572,0.156074,0.161461 +bot_01625,interstitial_focus,0.6362,1.0000,0.9576,0.9962,1.0000,0.8942,0.9180,0.8710,0.9540,0.349449,0.348906,0.154851,0.146795 +bot_01626,reward_heavy,1.0000,0.8746,1.0000,1.0000,0.6101,0.8113,1.0000,0.9054,1.0000,0.533616,0.199429,0.171031,0.095925 +bot_01627,reward_heavy,1.0000,0.6943,0.7736,1.0000,0.9293,0.7901,1.0000,1.0000,1.0000,0.452732,0.303592,0.155389,0.088287 +bot_01628,interstitial_focus,0.6334,1.0000,1.0000,0.9291,1.0000,0.6313,0.9649,0.8310,1.0000,0.240042,0.532165,0.218298,0.009496 +bot_01629,reward_heavy,1.0000,0.8844,0.7920,1.0000,0.5476,0.4977,1.0000,0.7916,1.0000,0.530309,0.284199,0.083190,0.102302 +bot_01630,interstitial_focus,0.5492,1.0000,0.7382,0.8617,1.0000,0.7013,1.0000,0.8974,1.0000,0.235495,0.360529,0.267243,0.136734 +bot_01631,reward_heavy,1.0000,0.6978,0.5977,1.0000,0.5870,0.7932,0.8857,0.9618,1.0000,0.418101,0.337432,0.156459,0.088009 +bot_01632,splash_driven,1.0000,0.7241,1.0000,0.8993,0.9253,1.0000,0.9933,0.9921,1.0000,0.739721,0.163480,0.011865,0.084934 +bot_01633,churn_sensitive,0.4582,0.8033,0.4522,0.3818,0.6215,0.5814,0.7343,1.0000,0.6513,0.205212,0.287369,0.275685,0.231735 +bot_01634,balanced,1.0000,0.9913,1.0000,0.9015,1.0000,0.8215,1.0000,1.0000,1.0000,0.456436,0.273705,0.221624,0.048235 +bot_01635,network_bound,0.8828,0.9834,0.6526,0.8014,0.6601,0.8495,0.5743,1.0000,0.8133,0.087247,0.169629,0.354382,0.388743 +bot_01636,interstitial_focus,0.6529,1.0000,0.7767,0.8304,1.0000,0.9048,0.8893,1.0000,1.0000,0.273424,0.364626,0.219437,0.142514 +bot_01637,balanced,1.0000,1.0000,0.8635,1.0000,1.0000,0.9303,1.0000,0.8725,0.9549,0.446861,0.301395,0.237051,0.014693 +bot_01638,splash_driven,0.9087,1.0000,1.0000,1.0000,0.8272,1.0000,0.9325,1.0000,0.9094,0.823315,0.055806,0.039571,0.081308 +bot_01639,reward_heavy,1.0000,0.8652,0.6530,1.0000,0.9790,0.7391,1.0000,0.6892,1.0000,0.551383,0.285151,0.053489,0.109978 +bot_01640,balanced,1.0000,1.0000,1.0000,0.9213,1.0000,1.0000,0.9705,0.8463,0.9075,0.465531,0.310359,0.211297,0.012814 +bot_01641,balanced,1.0000,0.9243,0.9399,1.0000,0.9513,1.0000,0.9497,1.0000,1.0000,0.372424,0.177231,0.327924,0.122420 +bot_01642,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9484,0.8655,0.9463,0.363171,0.311112,0.242716,0.083001 +bot_01643,splash_driven,0.7774,1.0000,1.0000,0.8802,0.8420,1.0000,0.8978,1.0000,0.9735,0.582192,0.215269,0.131323,0.071216 +bot_01644,network_bound,0.6157,1.0000,0.7193,0.7985,0.6712,0.8360,0.6023,1.0000,0.8842,0.104802,0.296635,0.300641,0.297921 +bot_01645,reward_heavy,1.0000,0.8598,0.9428,1.0000,0.7347,0.4987,1.0000,0.9310,1.0000,0.514721,0.232759,0.151693,0.100827 +bot_01646,interstitial_focus,0.7475,1.0000,0.9096,0.8420,1.0000,0.7711,0.9159,0.9975,1.0000,0.305402,0.600394,0.071568,0.022636 +bot_01647,interstitial_focus,0.8376,1.0000,1.0000,0.6118,1.0000,0.8683,1.0000,1.0000,0.9351,0.204574,0.470449,0.282835,0.042141 +bot_01648,reward_heavy,1.0000,0.6740,1.0000,1.0000,0.8641,0.8070,1.0000,0.8812,1.0000,0.583537,0.195348,0.191781,0.029333 +bot_01649,splash_driven,0.7681,0.9079,1.0000,0.9486,0.9874,1.0000,1.0000,0.9501,0.9032,0.584407,0.240960,0.165933,0.008700 +bot_01650,interstitial_focus,0.7356,1.0000,0.8367,0.9490,1.0000,0.5144,0.8675,1.0000,1.0000,0.466533,0.451694,0.070094,0.011678 +bot_01651,network_bound,0.8918,0.6953,0.6643,0.8696,0.6366,0.5712,0.6180,1.0000,0.7153,0.209701,0.173997,0.182559,0.433743 +bot_01652,balanced,1.0000,0.8974,0.9512,1.0000,0.8512,0.9396,1.0000,0.8061,1.0000,0.309604,0.262577,0.342842,0.084977 +bot_01653,splash_driven,1.0000,0.8409,1.0000,1.0000,0.9274,1.0000,0.9084,1.0000,0.9634,0.764995,0.045423,0.116145,0.073438 +bot_01654,churn_sensitive,0.3493,0.6612,0.5612,0.7631,0.4288,0.6196,0.7845,1.0000,0.5890,0.234055,0.150083,0.357587,0.258275 +bot_01655,interstitial_focus,0.4816,1.0000,0.9417,0.9924,1.0000,0.7211,1.0000,0.9488,1.0000,0.221214,0.524741,0.195534,0.058512 +bot_01656,reward_heavy,1.0000,0.9747,0.9039,1.0000,0.6512,0.4307,1.0000,0.9623,1.0000,0.578813,0.397339,0.011924,0.011924 +bot_01657,reward_heavy,1.0000,0.8376,1.0000,1.0000,0.8708,0.4373,0.9414,0.7138,1.0000,0.721694,0.228109,0.040479,0.009718 +bot_01658,reward_heavy,1.0000,0.8747,0.9006,1.0000,0.9119,0.7717,1.0000,1.0000,1.0000,0.502469,0.287308,0.104587,0.105636 +bot_01659,splash_driven,0.9991,1.0000,1.0000,1.0000,0.9935,1.0000,0.9000,1.0000,0.9861,0.663820,0.090467,0.125509,0.120204 +bot_01660,balanced,0.9154,1.0000,1.0000,0.8770,1.0000,0.7890,0.9126,1.0000,0.9298,0.287386,0.364142,0.218264,0.130209 +bot_01661,interstitial_focus,0.6713,1.0000,1.0000,0.7987,1.0000,0.7177,1.0000,1.0000,1.0000,0.327838,0.422333,0.096950,0.152879 +bot_01662,network_bound,0.9948,0.8531,0.8027,0.9245,0.5836,0.6081,0.5897,1.0000,0.8908,0.123479,0.078980,0.405726,0.391815 +bot_01663,interstitial_focus,0.8713,1.0000,0.8362,0.7205,1.0000,0.5701,0.8647,1.0000,0.9941,0.275899,0.581196,0.130724,0.012181 +bot_01664,network_bound,0.7061,0.9447,0.7479,0.8341,0.9413,0.8771,0.7511,1.0000,0.8465,0.195586,0.114423,0.306019,0.383972 +bot_01665,churn_sensitive,0.6956,0.6232,0.5020,0.5266,0.5854,0.4233,0.8141,1.0000,0.6555,0.325280,0.315670,0.152591,0.206458 +bot_01666,interstitial_focus,0.8226,1.0000,0.7313,0.8635,1.0000,0.7600,0.8430,1.0000,1.0000,0.272298,0.296565,0.262640,0.168497 +bot_01667,interstitial_focus,0.5488,1.0000,0.9303,0.9134,1.0000,0.6162,1.0000,0.9033,1.0000,0.244394,0.340051,0.244826,0.170729 +bot_01668,churn_sensitive,0.7184,0.6777,0.3688,0.5665,0.5383,0.5732,0.5642,1.0000,0.5503,0.202843,0.274774,0.305986,0.216397 +bot_01669,balanced,0.9370,1.0000,1.0000,0.9230,1.0000,0.9004,1.0000,1.0000,1.0000,0.316487,0.276468,0.395665,0.011380 +bot_01670,reward_heavy,1.0000,0.7342,0.6330,1.0000,0.7671,0.4128,1.0000,0.7200,1.0000,0.579430,0.287356,0.121793,0.011421 +bot_01671,interstitial_focus,0.7049,1.0000,0.9651,0.9977,1.0000,0.7347,1.0000,1.0000,0.9433,0.241429,0.525965,0.218468,0.014138 +bot_01672,reward_heavy,1.0000,1.0000,0.8013,1.0000,0.9795,0.6343,1.0000,0.9625,1.0000,0.566986,0.212734,0.090990,0.129291 +bot_01673,reward_heavy,1.0000,0.8138,0.8699,1.0000,0.6253,0.4837,0.9775,0.6995,1.0000,0.614583,0.153871,0.221605,0.009941 +bot_01674,reward_heavy,1.0000,0.9972,0.9823,1.0000,0.9647,0.7558,1.0000,0.6908,1.0000,0.514357,0.248075,0.110171,0.127398 +bot_01675,interstitial_focus,0.8700,1.0000,0.8951,0.5872,1.0000,0.8072,1.0000,0.8451,1.0000,0.303744,0.443453,0.243595,0.009208 +bot_01676,reward_heavy,1.0000,0.7962,0.9415,1.0000,0.9103,0.4586,1.0000,0.8519,1.0000,0.609729,0.182414,0.198728,0.009128 +bot_01677,churn_sensitive,0.5931,0.6024,0.2973,0.7260,0.3683,0.5211,0.6536,1.0000,0.6034,0.365839,0.343971,0.185687,0.104503 +bot_01678,reward_heavy,1.0000,0.9431,0.8143,1.0000,0.9142,0.4167,1.0000,0.8810,1.0000,0.516251,0.305539,0.031738,0.146472 +bot_01679,splash_driven,1.0000,0.6940,1.0000,1.0000,1.0000,1.0000,0.9689,0.9949,1.0000,0.683027,0.218703,0.009684,0.088586 +bot_01680,splash_driven,0.6571,0.8806,1.0000,1.0000,1.0000,1.0000,0.9046,1.0000,1.0000,0.624269,0.294970,0.009043,0.071718 +bot_01681,splash_driven,0.8581,0.8663,1.0000,1.0000,1.0000,1.0000,0.9973,1.0000,0.9001,0.785030,0.138213,0.035142,0.041615 +bot_01682,network_bound,1.0000,0.8026,0.7560,1.0000,0.8860,0.8243,0.5446,1.0000,0.8858,0.007958,0.245998,0.328582,0.417462 +bot_01683,interstitial_focus,0.8679,1.0000,0.6775,0.7518,1.0000,0.6100,0.8590,1.0000,0.9815,0.246709,0.412788,0.245615,0.094888 +bot_01684,splash_driven,0.7195,1.0000,1.0000,0.8170,0.9515,1.0000,0.9929,1.0000,1.0000,0.580624,0.131253,0.158495,0.129628 +bot_01685,reward_heavy,1.0000,0.6453,0.7196,1.0000,0.8983,0.6269,1.0000,0.9773,1.0000,0.535084,0.391918,0.045584,0.027414 +bot_01686,network_bound,0.9328,0.9435,1.0000,0.8575,0.6385,0.5861,0.5818,1.0000,0.7412,0.088154,0.278293,0.184545,0.449008 +bot_01687,reward_heavy,1.0000,0.7599,0.9996,1.0000,0.8528,0.4942,1.0000,0.9497,1.0000,0.487931,0.344801,0.158079,0.009189 +bot_01688,reward_heavy,1.0000,0.8557,0.9176,1.0000,0.9753,0.7949,1.0000,0.7744,1.0000,0.607589,0.292962,0.089423,0.010027 +bot_01689,reward_heavy,1.0000,0.7012,0.6805,1.0000,0.6307,0.4342,0.9063,0.8152,1.0000,0.687017,0.194666,0.105267,0.013050 +bot_01690,reward_heavy,1.0000,0.8209,0.8517,1.0000,0.5753,0.6331,1.0000,0.9083,1.0000,0.449265,0.341542,0.069074,0.140119 +bot_01691,balanced,0.8169,1.0000,1.0000,1.0000,1.0000,0.7859,0.8970,1.0000,1.0000,0.438909,0.264801,0.273123,0.023168 +bot_01692,network_bound,0.6667,0.9476,1.0000,0.9371,0.9080,0.5362,0.6480,1.0000,0.7792,0.177779,0.105041,0.266541,0.450639 +bot_01693,reward_heavy,1.0000,0.9910,0.5797,1.0000,0.8332,0.5708,0.9075,0.7198,1.0000,0.547513,0.205721,0.112959,0.133806 +bot_01694,interstitial_focus,0.8195,1.0000,0.9464,0.8554,1.0000,0.5006,1.0000,1.0000,1.0000,0.316960,0.313613,0.212240,0.157187 +bot_01695,interstitial_focus,0.7340,1.0000,0.5922,0.7406,1.0000,0.5187,1.0000,0.9512,1.0000,0.250546,0.454553,0.267507,0.027394 +bot_01696,reward_heavy,1.0000,0.7932,0.9125,1.0000,0.7279,0.4993,1.0000,0.8299,1.0000,0.553568,0.165430,0.199512,0.081491 +bot_01697,network_bound,0.9856,0.9667,0.7388,1.0000,0.8503,0.6378,0.7095,1.0000,0.7762,0.062491,0.117839,0.344090,0.475581 +bot_01698,interstitial_focus,0.8387,1.0000,0.6306,0.8199,1.0000,0.8948,0.9518,0.9885,1.0000,0.242520,0.414959,0.331629,0.010892 +bot_01699,churn_sensitive,0.5744,0.8529,0.4828,0.4070,0.3333,0.3888,0.7824,1.0000,0.6537,0.322801,0.357696,0.220315,0.099188 +bot_01700,interstitial_focus,0.5238,1.0000,0.7611,0.6171,1.0000,0.8225,1.0000,0.8801,1.0000,0.322880,0.435002,0.228656,0.013462 +bot_01701,network_bound,0.9456,0.8996,0.9986,0.7447,0.7910,0.8996,0.7058,1.0000,0.7869,0.103682,0.171922,0.284738,0.439657 +bot_01702,splash_driven,0.8340,0.8048,1.0000,1.0000,1.0000,1.0000,0.8898,1.0000,0.9133,0.772342,0.206837,0.010411,0.010411 +bot_01703,splash_driven,0.8219,0.7733,1.0000,0.8913,0.8298,1.0000,0.8961,0.9792,1.0000,0.721781,0.087076,0.102514,0.088629 +bot_01704,splash_driven,0.8317,0.8713,1.0000,1.0000,1.0000,1.0000,0.7551,0.8468,1.0000,0.729564,0.125178,0.115638,0.029619 +bot_01705,reward_heavy,1.0000,0.8399,0.6008,1.0000,0.7863,0.6051,1.0000,0.8487,1.0000,0.654299,0.214928,0.120897,0.009877 +bot_01706,churn_sensitive,0.7331,0.5147,0.4547,0.4083,0.5076,0.6512,0.5760,1.0000,0.6804,0.240714,0.215353,0.305796,0.238137 +bot_01707,reward_heavy,1.0000,0.9376,0.6404,1.0000,0.5478,0.7434,1.0000,0.8574,1.0000,0.586001,0.270753,0.008792,0.134455 +bot_01708,churn_sensitive,0.7361,0.6951,0.4534,0.4188,0.5734,0.4148,0.7921,1.0000,0.5953,0.322196,0.227612,0.238230,0.211962 +bot_01709,splash_driven,0.6814,1.0000,1.0000,1.0000,0.8692,1.0000,1.0000,1.0000,0.8904,0.524322,0.191590,0.163432,0.120656 +bot_01710,splash_driven,0.8985,0.6989,1.0000,1.0000,0.9529,1.0000,0.8407,0.8743,0.8772,0.717321,0.097127,0.136855,0.048697 +bot_01711,splash_driven,0.9149,1.0000,1.0000,1.0000,0.9221,1.0000,1.0000,0.9088,0.8983,0.753230,0.129234,0.020657,0.096879 +bot_01712,network_bound,1.0000,0.6287,0.7899,0.6694,0.8705,0.5633,0.7925,1.0000,0.7202,0.010564,0.246898,0.453130,0.289408 +bot_01713,churn_sensitive,0.5329,0.7439,0.2682,0.3906,0.6978,0.6429,0.7051,1.0000,0.6380,0.335207,0.379084,0.215017,0.070691 +bot_01714,balanced,0.8728,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8105,1.0000,0.379849,0.247725,0.253961,0.118466 +bot_01715,interstitial_focus,0.7700,1.0000,0.9625,0.5630,1.0000,0.6926,0.9723,1.0000,1.0000,0.234793,0.408723,0.249269,0.107216 +bot_01716,interstitial_focus,0.4865,1.0000,0.7388,0.7721,1.0000,0.6183,0.8594,0.9403,1.0000,0.335174,0.407908,0.202439,0.054479 +bot_01717,reward_heavy,1.0000,0.6406,0.7965,1.0000,0.6421,0.7933,0.9653,0.8421,1.0000,0.553561,0.219612,0.189375,0.037452 +bot_01718,churn_sensitive,0.4725,0.4490,0.6630,0.6657,0.5810,0.6297,0.6041,1.0000,0.6876,0.444791,0.194766,0.209838,0.150606 +bot_01719,churn_sensitive,0.4420,0.6573,0.5466,0.5080,0.4188,0.3852,0.6560,1.0000,0.5451,0.199593,0.181939,0.423320,0.195148 +bot_01720,interstitial_focus,0.5311,1.0000,0.7690,0.9049,1.0000,0.7142,0.9702,0.9529,1.0000,0.371083,0.388425,0.132509,0.107982 +bot_01721,interstitial_focus,0.9022,1.0000,0.9855,0.8774,1.0000,0.6422,0.9246,1.0000,1.0000,0.350599,0.371368,0.234677,0.043356 +bot_01722,splash_driven,0.9355,0.7678,1.0000,0.8169,0.9211,1.0000,0.9055,0.9350,0.9171,0.628756,0.281051,0.014482,0.075711 +bot_01723,balanced,0.8449,1.0000,0.9567,0.9428,1.0000,0.8776,1.0000,1.0000,0.9484,0.398178,0.403294,0.185434,0.013094 +bot_01724,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9007,1.0000,0.7640,1.0000,0.8515,0.606639,0.278595,0.105417,0.009350 +bot_01725,reward_heavy,1.0000,0.8966,0.9694,1.0000,0.5791,0.7420,1.0000,0.7491,1.0000,0.578960,0.302143,0.011286,0.107612 +bot_01726,reward_heavy,1.0000,0.6973,0.8487,1.0000,0.7545,0.6956,1.0000,0.9976,1.0000,0.713175,0.267114,0.009856,0.009856 +bot_01727,reward_heavy,1.0000,1.0000,0.8538,1.0000,0.9781,0.7770,1.0000,0.9833,1.0000,0.467562,0.313832,0.082905,0.135701 +bot_01728,network_bound,0.8306,1.0000,0.9921,1.0000,0.7701,0.7740,0.5371,1.0000,0.7584,0.056258,0.197362,0.336193,0.410187 +bot_01729,network_bound,0.6289,0.6685,0.6941,0.9786,0.7581,0.9116,0.8383,1.0000,0.7774,0.148210,0.224755,0.191764,0.435271 +bot_01730,network_bound,1.0000,1.0000,0.8861,0.6975,0.8291,0.9112,0.5521,1.0000,0.8019,0.167888,0.099010,0.372931,0.360172 +bot_01731,splash_driven,0.8528,1.0000,1.0000,0.9947,1.0000,1.0000,0.9407,0.8880,0.8929,0.855961,0.048180,0.052636,0.043223 +bot_01732,churn_sensitive,0.3307,0.7030,0.5439,0.5862,0.6345,0.6767,0.8070,1.0000,0.6756,0.271908,0.257407,0.218633,0.252052 +bot_01733,reward_heavy,1.0000,0.8714,0.9493,1.0000,0.8028,0.4993,1.0000,1.0000,1.0000,0.694531,0.173572,0.042517,0.089380 +bot_01734,splash_driven,1.0000,0.9463,1.0000,1.0000,1.0000,1.0000,0.9803,0.8860,0.9803,0.756524,0.145097,0.082206,0.016173 +bot_01735,churn_sensitive,0.6371,0.5762,0.6309,0.5326,0.3584,0.4837,0.7432,1.0000,0.5799,0.209483,0.223220,0.231485,0.335812 +bot_01736,splash_driven,0.9300,1.0000,1.0000,1.0000,1.0000,1.0000,0.9237,1.0000,0.9197,0.628035,0.182061,0.091018,0.098886 +bot_01737,interstitial_focus,0.4898,1.0000,1.0000,0.8332,1.0000,0.8650,1.0000,0.9565,1.0000,0.495828,0.342068,0.150480,0.011624 +bot_01738,splash_driven,1.0000,1.0000,1.0000,0.8834,0.9687,1.0000,0.8791,0.9456,1.0000,0.833862,0.081127,0.073904,0.011107 +bot_01739,splash_driven,0.6796,0.8631,1.0000,0.8892,0.8470,1.0000,0.7619,1.0000,1.0000,0.714436,0.197719,0.079316,0.008529 +bot_01740,balanced,0.9936,0.9365,0.9231,1.0000,1.0000,1.0000,0.9080,1.0000,0.8812,0.281306,0.283596,0.307602,0.127496 +bot_01741,splash_driven,0.6827,1.0000,1.0000,1.0000,0.8131,1.0000,1.0000,1.0000,1.0000,0.886361,0.091560,0.011040,0.011040 +bot_01742,balanced,1.0000,1.0000,1.0000,0.9705,0.8378,0.9197,1.0000,1.0000,0.9942,0.395605,0.338319,0.253208,0.012869 +bot_01743,interstitial_focus,0.8805,1.0000,0.7149,0.5698,1.0000,0.9192,0.9213,1.0000,0.9336,0.312527,0.366601,0.265738,0.055134 +bot_01744,network_bound,0.9187,1.0000,1.0000,0.8510,0.9531,0.8769,0.8037,1.0000,0.7770,0.009134,0.279192,0.264788,0.446885 +bot_01745,reward_heavy,1.0000,0.8030,0.9639,1.0000,0.6248,0.5451,0.9877,0.7848,1.0000,0.572734,0.124156,0.163407,0.139703 +bot_01746,reward_heavy,1.0000,0.6242,0.9710,1.0000,0.8529,0.8312,1.0000,0.8417,1.0000,0.602260,0.223638,0.164490,0.009612 +bot_01747,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.9409,0.4119,0.9902,0.7075,1.0000,0.402129,0.312954,0.186606,0.098312 +bot_01748,balanced,1.0000,0.9982,1.0000,1.0000,1.0000,1.0000,1.0000,0.8833,0.9217,0.361293,0.351932,0.277433,0.009342 +bot_01749,splash_driven,0.8475,0.7896,1.0000,0.9602,1.0000,1.0000,0.8289,1.0000,0.9494,0.812634,0.086617,0.091601,0.009148 +bot_01750,interstitial_focus,0.7477,1.0000,1.0000,0.9870,1.0000,0.8439,1.0000,1.0000,1.0000,0.230138,0.403596,0.276744,0.089522 +bot_01751,network_bound,1.0000,1.0000,0.7242,0.7011,0.9444,0.7434,0.5879,1.0000,0.8407,0.200142,0.042929,0.288625,0.468304 +bot_01752,churn_sensitive,0.5721,0.6042,0.5090,0.6881,0.4382,0.5524,0.6193,1.0000,0.5938,0.327769,0.188293,0.205157,0.278780 +bot_01753,interstitial_focus,0.9504,1.0000,0.6444,0.8084,1.0000,0.6775,0.9972,0.9012,0.9638,0.222868,0.489868,0.278601,0.008663 +bot_01754,reward_heavy,1.0000,0.8550,0.5947,1.0000,0.7105,0.7824,0.9168,0.9041,1.0000,0.753713,0.220243,0.013022,0.013022 +bot_01755,reward_heavy,1.0000,0.8123,0.9170,1.0000,0.9781,0.4182,0.9782,1.0000,1.0000,0.513717,0.331390,0.130896,0.023998 +bot_01756,network_bound,0.6574,0.6189,0.6002,0.6719,0.7671,0.6183,0.6811,1.0000,0.7449,0.090732,0.067835,0.326971,0.514462 +bot_01757,interstitial_focus,0.5429,1.0000,0.7887,0.7040,1.0000,0.6433,0.8913,1.0000,1.0000,0.270418,0.466041,0.247325,0.016216 +bot_01758,reward_heavy,1.0000,0.7660,0.7501,1.0000,0.7749,0.4121,1.0000,1.0000,1.0000,0.517018,0.290361,0.139443,0.053178 +bot_01759,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9437,0.9635,0.9076,1.0000,0.476519,0.364364,0.090342,0.068775 +bot_01760,interstitial_focus,0.9061,1.0000,0.7758,0.9860,1.0000,0.5117,0.8556,1.0000,0.9551,0.362613,0.407499,0.219881,0.010006 +bot_01761,reward_heavy,1.0000,0.8481,0.6552,1.0000,0.8018,0.7330,1.0000,0.9085,1.0000,0.506771,0.313840,0.161018,0.018370 +bot_01762,balanced,0.9539,0.9577,1.0000,0.9507,0.9394,0.8120,1.0000,0.9947,0.9838,0.320961,0.346776,0.148339,0.183924 +bot_01763,interstitial_focus,0.5656,1.0000,0.7750,0.5681,1.0000,0.7918,1.0000,1.0000,1.0000,0.298488,0.399210,0.293167,0.009135 +bot_01764,balanced,0.9159,1.0000,0.9192,1.0000,1.0000,0.9379,0.9129,1.0000,0.9517,0.279962,0.404851,0.306251,0.008936 +bot_01765,network_bound,0.6762,0.8847,0.7838,0.7224,0.8284,0.7367,0.5611,1.0000,0.8537,0.011059,0.148833,0.334051,0.506057 +bot_01766,reward_heavy,1.0000,1.0000,0.6042,1.0000,0.7480,0.4932,1.0000,0.7080,1.0000,0.621697,0.276133,0.012978,0.089192 +bot_01767,interstitial_focus,0.7780,1.0000,0.9084,0.6049,1.0000,0.5363,0.9142,1.0000,1.0000,0.390550,0.383137,0.161344,0.064969 +bot_01768,splash_driven,0.7474,0.7643,1.0000,1.0000,0.9370,1.0000,0.8864,1.0000,0.8803,0.803898,0.176145,0.009979,0.009979 +bot_01769,interstitial_focus,0.7995,1.0000,0.8581,0.6881,1.0000,0.6508,0.8557,0.8655,1.0000,0.256904,0.463466,0.266921,0.012709 +bot_01770,interstitial_focus,0.8116,1.0000,0.9235,0.9957,1.0000,0.6922,0.8212,1.0000,1.0000,0.353542,0.265531,0.244005,0.136922 +bot_01771,interstitial_focus,0.9419,1.0000,0.6367,0.9597,1.0000,0.5983,0.9600,1.0000,1.0000,0.194925,0.505954,0.136248,0.162873 +bot_01772,interstitial_focus,0.7776,1.0000,0.7476,0.5797,1.0000,0.6543,1.0000,1.0000,1.0000,0.478155,0.410198,0.100595,0.011052 +bot_01773,reward_heavy,1.0000,0.9685,0.7825,1.0000,0.9370,0.4724,0.9342,0.9925,1.0000,0.544600,0.300486,0.147049,0.007865 +bot_01774,churn_sensitive,0.5824,0.6328,0.3289,0.5817,0.3973,0.2505,0.6621,1.0000,0.6054,0.310126,0.279947,0.290519,0.119408 +bot_01775,interstitial_focus,0.5183,1.0000,0.8097,0.8527,1.0000,0.7442,0.9584,0.9539,1.0000,0.306261,0.485547,0.194410,0.013781 +bot_01776,reward_heavy,1.0000,0.9791,1.0000,1.0000,0.5654,0.5290,0.8929,0.8964,1.0000,0.712317,0.204095,0.073689,0.009899 +bot_01777,reward_heavy,1.0000,0.8230,0.9183,1.0000,0.6748,0.6615,1.0000,0.8891,1.0000,0.566702,0.248501,0.011334,0.173463 +bot_01778,network_bound,0.6667,0.6560,0.8109,1.0000,0.7531,0.7122,0.7760,1.0000,0.8687,0.220016,0.153502,0.319109,0.307373 +bot_01779,interstitial_focus,0.6417,1.0000,0.9628,0.6548,1.0000,0.6598,1.0000,0.9493,1.0000,0.330700,0.340142,0.319797,0.009361 +bot_01780,splash_driven,1.0000,0.9289,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8854,0.732247,0.181346,0.075216,0.011191 +bot_01781,interstitial_focus,0.8670,1.0000,0.6513,0.5693,1.0000,0.7495,0.9897,0.8686,1.0000,0.337183,0.534470,0.112459,0.015888 +bot_01782,interstitial_focus,0.5747,1.0000,0.7803,0.6472,1.0000,0.8720,1.0000,0.9633,1.0000,0.339502,0.372241,0.204057,0.084201 +bot_01783,interstitial_focus,0.6099,1.0000,1.0000,0.7910,1.0000,0.7256,0.8432,1.0000,1.0000,0.337141,0.429868,0.120690,0.112300 +bot_01784,splash_driven,1.0000,1.0000,1.0000,0.9172,1.0000,1.0000,0.8449,0.9463,1.0000,0.782486,0.196459,0.010527,0.010527 +bot_01785,interstitial_focus,0.9523,1.0000,1.0000,0.5985,1.0000,0.8879,1.0000,1.0000,0.9754,0.507146,0.410198,0.070717,0.011939 +bot_01786,reward_heavy,1.0000,0.6929,0.8766,1.0000,0.7708,0.6279,1.0000,0.8035,1.0000,0.691659,0.210219,0.087541,0.010582 +bot_01787,balanced,0.8206,1.0000,1.0000,1.0000,0.8250,0.8304,1.0000,0.9711,1.0000,0.355707,0.331904,0.231821,0.080568 +bot_01788,interstitial_focus,0.8235,1.0000,1.0000,0.6205,1.0000,0.5530,0.9219,1.0000,1.0000,0.166303,0.462593,0.243868,0.127236 +bot_01789,network_bound,0.8538,0.9408,0.7043,0.9795,0.8105,0.6099,0.6719,1.0000,0.7067,0.062380,0.067554,0.285356,0.584710 +bot_01790,splash_driven,1.0000,0.7011,1.0000,0.9862,0.9086,1.0000,0.7745,1.0000,0.9083,0.654720,0.195242,0.141406,0.008632 +bot_01791,balanced,1.0000,1.0000,0.9554,1.0000,1.0000,0.8558,0.9590,0.9499,1.0000,0.389341,0.254270,0.234751,0.121638 +bot_01792,churn_sensitive,0.7370,0.6200,0.5031,0.7556,0.3901,0.3645,0.8116,1.0000,0.6216,0.181435,0.296225,0.278086,0.244253 +bot_01793,network_bound,1.0000,1.0000,0.6776,0.7725,0.9212,0.5891,0.5510,1.0000,0.7640,0.139396,0.128331,0.211039,0.521234 +bot_01794,splash_driven,0.9936,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9876,1.0000,0.671299,0.182443,0.137860,0.008399 +bot_01795,reward_heavy,1.0000,1.0000,0.9182,1.0000,0.6261,0.8304,1.0000,0.6800,1.0000,0.704882,0.203075,0.014443,0.077600 +bot_01796,interstitial_focus,0.5844,1.0000,0.8031,0.8320,1.0000,0.5516,0.9465,1.0000,1.0000,0.241075,0.419409,0.281640,0.057876 +bot_01797,network_bound,0.8087,0.8871,0.7582,1.0000,0.5958,0.6634,0.7318,1.0000,0.8706,0.102914,0.067929,0.316841,0.512316 +bot_01798,balanced,0.9655,1.0000,0.9217,1.0000,1.0000,0.8530,0.9539,1.0000,0.9595,0.459504,0.309541,0.064863,0.166092 +bot_01799,interstitial_focus,0.8214,1.0000,0.9933,0.6378,1.0000,0.7490,0.9936,0.8612,1.0000,0.259270,0.448704,0.283452,0.008574 +bot_01800,interstitial_focus,0.5513,1.0000,0.9961,0.6632,1.0000,0.6190,1.0000,0.9740,1.0000,0.308812,0.472991,0.076106,0.142091 +bot_01801,reward_heavy,1.0000,0.9650,0.8042,1.0000,0.8578,0.7365,0.9721,0.8268,1.0000,0.686458,0.211582,0.092670,0.009290 +bot_01802,interstitial_focus,0.6365,1.0000,0.6327,0.8949,1.0000,0.7501,1.0000,1.0000,1.0000,0.229477,0.448910,0.202800,0.118813 +bot_01803,reward_heavy,1.0000,0.9623,0.9647,1.0000,0.5692,0.7004,1.0000,0.7442,1.0000,0.657994,0.196949,0.135794,0.009263 +bot_01804,interstitial_focus,0.7254,1.0000,0.6284,0.8942,1.0000,0.6830,0.8124,0.8515,1.0000,0.309540,0.378615,0.302860,0.008985 +bot_01805,reward_heavy,1.0000,0.8492,0.6263,1.0000,0.5769,0.7251,1.0000,1.0000,1.0000,0.429903,0.329237,0.149559,0.091301 +bot_01806,interstitial_focus,0.5245,1.0000,0.6613,0.7036,1.0000,0.6002,0.9373,0.8297,1.0000,0.270738,0.473935,0.241987,0.013340 +bot_01807,splash_driven,1.0000,0.9811,1.0000,1.0000,1.0000,1.0000,0.8906,0.9271,0.8735,0.632369,0.135192,0.101525,0.130914 +bot_01808,interstitial_focus,0.5689,1.0000,0.6917,0.8032,1.0000,0.8327,0.8544,0.9219,1.0000,0.501689,0.398524,0.070970,0.028817 +bot_01809,splash_driven,0.7874,0.7487,1.0000,0.8952,1.0000,1.0000,1.0000,0.9297,1.0000,0.837980,0.108316,0.041805,0.011899 +bot_01810,splash_driven,0.8945,1.0000,1.0000,0.8755,1.0000,1.0000,0.8943,0.8548,1.0000,0.699647,0.143175,0.038842,0.118336 +bot_01811,splash_driven,0.8587,0.9084,1.0000,0.9401,1.0000,1.0000,0.9865,1.0000,0.9464,0.786522,0.194945,0.009266,0.009266 +bot_01812,reward_heavy,1.0000,0.6468,0.8672,1.0000,0.8836,0.4687,1.0000,0.8040,1.0000,0.459081,0.371654,0.159996,0.009270 +bot_01813,interstitial_focus,0.5270,1.0000,1.0000,0.8879,1.0000,0.5354,0.8609,1.0000,1.0000,0.316446,0.379854,0.217964,0.085736 +bot_01814,splash_driven,0.7157,0.9569,1.0000,0.9723,1.0000,1.0000,0.9048,1.0000,0.9288,0.751871,0.153264,0.008874,0.085991 +bot_01815,interstitial_focus,0.7582,1.0000,0.7190,0.9183,1.0000,0.6252,0.8628,0.9445,0.9475,0.233348,0.376247,0.250910,0.139495 +bot_01816,balanced,1.0000,1.0000,1.0000,1.0000,0.9712,1.0000,0.9558,1.0000,0.9812,0.346689,0.315950,0.244265,0.093096 +bot_01817,balanced,0.8226,1.0000,0.8901,1.0000,1.0000,1.0000,0.8479,1.0000,0.9771,0.393583,0.410891,0.186540,0.008986 +bot_01818,reward_heavy,1.0000,0.9171,0.7171,1.0000,0.7255,0.5511,1.0000,1.0000,1.0000,0.648935,0.328857,0.012502,0.009707 +bot_01819,network_bound,0.8374,0.8596,0.7454,0.9062,0.8646,0.7923,0.7309,1.0000,0.7243,0.031953,0.211807,0.365406,0.390834 +bot_01820,interstitial_focus,0.6394,1.0000,0.6479,0.6390,1.0000,0.8258,0.9378,0.9959,1.0000,0.390328,0.399152,0.176182,0.034337 +bot_01821,reward_heavy,1.0000,0.7390,0.8389,1.0000,0.9398,0.7096,1.0000,0.8859,1.0000,0.567556,0.166913,0.233179,0.032352 +bot_01822,reward_heavy,1.0000,0.9439,0.7093,1.0000,0.7951,0.6296,0.9789,1.0000,1.0000,0.536000,0.322661,0.133717,0.007621 +bot_01823,splash_driven,0.9067,0.9542,1.0000,0.8034,1.0000,1.0000,1.0000,0.9503,0.9162,0.659593,0.199417,0.036033,0.104957 +bot_01824,interstitial_focus,0.9160,1.0000,0.8960,0.7083,1.0000,0.5533,0.8238,1.0000,1.0000,0.357951,0.401059,0.167352,0.073638 +bot_01825,balanced,1.0000,1.0000,0.9103,0.8943,0.8245,0.9560,0.8948,0.9113,1.0000,0.416913,0.341295,0.131850,0.109943 +bot_01826,balanced,0.9535,1.0000,1.0000,0.8978,0.9436,1.0000,0.8551,1.0000,1.0000,0.501632,0.342647,0.074157,0.081565 +bot_01827,reward_heavy,1.0000,0.8902,1.0000,1.0000,0.7226,0.4785,1.0000,0.6801,1.0000,0.507438,0.301794,0.180861,0.009907 +bot_01828,interstitial_focus,0.9151,1.0000,0.7027,0.6596,1.0000,0.7127,1.0000,1.0000,0.9932,0.372990,0.406875,0.178912,0.041224 +bot_01829,reward_heavy,1.0000,0.7644,0.7814,1.0000,0.7409,0.7053,1.0000,0.8198,1.0000,0.589563,0.260188,0.012739,0.137510 +bot_01830,network_bound,0.6829,0.7979,0.9403,0.7319,0.6783,0.5355,0.5463,1.0000,0.8266,0.233836,0.090569,0.216237,0.459358 +bot_01831,splash_driven,0.7988,0.8817,1.0000,0.9926,1.0000,1.0000,0.9329,0.8277,1.0000,0.667501,0.312338,0.010080,0.010080 +bot_01832,splash_driven,0.7220,0.9546,1.0000,1.0000,0.9375,1.0000,0.9224,0.8708,0.8909,0.634600,0.251883,0.009934,0.103583 +bot_01833,balanced,0.8240,1.0000,1.0000,0.9930,1.0000,1.0000,1.0000,0.9465,0.9295,0.506823,0.267328,0.212089,0.013760 +bot_01834,balanced,1.0000,1.0000,0.8986,0.9899,1.0000,0.9424,1.0000,0.9088,0.9240,0.402062,0.392100,0.112936,0.092902 +bot_01835,reward_heavy,1.0000,0.6373,0.6384,1.0000,0.6953,0.7470,0.9687,0.8379,1.0000,0.732658,0.239456,0.013943,0.013943 +bot_01836,network_bound,0.6959,0.7269,0.6767,1.0000,0.8338,0.6195,0.5423,1.0000,0.7787,0.230905,0.120188,0.362938,0.285969 +bot_01837,reward_heavy,1.0000,0.9403,0.6144,1.0000,0.9784,0.8283,0.9180,0.9415,1.0000,0.564847,0.259410,0.090470,0.085274 +bot_01838,interstitial_focus,0.8381,1.0000,0.9880,0.8313,1.0000,0.8896,0.9745,0.8340,1.0000,0.430773,0.367987,0.188695,0.012544 +bot_01839,balanced,1.0000,1.0000,1.0000,1.0000,0.8339,1.0000,0.8576,0.8749,0.8980,0.422062,0.238812,0.150957,0.188169 +bot_01840,reward_heavy,1.0000,0.6235,0.8337,1.0000,0.9540,0.7073,1.0000,0.8361,1.0000,0.699885,0.269914,0.015101,0.015101 +bot_01841,churn_sensitive,0.6474,0.6602,0.5943,0.7064,0.7032,0.5931,0.8450,1.0000,0.6625,0.277105,0.192129,0.285688,0.245078 +bot_01842,balanced,0.8863,0.9800,1.0000,1.0000,1.0000,1.0000,1.0000,0.9057,0.8975,0.375239,0.414807,0.122078,0.087875 +bot_01843,balanced,1.0000,0.8976,0.9566,0.9000,1.0000,0.7838,0.9098,0.9084,0.9576,0.459726,0.272925,0.258157,0.009191 +bot_01844,interstitial_focus,0.9196,1.0000,0.8257,0.8953,1.0000,0.6479,0.9046,0.8936,1.0000,0.255391,0.398690,0.332673,0.013247 +bot_01845,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8254,0.8477,1.0000,0.9592,0.369165,0.257855,0.230330,0.142650 +bot_01846,balanced,1.0000,1.0000,1.0000,0.9290,1.0000,0.9176,1.0000,0.9204,0.9600,0.363356,0.253265,0.372025,0.011355 +bot_01847,interstitial_focus,0.6964,1.0000,0.7456,0.8679,1.0000,0.7183,1.0000,0.9466,0.9858,0.224693,0.531401,0.227064,0.016843 +bot_01848,reward_heavy,1.0000,0.7973,0.7349,1.0000,0.7407,0.6801,1.0000,0.8503,1.0000,0.684829,0.271590,0.034317,0.009263 +bot_01849,reward_heavy,1.0000,0.9683,0.8239,1.0000,0.6934,0.5254,0.9394,0.8487,1.0000,0.502620,0.290948,0.107188,0.099245 +bot_01850,network_bound,0.6142,0.9976,0.5951,0.9771,0.9653,0.9000,0.7537,1.0000,0.8345,0.030185,0.271511,0.411780,0.286524 +bot_01851,balanced,1.0000,0.9962,0.9871,0.8881,1.0000,1.0000,0.9561,1.0000,1.0000,0.519455,0.302315,0.160749,0.017482 +bot_01852,reward_heavy,1.0000,0.6575,0.9031,1.0000,0.9705,0.4030,1.0000,0.9097,1.0000,0.498694,0.372486,0.008693,0.120127 +bot_01853,splash_driven,0.6757,0.9139,1.0000,1.0000,1.0000,1.0000,1.0000,0.9957,0.9115,0.766562,0.039370,0.011265,0.182803 +bot_01854,splash_driven,0.8706,0.8855,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9593,0.745098,0.174119,0.009418,0.071364 +bot_01855,splash_driven,0.9108,0.8861,1.0000,1.0000,1.0000,1.0000,1.0000,0.9771,0.8508,0.746866,0.134391,0.110354,0.008389 +bot_01856,interstitial_focus,0.8195,1.0000,1.0000,0.5712,1.0000,0.5244,1.0000,0.9433,1.0000,0.245044,0.430963,0.280770,0.043223 +bot_01857,interstitial_focus,0.7449,1.0000,1.0000,0.5913,1.0000,0.9156,0.8344,1.0000,1.0000,0.376594,0.400398,0.148965,0.074042 +bot_01858,reward_heavy,1.0000,1.0000,0.8412,1.0000,0.6399,0.6857,1.0000,1.0000,1.0000,0.449110,0.337530,0.162743,0.050618 +bot_01859,interstitial_focus,0.8366,1.0000,0.7870,0.6775,1.0000,0.6177,1.0000,0.9504,0.9412,0.419980,0.396052,0.054859,0.129109 +bot_01860,balanced,0.8477,0.9103,1.0000,1.0000,0.7887,0.9159,1.0000,0.8420,0.9417,0.316830,0.264299,0.300240,0.118631 +bot_01861,balanced,0.9798,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9576,0.262533,0.427205,0.300556,0.009706 +bot_01862,interstitial_focus,0.5343,1.0000,1.0000,0.8646,1.0000,0.6336,0.8505,0.8313,1.0000,0.416252,0.401424,0.171761,0.010563 +bot_01863,interstitial_focus,0.6497,1.0000,1.0000,0.6334,1.0000,0.8829,0.8148,1.0000,1.0000,0.269514,0.435057,0.147983,0.147446 +bot_01864,interstitial_focus,0.8019,1.0000,0.8553,0.6190,1.0000,0.6219,1.0000,1.0000,0.9645,0.227892,0.597275,0.144722,0.030111 +bot_01865,balanced,1.0000,1.0000,1.0000,1.0000,0.9684,0.9926,1.0000,0.8230,0.9522,0.492424,0.255809,0.209353,0.042414 +bot_01866,splash_driven,0.8816,0.8579,1.0000,1.0000,1.0000,1.0000,0.8627,1.0000,0.9646,0.753318,0.149103,0.055918,0.041661 +bot_01867,splash_driven,0.9323,1.0000,1.0000,0.9519,0.9108,1.0000,1.0000,1.0000,0.8622,0.573740,0.251518,0.065287,0.109455 +bot_01868,reward_heavy,1.0000,0.6930,0.6521,1.0000,0.7048,0.6935,1.0000,0.7087,1.0000,0.656615,0.294865,0.039429,0.009091 +bot_01869,interstitial_focus,0.8293,1.0000,0.8703,0.8900,1.0000,0.5412,0.9387,1.0000,1.0000,0.436480,0.313235,0.159597,0.090688 +bot_01870,interstitial_focus,0.8586,1.0000,0.8995,0.8089,1.0000,0.5044,0.9065,0.8879,1.0000,0.362212,0.395192,0.234109,0.008487 +bot_01871,splash_driven,0.8076,0.7787,1.0000,0.9444,0.8684,1.0000,0.8542,1.0000,0.8630,0.717783,0.265275,0.008471,0.008471 +bot_01872,reward_heavy,1.0000,0.9101,1.0000,1.0000,0.8426,0.5362,1.0000,0.8187,1.0000,0.704221,0.256818,0.028946,0.010015 +bot_01873,interstitial_focus,0.7860,1.0000,0.7762,0.8844,1.0000,0.5519,0.9675,0.9095,0.9762,0.252371,0.347256,0.282841,0.117532 +bot_01874,reward_heavy,1.0000,0.9329,0.8501,1.0000,0.7432,0.4009,0.9092,0.7485,1.0000,0.551198,0.409904,0.026858,0.012040 +bot_01875,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.441463,0.206835,0.289437,0.062265 +bot_01876,interstitial_focus,0.5879,1.0000,0.8782,0.6427,1.0000,0.7018,0.9947,0.9426,1.0000,0.273370,0.512380,0.097367,0.116883 +bot_01877,reward_heavy,1.0000,0.5974,0.6568,1.0000,0.6871,0.6867,0.8875,0.7084,1.0000,0.435837,0.302665,0.207136,0.054363 +bot_01878,reward_heavy,1.0000,0.6343,0.9184,1.0000,0.7343,0.4261,1.0000,1.0000,1.0000,0.463653,0.383565,0.078086,0.074696 +bot_01879,network_bound,1.0000,0.9683,0.8469,0.9063,0.9335,0.6982,0.5372,1.0000,0.8399,0.062390,0.183998,0.295782,0.457830 +bot_01880,balanced,0.8566,0.9292,1.0000,1.0000,0.7919,0.8457,1.0000,0.8235,0.9986,0.477742,0.304322,0.208349,0.009587 +bot_01881,balanced,0.9720,1.0000,0.9675,1.0000,1.0000,0.8737,0.8408,0.8395,1.0000,0.318813,0.262288,0.320094,0.098805 +bot_01882,interstitial_focus,0.6019,1.0000,0.8326,0.6913,1.0000,0.7610,1.0000,1.0000,1.0000,0.299225,0.435005,0.243506,0.022263 +bot_01883,splash_driven,0.9708,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8811,1.0000,0.799335,0.092082,0.010416,0.098167 +bot_01884,interstitial_focus,0.8947,1.0000,0.6695,0.7006,1.0000,0.6141,0.8456,1.0000,1.0000,0.268253,0.501860,0.218716,0.011172 +bot_01885,network_bound,0.6776,0.7411,0.7099,1.0000,0.6024,0.7340,0.7563,1.0000,0.8467,0.152336,0.208832,0.376924,0.261907 +bot_01886,balanced,0.8820,1.0000,1.0000,1.0000,1.0000,0.8825,1.0000,1.0000,1.0000,0.399134,0.250051,0.336189,0.014626 +bot_01887,network_bound,0.7828,0.8409,0.8500,0.6759,0.6722,0.5578,0.6237,1.0000,0.7008,0.010842,0.325574,0.308454,0.355130 +bot_01888,churn_sensitive,0.4435,0.4303,0.3216,0.5748,0.5829,0.6014,0.7815,1.0000,0.4924,0.342038,0.193408,0.289439,0.175116 +bot_01889,reward_heavy,1.0000,0.7034,0.9556,1.0000,0.7905,0.5108,1.0000,0.8472,1.0000,0.451037,0.325752,0.114563,0.108648 +bot_01890,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.449226,0.411322,0.130326,0.009127 +bot_01891,reward_heavy,1.0000,0.8358,0.7860,1.0000,0.9311,0.7666,0.9004,0.7150,1.0000,0.679952,0.281804,0.028690,0.009554 +bot_01892,splash_driven,0.6483,1.0000,1.0000,0.8029,1.0000,1.0000,0.8778,1.0000,0.9134,0.569735,0.251655,0.169760,0.008850 +bot_01893,network_bound,0.8684,0.8806,0.9983,0.9125,0.8125,0.8709,0.8339,1.0000,0.8406,0.214854,0.135337,0.240818,0.408992 +bot_01894,splash_driven,0.9457,1.0000,1.0000,1.0000,1.0000,1.0000,0.8734,1.0000,0.9491,0.838590,0.140932,0.010239,0.010239 +bot_01895,network_bound,0.9549,0.6267,0.8216,0.6870,0.9142,0.9226,0.7987,1.0000,0.8028,0.025351,0.288531,0.273168,0.412950 +bot_01896,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9690,1.0000,0.9978,0.372149,0.254685,0.361447,0.011719 +bot_01897,interstitial_focus,0.9543,1.0000,1.0000,0.7218,1.0000,0.5868,1.0000,1.0000,0.9358,0.309105,0.343310,0.228972,0.118613 +bot_01898,network_bound,0.7896,0.7276,0.8125,0.6753,0.7656,0.5262,0.6279,1.0000,0.8155,0.151050,0.068877,0.331193,0.448880 +bot_01899,balanced,0.9798,1.0000,0.8928,0.8876,1.0000,1.0000,1.0000,1.0000,1.0000,0.355434,0.365607,0.268727,0.010232 +bot_01900,churn_sensitive,0.3467,0.4994,0.3856,0.7401,0.6594,0.4672,0.8405,1.0000,0.5471,0.147430,0.227549,0.450880,0.174141 +bot_01901,reward_heavy,1.0000,0.6228,0.8716,1.0000,0.7219,0.7539,0.9217,0.7460,1.0000,0.541151,0.236302,0.076300,0.146247 +bot_01902,reward_heavy,1.0000,0.8650,0.8404,1.0000,0.6892,0.4830,1.0000,0.9638,1.0000,0.606021,0.167323,0.193734,0.032922 +bot_01903,splash_driven,0.7346,0.8427,1.0000,1.0000,0.8733,1.0000,0.9109,1.0000,0.9411,0.738736,0.096146,0.097658,0.067460 +bot_01904,balanced,1.0000,0.9846,0.8625,1.0000,0.9008,1.0000,0.8888,1.0000,0.9964,0.477219,0.371048,0.142758,0.008975 +bot_01905,network_bound,0.9728,0.6156,0.7549,0.9854,0.9729,0.6307,0.7736,1.0000,0.8985,0.039053,0.052457,0.406016,0.502475 +bot_01906,balanced,1.0000,1.0000,1.0000,0.9880,0.9786,0.8779,1.0000,1.0000,1.0000,0.357326,0.312882,0.247266,0.082526 +bot_01907,splash_driven,0.9846,0.8597,1.0000,1.0000,0.9365,1.0000,0.7711,1.0000,0.9360,0.780856,0.087699,0.010952,0.120493 +bot_01908,interstitial_focus,0.5659,1.0000,0.7120,0.9811,1.0000,0.5130,0.9689,1.0000,1.0000,0.245348,0.553443,0.190433,0.010777 +bot_01909,reward_heavy,1.0000,0.7557,0.7182,1.0000,0.6377,0.6777,1.0000,0.7573,1.0000,0.599350,0.222015,0.170517,0.008118 +bot_01910,balanced,0.9093,1.0000,1.0000,1.0000,0.9401,0.9411,1.0000,0.9190,0.9156,0.291333,0.346675,0.273422,0.088570 +bot_01911,splash_driven,1.0000,0.9807,1.0000,0.8584,0.9692,1.0000,1.0000,1.0000,0.8676,0.592183,0.227103,0.171777,0.008937 +bot_01912,network_bound,0.7897,1.0000,0.8789,0.7332,0.6997,0.9284,0.6613,1.0000,0.8678,0.020957,0.203068,0.287536,0.488439 +bot_01913,reward_heavy,1.0000,0.8178,0.7809,1.0000,0.6924,0.7403,0.9205,0.9871,1.0000,0.593107,0.168319,0.228550,0.010025 +bot_01914,reward_heavy,1.0000,0.8393,0.8860,1.0000,0.8303,0.8335,1.0000,0.8750,1.0000,0.658903,0.176399,0.011188,0.153510 +bot_01915,churn_sensitive,0.7795,0.5642,0.3382,0.7413,0.5210,0.5453,0.8604,1.0000,0.6080,0.307835,0.263952,0.277017,0.151196 +bot_01916,interstitial_focus,0.8656,1.0000,0.9288,0.6911,1.0000,0.6748,0.8481,1.0000,1.0000,0.424186,0.439557,0.121624,0.014634 +bot_01917,interstitial_focus,0.6079,1.0000,0.9722,0.7534,1.0000,0.6913,0.9499,1.0000,1.0000,0.346611,0.375749,0.268927,0.008712 +bot_01918,reward_heavy,1.0000,0.6109,0.9646,1.0000,0.9421,0.7776,1.0000,0.8498,1.0000,0.636212,0.342415,0.010687,0.010687 +bot_01919,reward_heavy,1.0000,0.6960,0.9643,1.0000,0.8470,0.4970,1.0000,0.7780,1.0000,0.545351,0.339789,0.011566,0.103294 +bot_01920,balanced,1.0000,0.9612,1.0000,0.9594,0.9739,0.8822,0.8804,1.0000,1.0000,0.383366,0.427997,0.177864,0.010773 +bot_01921,splash_driven,0.9929,1.0000,1.0000,0.9083,0.8507,1.0000,0.8072,1.0000,0.9344,0.789629,0.129546,0.011023,0.069802 +bot_01922,network_bound,0.9832,0.9428,0.6563,0.7716,0.5754,0.6976,0.5371,1.0000,0.8890,0.107127,0.279423,0.200092,0.413358 +bot_01923,network_bound,0.9182,0.8725,0.6268,1.0000,0.8596,0.5958,0.5653,1.0000,0.7460,0.132708,0.165414,0.323296,0.378582 +bot_01924,network_bound,0.7443,0.7547,0.8030,0.9012,0.9006,0.8791,0.5355,1.0000,0.8662,0.190188,0.180572,0.284466,0.344774 +bot_01925,reward_heavy,1.0000,0.8103,0.6389,1.0000,0.8854,0.7624,0.9560,0.8880,1.0000,0.427276,0.376701,0.125825,0.070198 +bot_01926,reward_heavy,1.0000,0.8914,0.9542,1.0000,0.9120,0.5881,1.0000,0.7812,1.0000,0.598357,0.143021,0.100016,0.158605 +bot_01927,interstitial_focus,0.5379,1.0000,0.6528,0.9962,1.0000,0.5837,0.8562,1.0000,1.0000,0.360000,0.485459,0.145247,0.009295 +bot_01928,reward_heavy,1.0000,0.8009,0.7353,1.0000,0.9756,0.8201,1.0000,0.7918,1.0000,0.616245,0.288689,0.083452,0.011614 +bot_01929,balanced,1.0000,1.0000,0.8991,1.0000,1.0000,0.8585,1.0000,0.9290,0.9698,0.245136,0.353542,0.252575,0.148748 +bot_01930,interstitial_focus,0.5009,1.0000,0.7120,0.6442,1.0000,0.6790,0.8299,1.0000,0.9833,0.414430,0.366092,0.210324,0.009154 +bot_01931,interstitial_focus,0.7940,1.0000,0.7774,0.8146,1.0000,0.7255,1.0000,1.0000,1.0000,0.424940,0.371722,0.168593,0.034746 +bot_01932,churn_sensitive,0.5547,0.8795,0.4587,0.4354,0.5434,0.2622,0.6519,1.0000,0.6874,0.338671,0.158202,0.213859,0.289269 +bot_01933,reward_heavy,1.0000,0.9791,0.6051,1.0000,0.8903,0.6766,0.9486,0.8398,1.0000,0.639877,0.228946,0.033884,0.097292 +bot_01934,reward_heavy,1.0000,0.8059,0.9473,1.0000,0.6747,0.7608,1.0000,0.9742,1.0000,0.575428,0.225373,0.068866,0.130332 +bot_01935,interstitial_focus,0.6947,1.0000,1.0000,0.7160,1.0000,0.5457,1.0000,0.8865,1.0000,0.405494,0.373602,0.107230,0.113674 +bot_01936,churn_sensitive,0.6266,0.5226,0.5081,0.5828,0.6729,0.6314,0.7371,1.0000,0.5282,0.286398,0.405319,0.177807,0.130475 +bot_01937,interstitial_focus,0.7576,1.0000,0.8617,0.7926,1.0000,0.6820,1.0000,1.0000,0.9889,0.288106,0.574632,0.120907,0.016355 +bot_01938,reward_heavy,1.0000,0.9269,0.8744,1.0000,0.7554,0.6640,1.0000,0.7511,1.0000,0.603884,0.205783,0.035431,0.154903 +bot_01939,interstitial_focus,0.6027,1.0000,0.7548,0.7694,1.0000,0.7131,0.8826,1.0000,1.0000,0.194800,0.480486,0.180624,0.144090 +bot_01940,balanced,0.8741,1.0000,1.0000,0.8966,1.0000,0.9054,1.0000,1.0000,0.9035,0.316940,0.338736,0.216709,0.127614 +bot_01941,network_bound,1.0000,0.7878,0.6337,0.7025,0.9647,0.9000,0.5201,1.0000,0.7866,0.022693,0.076084,0.451834,0.449389 +bot_01942,reward_heavy,1.0000,0.7518,1.0000,1.0000,0.7409,0.8209,1.0000,0.8703,1.0000,0.595495,0.171230,0.202441,0.030834 +bot_01943,splash_driven,0.7088,1.0000,1.0000,1.0000,1.0000,1.0000,0.7982,0.9371,0.8661,0.665135,0.129346,0.095754,0.109765 +bot_01944,reward_heavy,1.0000,1.0000,0.7387,1.0000,0.8680,0.5512,1.0000,0.7694,1.0000,0.447843,0.320856,0.119236,0.112064 +bot_01945,balanced,0.9285,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9530,0.526800,0.224363,0.239196,0.009641 +bot_01946,churn_sensitive,0.6879,0.4684,0.5019,0.6262,0.6532,0.5417,0.7867,1.0000,0.4720,0.289706,0.232153,0.206982,0.271159 +bot_01947,network_bound,0.7936,0.7274,1.0000,0.8335,0.7350,0.6827,0.6622,1.0000,0.9146,0.143604,0.258853,0.187750,0.409793 +bot_01948,reward_heavy,1.0000,0.7213,0.6601,1.0000,0.7736,0.6946,1.0000,0.9340,1.0000,0.789954,0.171453,0.026438,0.012154 +bot_01949,reward_heavy,1.0000,0.7803,0.5993,1.0000,0.8780,0.4126,1.0000,0.7023,1.0000,0.533620,0.325786,0.129213,0.011381 +bot_01950,interstitial_focus,0.8429,1.0000,0.9884,0.8189,1.0000,0.5833,0.9213,1.0000,1.0000,0.319245,0.389890,0.102669,0.188196 +bot_01951,churn_sensitive,0.6894,0.6284,0.6218,0.6331,0.7635,0.4348,0.6044,1.0000,0.5748,0.118837,0.344658,0.343385,0.193121 +bot_01952,interstitial_focus,0.5359,1.0000,0.6359,0.7936,1.0000,0.8547,1.0000,0.8389,1.0000,0.364321,0.415115,0.129591,0.090973 +bot_01953,network_bound,0.6675,1.0000,0.7884,0.9031,0.8032,0.7577,0.5862,1.0000,0.8995,0.066445,0.197866,0.283594,0.452095 +bot_01954,balanced,1.0000,1.0000,1.0000,1.0000,0.8618,1.0000,1.0000,0.8123,1.0000,0.308594,0.329961,0.258182,0.103263 +bot_01955,interstitial_focus,0.7106,1.0000,0.7195,0.5979,1.0000,0.8998,1.0000,0.8873,0.9642,0.367276,0.371567,0.233898,0.027259 +bot_01956,splash_driven,0.7353,1.0000,1.0000,1.0000,0.8877,1.0000,0.9710,0.9521,0.8590,0.730741,0.131847,0.127338,0.010073 +bot_01957,balanced,0.8271,1.0000,1.0000,1.0000,1.0000,0.9491,1.0000,0.8515,0.9510,0.252107,0.307599,0.288630,0.151664 +bot_01958,splash_driven,0.7120,1.0000,1.0000,0.9337,1.0000,1.0000,0.8279,0.8169,0.8614,0.715184,0.036169,0.098710,0.149938 +bot_01959,splash_driven,0.7317,0.9050,1.0000,1.0000,1.0000,1.0000,0.9524,1.0000,0.9586,0.792805,0.083979,0.112808,0.010408 +bot_01960,balanced,0.8832,1.0000,1.0000,0.9260,1.0000,0.9926,1.0000,0.9684,0.9570,0.250984,0.385514,0.259821,0.103680 +bot_01961,churn_sensitive,0.3349,0.6677,0.5644,0.4619,0.5482,0.5589,0.5746,1.0000,0.6512,0.346076,0.273921,0.189340,0.190662 +bot_01962,balanced,1.0000,1.0000,0.9677,0.9365,0.9298,0.9795,0.9810,1.0000,0.8866,0.318073,0.413449,0.256421,0.012056 +bot_01963,reward_heavy,1.0000,0.7710,0.8870,1.0000,0.6579,0.8058,1.0000,0.7270,1.0000,0.621868,0.247144,0.045430,0.085557 +bot_01964,reward_heavy,1.0000,0.8418,0.7755,1.0000,0.8188,0.4035,1.0000,0.9641,1.0000,0.526499,0.247677,0.140619,0.085205 +bot_01965,reward_heavy,1.0000,0.9340,0.8279,1.0000,0.6331,0.7415,0.9000,0.8619,1.0000,0.559167,0.195127,0.236174,0.009531 +bot_01966,interstitial_focus,0.7374,1.0000,0.9659,0.7418,1.0000,0.5837,1.0000,0.8393,0.9857,0.208008,0.416913,0.185345,0.189733 +bot_01967,splash_driven,1.0000,1.0000,1.0000,0.9282,1.0000,1.0000,1.0000,1.0000,1.0000,0.747404,0.231834,0.010381,0.010381 +bot_01968,churn_sensitive,0.3181,0.6460,0.3077,0.6864,0.7156,0.5106,0.7938,1.0000,0.5151,0.166031,0.292507,0.387811,0.153650 +bot_01969,balanced,1.0000,1.0000,1.0000,0.8863,0.8142,0.9564,0.9087,0.9864,1.0000,0.384010,0.302139,0.146870,0.166981 +bot_01970,churn_sensitive,0.5066,0.4815,0.5832,0.6521,0.5671,0.2767,0.7382,1.0000,0.6967,0.260607,0.228914,0.291070,0.219410 +bot_01971,balanced,1.0000,1.0000,1.0000,0.8402,1.0000,0.8398,1.0000,0.8790,1.0000,0.417322,0.415206,0.153726,0.013746 +bot_01972,reward_heavy,1.0000,0.7366,0.9058,1.0000,0.8409,0.4314,1.0000,0.9513,1.0000,0.590206,0.347449,0.051124,0.011221 +bot_01973,splash_driven,0.7243,0.9013,1.0000,1.0000,0.8315,1.0000,0.9910,0.8657,0.9485,0.654304,0.155104,0.112646,0.077945 +bot_01974,network_bound,1.0000,0.7149,0.9828,0.9225,0.9835,0.7604,0.5771,1.0000,0.7308,0.085104,0.263089,0.232886,0.418920 +bot_01975,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.7379,0.7006,1.0000,0.8792,1.0000,0.517582,0.373591,0.098486,0.010340 +bot_01976,balanced,1.0000,1.0000,1.0000,0.8860,1.0000,0.9668,1.0000,0.9160,0.9524,0.295720,0.300370,0.253567,0.150343 +bot_01977,network_bound,1.0000,0.9740,0.6653,1.0000,0.9532,0.8785,0.8036,1.0000,0.9119,0.226146,0.199768,0.150694,0.423391 +bot_01978,splash_driven,1.0000,1.0000,1.0000,1.0000,0.8816,1.0000,0.7608,0.9898,0.9927,0.711503,0.206493,0.071482,0.010523 +bot_01979,reward_heavy,1.0000,1.0000,0.5952,1.0000,0.5603,0.7302,0.9469,0.8650,1.0000,0.518388,0.360161,0.112971,0.008480 +bot_01980,interstitial_focus,0.7623,1.0000,0.7894,0.8763,1.0000,0.8012,0.9881,1.0000,1.0000,0.339617,0.478764,0.153631,0.027989 +bot_01981,interstitial_focus,0.8637,1.0000,0.8791,0.6485,1.0000,0.6773,0.8808,1.0000,1.0000,0.374063,0.453865,0.162200,0.009873 +bot_01982,reward_heavy,1.0000,0.8819,0.6857,1.0000,0.5856,0.5522,0.9964,1.0000,1.0000,0.588131,0.379054,0.009710,0.023104 +bot_01983,churn_sensitive,0.4685,0.7535,0.6279,0.6095,0.6404,0.5232,0.7646,1.0000,0.4647,0.231347,0.250975,0.278973,0.238705 +bot_01984,interstitial_focus,0.6709,1.0000,0.6418,0.7785,1.0000,0.7516,0.9643,1.0000,1.0000,0.218886,0.544945,0.076116,0.160053 +bot_01985,reward_heavy,1.0000,0.7435,1.0000,1.0000,0.6421,0.7862,1.0000,0.6800,1.0000,0.635243,0.228678,0.126910,0.009169 +bot_01986,splash_driven,0.9505,0.9147,1.0000,1.0000,1.0000,1.0000,0.9891,1.0000,1.0000,0.673117,0.176805,0.009067,0.141010 +bot_01987,network_bound,0.6449,0.8586,0.6505,0.7886,0.9071,0.5980,0.8278,1.0000,0.7981,0.069279,0.086122,0.296864,0.547736 +bot_01988,interstitial_focus,0.7783,1.0000,0.7786,0.5942,1.0000,0.7780,0.9199,0.9187,1.0000,0.303439,0.348240,0.208928,0.139393 +bot_01989,network_bound,0.7461,0.9174,0.9279,0.7777,0.7896,0.8073,0.8220,1.0000,0.7354,0.147375,0.225651,0.275655,0.351318 +bot_01990,churn_sensitive,0.3913,0.4970,0.5715,0.7983,0.7413,0.6679,0.5706,0.9810,0.5352,0.304452,0.168137,0.407083,0.120327 +bot_01991,network_bound,0.9668,0.7759,0.7654,0.7240,0.7502,0.5005,0.7252,1.0000,0.7626,0.024436,0.245436,0.448546,0.281582 +bot_01992,interstitial_focus,0.8862,1.0000,0.6659,0.6922,1.0000,0.8204,1.0000,1.0000,1.0000,0.479226,0.384258,0.122360,0.014155 +bot_01993,network_bound,0.8217,0.8125,0.6979,0.9089,0.8972,0.8990,0.5241,1.0000,0.7391,0.145367,0.208188,0.295266,0.351179 +bot_01994,balanced,1.0000,0.9152,1.0000,1.0000,0.9628,1.0000,0.8863,1.0000,0.9405,0.351794,0.282385,0.221920,0.143901 +bot_01995,interstitial_focus,0.5662,1.0000,0.6477,0.7698,1.0000,0.5877,0.9363,1.0000,1.0000,0.199816,0.443997,0.346271,0.009916 +bot_01996,reward_heavy,1.0000,0.8854,0.6637,1.0000,0.7510,0.4694,1.0000,1.0000,1.0000,0.667212,0.250965,0.014483,0.067341 +bot_01997,interstitial_focus,0.5601,1.0000,0.9409,0.7556,1.0000,0.8706,1.0000,1.0000,0.9329,0.289342,0.411767,0.183185,0.115707 +bot_01998,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9390,0.466224,0.226748,0.294405,0.012623 +bot_01999,churn_sensitive,0.6784,0.6292,0.6498,0.4318,0.6242,0.4557,0.6866,0.9832,0.5790,0.191996,0.264674,0.215765,0.327566 +bot_02000,network_bound,0.9111,1.0000,0.9928,1.0000,0.8806,0.6775,0.5395,1.0000,0.7399,0.299133,0.219683,0.188060,0.293123 +bot_02001,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8462,1.0000,0.8880,0.278801,0.353461,0.344985,0.022753 +bot_02002,balanced,0.8308,1.0000,0.9527,0.8384,1.0000,0.8237,1.0000,1.0000,0.9842,0.318354,0.315529,0.320438,0.045678 +bot_02003,interstitial_focus,0.5013,1.0000,0.8983,0.7092,1.0000,0.5570,0.8700,0.9191,1.0000,0.373309,0.382704,0.218106,0.025880 +bot_02004,interstitial_focus,0.5541,1.0000,0.9555,0.6192,1.0000,0.7076,1.0000,1.0000,0.9395,0.319719,0.331181,0.239243,0.109856 +bot_02005,splash_driven,1.0000,0.8486,1.0000,0.8162,0.9329,1.0000,0.9316,1.0000,0.9854,0.687395,0.154115,0.149678,0.008813 +bot_02006,interstitial_focus,0.9177,1.0000,0.6177,0.8172,1.0000,0.7792,0.8274,0.9146,1.0000,0.357483,0.394010,0.237146,0.011361 +bot_02007,splash_driven,0.8576,0.9717,1.0000,1.0000,0.8303,1.0000,0.9163,1.0000,1.0000,0.779744,0.050500,0.073863,0.095893 +bot_02008,reward_heavy,1.0000,0.8014,0.7030,1.0000,0.8529,0.7362,1.0000,0.9817,1.0000,0.646090,0.335520,0.009195,0.009195 +bot_02009,splash_driven,0.9373,0.6938,1.0000,0.8929,0.8245,1.0000,0.9914,1.0000,0.9247,0.720127,0.262038,0.008917,0.008917 +bot_02010,balanced,1.0000,0.8937,1.0000,1.0000,1.0000,1.0000,0.9154,0.8242,1.0000,0.323988,0.349441,0.242370,0.084201 +bot_02011,interstitial_focus,0.8968,1.0000,0.7220,0.9109,1.0000,0.7877,1.0000,0.9079,1.0000,0.221908,0.451942,0.235752,0.090398 +bot_02012,splash_driven,1.0000,1.0000,1.0000,1.0000,0.8975,1.0000,0.8608,0.9899,0.8461,0.849613,0.079709,0.011307,0.059371 +bot_02013,reward_heavy,1.0000,1.0000,0.6150,1.0000,0.5600,0.5174,0.9902,0.7425,1.0000,0.476088,0.382500,0.131656,0.009755 +bot_02014,churn_sensitive,0.3223,0.5997,0.3402,0.8140,0.4403,0.5456,0.7042,1.0000,0.4905,0.203435,0.208144,0.337428,0.250992 +bot_02015,reward_heavy,1.0000,0.5846,0.6445,1.0000,0.8298,0.4786,1.0000,0.6817,1.0000,0.599270,0.381765,0.009483,0.009483 +bot_02016,reward_heavy,1.0000,0.6042,0.6088,1.0000,0.8445,0.7499,1.0000,0.8649,1.0000,0.476616,0.375828,0.050482,0.097074 +bot_02017,splash_driven,0.7377,0.8986,1.0000,1.0000,1.0000,1.0000,0.9639,1.0000,1.0000,0.757809,0.043403,0.105013,0.093775 +bot_02018,splash_driven,0.8139,1.0000,1.0000,1.0000,0.8387,1.0000,1.0000,1.0000,0.8520,0.642972,0.261299,0.086324,0.009405 +bot_02019,reward_heavy,1.0000,0.8697,0.8690,1.0000,0.5784,0.6659,1.0000,0.9716,1.0000,0.546044,0.264893,0.144397,0.044665 +bot_02020,reward_heavy,1.0000,0.6295,0.8508,1.0000,0.8869,0.8142,0.9006,0.8325,1.0000,0.607955,0.159977,0.213905,0.018164 +bot_02021,network_bound,0.8594,0.6909,0.8544,0.6789,0.9738,0.7631,0.6961,1.0000,0.7098,0.088585,0.159860,0.230560,0.520996 +bot_02022,reward_heavy,1.0000,0.7059,0.9673,1.0000,0.8922,0.6525,1.0000,0.6922,1.0000,0.598442,0.301644,0.090672,0.009242 +bot_02023,reward_heavy,1.0000,1.0000,0.7143,1.0000,0.5443,0.8299,0.9203,0.7723,1.0000,0.684734,0.160445,0.096066,0.058755 +bot_02024,balanced,0.9148,1.0000,1.0000,1.0000,1.0000,0.9418,1.0000,0.8618,1.0000,0.370721,0.226606,0.287656,0.115017 +bot_02025,balanced,0.8409,1.0000,0.9972,0.8832,1.0000,1.0000,0.9493,0.9019,0.8936,0.524258,0.275913,0.190103,0.009726 +bot_02026,splash_driven,0.7541,0.9916,1.0000,0.9762,0.9716,1.0000,0.9100,0.8872,0.9484,0.803731,0.171781,0.012244,0.012244 +bot_02027,interstitial_focus,0.7953,1.0000,1.0000,0.7663,1.0000,0.7236,0.9490,1.0000,1.0000,0.317978,0.355171,0.188442,0.138409 +bot_02028,reward_heavy,1.0000,0.9655,0.6407,1.0000,0.6457,0.6031,1.0000,0.9670,1.0000,0.551845,0.259274,0.148612,0.040269 +bot_02029,balanced,0.8867,1.0000,0.9864,1.0000,1.0000,0.9345,1.0000,0.8761,1.0000,0.506645,0.277754,0.206191,0.009411 +bot_02030,interstitial_focus,0.7201,1.0000,0.7921,0.7078,1.0000,0.5155,0.9942,1.0000,1.0000,0.434704,0.428594,0.083917,0.052785 +bot_02031,reward_heavy,1.0000,0.8013,0.8174,1.0000,0.6779,0.5173,0.9625,0.9305,1.0000,0.450375,0.397798,0.054213,0.097615 +bot_02032,reward_heavy,1.0000,0.6390,0.9760,1.0000,0.6226,0.8246,0.9531,0.9983,1.0000,0.553656,0.218684,0.046725,0.180935 +bot_02033,reward_heavy,1.0000,0.8888,0.8837,1.0000,0.8598,0.7777,0.9393,0.7390,1.0000,0.554607,0.300066,0.008119,0.137208 +bot_02034,balanced,1.0000,1.0000,1.0000,0.8616,1.0000,1.0000,0.8701,0.8672,1.0000,0.393168,0.203445,0.282212,0.121175 +bot_02035,churn_sensitive,0.5851,0.4765,0.4624,0.7764,0.4635,0.3315,0.8468,1.0000,0.6523,0.272110,0.214989,0.287247,0.225654 +bot_02036,splash_driven,1.0000,0.6964,1.0000,0.8536,0.9599,1.0000,0.8645,1.0000,1.0000,0.546764,0.267326,0.049615,0.136296 +bot_02037,balanced,1.0000,1.0000,1.0000,0.9617,0.8454,0.9127,0.9300,1.0000,1.0000,0.369437,0.332444,0.271512,0.026607 +bot_02038,interstitial_focus,0.7961,1.0000,0.9887,0.6207,1.0000,0.5646,0.9085,0.8567,1.0000,0.254418,0.564055,0.171065,0.010461 +bot_02039,balanced,1.0000,1.0000,0.8729,0.9536,1.0000,1.0000,1.0000,0.9872,0.9001,0.384203,0.366843,0.137033,0.111921 +bot_02040,balanced,0.8405,1.0000,1.0000,1.0000,0.8260,0.9585,1.0000,0.8616,0.9528,0.415182,0.269235,0.304119,0.011464 +bot_02041,interstitial_focus,0.5045,1.0000,0.8635,0.6932,1.0000,0.6076,0.9944,1.0000,1.0000,0.359109,0.290028,0.153249,0.197614 +bot_02042,reward_heavy,1.0000,0.7699,0.8930,1.0000,0.6333,0.5156,0.8986,0.7939,1.0000,0.719240,0.227454,0.012286,0.041020 +bot_02043,churn_sensitive,0.6048,0.5326,0.6453,0.4318,0.3319,0.2677,0.6734,1.0000,0.5380,0.195522,0.295857,0.295502,0.213118 +bot_02044,splash_driven,0.8515,1.0000,1.0000,1.0000,0.8841,1.0000,0.7596,1.0000,0.9507,0.731594,0.148044,0.108232,0.012130 +bot_02045,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8557,0.9971,0.8921,0.361176,0.192590,0.339250,0.106984 +bot_02046,reward_heavy,1.0000,1.0000,0.6666,1.0000,0.6019,0.5164,1.0000,0.7487,1.0000,0.642567,0.214202,0.131834,0.011397 +bot_02047,churn_sensitive,0.6327,0.7229,0.4819,0.6945,0.6618,0.4860,0.8584,1.0000,0.5342,0.288757,0.215476,0.233996,0.261771 +bot_02048,interstitial_focus,0.6265,1.0000,0.8935,0.7351,1.0000,0.5703,1.0000,1.0000,1.0000,0.361159,0.467957,0.067898,0.102986 +bot_02049,churn_sensitive,0.7218,0.7638,0.3614,0.5289,0.5195,0.6283,0.8323,1.0000,0.6278,0.335802,0.288980,0.309103,0.066116 +bot_02050,reward_heavy,1.0000,0.7519,0.7760,1.0000,0.9724,0.8145,1.0000,0.8349,1.0000,0.677181,0.236656,0.071889,0.014273 +bot_02051,reward_heavy,1.0000,1.0000,0.5951,1.0000,0.5988,0.5880,1.0000,0.8746,1.0000,0.600218,0.379414,0.010184,0.010184 +bot_02052,splash_driven,0.8341,0.7439,1.0000,1.0000,1.0000,1.0000,0.9786,1.0000,0.9155,0.705268,0.258527,0.007918,0.028286 +bot_02053,interstitial_focus,0.8165,1.0000,0.7169,0.9153,1.0000,0.7589,0.9266,1.0000,1.0000,0.290173,0.444642,0.177499,0.087686 +bot_02054,balanced,0.9758,1.0000,1.0000,1.0000,0.9483,1.0000,1.0000,0.9288,0.9727,0.371352,0.157465,0.294581,0.176601 +bot_02055,churn_sensitive,0.7805,0.7832,0.4439,0.3917,0.3654,0.3093,0.7768,1.0000,0.6045,0.364305,0.209550,0.315342,0.110803 +bot_02056,balanced,0.9376,1.0000,0.8943,1.0000,0.9229,1.0000,1.0000,0.9088,0.8820,0.242407,0.346460,0.263493,0.147640 +bot_02057,interstitial_focus,0.7136,1.0000,1.0000,0.7097,1.0000,0.6236,0.9343,0.9918,1.0000,0.300779,0.351442,0.198956,0.148823 +bot_02058,balanced,1.0000,1.0000,1.0000,0.8727,1.0000,1.0000,1.0000,0.9290,1.0000,0.356142,0.267966,0.243047,0.132844 +bot_02059,churn_sensitive,0.4991,0.4593,0.6078,0.5651,0.3712,0.5979,0.8725,1.0000,0.6167,0.385266,0.142327,0.389988,0.082419 +bot_02060,splash_driven,1.0000,0.9229,1.0000,0.8772,0.9817,1.0000,1.0000,0.9742,0.9601,0.702525,0.204483,0.041403,0.051588 +bot_02061,balanced,1.0000,0.9646,1.0000,0.9359,0.9232,1.0000,0.9413,0.8512,1.0000,0.299323,0.321972,0.314174,0.064531 +bot_02062,splash_driven,1.0000,1.0000,1.0000,0.8965,0.9568,1.0000,0.7750,0.9408,0.9199,0.644265,0.260207,0.087514,0.008015 +bot_02063,balanced,1.0000,1.0000,0.9828,1.0000,1.0000,0.8377,0.9201,0.8948,1.0000,0.312610,0.277212,0.288068,0.122110 +bot_02064,network_bound,0.7274,0.8873,0.7131,0.7103,0.7592,0.8495,0.6290,1.0000,0.9324,0.071490,0.137361,0.345929,0.445219 +bot_02065,reward_heavy,1.0000,0.8349,0.8343,1.0000,0.6051,0.5983,1.0000,0.9698,1.0000,0.529979,0.289498,0.172526,0.007997 +bot_02066,churn_sensitive,0.7183,0.4783,0.3287,0.4989,0.4738,0.2909,0.5842,1.0000,0.6454,0.163344,0.407493,0.153722,0.275441 +bot_02067,interstitial_focus,0.6874,1.0000,0.9972,0.6069,1.0000,0.5833,0.8853,0.8375,1.0000,0.349937,0.388345,0.253957,0.007761 +bot_02068,balanced,0.8783,0.8856,0.9371,1.0000,0.9716,0.8301,0.8665,1.0000,1.0000,0.508513,0.231187,0.241982,0.018319 +bot_02069,splash_driven,1.0000,1.0000,1.0000,0.8794,0.9766,1.0000,0.9214,0.8161,0.9915,0.655722,0.152731,0.150517,0.041030 +bot_02070,reward_heavy,1.0000,0.6552,0.5790,1.0000,0.6600,0.4748,1.0000,0.7523,1.0000,0.504685,0.316572,0.012033,0.166711 +bot_02071,reward_heavy,1.0000,0.9803,0.9153,1.0000,0.5436,0.4955,1.0000,1.0000,1.0000,0.534234,0.309889,0.148204,0.007673 +bot_02072,churn_sensitive,0.5531,0.5813,0.6757,0.7938,0.6411,0.5071,0.6950,1.0000,0.6085,0.231513,0.293042,0.349988,0.125457 +bot_02073,interstitial_focus,0.8247,1.0000,0.9898,0.6480,1.0000,0.8100,0.8369,1.0000,1.0000,0.331828,0.476467,0.180696,0.011009 +bot_02074,interstitial_focus,0.5077,1.0000,0.9200,0.6355,1.0000,0.8268,1.0000,0.9808,1.0000,0.362840,0.342587,0.186543,0.108030 +bot_02075,reward_heavy,1.0000,0.6664,0.7142,1.0000,0.7394,0.7700,1.0000,0.8325,1.0000,0.582620,0.349026,0.044813,0.023541 +bot_02076,network_bound,0.8837,0.9255,0.5900,0.9881,0.7391,0.6009,0.6740,1.0000,0.8818,0.064837,0.248712,0.349640,0.336811 +bot_02077,balanced,0.9140,1.0000,0.9036,1.0000,0.8569,0.9537,0.9569,0.9229,1.0000,0.266077,0.433964,0.212567,0.087392 +bot_02078,balanced,0.9036,1.0000,1.0000,1.0000,1.0000,0.8804,0.9045,0.8781,0.9369,0.517176,0.263321,0.190128,0.029375 +bot_02079,reward_heavy,1.0000,0.8337,0.7549,1.0000,0.9267,0.6807,1.0000,1.0000,1.0000,0.589555,0.195641,0.205414,0.009390 +bot_02080,interstitial_focus,0.7351,1.0000,0.9038,0.6343,1.0000,0.6978,1.0000,0.8403,1.0000,0.435549,0.478215,0.073706,0.012530 +bot_02081,balanced,1.0000,0.9813,1.0000,1.0000,0.8340,0.9489,1.0000,0.9090,0.9345,0.336347,0.297889,0.355312,0.010452 +bot_02082,interstitial_focus,0.5261,1.0000,0.8257,0.8317,1.0000,0.7572,1.0000,1.0000,1.0000,0.252863,0.410466,0.113758,0.222913 +bot_02083,reward_heavy,1.0000,0.7556,0.6454,1.0000,0.7937,0.7070,0.8864,0.9878,1.0000,0.558909,0.376930,0.053286,0.010875 +bot_02084,churn_sensitive,0.3660,0.5470,0.6324,0.7367,0.4655,0.6089,0.6563,0.9812,0.6164,0.292113,0.128967,0.266680,0.312241 +bot_02085,splash_driven,1.0000,0.9052,1.0000,1.0000,0.9660,1.0000,0.9421,0.9898,0.9572,0.609068,0.111723,0.166162,0.113047 +bot_02086,interstitial_focus,0.9510,1.0000,0.7718,0.7321,1.0000,0.4879,1.0000,1.0000,1.0000,0.194765,0.496565,0.297461,0.011209 +bot_02087,churn_sensitive,0.6851,0.7462,0.6083,0.6016,0.5096,0.4077,0.7501,1.0000,0.5507,0.211815,0.290504,0.391336,0.106345 +bot_02088,interstitial_focus,0.7953,1.0000,0.7753,0.5732,1.0000,0.7228,1.0000,0.8402,1.0000,0.287861,0.479410,0.223472,0.009257 +bot_02089,splash_driven,0.9553,0.8420,1.0000,0.8911,0.9817,1.0000,0.9351,0.9000,0.9140,0.598783,0.231345,0.130677,0.039195 +bot_02090,interstitial_focus,0.7044,1.0000,0.9568,0.9310,1.0000,0.8016,0.9717,1.0000,0.9304,0.419563,0.337137,0.170196,0.073104 +bot_02091,interstitial_focus,0.5782,1.0000,0.7114,0.8212,1.0000,0.6698,0.9309,1.0000,0.9519,0.315115,0.376542,0.226263,0.082080 +bot_02092,balanced,1.0000,1.0000,1.0000,0.8518,0.9216,0.9781,1.0000,0.8234,0.8836,0.380887,0.276114,0.330184,0.012815 +bot_02093,churn_sensitive,0.5083,0.8083,0.4205,0.7474,0.4063,0.2604,0.8494,1.0000,0.4603,0.172706,0.179752,0.426437,0.221105 +bot_02094,reward_heavy,1.0000,0.8503,0.5663,1.0000,0.7652,0.6037,1.0000,0.7668,1.0000,0.801300,0.176550,0.011075,0.011075 +bot_02095,reward_heavy,1.0000,0.5887,0.8098,1.0000,0.7889,0.4140,1.0000,0.7623,1.0000,0.664653,0.261379,0.059895,0.014072 +bot_02096,balanced,0.8210,1.0000,0.8953,0.8384,0.8685,1.0000,0.9510,0.9099,1.0000,0.390946,0.326817,0.194750,0.087488 +bot_02097,balanced,0.9598,0.9196,1.0000,1.0000,0.9007,1.0000,0.9059,0.9530,1.0000,0.624750,0.247784,0.114063,0.013403 +bot_02098,churn_sensitive,0.6533,0.8190,0.3673,0.5473,0.4925,0.6363,0.7506,1.0000,0.4861,0.338171,0.164440,0.386160,0.111228 +bot_02099,interstitial_focus,0.7586,1.0000,1.0000,0.6579,1.0000,0.8410,1.0000,1.0000,1.0000,0.413014,0.505248,0.071105,0.010632 +bot_02100,balanced,0.8970,1.0000,1.0000,0.9337,1.0000,1.0000,0.8607,1.0000,1.0000,0.380311,0.278681,0.330435,0.010574 +bot_02101,balanced,1.0000,1.0000,0.8822,0.8346,0.9084,0.8466,0.9257,0.9425,0.8830,0.329068,0.323151,0.176889,0.170892 +bot_02102,network_bound,0.8293,0.7699,0.5711,0.6887,0.6398,0.7178,0.5326,1.0000,0.8128,0.064938,0.207483,0.414878,0.312701 +bot_02103,churn_sensitive,0.7005,0.6672,0.3505,0.6055,0.3537,0.5267,0.6980,1.0000,0.4843,0.213808,0.287698,0.383413,0.115080 +bot_02104,interstitial_focus,0.9564,1.0000,0.9382,0.8547,1.0000,0.5434,0.8659,0.9316,1.0000,0.318034,0.363043,0.217377,0.101546 +bot_02105,network_bound,0.7212,0.9964,1.0000,1.0000,0.6943,0.6131,0.6591,1.0000,0.7626,0.245593,0.134185,0.266143,0.354079 +bot_02106,network_bound,0.8542,1.0000,0.8142,0.8102,0.9331,0.6655,0.7498,1.0000,0.7252,0.034588,0.311987,0.300479,0.352945 +bot_02107,balanced,0.9470,0.9223,1.0000,0.9704,0.8822,1.0000,1.0000,0.8851,0.9886,0.561038,0.297786,0.129286,0.011890 +bot_02108,reward_heavy,1.0000,0.9409,0.7807,1.0000,0.7337,0.6306,1.0000,1.0000,1.0000,0.574938,0.328411,0.058655,0.037996 +bot_02109,splash_driven,0.9480,0.9043,1.0000,0.8530,0.8227,1.0000,0.9639,0.8870,1.0000,0.858773,0.063645,0.066929,0.010653 +bot_02110,balanced,1.0000,1.0000,0.9343,0.8303,1.0000,0.9767,0.9450,0.8534,0.9931,0.359815,0.464749,0.165472,0.009964 +bot_02111,interstitial_focus,0.9584,1.0000,0.8233,0.6470,1.0000,0.5314,0.9464,0.8420,0.9775,0.314645,0.518522,0.152145,0.014688 +bot_02112,reward_heavy,1.0000,0.8833,0.6155,1.0000,0.9584,0.5425,1.0000,0.7409,1.0000,0.511595,0.257033,0.222412,0.008960 +bot_02113,reward_heavy,1.0000,0.9830,0.6585,1.0000,0.5651,0.6310,0.8868,1.0000,1.0000,0.631216,0.177850,0.132247,0.058687 +bot_02114,splash_driven,1.0000,0.9983,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.760753,0.049911,0.177290,0.012046 +bot_02115,reward_heavy,1.0000,0.8216,0.8049,1.0000,0.7678,0.4944,1.0000,0.6823,1.0000,0.738448,0.173916,0.077389,0.010246 +bot_02116,splash_driven,0.7766,0.6958,1.0000,0.8751,0.8192,1.0000,1.0000,1.0000,0.8447,0.766907,0.065201,0.115014,0.052878 +bot_02117,splash_driven,1.0000,0.8200,1.0000,1.0000,0.8592,1.0000,0.8726,0.9280,1.0000,0.692517,0.205439,0.009268,0.092777 +bot_02118,splash_driven,0.7598,1.0000,1.0000,0.8443,0.9785,1.0000,1.0000,1.0000,0.9467,0.728552,0.191275,0.059908,0.020265 +bot_02119,splash_driven,1.0000,0.9978,1.0000,0.8615,0.9739,1.0000,0.8886,1.0000,0.8729,0.726356,0.199066,0.008281,0.066296 +bot_02120,reward_heavy,1.0000,1.0000,0.8348,1.0000,0.7688,0.5662,0.9729,0.7308,1.0000,0.697151,0.250928,0.014749,0.037173 +bot_02121,splash_driven,0.7767,1.0000,1.0000,0.9245,0.8105,1.0000,0.9941,1.0000,0.9679,0.727314,0.186713,0.077686,0.008287 +bot_02122,churn_sensitive,0.5653,0.4626,0.5536,0.6759,0.3622,0.2779,0.5638,1.0000,0.6518,0.261888,0.255797,0.221795,0.260521 +bot_02123,splash_driven,0.6925,0.9258,1.0000,1.0000,1.0000,1.0000,1.0000,0.8354,1.0000,0.709591,0.126364,0.045778,0.118267 +bot_02124,splash_driven,0.8937,0.8485,1.0000,0.8841,1.0000,1.0000,0.8485,1.0000,1.0000,0.701182,0.131791,0.009684,0.157343 +bot_02125,balanced,0.8373,1.0000,1.0000,1.0000,0.8567,1.0000,0.8761,0.9510,1.0000,0.483873,0.198970,0.251768,0.065389 +bot_02126,reward_heavy,1.0000,0.8296,0.6375,1.0000,0.7299,0.5079,0.9946,1.0000,1.0000,0.513291,0.318317,0.011252,0.157140 +bot_02127,reward_heavy,1.0000,0.8627,0.7892,1.0000,0.7456,0.6439,1.0000,0.6999,1.0000,0.520248,0.238795,0.189890,0.051068 +bot_02128,balanced,0.9863,1.0000,1.0000,1.0000,1.0000,1.0000,0.8914,0.8801,0.9574,0.491893,0.304340,0.082131,0.121636 +bot_02129,reward_heavy,1.0000,0.8941,0.9142,1.0000,0.6457,0.4078,0.9000,0.7146,1.0000,0.431635,0.352417,0.090432,0.125516 +bot_02130,balanced,1.0000,0.9580,1.0000,0.8962,0.9130,1.0000,0.9238,0.9668,0.9262,0.477894,0.388791,0.119106,0.014208 +bot_02131,reward_heavy,1.0000,0.9493,0.8657,1.0000,0.8916,0.5379,1.0000,1.0000,1.0000,0.505827,0.446109,0.010918,0.037146 +bot_02132,reward_heavy,1.0000,1.0000,0.7321,1.0000,0.6507,0.4119,0.9364,0.9538,1.0000,0.542660,0.185106,0.172433,0.099801 +bot_02133,network_bound,0.6830,0.9586,0.9556,0.9763,0.6781,0.5151,0.7221,1.0000,0.8774,0.014962,0.207424,0.350098,0.427516 +bot_02134,balanced,0.9759,1.0000,1.0000,1.0000,0.8217,0.9318,0.9852,0.9045,1.0000,0.349357,0.336980,0.197026,0.116638 +bot_02135,interstitial_focus,0.6126,1.0000,0.8020,0.5653,1.0000,0.6132,1.0000,1.0000,0.9801,0.194414,0.459549,0.261226,0.084810 +bot_02136,reward_heavy,1.0000,0.7692,1.0000,1.0000,0.8900,0.7115,1.0000,0.7913,1.0000,0.572516,0.279797,0.134688,0.012999 +bot_02137,splash_driven,0.6547,0.7826,1.0000,0.9322,1.0000,1.0000,0.9120,0.9907,0.9103,0.716193,0.261965,0.010921,0.010921 +bot_02138,reward_heavy,1.0000,0.9595,0.7849,1.0000,0.8319,0.7359,0.9587,0.9420,1.0000,0.758737,0.190493,0.039294,0.011475 +bot_02139,splash_driven,0.9557,0.8976,1.0000,0.8934,0.8455,1.0000,1.0000,0.8981,1.0000,0.591121,0.224825,0.101094,0.082959 +bot_02140,balanced,1.0000,1.0000,0.8730,1.0000,0.7947,1.0000,1.0000,0.9546,1.0000,0.582307,0.198005,0.208618,0.011070 +bot_02141,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9017,1.0000,0.8318,1.0000,0.8765,0.905882,0.065556,0.014281,0.014281 +bot_02142,reward_heavy,1.0000,0.5915,0.9678,1.0000,0.6526,0.6299,1.0000,0.9038,1.0000,0.467924,0.292404,0.152563,0.087109 +bot_02143,churn_sensitive,0.4691,0.4950,0.2734,0.8120,0.5007,0.3847,0.6974,1.0000,0.6731,0.143096,0.406528,0.264925,0.185452 +bot_02144,splash_driven,0.8870,1.0000,1.0000,1.0000,1.0000,1.0000,0.8663,0.8926,1.0000,0.658793,0.254294,0.008713,0.078199 +bot_02145,interstitial_focus,0.8215,1.0000,1.0000,0.7138,1.0000,0.6672,1.0000,0.9845,1.0000,0.426459,0.355242,0.207679,0.010620 +bot_02146,balanced,0.8764,1.0000,1.0000,0.8441,1.0000,0.8913,0.9378,0.9648,1.0000,0.393316,0.368145,0.228128,0.010411 +bot_02147,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9862,1.0000,0.8681,0.9235,0.398251,0.337270,0.251843,0.012637 +bot_02148,reward_heavy,1.0000,0.6379,0.6380,1.0000,0.9309,0.4302,1.0000,0.8478,1.0000,0.521219,0.366149,0.072809,0.039823 +bot_02149,reward_heavy,1.0000,0.9264,0.6637,1.0000,0.8553,0.6026,1.0000,0.8639,1.0000,0.547360,0.264061,0.180878,0.007701 +bot_02150,splash_driven,0.7469,1.0000,1.0000,1.0000,0.9369,1.0000,0.8481,0.9659,1.0000,0.674777,0.218278,0.098660,0.008284 +bot_02151,reward_heavy,1.0000,0.5951,0.9664,1.0000,0.8358,0.7460,1.0000,0.7952,1.0000,0.680291,0.233864,0.069633,0.016213 +bot_02152,reward_heavy,1.0000,1.0000,0.5722,1.0000,0.6728,0.5234,1.0000,0.9406,1.0000,0.604870,0.232391,0.106890,0.055849 +bot_02153,reward_heavy,1.0000,0.8938,0.7423,1.0000,0.9439,0.6589,1.0000,0.7576,1.0000,0.500428,0.278161,0.145492,0.075919 +bot_02154,balanced,1.0000,1.0000,1.0000,1.0000,0.9008,1.0000,1.0000,1.0000,0.8909,0.287286,0.401517,0.150864,0.160334 +bot_02155,balanced,1.0000,0.9454,0.9177,0.9403,1.0000,1.0000,1.0000,1.0000,1.0000,0.286445,0.333195,0.169260,0.211099 +bot_02156,balanced,1.0000,1.0000,1.0000,0.8678,0.8503,0.8282,1.0000,0.9224,0.8990,0.320242,0.409419,0.261282,0.009058 +bot_02157,reward_heavy,1.0000,0.7948,0.6313,1.0000,0.8686,0.7670,0.9792,0.7533,1.0000,0.573924,0.385157,0.029627,0.011291 +bot_02158,splash_driven,0.6887,1.0000,1.0000,1.0000,0.9168,1.0000,0.8495,1.0000,0.9405,0.803545,0.117510,0.020687,0.058258 +bot_02159,interstitial_focus,0.5852,1.0000,1.0000,0.7084,1.0000,0.6201,0.8121,0.9394,1.0000,0.382131,0.391595,0.202472,0.023802 +bot_02160,interstitial_focus,0.5194,1.0000,0.9803,0.7524,1.0000,0.7226,0.9341,1.0000,1.0000,0.302990,0.500691,0.185679,0.010640 +bot_02161,reward_heavy,1.0000,0.6142,0.6079,1.0000,0.5958,0.4177,0.9990,1.0000,1.0000,0.654430,0.193005,0.142304,0.010261 +bot_02162,churn_sensitive,0.5743,0.5455,0.4047,0.7445,0.3574,0.4216,0.6465,1.0000,0.4655,0.154073,0.390964,0.164696,0.290268 +bot_02163,interstitial_focus,0.8665,1.0000,0.6996,0.7498,1.0000,0.8631,0.9308,0.9915,0.9831,0.467405,0.469658,0.052684,0.010253 +bot_02164,reward_heavy,1.0000,1.0000,0.9068,1.0000,0.8390,0.7774,1.0000,0.8805,1.0000,0.535017,0.266214,0.189709,0.009061 +bot_02165,splash_driven,0.6641,1.0000,1.0000,1.0000,0.8720,1.0000,0.7902,0.8823,0.9176,0.678241,0.149642,0.053712,0.118405 +bot_02166,churn_sensitive,0.6456,0.8060,0.6517,0.4338,0.6633,0.2892,0.8752,0.9845,0.5754,0.231803,0.282371,0.358385,0.127442 +bot_02167,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.530928,0.237319,0.222001,0.009752 +bot_02168,reward_heavy,1.0000,0.9413,0.7732,1.0000,0.6228,0.7374,1.0000,0.8640,1.0000,0.538656,0.344567,0.106463,0.010315 +bot_02169,balanced,1.0000,1.0000,1.0000,1.0000,0.7950,0.8435,1.0000,0.8239,0.8889,0.428665,0.157219,0.246186,0.167930 +bot_02170,churn_sensitive,0.5146,0.8351,0.4949,0.4563,0.6888,0.5719,0.6119,1.0000,0.6089,0.199738,0.320008,0.227998,0.252256 +bot_02171,churn_sensitive,0.6808,0.4845,0.6344,0.8181,0.7344,0.5609,0.5636,1.0000,0.6529,0.213930,0.302790,0.338181,0.145100 +bot_02172,churn_sensitive,0.5585,0.6201,0.6296,0.6226,0.5082,0.6033,0.8419,1.0000,0.5973,0.304341,0.145468,0.335013,0.215178 +bot_02173,reward_heavy,1.0000,0.7265,0.6933,1.0000,0.7917,0.7729,1.0000,0.8269,1.0000,0.630051,0.216369,0.142670,0.010910 +bot_02174,interstitial_focus,0.9367,1.0000,0.8548,0.8667,1.0000,0.7460,0.8864,1.0000,1.0000,0.314526,0.352189,0.283225,0.050060 +bot_02175,splash_driven,0.7260,0.9277,1.0000,0.9037,1.0000,1.0000,0.8152,0.9415,1.0000,0.648700,0.254107,0.053598,0.043596 +bot_02176,reward_heavy,1.0000,0.6558,0.6373,1.0000,0.6802,0.5992,0.9776,0.8407,1.0000,0.569311,0.359935,0.051875,0.018879 +bot_02177,interstitial_focus,0.6710,1.0000,0.8651,0.7046,1.0000,0.8848,1.0000,1.0000,0.9713,0.306243,0.393427,0.227140,0.073191 +bot_02178,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8603,1.0000,1.0000,0.9491,0.315489,0.285596,0.261606,0.137309 +bot_02179,reward_heavy,1.0000,0.8051,0.9467,1.0000,0.6745,0.5999,0.9782,0.7080,1.0000,0.672335,0.155285,0.083218,0.089162 +bot_02180,splash_driven,1.0000,0.7743,1.0000,1.0000,0.8493,1.0000,0.8060,1.0000,0.8423,0.605626,0.301765,0.083355,0.009255 +bot_02181,splash_driven,0.7090,0.8962,1.0000,1.0000,1.0000,1.0000,0.8764,0.9261,0.9455,0.820988,0.154786,0.012113,0.012113 +bot_02182,reward_heavy,1.0000,1.0000,0.9013,1.0000,0.8836,0.6361,1.0000,0.8435,1.0000,0.522921,0.270106,0.198254,0.008719 +bot_02183,splash_driven,0.7763,1.0000,1.0000,0.9828,1.0000,1.0000,0.8058,1.0000,0.8954,0.682660,0.268698,0.039896,0.008746 +bot_02184,network_bound,0.8807,0.6620,0.8278,0.9890,0.6669,0.5454,0.7931,1.0000,0.8133,0.263792,0.089744,0.302982,0.343482 +bot_02185,network_bound,0.9476,0.7089,0.6931,0.8514,0.6941,0.5789,0.5683,1.0000,0.7294,0.090730,0.224663,0.312766,0.371841 +bot_02186,splash_driven,0.8960,0.8019,1.0000,0.9999,1.0000,1.0000,0.7784,1.0000,0.8838,0.815274,0.056743,0.067516,0.060466 +bot_02187,splash_driven,0.7157,0.7686,1.0000,1.0000,0.8474,1.0000,1.0000,1.0000,1.0000,0.794989,0.056999,0.105157,0.042856 +bot_02188,interstitial_focus,0.5148,1.0000,0.6276,0.7695,1.0000,0.8349,0.8218,0.8580,1.0000,0.225881,0.383586,0.245708,0.144825 +bot_02189,splash_driven,1.0000,0.7328,1.0000,1.0000,1.0000,1.0000,0.9759,0.8835,1.0000,0.769122,0.190935,0.009866,0.030077 +bot_02190,reward_heavy,1.0000,0.8220,0.6631,1.0000,0.7595,0.6926,1.0000,0.7105,1.0000,0.635945,0.234475,0.011165,0.118415 +bot_02191,balanced,0.8327,1.0000,0.8890,1.0000,1.0000,1.0000,0.9390,0.9287,0.9425,0.450772,0.211686,0.286711,0.050831 +bot_02192,interstitial_focus,0.5572,1.0000,0.6509,0.6267,1.0000,0.7351,0.9354,0.8613,0.9968,0.318415,0.544531,0.064902,0.072152 +bot_02193,balanced,1.0000,1.0000,1.0000,0.9229,0.9137,0.9949,0.9890,1.0000,0.9787,0.430164,0.340881,0.150795,0.078160 +bot_02194,reward_heavy,1.0000,0.9166,0.7780,1.0000,0.7534,0.8041,0.8987,0.8808,1.0000,0.617405,0.181727,0.188242,0.012626 +bot_02195,balanced,1.0000,1.0000,1.0000,0.8777,0.8756,0.8077,1.0000,0.9286,1.0000,0.254882,0.403538,0.190399,0.151181 +bot_02196,interstitial_focus,0.6419,1.0000,0.8417,0.6621,1.0000,0.7396,0.9849,1.0000,1.0000,0.198489,0.502952,0.270441,0.028118 +bot_02197,splash_driven,0.8577,1.0000,1.0000,0.8230,0.8140,1.0000,1.0000,1.0000,0.8965,0.637397,0.195958,0.031124,0.135522 +bot_02198,balanced,1.0000,1.0000,1.0000,0.9571,0.8333,1.0000,1.0000,1.0000,0.9282,0.293637,0.202908,0.420268,0.083187 +bot_02199,network_bound,0.8577,0.8195,0.7467,0.7709,0.6321,0.6900,0.8248,1.0000,0.7790,0.274800,0.124654,0.195946,0.404600 +bot_02200,interstitial_focus,0.4917,1.0000,0.8402,0.8810,1.0000,0.8802,0.8611,1.0000,1.0000,0.398889,0.305894,0.285404,0.009813 +bot_02201,splash_driven,0.7328,0.9921,1.0000,0.8977,0.8391,1.0000,0.7760,1.0000,0.8490,0.701595,0.168644,0.120948,0.008812 +bot_02202,interstitial_focus,0.6237,1.0000,0.7166,0.6005,1.0000,0.5948,1.0000,1.0000,1.0000,0.394467,0.371681,0.222673,0.011179 +bot_02203,churn_sensitive,0.5698,0.5487,0.2805,0.5994,0.6221,0.5746,0.5960,1.0000,0.6185,0.163632,0.301366,0.295604,0.239398 +bot_02204,churn_sensitive,0.5240,0.6827,0.2290,0.6264,0.7326,0.3966,0.7124,0.9846,0.5696,0.292432,0.328080,0.304058,0.075431 +bot_02205,reward_heavy,1.0000,0.7949,1.0000,1.0000,0.7173,0.4510,0.9524,0.7604,1.0000,0.712177,0.207603,0.070492,0.009728 +bot_02206,splash_driven,0.8072,0.8855,1.0000,0.9834,1.0000,1.0000,1.0000,1.0000,1.0000,0.740891,0.113398,0.008660,0.137051 +bot_02207,reward_heavy,1.0000,0.8351,0.8163,1.0000,0.6215,0.5355,1.0000,0.8848,1.0000,0.547461,0.430205,0.011167,0.011167 +bot_02208,interstitial_focus,0.8972,1.0000,1.0000,0.6046,1.0000,0.7390,1.0000,0.9539,1.0000,0.298236,0.291177,0.291309,0.119279 +bot_02209,reward_heavy,1.0000,0.7122,0.9546,1.0000,0.8068,0.8371,0.9205,0.8302,1.0000,0.551846,0.234227,0.151058,0.062869 +bot_02210,balanced,1.0000,1.0000,1.0000,1.0000,0.9618,1.0000,1.0000,0.9161,1.0000,0.309418,0.516561,0.162841,0.011180 +bot_02211,interstitial_focus,0.6302,1.0000,0.9704,0.7270,1.0000,0.8215,1.0000,0.8829,0.9665,0.400447,0.329769,0.115640,0.154143 +bot_02212,interstitial_focus,0.7857,1.0000,0.6863,0.5804,1.0000,0.8207,1.0000,1.0000,1.0000,0.359003,0.554864,0.076025,0.010108 +bot_02213,splash_driven,0.6936,0.8866,1.0000,1.0000,1.0000,1.0000,0.8553,1.0000,0.8534,0.638705,0.243978,0.008634,0.108682 +bot_02214,balanced,1.0000,1.0000,1.0000,0.9777,0.8985,0.8032,0.8946,0.9281,0.9617,0.275819,0.358221,0.256792,0.109169 +bot_02215,network_bound,0.6731,0.7447,0.9026,0.7319,0.7190,0.8816,0.5428,1.0000,0.8716,0.135266,0.169247,0.326533,0.368955 +bot_02216,interstitial_focus,0.7235,1.0000,0.8283,0.6789,1.0000,0.8809,1.0000,1.0000,1.0000,0.289879,0.361654,0.322022,0.026445 +bot_02217,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9664,1.0000,0.7587,0.8636,0.9712,0.778507,0.034807,0.176994,0.009692 +bot_02218,splash_driven,0.6582,0.9854,1.0000,1.0000,1.0000,1.0000,0.8722,1.0000,1.0000,0.880925,0.046554,0.062018,0.010502 +bot_02219,balanced,0.8187,1.0000,1.0000,1.0000,0.8556,0.9255,1.0000,1.0000,1.0000,0.304326,0.435362,0.249710,0.010602 +bot_02220,balanced,1.0000,1.0000,0.8669,1.0000,1.0000,1.0000,1.0000,0.9568,0.9769,0.444352,0.227317,0.139105,0.189227 +bot_02221,splash_driven,1.0000,1.0000,1.0000,0.8339,1.0000,1.0000,0.8503,0.9202,0.9777,0.815575,0.164015,0.010205,0.010205 +bot_02222,reward_heavy,1.0000,0.8574,0.9291,1.0000,0.6253,0.5955,1.0000,0.8933,1.0000,0.609645,0.131249,0.107687,0.151419 +bot_02223,churn_sensitive,0.5828,0.7491,0.4736,0.8050,0.6947,0.2675,0.5636,1.0000,0.6312,0.243209,0.221932,0.288033,0.246826 +bot_02224,splash_driven,0.6497,1.0000,1.0000,1.0000,1.0000,1.0000,0.9140,1.0000,0.8661,0.753303,0.080672,0.153828,0.012197 +bot_02225,network_bound,1.0000,0.8209,0.6392,1.0000,0.6107,0.9026,0.5769,1.0000,0.8324,0.095819,0.310195,0.306709,0.287277 +bot_02226,reward_heavy,1.0000,0.8500,0.7764,1.0000,0.9548,0.5599,1.0000,1.0000,1.0000,0.456113,0.251323,0.209583,0.082981 +bot_02227,splash_driven,0.8213,1.0000,1.0000,1.0000,1.0000,1.0000,0.7529,0.8328,0.9763,0.749087,0.043482,0.093847,0.113584 +bot_02228,churn_sensitive,0.7513,0.6580,0.6535,0.6126,0.3653,0.3108,0.7294,1.0000,0.4691,0.317451,0.151433,0.248209,0.282908 +bot_02229,reward_heavy,1.0000,0.5997,0.9482,1.0000,0.9008,0.5583,1.0000,1.0000,1.0000,0.675884,0.299281,0.012417,0.012417 +bot_02230,reward_heavy,1.0000,0.7172,0.7755,1.0000,0.8769,0.5598,1.0000,0.6953,1.0000,0.576613,0.208093,0.204436,0.010858 +bot_02231,interstitial_focus,0.6050,1.0000,0.7160,0.9611,1.0000,0.5519,0.8048,1.0000,1.0000,0.415856,0.471234,0.099318,0.013593 +bot_02232,churn_sensitive,0.7365,0.5689,0.6501,0.7527,0.5431,0.3854,0.7919,1.0000,0.5201,0.236101,0.144467,0.328955,0.290477 +bot_02233,interstitial_focus,0.6130,1.0000,0.7049,0.6838,1.0000,0.5343,0.8991,1.0000,0.9527,0.352845,0.460748,0.105654,0.080753 +bot_02234,reward_heavy,1.0000,0.5801,0.5618,1.0000,0.6226,0.6904,1.0000,0.9731,1.0000,0.453190,0.240018,0.198050,0.108741 +bot_02235,splash_driven,0.9729,0.7839,1.0000,1.0000,0.8130,1.0000,0.7697,0.8624,0.9249,0.698135,0.183602,0.027537,0.090725 +bot_02236,balanced,1.0000,1.0000,0.9401,1.0000,0.7981,1.0000,0.8518,1.0000,1.0000,0.363492,0.329029,0.229547,0.077933 +bot_02237,reward_heavy,1.0000,0.5853,1.0000,1.0000,0.8791,0.4236,0.8899,0.9253,1.0000,0.609033,0.255753,0.030128,0.105086 +bot_02238,interstitial_focus,0.4993,1.0000,0.6902,0.6128,1.0000,0.6877,0.9387,0.9855,0.9985,0.372688,0.280585,0.181008,0.165719 +bot_02239,reward_heavy,1.0000,0.8886,0.6275,1.0000,0.7866,0.6043,1.0000,0.7052,1.0000,0.463911,0.273470,0.151796,0.110822 +bot_02240,reward_heavy,1.0000,0.6454,0.6479,1.0000,0.6013,0.7491,1.0000,0.8096,1.0000,0.545186,0.132863,0.198586,0.123365 +bot_02241,splash_driven,0.9897,1.0000,1.0000,1.0000,0.8548,1.0000,0.9466,1.0000,0.9162,0.622672,0.270085,0.008888,0.098354 +bot_02242,interstitial_focus,0.9265,1.0000,0.8559,0.8107,1.0000,0.6622,1.0000,0.8630,1.0000,0.312730,0.399443,0.276282,0.011545 +bot_02243,balanced,1.0000,1.0000,1.0000,0.9319,0.8572,0.8923,0.9655,1.0000,0.9541,0.383887,0.487690,0.117826,0.010597 +bot_02244,interstitial_focus,0.9568,1.0000,0.7396,0.8038,1.0000,0.8179,0.8669,0.9758,1.0000,0.345872,0.343456,0.161061,0.149611 +bot_02245,balanced,1.0000,1.0000,0.9019,0.9253,0.9314,0.9140,1.0000,0.8926,1.0000,0.316009,0.417322,0.120083,0.146586 +bot_02246,balanced,1.0000,0.8804,0.9126,1.0000,0.8016,1.0000,1.0000,0.9295,1.0000,0.246677,0.409460,0.334809,0.009053 +bot_02247,churn_sensitive,0.3955,0.8326,0.5351,0.5126,0.6340,0.4178,0.6114,1.0000,0.5037,0.160515,0.324531,0.297957,0.216996 +bot_02248,splash_driven,0.6458,0.6920,1.0000,0.8672,1.0000,1.0000,1.0000,0.9294,0.9651,0.773809,0.137669,0.078516,0.010006 +bot_02249,balanced,0.9593,1.0000,1.0000,1.0000,0.8403,0.9404,0.9666,0.9572,1.0000,0.328000,0.376219,0.262928,0.032854 +bot_02250,churn_sensitive,0.3611,0.6893,0.4022,0.4657,0.3370,0.6656,0.6448,1.0000,0.6346,0.164846,0.287630,0.445365,0.102159 +bot_02251,splash_driven,0.7971,0.7473,1.0000,1.0000,0.8796,1.0000,0.9036,0.9596,0.8636,0.747819,0.100466,0.064646,0.087069 +bot_02252,balanced,1.0000,1.0000,1.0000,0.8371,1.0000,0.9061,1.0000,0.8737,0.9884,0.403924,0.325432,0.134050,0.136594 +bot_02253,network_bound,0.8127,0.7021,0.6286,1.0000,0.8137,0.5996,0.5502,1.0000,0.8283,0.050822,0.037900,0.541762,0.369516 +bot_02254,reward_heavy,1.0000,0.7241,0.8282,1.0000,0.6162,0.7498,1.0000,0.8475,1.0000,0.672110,0.191952,0.032774,0.103164 +bot_02255,balanced,0.9569,1.0000,1.0000,0.9929,1.0000,1.0000,1.0000,0.9398,0.9638,0.337448,0.209942,0.259899,0.192711 +bot_02256,balanced,1.0000,1.0000,0.9858,0.8708,1.0000,1.0000,1.0000,1.0000,1.0000,0.361073,0.310317,0.317420,0.011189 +bot_02257,interstitial_focus,0.6746,1.0000,0.7369,0.7201,1.0000,0.8089,0.9053,1.0000,1.0000,0.375799,0.371193,0.244187,0.008821 +bot_02258,reward_heavy,1.0000,1.0000,0.5854,1.0000,0.8980,0.4403,0.9857,0.7807,1.0000,0.701921,0.276176,0.010951,0.010951 +bot_02259,balanced,0.9069,1.0000,0.9378,1.0000,1.0000,1.0000,0.9893,1.0000,1.0000,0.339214,0.399249,0.212258,0.049279 +bot_02260,interstitial_focus,0.5379,1.0000,0.9715,0.9128,1.0000,0.8941,1.0000,0.9249,1.0000,0.400693,0.292625,0.169362,0.137321 +bot_02261,interstitial_focus,0.8092,1.0000,1.0000,0.6476,1.0000,0.6805,0.8918,1.0000,0.9728,0.241984,0.616888,0.108720,0.032409 +bot_02262,reward_heavy,1.0000,0.7366,0.8382,1.0000,0.8934,0.6324,0.9950,0.9953,1.0000,0.652612,0.205374,0.009209,0.132805 +bot_02263,network_bound,1.0000,0.9869,0.5859,0.9047,0.7910,0.5108,0.6045,1.0000,0.7538,0.231645,0.036352,0.383384,0.348619 +bot_02264,splash_driven,0.8256,0.9887,1.0000,0.8140,0.9160,1.0000,0.7927,0.8747,1.0000,0.701658,0.145677,0.009458,0.143208 +bot_02265,reward_heavy,1.0000,0.5896,0.5707,1.0000,0.6804,0.4107,1.0000,0.7356,1.0000,0.606786,0.169046,0.146997,0.077171 +bot_02266,balanced,0.8539,0.9541,1.0000,1.0000,1.0000,1.0000,0.9946,0.9651,0.9460,0.350105,0.218620,0.300840,0.130435 +bot_02267,churn_sensitive,0.6964,0.6344,0.3563,0.4990,0.3720,0.2577,0.6298,0.9865,0.5263,0.085091,0.321538,0.337035,0.256336 +bot_02268,interstitial_focus,0.6519,1.0000,0.8829,0.6839,1.0000,0.5812,0.9530,1.0000,1.0000,0.379516,0.488702,0.119484,0.012298 +bot_02269,splash_driven,0.7322,0.9733,1.0000,1.0000,1.0000,1.0000,0.8643,0.9756,0.9256,0.706706,0.130950,0.096456,0.065888 +bot_02270,splash_driven,0.9891,0.9167,1.0000,1.0000,1.0000,1.0000,0.8363,1.0000,1.0000,0.738289,0.180303,0.073153,0.008255 +bot_02271,balanced,1.0000,1.0000,1.0000,1.0000,0.8969,1.0000,1.0000,0.8304,0.9346,0.484533,0.423047,0.083121,0.009299 +bot_02272,balanced,1.0000,1.0000,1.0000,0.9857,0.8725,1.0000,0.8892,0.8103,0.8859,0.376825,0.318018,0.160770,0.144387 +bot_02273,churn_sensitive,0.6535,0.6372,0.6153,0.6843,0.4690,0.3307,0.6100,1.0000,0.6007,0.150226,0.401855,0.236149,0.211770 +bot_02274,balanced,0.9387,0.9446,0.9350,1.0000,1.0000,1.0000,1.0000,0.9570,0.9299,0.385224,0.337537,0.267817,0.009422 +bot_02275,reward_heavy,1.0000,0.8154,0.5642,1.0000,0.8965,0.4246,1.0000,0.7885,1.0000,0.553608,0.377185,0.038653,0.030553 +bot_02276,interstitial_focus,0.7373,1.0000,0.9883,0.7575,1.0000,0.7158,1.0000,1.0000,1.0000,0.360136,0.418090,0.211438,0.010336 +bot_02277,reward_heavy,1.0000,0.7189,1.0000,1.0000,0.7329,0.8211,1.0000,0.9809,1.0000,0.562859,0.294397,0.009351,0.133393 +bot_02278,interstitial_focus,0.6643,1.0000,0.8468,0.8697,1.0000,0.7472,0.9448,0.8418,0.9633,0.183276,0.429585,0.264906,0.122233 +bot_02279,reward_heavy,1.0000,0.8391,0.8795,1.0000,0.7858,0.7724,0.9002,0.7115,1.0000,0.620893,0.276828,0.092598,0.009682 +bot_02280,reward_heavy,1.0000,0.8086,0.7611,1.0000,0.7127,0.7112,1.0000,0.6862,1.0000,0.519881,0.314744,0.094704,0.070671 +bot_02281,network_bound,1.0000,0.8518,0.9792,0.7694,0.8728,0.6052,0.7529,1.0000,0.8242,0.188058,0.218528,0.323657,0.269757 +bot_02282,interstitial_focus,0.8165,1.0000,0.8925,0.5983,1.0000,0.8556,0.9654,0.9297,1.0000,0.248512,0.462935,0.279980,0.008573 +bot_02283,reward_heavy,1.0000,0.7369,0.7897,1.0000,0.7205,0.5147,0.9906,0.9437,1.0000,0.742329,0.228004,0.014834,0.014834 +bot_02284,interstitial_focus,0.6274,1.0000,1.0000,0.6122,1.0000,0.6571,0.8606,1.0000,0.9525,0.228987,0.465409,0.164501,0.141103 +bot_02285,churn_sensitive,0.4385,0.4817,0.2848,0.3911,0.6679,0.5689,0.6778,1.0000,0.5145,0.221788,0.275211,0.311617,0.191384 +bot_02286,network_bound,1.0000,0.8407,0.8595,0.7201,0.6739,0.7640,0.6613,1.0000,0.7412,0.197928,0.232786,0.150451,0.418835 +bot_02287,splash_driven,0.7843,1.0000,1.0000,1.0000,0.9724,1.0000,0.9551,0.9978,0.9365,0.655055,0.272923,0.062787,0.009235 +bot_02288,reward_heavy,1.0000,0.6148,0.9560,1.0000,0.8753,0.7223,1.0000,0.8560,1.0000,0.578681,0.237951,0.174222,0.009147 +bot_02289,balanced,0.9193,1.0000,1.0000,1.0000,1.0000,0.8557,0.9377,0.8916,0.9283,0.351156,0.227219,0.216333,0.205292 +bot_02290,network_bound,0.9877,0.8939,0.6060,0.7813,0.8762,0.6464,0.6956,1.0000,0.7293,0.009100,0.113146,0.382486,0.495268 +bot_02291,splash_driven,1.0000,0.8829,1.0000,1.0000,0.9078,1.0000,0.7679,1.0000,0.8493,0.654907,0.180234,0.156613,0.008246 +bot_02292,network_bound,0.8453,0.6738,0.6834,0.8913,0.7182,0.6081,0.8240,1.0000,0.7684,0.014393,0.105343,0.406330,0.473934 +bot_02293,interstitial_focus,0.8439,1.0000,0.7878,0.8123,1.0000,0.7221,1.0000,1.0000,1.0000,0.296555,0.329932,0.321778,0.051735 +bot_02294,interstitial_focus,0.6838,1.0000,0.8787,0.8883,1.0000,0.6606,1.0000,1.0000,1.0000,0.413594,0.276141,0.228711,0.081554 +bot_02295,balanced,1.0000,1.0000,1.0000,0.8525,0.8941,1.0000,1.0000,0.9439,0.9121,0.430365,0.190937,0.266344,0.112355 +bot_02296,splash_driven,0.8038,0.7392,1.0000,1.0000,0.9995,1.0000,0.9838,0.9587,0.9679,0.618155,0.276243,0.096774,0.008828 +bot_02297,splash_driven,0.9028,1.0000,1.0000,0.9871,1.0000,1.0000,0.8331,0.8294,1.0000,0.599018,0.244326,0.009181,0.147475 +bot_02298,interstitial_focus,0.5516,1.0000,0.7925,0.7454,1.0000,0.6812,0.8079,1.0000,0.9545,0.315273,0.267392,0.306832,0.110503 +bot_02299,reward_heavy,1.0000,0.8321,0.8618,1.0000,0.6523,0.4500,1.0000,1.0000,1.0000,0.472707,0.387255,0.009549,0.130490 +bot_02300,reward_heavy,1.0000,0.9559,1.0000,1.0000,0.9049,0.4912,1.0000,0.7167,1.0000,0.605045,0.230895,0.155565,0.008496 +bot_02301,balanced,1.0000,0.9873,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8949,0.359170,0.262120,0.255233,0.123477 +bot_02302,reward_heavy,1.0000,0.9521,0.5666,1.0000,0.6159,0.6077,1.0000,0.7794,1.0000,0.536729,0.319272,0.133192,0.010807 +bot_02303,network_bound,0.9293,0.9533,0.9072,0.8437,0.6095,0.5892,0.5665,1.0000,0.7532,0.015966,0.154139,0.310999,0.518895 +bot_02304,reward_heavy,1.0000,0.5981,1.0000,1.0000,0.6819,0.4130,1.0000,1.0000,1.0000,0.509373,0.301155,0.078098,0.111374 +bot_02305,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8109,1.0000,0.427832,0.377066,0.184548,0.010554 +bot_02306,interstitial_focus,0.5386,1.0000,0.9447,0.8783,1.0000,0.8466,0.8011,0.8868,1.0000,0.326216,0.348447,0.096607,0.228731 +bot_02307,network_bound,1.0000,0.7938,0.8073,0.7086,0.5795,0.6155,0.7099,1.0000,0.7064,0.112345,0.310071,0.167475,0.410109 +bot_02308,reward_heavy,1.0000,0.8833,0.9828,1.0000,0.5955,0.6923,0.9211,0.7082,1.0000,0.768065,0.210504,0.010715,0.010715 +bot_02309,splash_driven,0.8211,1.0000,1.0000,1.0000,1.0000,1.0000,0.9842,0.8816,0.9937,0.913423,0.058695,0.013941,0.013941 +bot_02310,balanced,1.0000,1.0000,1.0000,1.0000,0.9147,0.9829,0.8721,0.9940,1.0000,0.344413,0.302511,0.241225,0.111852 +bot_02311,interstitial_focus,0.8544,1.0000,0.8200,0.6877,1.0000,0.7178,0.9918,1.0000,1.0000,0.349361,0.422248,0.220227,0.008165 +bot_02312,network_bound,0.8145,0.7501,0.6548,0.9268,0.6745,0.5571,0.7550,1.0000,0.8049,0.206661,0.195297,0.182184,0.415858 +bot_02313,balanced,0.9647,1.0000,1.0000,1.0000,0.7994,0.7983,0.8493,1.0000,0.9662,0.317601,0.298500,0.371410,0.012488 +bot_02314,splash_driven,0.8819,0.7166,1.0000,1.0000,0.9912,1.0000,0.8491,1.0000,0.9190,0.702929,0.243487,0.011133,0.042451 +bot_02315,reward_heavy,1.0000,0.7057,0.7494,1.0000,0.7707,0.7339,1.0000,0.7293,1.0000,0.577787,0.216078,0.072814,0.133320 +bot_02316,reward_heavy,1.0000,0.8211,0.7082,1.0000,0.7120,0.7022,1.0000,0.7777,1.0000,0.626248,0.294135,0.069420,0.010197 +bot_02317,churn_sensitive,0.7754,0.7554,0.3028,0.6715,0.7488,0.6099,0.8526,1.0000,0.4982,0.206318,0.336573,0.159287,0.297822 +bot_02318,balanced,1.0000,0.9736,0.9271,1.0000,1.0000,1.0000,0.9723,0.9164,0.9170,0.337666,0.192627,0.314860,0.154847 +bot_02319,balanced,1.0000,0.9238,1.0000,1.0000,1.0000,0.8929,0.9921,0.9473,1.0000,0.454730,0.310751,0.187325,0.047195 +bot_02320,reward_heavy,1.0000,0.6193,0.8954,1.0000,0.8851,0.4247,1.0000,1.0000,1.0000,0.521001,0.287277,0.183117,0.008605 +bot_02321,network_bound,0.7355,0.8232,0.8616,1.0000,0.5857,0.6052,0.5308,1.0000,0.7530,0.011654,0.161504,0.407954,0.418887 +bot_02322,balanced,0.8379,0.9567,1.0000,0.8471,0.9244,1.0000,1.0000,0.8546,0.9187,0.358590,0.397677,0.197191,0.046541 +bot_02323,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9665,1.0000,0.8183,0.9593,0.8775,0.783717,0.060886,0.018822,0.136575 +bot_02324,churn_sensitive,0.7550,0.7782,0.5152,0.5012,0.4567,0.5344,0.6036,0.9850,0.4950,0.105501,0.142260,0.409184,0.343055 +bot_02325,reward_heavy,1.0000,0.9216,0.9563,1.0000,0.7843,0.7590,1.0000,1.0000,1.0000,0.782866,0.153998,0.052151,0.010985 +bot_02326,churn_sensitive,0.5404,0.8129,0.3171,0.7458,0.3960,0.5819,0.5780,1.0000,0.6777,0.343470,0.375187,0.161604,0.119739 +bot_02327,reward_heavy,1.0000,1.0000,0.5611,1.0000,0.6251,0.6271,0.9326,0.9180,1.0000,0.555176,0.148037,0.187425,0.109361 +bot_02328,balanced,0.9427,1.0000,0.8692,1.0000,1.0000,0.8097,1.0000,0.9677,0.9035,0.256155,0.417286,0.202639,0.123920 +bot_02329,interstitial_focus,0.8421,1.0000,0.8792,0.6830,1.0000,0.6321,1.0000,1.0000,1.0000,0.343688,0.385683,0.131014,0.139614 +bot_02330,balanced,0.9720,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9980,1.0000,0.392380,0.292633,0.188871,0.126116 +bot_02331,balanced,1.0000,1.0000,0.8704,0.9480,0.8191,1.0000,0.9827,0.8759,0.9049,0.283895,0.365928,0.235662,0.114515 +bot_02332,reward_heavy,1.0000,0.6685,0.7735,1.0000,0.5491,0.5663,0.9478,0.8729,1.0000,0.583370,0.247865,0.160444,0.008321 +bot_02333,splash_driven,0.6577,1.0000,1.0000,1.0000,1.0000,1.0000,0.9639,1.0000,0.9803,0.698642,0.241328,0.052060,0.007970 +bot_02334,splash_driven,0.8740,0.7063,1.0000,0.9185,0.9148,1.0000,0.9279,0.9299,0.9710,0.849780,0.131210,0.009505,0.009505 +bot_02335,splash_driven,1.0000,1.0000,1.0000,1.0000,0.8176,1.0000,0.7973,0.9045,1.0000,0.752654,0.195307,0.020610,0.031429 +bot_02336,interstitial_focus,0.5364,1.0000,0.7544,0.5729,1.0000,0.6751,1.0000,1.0000,0.9894,0.179596,0.456539,0.322933,0.040932 +bot_02337,balanced,1.0000,1.0000,1.0000,1.0000,0.9233,0.9284,0.9243,1.0000,0.9976,0.378026,0.300761,0.164893,0.156321 +bot_02338,interstitial_focus,0.9324,1.0000,0.8605,0.9271,1.0000,0.7088,0.9205,0.9988,1.0000,0.382203,0.541058,0.067238,0.009502 +bot_02339,network_bound,1.0000,0.6467,0.6350,1.0000,0.6643,0.8681,0.6555,1.0000,0.9093,0.144813,0.282649,0.232883,0.339655 +bot_02340,interstitial_focus,0.5985,1.0000,0.6815,0.7601,1.0000,0.6789,0.8568,1.0000,1.0000,0.295795,0.472956,0.222225,0.009025 +bot_02341,churn_sensitive,0.7430,0.4881,0.4700,0.6892,0.5683,0.6323,0.8720,1.0000,0.6588,0.221356,0.394478,0.156318,0.227849 +bot_02342,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8659,1.0000,0.9557,0.446649,0.434282,0.106803,0.012266 +bot_02343,splash_driven,1.0000,0.8935,1.0000,0.9227,1.0000,1.0000,1.0000,1.0000,0.9250,0.661668,0.129314,0.165163,0.043854 +bot_02344,interstitial_focus,0.4904,1.0000,0.7446,0.6169,1.0000,0.4928,0.9909,1.0000,0.9809,0.204180,0.393007,0.277000,0.125813 +bot_02345,splash_driven,0.7292,1.0000,1.0000,1.0000,0.9680,1.0000,0.8016,0.9109,0.8966,0.643075,0.061183,0.194317,0.101424 +bot_02346,reward_heavy,1.0000,0.5868,1.0000,1.0000,0.7248,0.7509,1.0000,0.9030,1.0000,0.485682,0.227191,0.144293,0.142835 +bot_02347,reward_heavy,1.0000,1.0000,0.7725,1.0000,0.8775,0.4476,1.0000,0.8761,1.0000,0.675801,0.223399,0.089130,0.011670 +bot_02348,churn_sensitive,0.7595,0.7299,0.4328,0.5421,0.5803,0.6746,0.7367,1.0000,0.4767,0.120449,0.333269,0.347274,0.199008 +bot_02349,splash_driven,0.9492,0.7323,1.0000,0.9363,1.0000,1.0000,0.7548,1.0000,0.9199,0.604607,0.274116,0.019615,0.101662 +bot_02350,splash_driven,0.7886,0.8627,1.0000,0.8771,1.0000,1.0000,1.0000,0.9910,1.0000,0.698878,0.202754,0.089968,0.008400 +bot_02351,interstitial_focus,0.4916,1.0000,0.9016,0.6727,1.0000,0.8693,1.0000,0.9853,1.0000,0.345054,0.342276,0.083094,0.229576 +bot_02352,splash_driven,0.8429,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9127,0.9466,0.688438,0.175725,0.082804,0.053034 +bot_02353,churn_sensitive,0.3501,0.4208,0.3400,0.6276,0.6069,0.5875,0.5665,1.0000,0.4717,0.134930,0.207220,0.364220,0.293631 +bot_02354,splash_driven,0.8179,0.6977,1.0000,0.9868,1.0000,1.0000,0.9532,0.9481,0.9835,0.720854,0.079252,0.190044,0.009851 +bot_02355,interstitial_focus,0.8594,1.0000,0.7192,0.7881,1.0000,0.5337,0.8879,1.0000,0.9725,0.215034,0.441985,0.314622,0.028358 +bot_02356,reward_heavy,1.0000,0.8680,0.9268,1.0000,0.6935,0.7872,0.9644,0.7880,1.0000,0.505583,0.219024,0.198477,0.076916 +bot_02357,splash_driven,0.8840,0.8230,1.0000,0.8865,1.0000,1.0000,0.8425,1.0000,0.9109,0.795123,0.046345,0.009311,0.149221 +bot_02358,splash_driven,0.8721,0.9831,1.0000,0.9103,1.0000,1.0000,1.0000,0.8767,1.0000,0.626401,0.294698,0.009563,0.069338 +bot_02359,interstitial_focus,0.8296,1.0000,0.8633,0.9889,1.0000,0.6293,1.0000,1.0000,1.0000,0.235032,0.461781,0.293888,0.009300 +bot_02360,reward_heavy,1.0000,0.8318,0.8550,1.0000,0.6200,0.5132,0.9886,1.0000,1.0000,0.685008,0.232344,0.073205,0.009443 +bot_02361,network_bound,0.8955,0.7869,0.9627,0.8711,0.8967,0.8487,0.7745,1.0000,0.8794,0.167973,0.038924,0.233342,0.559761 +bot_02362,splash_driven,0.7120,0.9542,1.0000,0.9003,0.8682,1.0000,1.0000,0.9153,0.9143,0.608993,0.324897,0.056207,0.009903 +bot_02363,splash_driven,0.9902,0.8335,1.0000,1.0000,0.9403,1.0000,0.9456,0.8248,1.0000,0.588682,0.265044,0.119572,0.026701 +bot_02364,interstitial_focus,0.6522,1.0000,0.7064,0.8949,1.0000,0.7290,0.9454,0.8708,1.0000,0.274828,0.510020,0.099841,0.115311 +bot_02365,interstitial_focus,0.4952,1.0000,1.0000,0.5686,1.0000,0.7399,1.0000,1.0000,0.9890,0.200588,0.445558,0.211439,0.142416 +bot_02366,splash_driven,0.8466,0.7035,1.0000,1.0000,1.0000,1.0000,1.0000,0.9784,0.9856,0.566435,0.268093,0.156234,0.009239 +bot_02367,churn_sensitive,0.5226,0.7018,0.4841,0.7948,0.7302,0.4089,0.8623,1.0000,0.4682,0.113007,0.463539,0.270799,0.152655 +bot_02368,balanced,1.0000,1.0000,0.9776,1.0000,1.0000,0.9093,0.9302,0.8021,1.0000,0.326357,0.397500,0.215460,0.060682 +bot_02369,reward_heavy,1.0000,1.0000,0.7861,1.0000,0.8935,0.6915,1.0000,0.7946,1.0000,0.472970,0.358022,0.159347,0.009661 +bot_02370,churn_sensitive,0.3491,0.4155,0.6029,0.6645,0.5096,0.3263,0.7379,1.0000,0.6615,0.211451,0.149054,0.414282,0.225213 +bot_02371,splash_driven,0.7134,0.8787,1.0000,0.8087,1.0000,1.0000,0.9467,1.0000,0.9291,0.776908,0.115697,0.096634,0.010760 +bot_02372,reward_heavy,1.0000,1.0000,0.5960,1.0000,0.7518,0.7221,1.0000,1.0000,1.0000,0.600520,0.125500,0.192524,0.081456 +bot_02373,reward_heavy,1.0000,0.6566,0.7077,1.0000,0.8945,0.4970,1.0000,0.8446,1.0000,0.588301,0.275196,0.043249,0.093254 +bot_02374,splash_driven,0.9849,0.9920,1.0000,0.8656,0.9341,1.0000,0.8467,0.8486,1.0000,0.648978,0.226037,0.032397,0.092588 +bot_02375,balanced,1.0000,1.0000,0.9106,1.0000,1.0000,0.8825,1.0000,0.8996,0.9949,0.378360,0.376418,0.230476,0.014745 +bot_02376,churn_sensitive,0.7563,0.5725,0.3882,0.7998,0.3953,0.4919,0.7455,1.0000,0.5522,0.225091,0.182821,0.268019,0.324069 +bot_02377,splash_driven,0.6874,1.0000,1.0000,0.8600,0.9667,1.0000,0.8605,1.0000,0.9754,0.607733,0.313420,0.025210,0.053637 +bot_02378,interstitial_focus,0.5064,1.0000,0.7524,0.7660,1.0000,0.5954,1.0000,1.0000,0.9916,0.319761,0.421497,0.129062,0.129680 +bot_02379,splash_driven,0.7550,1.0000,1.0000,1.0000,0.8396,1.0000,0.7945,1.0000,0.9056,0.603343,0.261755,0.008646,0.126256 +bot_02380,splash_driven,0.6541,1.0000,1.0000,0.8860,1.0000,1.0000,1.0000,0.8752,0.8931,0.708678,0.193912,0.087397,0.010013 +bot_02381,network_bound,0.9016,0.9471,0.7958,0.9656,0.8061,0.7179,0.7780,1.0000,0.7376,0.220035,0.236493,0.319893,0.223578 +bot_02382,splash_driven,0.7686,0.9781,1.0000,0.8779,1.0000,1.0000,0.9713,1.0000,0.9221,0.816544,0.158493,0.012481,0.012481 +bot_02383,network_bound,0.6785,0.9209,0.7687,0.8874,0.7194,0.7957,0.6187,1.0000,0.8237,0.213264,0.034327,0.178882,0.573527 +bot_02384,splash_driven,1.0000,0.7613,1.0000,1.0000,0.9269,1.0000,0.8143,1.0000,1.0000,0.697678,0.186735,0.107349,0.008238 +bot_02385,network_bound,1.0000,0.7996,1.0000,0.6742,0.6311,0.7226,0.6113,1.0000,0.7816,0.111974,0.085188,0.276056,0.526783 +bot_02386,interstitial_focus,0.6247,1.0000,0.7065,0.8760,1.0000,0.6316,1.0000,0.9944,0.9363,0.302266,0.506633,0.136633,0.054468 +bot_02387,reward_heavy,1.0000,0.7092,0.6049,1.0000,0.8752,0.6094,0.9111,0.8841,1.0000,0.583112,0.327743,0.076953,0.012192 +bot_02388,balanced,1.0000,1.0000,1.0000,1.0000,0.8231,0.7864,0.8574,1.0000,1.0000,0.428793,0.225779,0.162336,0.183092 +bot_02389,balanced,1.0000,1.0000,1.0000,1.0000,0.8969,0.9655,0.9753,0.8874,1.0000,0.296749,0.353188,0.236677,0.113385 +bot_02390,churn_sensitive,0.4082,0.4808,0.3146,0.4376,0.7688,0.5399,0.7419,1.0000,0.5983,0.145396,0.360066,0.420129,0.074409 +bot_02391,interstitial_focus,0.5815,1.0000,1.0000,0.8318,1.0000,0.6943,1.0000,1.0000,1.0000,0.284586,0.490468,0.215848,0.009098 +bot_02392,splash_driven,0.9701,1.0000,1.0000,0.8344,1.0000,1.0000,0.9725,1.0000,1.0000,0.785054,0.191993,0.011476,0.011476 +bot_02393,reward_heavy,1.0000,1.0000,0.6315,1.0000,0.7518,0.4480,1.0000,0.8470,1.0000,0.486265,0.291962,0.149735,0.072039 +bot_02394,reward_heavy,1.0000,0.6756,0.5751,1.0000,0.9446,0.5953,1.0000,0.7886,1.0000,0.711982,0.162573,0.113655,0.011790 +bot_02395,reward_heavy,1.0000,0.6452,0.8242,1.0000,0.6983,0.5092,0.8920,1.0000,1.0000,0.688658,0.132908,0.168855,0.009578 +bot_02396,balanced,1.0000,1.0000,0.8918,1.0000,0.9200,1.0000,1.0000,0.9424,0.9345,0.321944,0.268425,0.190287,0.219345 +bot_02397,network_bound,0.8167,0.9435,0.8704,0.9337,0.6157,0.6149,0.7341,1.0000,0.9204,0.015257,0.299524,0.300090,0.385129 +bot_02398,reward_heavy,1.0000,0.6746,0.9870,1.0000,0.8402,0.4059,1.0000,0.8980,1.0000,0.772779,0.205489,0.010866,0.010866 +bot_02399,splash_driven,0.8711,0.9911,1.0000,1.0000,1.0000,1.0000,1.0000,0.9152,0.8462,0.755519,0.171732,0.009325,0.063424 +bot_02400,reward_heavy,1.0000,0.8798,0.8453,1.0000,0.7359,0.6880,1.0000,0.8684,1.0000,0.651694,0.183387,0.155756,0.009163 +bot_02401,splash_driven,0.7503,0.9243,1.0000,0.9946,0.9780,1.0000,1.0000,0.8525,1.0000,0.643100,0.229418,0.091946,0.035535 +bot_02402,reward_heavy,1.0000,0.7193,0.8928,1.0000,0.6252,0.7519,1.0000,1.0000,1.0000,0.517521,0.460964,0.010757,0.010757 +bot_02403,interstitial_focus,0.7009,1.0000,1.0000,0.7423,1.0000,0.8934,0.9004,1.0000,0.9843,0.225061,0.480982,0.285337,0.008620 +bot_02404,churn_sensitive,0.5641,0.5333,0.5557,0.6094,0.3805,0.6242,0.7533,1.0000,0.5974,0.305986,0.280631,0.288814,0.124568 +bot_02405,balanced,0.9839,1.0000,1.0000,1.0000,1.0000,0.8364,1.0000,0.9774,1.0000,0.402088,0.357941,0.232045,0.007926 +bot_02406,interstitial_focus,0.8809,1.0000,0.7886,0.8496,1.0000,0.8259,0.9953,1.0000,0.9839,0.216351,0.541529,0.231311,0.010809 +bot_02407,splash_driven,0.9824,0.8399,1.0000,1.0000,1.0000,1.0000,0.7931,0.8812,1.0000,0.689230,0.245063,0.008301,0.057406 +bot_02408,balanced,0.9342,1.0000,1.0000,1.0000,0.9367,0.7878,0.9145,0.8428,0.9938,0.375098,0.359693,0.251800,0.013410 +bot_02409,interstitial_focus,0.8306,1.0000,1.0000,0.7049,1.0000,0.5005,1.0000,1.0000,0.9728,0.304294,0.477680,0.207871,0.010155 +bot_02410,reward_heavy,1.0000,1.0000,0.8977,1.0000,0.9608,0.4111,0.8996,0.9799,1.0000,0.729381,0.187028,0.073529,0.010062 +bot_02411,reward_heavy,1.0000,1.0000,0.7024,1.0000,0.8488,0.5157,0.9816,0.7847,1.0000,0.422477,0.367112,0.201197,0.009214 +bot_02412,reward_heavy,1.0000,0.8944,0.7882,1.0000,0.9139,0.4994,0.9020,0.9560,1.0000,0.547570,0.186063,0.171220,0.095148 +bot_02413,interstitial_focus,0.5965,1.0000,0.6281,0.6945,1.0000,0.8206,1.0000,0.8545,0.9868,0.283570,0.520425,0.181551,0.014454 +bot_02414,network_bound,1.0000,0.8642,0.7417,1.0000,0.6648,0.6553,0.5417,1.0000,0.7977,0.214473,0.181480,0.250565,0.353482 +bot_02415,reward_heavy,1.0000,0.8003,0.6619,1.0000,0.7376,0.7367,1.0000,1.0000,1.0000,0.594057,0.215790,0.181756,0.008397 +bot_02416,churn_sensitive,0.6401,0.4949,0.5346,0.6757,0.4038,0.4486,0.6414,1.0000,0.5780,0.390638,0.224160,0.286424,0.098778 +bot_02417,interstitial_focus,0.6451,1.0000,0.9577,0.6380,1.0000,0.8135,0.8522,1.0000,0.9766,0.346319,0.397764,0.184056,0.071861 +bot_02418,reward_heavy,1.0000,0.9385,0.9389,1.0000,0.9040,0.4207,0.9349,1.0000,1.0000,0.494041,0.376736,0.008787,0.120436 +bot_02419,reward_heavy,1.0000,0.7482,0.7775,1.0000,0.5985,0.4426,1.0000,0.8276,1.0000,0.601784,0.251384,0.010637,0.136195 +bot_02420,interstitial_focus,0.7653,1.0000,0.9191,0.6411,1.0000,0.8686,1.0000,0.8533,1.0000,0.425942,0.299732,0.263369,0.010957 +bot_02421,splash_driven,0.9981,0.6885,1.0000,1.0000,0.8483,1.0000,1.0000,0.8712,1.0000,0.590760,0.262099,0.008483,0.138658 +bot_02422,interstitial_focus,0.8498,1.0000,1.0000,0.7119,1.0000,0.6597,1.0000,0.8845,1.0000,0.387993,0.255252,0.161716,0.195040 +bot_02423,interstitial_focus,0.5855,1.0000,0.8435,0.5758,1.0000,0.8645,0.9422,1.0000,0.9457,0.313418,0.420878,0.258302,0.007402 +bot_02424,churn_sensitive,0.6613,0.7620,0.4483,0.6147,0.6641,0.3127,0.8140,0.9925,0.6608,0.195845,0.135946,0.327954,0.340255 +bot_02425,reward_heavy,1.0000,1.0000,0.8576,1.0000,0.5753,0.7217,0.9937,0.8330,1.0000,0.434585,0.310284,0.135058,0.120073 +bot_02426,reward_heavy,1.0000,0.7029,0.9188,1.0000,0.7181,0.6910,1.0000,1.0000,1.0000,0.569633,0.408721,0.010823,0.010823 +bot_02427,reward_heavy,1.0000,0.9149,0.9794,1.0000,0.6611,0.4120,0.9385,0.8424,1.0000,0.537491,0.274671,0.179071,0.008766 +bot_02428,churn_sensitive,0.5654,0.4578,0.3809,0.5274,0.4476,0.5880,0.7731,1.0000,0.6163,0.153765,0.138327,0.533905,0.174003 +bot_02429,reward_heavy,1.0000,0.8455,0.6684,1.0000,0.6522,0.7676,1.0000,0.7513,1.0000,0.664443,0.316427,0.009565,0.009565 +bot_02430,reward_heavy,1.0000,0.7924,0.6189,1.0000,0.8490,0.4983,1.0000,0.9705,1.0000,0.665629,0.270709,0.049319,0.014343 +bot_02431,network_bound,0.9643,0.7949,0.9797,0.7932,0.9170,0.8726,0.6378,1.0000,0.8732,0.052801,0.166117,0.442696,0.338385 +bot_02432,balanced,0.8852,1.0000,1.0000,1.0000,1.0000,0.8346,1.0000,1.0000,1.0000,0.442534,0.417772,0.122699,0.016994 +bot_02433,churn_sensitive,0.3724,0.4387,0.2212,0.4887,0.4470,0.2584,0.7529,1.0000,0.5857,0.238932,0.238955,0.386888,0.135224 +bot_02434,balanced,1.0000,0.9823,0.9513,0.9789,1.0000,1.0000,0.8934,0.9259,1.0000,0.374053,0.284450,0.279492,0.062005 +bot_02435,splash_driven,1.0000,0.9659,1.0000,0.8943,0.8349,1.0000,0.9487,1.0000,1.0000,0.665978,0.224792,0.009376,0.099854 +bot_02436,balanced,0.9896,1.0000,1.0000,0.8366,0.9630,1.0000,1.0000,0.8411,0.9609,0.472956,0.286545,0.220471,0.020028 +bot_02437,interstitial_focus,0.7691,1.0000,0.6954,0.7248,1.0000,0.7164,0.9737,1.0000,1.0000,0.422996,0.333986,0.233374,0.009644 +bot_02438,interstitial_focus,0.6792,1.0000,0.9656,0.8781,1.0000,0.5714,1.0000,0.9564,0.9631,0.359747,0.432587,0.193432,0.014234 +bot_02439,splash_driven,1.0000,1.0000,1.0000,0.9195,0.9117,1.0000,0.8279,1.0000,0.8935,0.746894,0.131450,0.112065,0.009591 +bot_02440,balanced,1.0000,0.9565,1.0000,0.9049,0.9277,1.0000,0.9517,1.0000,1.0000,0.330886,0.487861,0.170174,0.011080 +bot_02441,network_bound,0.8647,1.0000,0.6612,0.9196,0.7475,0.5343,0.6389,1.0000,0.7557,0.131860,0.144160,0.330470,0.393510 +bot_02442,balanced,0.9445,1.0000,1.0000,0.8794,0.7973,0.9906,0.8514,1.0000,1.0000,0.246085,0.357743,0.290723,0.105449 +bot_02443,reward_heavy,1.0000,0.9883,1.0000,1.0000,0.8057,0.6148,0.9232,0.9934,1.0000,0.496081,0.377241,0.115666,0.011012 +bot_02444,reward_heavy,1.0000,0.5960,0.8316,1.0000,0.6196,0.7010,1.0000,1.0000,1.0000,0.765244,0.210384,0.012186,0.012186 +bot_02445,reward_heavy,1.0000,0.5985,0.5827,1.0000,0.6387,0.5892,0.9352,0.8637,1.0000,0.548251,0.380133,0.010657,0.060960 +bot_02446,interstitial_focus,0.8079,1.0000,0.6897,0.9173,1.0000,0.8726,0.9065,0.8791,1.0000,0.313731,0.510754,0.158851,0.016664 +bot_02447,reward_heavy,1.0000,0.8491,1.0000,1.0000,0.8132,0.7832,0.9283,0.9366,1.0000,0.511610,0.378115,0.008861,0.101414 +bot_02448,churn_sensitive,0.3387,0.6540,0.4150,0.5633,0.6706,0.4652,0.6902,1.0000,0.4808,0.314130,0.320078,0.200899,0.164893 +bot_02449,balanced,1.0000,0.9803,1.0000,1.0000,1.0000,1.0000,0.9746,1.0000,0.9774,0.355716,0.354928,0.246159,0.043197 +bot_02450,splash_driven,0.9155,0.7934,1.0000,1.0000,0.8144,1.0000,0.8500,1.0000,0.9430,0.918559,0.058951,0.011245,0.011245 +bot_02451,balanced,1.0000,1.0000,0.9511,1.0000,0.8958,1.0000,0.9892,0.9124,1.0000,0.540695,0.238403,0.138592,0.082310 +bot_02452,splash_driven,0.7835,0.8603,1.0000,1.0000,0.8662,1.0000,0.7869,0.9663,1.0000,0.661102,0.253418,0.021939,0.063541 +bot_02453,reward_heavy,1.0000,0.9056,1.0000,1.0000,0.9182,0.4909,1.0000,0.9068,1.0000,0.608100,0.235329,0.144468,0.012103 +bot_02454,splash_driven,1.0000,0.8946,1.0000,1.0000,1.0000,1.0000,0.9924,1.0000,0.9864,0.750767,0.137449,0.102877,0.008907 +bot_02455,interstitial_focus,0.8249,1.0000,0.8544,0.8126,1.0000,0.5077,1.0000,1.0000,1.0000,0.343835,0.441477,0.200390,0.014298 +bot_02456,reward_heavy,1.0000,0.8321,0.7212,1.0000,0.7770,0.8388,1.0000,0.8525,1.0000,0.479282,0.357035,0.092199,0.071485 +bot_02457,reward_heavy,1.0000,1.0000,0.9682,1.0000,0.7917,0.7508,1.0000,0.9022,1.0000,0.503694,0.274922,0.166686,0.054698 +bot_02458,splash_driven,1.0000,0.9975,1.0000,0.9840,1.0000,1.0000,0.8317,1.0000,1.0000,0.632436,0.218288,0.013414,0.135862 +bot_02459,interstitial_focus,0.6697,1.0000,0.7934,0.7322,1.0000,0.6530,0.9941,0.8353,0.9519,0.348657,0.326757,0.242848,0.081738 +bot_02460,reward_heavy,1.0000,0.8330,0.5659,1.0000,0.8973,0.4290,1.0000,0.8587,1.0000,0.520644,0.224355,0.193538,0.061463 +bot_02461,splash_driven,1.0000,0.6889,1.0000,1.0000,1.0000,1.0000,0.9092,1.0000,0.9892,0.787175,0.090719,0.109246,0.012860 +bot_02462,churn_sensitive,0.4936,0.6515,0.4988,0.8142,0.3646,0.6140,0.5818,1.0000,0.4959,0.260148,0.128133,0.341291,0.270427 +bot_02463,balanced,1.0000,0.8984,1.0000,1.0000,0.9426,1.0000,0.8782,1.0000,0.9113,0.396273,0.360706,0.082997,0.160024 +bot_02464,reward_heavy,1.0000,0.9299,0.6520,1.0000,0.9697,0.4274,1.0000,0.8525,1.0000,0.578783,0.373737,0.036590,0.010891 +bot_02465,reward_heavy,1.0000,1.0000,0.6373,1.0000,0.7235,0.4954,0.9365,0.9863,1.0000,0.474317,0.293252,0.137784,0.094648 +bot_02466,churn_sensitive,0.5364,0.8005,0.3727,0.4669,0.3652,0.4758,0.5937,1.0000,0.4809,0.217069,0.208785,0.317703,0.256443 +bot_02467,reward_heavy,1.0000,0.9635,0.6460,1.0000,0.6755,0.7783,0.9525,0.9373,1.0000,0.663730,0.254922,0.047773,0.033576 +bot_02468,reward_heavy,1.0000,0.8299,0.9790,1.0000,0.7809,0.5478,1.0000,0.8017,1.0000,0.573713,0.283100,0.032269,0.110918 +bot_02469,reward_heavy,1.0000,0.8210,0.8094,1.0000,0.7794,0.7181,0.8925,0.7700,1.0000,0.555314,0.312527,0.028985,0.103173 +bot_02470,balanced,0.9391,1.0000,0.8890,1.0000,1.0000,0.8056,1.0000,0.9566,1.0000,0.321170,0.298408,0.227417,0.153004 +bot_02471,balanced,0.8971,1.0000,1.0000,0.9786,0.9500,1.0000,0.9455,0.9955,1.0000,0.413189,0.427121,0.149733,0.009958 +bot_02472,interstitial_focus,0.6336,1.0000,0.9685,0.6076,1.0000,0.4894,0.8306,0.9100,1.0000,0.391280,0.336025,0.187506,0.085189 +bot_02473,balanced,1.0000,1.0000,1.0000,0.8435,1.0000,1.0000,0.9531,1.0000,1.0000,0.432331,0.265525,0.293432,0.008712 +bot_02474,churn_sensitive,0.5202,0.7572,0.2413,0.5920,0.4509,0.4209,0.5884,0.9960,0.6319,0.172666,0.254712,0.344094,0.228528 +bot_02475,reward_heavy,1.0000,0.7804,0.7062,1.0000,0.7062,0.6025,1.0000,0.8085,1.0000,0.518079,0.316475,0.124382,0.041065 +bot_02476,splash_driven,0.8631,1.0000,1.0000,0.8863,1.0000,1.0000,0.7588,1.0000,1.0000,0.615214,0.176869,0.091363,0.116554 +bot_02477,reward_heavy,1.0000,0.6265,0.9662,1.0000,0.8986,0.4930,1.0000,0.8776,1.0000,0.539072,0.294672,0.155294,0.010962 +bot_02478,network_bound,0.7253,0.9723,0.8155,1.0000,0.6781,0.5569,0.8028,1.0000,0.7868,0.011161,0.135255,0.354824,0.498760 +bot_02479,churn_sensitive,0.4147,0.8690,0.3103,0.4294,0.5523,0.5214,0.6587,1.0000,0.6044,0.374870,0.160022,0.316602,0.148506 +bot_02480,splash_driven,1.0000,0.8372,1.0000,0.9111,0.9923,1.0000,1.0000,1.0000,1.0000,0.670511,0.067637,0.157063,0.104790 +bot_02481,interstitial_focus,0.5090,1.0000,0.5929,0.9100,1.0000,0.6662,0.8431,1.0000,1.0000,0.233544,0.428592,0.326102,0.011763 +bot_02482,splash_driven,0.9606,0.7060,1.0000,0.8778,1.0000,1.0000,1.0000,1.0000,0.8822,0.846851,0.130161,0.011494,0.011494 +bot_02483,interstitial_focus,0.7770,1.0000,0.8422,0.6085,1.0000,0.7923,0.9955,1.0000,1.0000,0.328618,0.562181,0.097684,0.011516 +bot_02484,splash_driven,1.0000,0.9823,1.0000,0.8463,0.8310,1.0000,0.7959,0.8118,0.9936,0.623452,0.235203,0.130977,0.010368 +bot_02485,splash_driven,0.7693,1.0000,1.0000,0.9849,1.0000,1.0000,1.0000,1.0000,0.9649,0.708385,0.118626,0.096296,0.076693 +bot_02486,balanced,1.0000,1.0000,1.0000,0.9629,0.9392,0.8778,0.9339,1.0000,0.9793,0.392012,0.390724,0.152510,0.064754 +bot_02487,splash_driven,0.9205,1.0000,1.0000,1.0000,0.9860,1.0000,0.7751,1.0000,0.8913,0.763752,0.118373,0.108384,0.009491 +bot_02488,reward_heavy,1.0000,0.9175,0.7785,1.0000,0.7489,0.6537,1.0000,0.9814,1.0000,0.688221,0.183804,0.009671,0.118304 +bot_02489,reward_heavy,1.0000,0.7631,0.8841,1.0000,0.7608,0.6781,1.0000,0.6930,1.0000,0.467493,0.278326,0.199155,0.055027 +bot_02490,balanced,1.0000,0.9150,1.0000,1.0000,0.9771,0.9649,0.9703,0.8891,1.0000,0.400869,0.204919,0.218760,0.175452 +bot_02491,splash_driven,0.8694,0.7507,1.0000,1.0000,1.0000,1.0000,1.0000,0.9335,1.0000,0.723803,0.154950,0.009966,0.111281 +bot_02492,churn_sensitive,0.5285,0.7475,0.5041,0.6933,0.5493,0.2971,0.7490,1.0000,0.5946,0.385522,0.259027,0.220903,0.134549 +bot_02493,splash_driven,0.7730,1.0000,1.0000,0.9666,0.9853,1.0000,0.8722,0.9230,0.9843,0.760423,0.164893,0.011263,0.063421 +bot_02494,reward_heavy,1.0000,0.7131,0.6735,1.0000,0.6580,0.4455,1.0000,0.7870,1.0000,0.564175,0.271283,0.154100,0.010442 +bot_02495,reward_heavy,1.0000,0.9086,0.6455,1.0000,0.5594,0.6495,0.8848,0.7625,1.0000,0.665512,0.310791,0.011848,0.011848 +bot_02496,splash_driven,0.9547,0.8229,1.0000,1.0000,1.0000,1.0000,0.7957,0.9190,1.0000,0.826501,0.086316,0.013086,0.074098 +bot_02497,network_bound,1.0000,0.8459,0.9945,0.6906,0.7922,0.8627,0.6768,1.0000,0.7206,0.090515,0.149499,0.385972,0.374014 +bot_02498,churn_sensitive,0.6115,0.7322,0.5179,0.8014,0.4114,0.2442,0.6419,1.0000,0.5333,0.140944,0.403144,0.190460,0.265452 +bot_02499,interstitial_focus,0.5037,1.0000,1.0000,0.7611,1.0000,0.7436,1.0000,1.0000,1.0000,0.395943,0.256504,0.195488,0.152065 +bot_02500,balanced,0.9364,1.0000,1.0000,1.0000,0.8913,1.0000,1.0000,0.9816,1.0000,0.376570,0.226365,0.247710,0.149356 +bot_02501,splash_driven,0.7159,0.7586,1.0000,1.0000,0.8227,1.0000,0.9015,0.9474,0.9757,0.748456,0.228697,0.011423,0.011423 +bot_02502,splash_driven,0.7013,0.9891,1.0000,0.9524,1.0000,1.0000,0.9288,1.0000,1.0000,0.751539,0.071930,0.121220,0.055311 +bot_02503,network_bound,0.7763,0.9408,0.8906,0.8097,0.8610,0.7050,0.6795,1.0000,0.9303,0.013623,0.237104,0.213706,0.535567 +bot_02504,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.451864,0.270846,0.262532,0.014757 +bot_02505,balanced,0.9829,1.0000,1.0000,0.9946,0.9838,1.0000,0.9766,1.0000,1.0000,0.451570,0.298444,0.069926,0.180060 +bot_02506,interstitial_focus,0.6820,1.0000,0.8499,0.8079,1.0000,0.8667,1.0000,0.8845,1.0000,0.508027,0.400254,0.079141,0.012577 +bot_02507,churn_sensitive,0.4103,0.7814,0.2724,0.5818,0.7408,0.6387,0.7804,1.0000,0.6964,0.328183,0.292123,0.207604,0.172091 +bot_02508,interstitial_focus,0.8984,1.0000,0.8030,0.6328,1.0000,0.6876,0.9554,0.9410,1.0000,0.311765,0.467803,0.211802,0.008630 +bot_02509,splash_driven,0.9514,0.8298,1.0000,0.8112,1.0000,1.0000,0.8187,0.8123,0.8955,0.680847,0.174801,0.136207,0.008146 +bot_02510,reward_heavy,1.0000,0.6868,0.7989,1.0000,0.5861,0.5483,1.0000,0.8224,1.0000,0.535123,0.298447,0.155887,0.010543 +bot_02511,interstitial_focus,0.8201,1.0000,0.8441,0.6134,1.0000,0.6678,0.8859,0.9822,0.9704,0.255477,0.445982,0.288913,0.009628 +bot_02512,balanced,1.0000,1.0000,1.0000,0.8591,0.8150,1.0000,1.0000,1.0000,1.0000,0.438573,0.263474,0.246215,0.051738 +bot_02513,reward_heavy,1.0000,0.6065,0.7466,1.0000,0.6013,0.5949,1.0000,1.0000,1.0000,0.699856,0.269562,0.015291,0.015291 +bot_02514,balanced,1.0000,1.0000,0.9983,1.0000,1.0000,1.0000,1.0000,0.8206,0.8843,0.343997,0.336481,0.301862,0.017660 +bot_02515,interstitial_focus,0.9050,1.0000,1.0000,0.8919,1.0000,0.8193,1.0000,0.9215,1.0000,0.534745,0.365455,0.086436,0.013364 +bot_02516,churn_sensitive,0.7508,0.8135,0.4562,0.6591,0.3567,0.4149,0.5989,1.0000,0.5265,0.231936,0.283800,0.173464,0.310800 +bot_02517,splash_driven,0.7278,1.0000,1.0000,0.9089,1.0000,1.0000,0.9064,0.9391,1.0000,0.876713,0.101856,0.010716,0.010716 +bot_02518,splash_driven,0.6764,0.8038,1.0000,1.0000,0.8889,1.0000,0.9244,1.0000,1.0000,0.845662,0.036469,0.106419,0.011450 +bot_02519,reward_heavy,1.0000,0.9818,0.6322,1.0000,0.6429,0.7410,0.9611,0.8628,1.0000,0.584997,0.174178,0.100479,0.140346 +bot_02520,splash_driven,1.0000,0.7914,1.0000,0.8381,1.0000,1.0000,1.0000,0.9153,1.0000,0.669649,0.124702,0.149775,0.055873 +bot_02521,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8764,1.0000,1.0000,1.0000,0.482603,0.403510,0.104738,0.009149 +bot_02522,network_bound,0.7134,0.8312,0.7820,1.0000,0.9365,0.5633,0.7243,1.0000,0.7850,0.127566,0.210132,0.225363,0.436939 +bot_02523,splash_driven,0.9342,0.9475,1.0000,1.0000,0.8837,1.0000,0.8343,1.0000,0.8776,0.711450,0.206510,0.069946,0.012094 +bot_02524,balanced,0.9154,0.9899,0.9495,1.0000,1.0000,1.0000,1.0000,0.9643,0.9430,0.376232,0.252735,0.360890,0.010144 +bot_02525,reward_heavy,1.0000,0.8882,0.7826,1.0000,0.6482,0.6446,1.0000,0.7801,1.0000,0.715160,0.197214,0.057867,0.029758 +bot_02526,interstitial_focus,0.8251,1.0000,0.9602,0.8153,1.0000,0.5731,0.9871,0.8845,1.0000,0.268328,0.432769,0.237079,0.061825 +bot_02527,balanced,0.9166,0.9043,1.0000,0.9636,0.9291,0.8199,0.9127,1.0000,0.8919,0.590238,0.249345,0.149543,0.010874 +bot_02528,balanced,0.8729,1.0000,1.0000,1.0000,1.0000,1.0000,0.9654,1.0000,0.9819,0.341275,0.356098,0.254405,0.048222 +bot_02529,reward_heavy,1.0000,0.6847,0.9975,1.0000,0.9642,0.6360,0.9008,0.7728,1.0000,0.590173,0.367185,0.030693,0.011949 +bot_02530,interstitial_focus,0.8351,1.0000,0.6799,0.9427,1.0000,0.5135,0.9643,0.8281,1.0000,0.379580,0.376436,0.187938,0.056047 +bot_02531,interstitial_focus,0.8747,1.0000,0.8303,0.6810,1.0000,0.5315,1.0000,0.8214,1.0000,0.229403,0.382129,0.375766,0.012702 +bot_02532,splash_driven,0.9214,0.7219,1.0000,1.0000,0.9317,1.0000,0.9619,0.9803,1.0000,0.771970,0.160840,0.054449,0.012740 +bot_02533,reward_heavy,1.0000,0.8794,0.5802,1.0000,0.7684,0.5295,1.0000,0.8063,1.0000,0.588104,0.304921,0.096158,0.010817 +bot_02534,interstitial_focus,0.5411,1.0000,0.6644,0.9426,1.0000,0.8228,0.9761,0.8413,0.9476,0.228519,0.587737,0.093652,0.090091 +bot_02535,reward_heavy,1.0000,0.6576,1.0000,1.0000,0.6860,0.8196,1.0000,0.9101,1.0000,0.468592,0.328005,0.098364,0.105039 +bot_02536,interstitial_focus,0.9100,1.0000,0.7288,0.9343,1.0000,0.6809,0.8722,0.8934,1.0000,0.394413,0.409531,0.068685,0.127370 +bot_02537,reward_heavy,1.0000,0.8086,0.9568,1.0000,0.5483,0.7914,0.9538,0.8132,1.0000,0.571211,0.279555,0.140186,0.009048 +bot_02538,reward_heavy,1.0000,0.8455,0.7362,1.0000,0.8233,0.8168,0.9201,0.9527,1.0000,0.628683,0.154771,0.207610,0.008936 +bot_02539,splash_driven,0.7152,0.9376,1.0000,1.0000,1.0000,1.0000,0.9189,0.9368,1.0000,0.614008,0.266184,0.110215,0.009593 +bot_02540,interstitial_focus,0.8869,1.0000,0.8788,0.5791,1.0000,0.7220,1.0000,0.9599,1.0000,0.447063,0.418073,0.123279,0.011585 +bot_02541,reward_heavy,1.0000,0.6955,0.8320,1.0000,0.5924,0.4638,0.9466,0.6963,1.0000,0.535450,0.371374,0.083606,0.009570 +bot_02542,interstitial_focus,0.6152,1.0000,0.8692,0.9148,1.0000,0.5316,0.9256,0.8280,1.0000,0.357015,0.348112,0.149824,0.145049 +bot_02543,interstitial_focus,0.5612,1.0000,0.6467,0.8057,1.0000,0.5848,1.0000,1.0000,1.0000,0.377075,0.259980,0.306091,0.056854 +bot_02544,interstitial_focus,0.8374,1.0000,0.9989,0.6029,1.0000,0.6991,0.8920,0.8713,1.0000,0.332582,0.393139,0.257120,0.017158 +bot_02545,churn_sensitive,0.3777,0.7100,0.5942,0.7081,0.4023,0.5347,0.6470,1.0000,0.4712,0.233848,0.414733,0.271378,0.080042 +bot_02546,balanced,0.9337,1.0000,0.9838,1.0000,0.9976,0.9868,1.0000,1.0000,0.9995,0.320471,0.240807,0.286962,0.151760 +bot_02547,network_bound,0.6875,0.7649,0.6795,0.8776,0.9521,0.5037,0.6548,1.0000,0.9076,0.211014,0.237898,0.195048,0.356040 +bot_02548,network_bound,0.8629,0.8364,0.7020,0.9023,0.9444,0.9292,0.7793,1.0000,0.8217,0.174143,0.185576,0.269067,0.371214 +bot_02549,balanced,0.8114,1.0000,1.0000,1.0000,0.9523,0.9147,0.9461,0.8620,0.8892,0.479248,0.170909,0.323324,0.026519 +bot_02550,balanced,1.0000,0.9747,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9763,0.350967,0.367768,0.266248,0.015017 +bot_02551,interstitial_focus,0.6552,1.0000,1.0000,0.9784,1.0000,0.8514,0.8019,1.0000,1.0000,0.226769,0.379169,0.382463,0.011598 +bot_02552,splash_driven,1.0000,1.0000,1.0000,0.8594,0.8626,1.0000,0.9340,0.8280,0.9798,0.793072,0.181794,0.012567,0.012567 +bot_02553,splash_driven,1.0000,0.9473,1.0000,0.9341,1.0000,1.0000,0.9828,1.0000,0.9462,0.712135,0.191658,0.086423,0.009784 +bot_02554,splash_driven,1.0000,0.9339,1.0000,1.0000,0.9536,1.0000,0.7534,1.0000,0.8870,0.843328,0.052417,0.092881,0.011375 +bot_02555,balanced,0.9930,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8845,0.9029,0.476712,0.435842,0.077515,0.009932 +bot_02556,reward_heavy,1.0000,0.9330,0.5870,1.0000,0.6707,0.4044,1.0000,0.7987,1.0000,0.547446,0.430953,0.010801,0.010801 +bot_02557,splash_driven,0.7953,1.0000,1.0000,1.0000,1.0000,1.0000,0.9695,0.9941,1.0000,0.666407,0.189322,0.136569,0.007702 +bot_02558,interstitial_focus,0.6368,1.0000,0.7501,0.8823,1.0000,0.5722,0.8660,1.0000,0.9562,0.329836,0.467133,0.120367,0.082665 +bot_02559,network_bound,0.9247,0.6472,0.9882,0.9205,0.8111,0.9264,0.6612,1.0000,0.9187,0.010801,0.247839,0.347724,0.393636 +bot_02560,network_bound,0.6949,0.6991,0.6354,0.9395,0.9509,0.8729,0.5370,1.0000,0.8157,0.131927,0.244802,0.360954,0.262318 +bot_02561,reward_heavy,1.0000,0.8997,0.7216,1.0000,0.5515,0.5370,1.0000,0.7851,1.0000,0.719964,0.174511,0.088883,0.016642 +bot_02562,balanced,0.9113,0.8902,1.0000,0.8505,1.0000,1.0000,1.0000,0.8796,0.9661,0.289776,0.315713,0.341329,0.053183 +bot_02563,splash_driven,0.9692,0.7679,1.0000,0.8661,1.0000,1.0000,0.7918,1.0000,1.0000,0.672357,0.156325,0.136718,0.034600 +bot_02564,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8038,0.8965,0.8649,1.0000,0.433622,0.274642,0.283014,0.008722 +bot_02565,interstitial_focus,0.6252,1.0000,0.8765,0.8770,1.0000,0.4838,0.8958,0.9593,0.9933,0.286349,0.399655,0.257451,0.056545 +bot_02566,churn_sensitive,0.7366,0.8006,0.5842,0.6542,0.5203,0.5768,0.6189,1.0000,0.6798,0.258896,0.336800,0.172439,0.231865 +bot_02567,churn_sensitive,0.3244,0.6802,0.5313,0.7262,0.6717,0.5701,0.8323,1.0000,0.5577,0.322213,0.200347,0.377261,0.100179 +bot_02568,balanced,1.0000,1.0000,0.9157,1.0000,1.0000,1.0000,0.9887,0.8748,1.0000,0.382879,0.324766,0.143928,0.148427 +bot_02569,splash_driven,0.9155,1.0000,1.0000,1.0000,1.0000,1.0000,0.9340,1.0000,1.0000,0.631204,0.230122,0.054776,0.083898 +bot_02570,churn_sensitive,0.4179,0.4020,0.3625,0.6236,0.3627,0.6581,0.5663,1.0000,0.6608,0.300445,0.341380,0.203165,0.155010 +bot_02571,reward_heavy,1.0000,0.6947,0.8783,1.0000,0.8232,0.4235,1.0000,0.9080,1.0000,0.605876,0.363993,0.017551,0.012579 +bot_02572,splash_driven,0.9061,0.8111,1.0000,1.0000,1.0000,1.0000,0.9480,0.9608,0.9390,0.652116,0.237599,0.007358,0.102928 +bot_02573,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.9279,0.4356,1.0000,1.0000,1.0000,0.526876,0.236316,0.201488,0.035321 +bot_02574,splash_driven,0.8471,0.9025,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9901,0.606355,0.218910,0.009750,0.164985 +bot_02575,churn_sensitive,0.6653,0.5729,0.2298,0.5440,0.4788,0.4945,0.6740,1.0000,0.5360,0.364323,0.304776,0.264132,0.066769 +bot_02576,reward_heavy,1.0000,0.9565,0.7158,1.0000,0.8943,0.8160,1.0000,0.7100,1.0000,0.723873,0.256659,0.009734,0.009734 +bot_02577,balanced,1.0000,1.0000,1.0000,1.0000,0.8240,1.0000,1.0000,0.9091,0.9317,0.326867,0.487852,0.129694,0.055587 +bot_02578,splash_driven,1.0000,1.0000,1.0000,0.9050,1.0000,1.0000,0.9634,0.9654,0.9366,0.738073,0.240394,0.010767,0.010767 +bot_02579,splash_driven,0.8705,0.9324,1.0000,1.0000,1.0000,1.0000,0.9887,0.8564,1.0000,0.653088,0.251811,0.077894,0.017206 +bot_02580,churn_sensitive,0.5540,0.7290,0.5164,0.5156,0.5807,0.5978,0.7859,1.0000,0.6147,0.260112,0.241906,0.356060,0.141922 +bot_02581,balanced,1.0000,1.0000,0.9881,1.0000,0.9160,1.0000,0.9933,0.8800,1.0000,0.464747,0.369328,0.157404,0.008521 +bot_02582,balanced,0.9953,1.0000,0.9828,0.9070,1.0000,0.8855,0.9262,1.0000,1.0000,0.381941,0.335029,0.274366,0.008664 +bot_02583,splash_driven,0.7840,0.8039,1.0000,1.0000,0.9674,1.0000,1.0000,1.0000,1.0000,0.605989,0.184581,0.132097,0.077333 +bot_02584,reward_heavy,1.0000,0.7572,0.8236,1.0000,0.9511,0.6518,1.0000,0.7902,1.0000,0.557140,0.385123,0.047806,0.009930 +bot_02585,splash_driven,0.8470,0.7040,1.0000,1.0000,0.8913,1.0000,1.0000,1.0000,0.9254,0.645058,0.288690,0.056802,0.009450 +bot_02586,balanced,0.8673,0.9286,0.9542,1.0000,0.7901,0.9933,1.0000,0.8483,1.0000,0.354227,0.424594,0.154948,0.066231 +bot_02587,splash_driven,0.9156,1.0000,1.0000,1.0000,0.8762,1.0000,1.0000,1.0000,1.0000,0.727677,0.104084,0.093295,0.074943 +bot_02588,balanced,1.0000,1.0000,0.9315,1.0000,0.9460,1.0000,0.9268,0.8817,0.9998,0.291782,0.275771,0.280902,0.151544 +bot_02589,churn_sensitive,0.4226,0.8642,0.6186,0.4547,0.6369,0.3642,0.7011,1.0000,0.6315,0.322014,0.305698,0.313190,0.059098 +bot_02590,network_bound,0.7017,0.8822,0.9695,0.7072,0.8578,0.8767,0.5937,1.0000,0.8196,0.046530,0.155805,0.365317,0.432348 +bot_02591,interstitial_focus,0.8036,1.0000,0.9648,0.8872,1.0000,0.6957,0.8482,0.9050,1.0000,0.296768,0.380901,0.201072,0.121260 +bot_02592,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8753,0.9142,0.8880,0.507108,0.197792,0.163861,0.131239 +bot_02593,reward_heavy,1.0000,0.8471,0.8192,1.0000,0.5402,0.7618,0.9815,0.9833,1.0000,0.585943,0.276181,0.008388,0.129488 +bot_02594,balanced,1.0000,1.0000,1.0000,0.8811,0.8704,1.0000,0.9464,0.9461,1.0000,0.511984,0.408368,0.070128,0.009520 +bot_02595,splash_driven,0.6857,0.8500,1.0000,1.0000,0.9754,1.0000,0.7832,1.0000,1.0000,0.774432,0.131489,0.010278,0.083801 +bot_02596,balanced,1.0000,0.8922,1.0000,1.0000,1.0000,0.9442,1.0000,0.9000,0.8870,0.339981,0.407311,0.154671,0.098038 +bot_02597,balanced,0.8648,1.0000,0.8775,1.0000,0.9505,0.8700,0.9047,0.8279,1.0000,0.402394,0.342397,0.195377,0.059832 +bot_02598,splash_driven,0.6674,0.8034,1.0000,1.0000,1.0000,1.0000,0.7944,0.9459,0.9336,0.606150,0.232874,0.053066,0.107910 +bot_02599,churn_sensitive,0.5391,0.8414,0.6162,0.7515,0.7451,0.3113,0.8765,1.0000,0.6473,0.263662,0.223444,0.381870,0.131024 +bot_02600,network_bound,0.8194,1.0000,0.5841,0.8877,0.8482,0.6407,0.7630,1.0000,0.7702,0.095021,0.233720,0.274462,0.396797 +bot_02601,interstitial_focus,0.6729,1.0000,0.7808,0.6167,1.0000,0.4973,0.8589,1.0000,1.0000,0.359951,0.226649,0.274661,0.138739 +bot_02602,reward_heavy,1.0000,0.8350,0.5817,1.0000,0.6360,0.4270,1.0000,1.0000,1.0000,0.430790,0.256506,0.203615,0.109089 +bot_02603,network_bound,0.8697,0.9280,0.8423,0.9697,0.7511,0.8865,0.6220,1.0000,0.7729,0.123542,0.185688,0.188615,0.502155 +bot_02604,interstitial_focus,0.9107,1.0000,0.9425,0.6665,1.0000,0.5257,0.8684,1.0000,0.9503,0.440916,0.406554,0.142788,0.009742 +bot_02605,reward_heavy,1.0000,0.7785,0.9746,1.0000,0.8653,0.6256,1.0000,0.9996,1.0000,0.646466,0.181883,0.014343,0.157308 +bot_02606,balanced,0.8681,1.0000,1.0000,1.0000,0.9330,0.8880,1.0000,0.9443,1.0000,0.486964,0.390608,0.113346,0.009082 +bot_02607,interstitial_focus,0.5820,1.0000,0.9889,0.6011,1.0000,0.7686,0.8654,0.9789,1.0000,0.297782,0.416299,0.272766,0.013153 +bot_02608,interstitial_focus,0.7854,1.0000,0.7202,0.8237,1.0000,0.5673,0.9039,0.8382,1.0000,0.301969,0.411215,0.273928,0.012888 +bot_02609,churn_sensitive,0.7609,0.7830,0.6342,0.6903,0.4425,0.5247,0.6000,1.0000,0.6995,0.248866,0.289796,0.302707,0.158631 +bot_02610,reward_heavy,1.0000,0.7759,0.6475,1.0000,0.7525,0.8184,1.0000,0.8767,1.0000,0.519955,0.263777,0.205297,0.010971 +bot_02611,churn_sensitive,0.4193,0.6445,0.3806,0.6044,0.3628,0.5899,0.7625,1.0000,0.6805,0.322674,0.282954,0.299777,0.094595 +bot_02612,churn_sensitive,0.4798,0.8195,0.4486,0.6867,0.5938,0.6694,0.8601,1.0000,0.4740,0.269393,0.195816,0.436763,0.098028 +bot_02613,balanced,1.0000,1.0000,0.9462,1.0000,1.0000,1.0000,0.9220,0.9247,0.9508,0.401464,0.312390,0.187959,0.098187 +bot_02614,balanced,0.9177,0.9577,1.0000,1.0000,1.0000,1.0000,0.8428,1.0000,0.9546,0.309087,0.399641,0.141979,0.149292 +bot_02615,balanced,1.0000,1.0000,1.0000,0.9490,0.9426,1.0000,0.9127,0.9464,1.0000,0.465892,0.261236,0.258218,0.014654 +bot_02616,reward_heavy,1.0000,0.7040,0.7842,1.0000,0.6011,0.4441,1.0000,0.9165,1.0000,0.651636,0.223384,0.010100,0.114881 +bot_02617,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9144,1.0000,0.8414,0.9233,0.345131,0.418693,0.102171,0.134005 +bot_02618,network_bound,1.0000,0.6752,0.7764,0.9479,0.5665,0.5771,0.8324,1.0000,0.7482,0.164800,0.173539,0.393085,0.268576 +bot_02619,reward_heavy,1.0000,0.9852,0.7914,1.0000,0.9619,0.4301,0.9101,0.8699,1.0000,0.668279,0.306824,0.012448,0.012448 +bot_02620,reward_heavy,1.0000,1.0000,0.8070,1.0000,0.8881,0.6149,1.0000,1.0000,1.0000,0.568730,0.212765,0.207862,0.010644 +bot_02621,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8924,0.8311,0.9327,0.697952,0.087874,0.140875,0.073299 +bot_02622,interstitial_focus,0.9158,1.0000,0.6983,0.7402,1.0000,0.8067,0.8696,1.0000,0.9648,0.322092,0.384050,0.188151,0.105707 +bot_02623,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9034,1.0000,1.0000,0.9621,0.484485,0.208234,0.133392,0.173889 +bot_02624,churn_sensitive,0.5984,0.4715,0.3485,0.7116,0.6141,0.4108,0.7381,1.0000,0.6155,0.208758,0.158997,0.388021,0.244225 +bot_02625,splash_driven,1.0000,0.7947,1.0000,0.9212,1.0000,1.0000,0.9975,0.9046,1.0000,0.851497,0.113010,0.024925,0.010568 +bot_02626,balanced,0.8736,1.0000,1.0000,1.0000,0.7871,1.0000,0.9765,1.0000,0.9048,0.332276,0.342335,0.286302,0.039087 +bot_02627,churn_sensitive,0.4192,0.5465,0.5192,0.6021,0.6319,0.5784,0.6155,1.0000,0.5248,0.266915,0.246466,0.300571,0.186047 +bot_02628,interstitial_focus,0.8379,1.0000,0.8022,0.8212,1.0000,0.6588,0.8754,1.0000,1.0000,0.345717,0.371018,0.212574,0.070691 +bot_02629,balanced,0.8469,1.0000,1.0000,0.8465,0.9681,0.9048,0.9850,0.9903,1.0000,0.512932,0.234892,0.242018,0.010158 +bot_02630,splash_driven,0.6446,0.9314,1.0000,1.0000,1.0000,1.0000,0.8672,0.9385,0.8784,0.737545,0.125824,0.128342,0.008289 +bot_02631,splash_driven,0.9680,0.9786,1.0000,1.0000,1.0000,1.0000,0.9209,0.9358,0.8537,0.543624,0.258483,0.076062,0.121831 +bot_02632,balanced,1.0000,1.0000,1.0000,1.0000,0.9981,1.0000,0.9774,0.9093,0.9770,0.461354,0.207401,0.176442,0.154803 +bot_02633,reward_heavy,1.0000,0.8056,0.8097,1.0000,0.9009,0.5403,1.0000,0.6915,1.0000,0.620100,0.339213,0.031947,0.008740 +bot_02634,balanced,1.0000,1.0000,1.0000,1.0000,0.9777,1.0000,1.0000,0.8610,0.9141,0.280755,0.277378,0.229009,0.212857 +bot_02635,network_bound,0.7656,0.7853,0.8184,0.7695,0.8392,0.7207,0.7663,1.0000,0.7717,0.179122,0.302249,0.206421,0.312208 +bot_02636,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8877,1.0000,1.0000,0.367684,0.252286,0.248198,0.131832 +bot_02637,balanced,1.0000,1.0000,1.0000,0.9034,0.9939,0.8244,1.0000,0.9702,0.9250,0.441228,0.392704,0.068991,0.097076 +bot_02638,interstitial_focus,0.7179,1.0000,0.9980,0.5943,1.0000,0.6123,1.0000,0.8800,0.9468,0.296035,0.431092,0.262568,0.010304 +bot_02639,interstitial_focus,0.5766,1.0000,0.9987,0.9390,1.0000,0.8740,1.0000,0.8973,1.0000,0.275889,0.369945,0.244500,0.109666 +bot_02640,reward_heavy,1.0000,0.8480,0.5759,1.0000,0.5874,0.7502,0.9050,0.7265,1.0000,0.599590,0.271901,0.070463,0.058046 +bot_02641,interstitial_focus,0.6528,1.0000,0.6201,0.7598,1.0000,0.7580,1.0000,1.0000,1.0000,0.234328,0.372274,0.216419,0.176980 +bot_02642,reward_heavy,1.0000,0.6679,0.6930,1.0000,0.6038,0.6601,0.9077,0.8933,1.0000,0.725482,0.236898,0.022681,0.014938 +bot_02643,network_bound,0.6475,0.8753,0.7462,0.9970,0.8094,0.8117,0.5372,1.0000,0.8176,0.246621,0.201018,0.173408,0.378953 +bot_02644,reward_heavy,1.0000,0.8231,0.5758,1.0000,0.7439,0.6984,0.9595,0.7046,1.0000,0.474825,0.264663,0.169687,0.090825 +bot_02645,interstitial_focus,0.7977,1.0000,0.8870,0.8626,1.0000,0.5060,0.9563,0.9789,1.0000,0.194454,0.566967,0.112346,0.126234 +bot_02646,reward_heavy,1.0000,1.0000,0.7065,1.0000,0.7201,0.4988,1.0000,0.8776,1.0000,0.568390,0.189550,0.232118,0.009942 +bot_02647,churn_sensitive,0.6273,0.4891,0.4610,0.4743,0.3307,0.6004,0.6755,1.0000,0.5700,0.212673,0.241374,0.283203,0.262750 +bot_02648,splash_driven,0.7157,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9611,0.8954,0.851062,0.080969,0.013184,0.054785 +bot_02649,interstitial_focus,0.4968,1.0000,0.6480,0.7975,1.0000,0.8249,0.9542,1.0000,1.0000,0.442459,0.282107,0.169502,0.105932 +bot_02650,splash_driven,1.0000,0.9094,1.0000,0.9071,1.0000,1.0000,0.8441,1.0000,0.9303,0.570135,0.267475,0.114852,0.047538 +bot_02651,interstitial_focus,0.6990,1.0000,0.8898,0.5737,1.0000,0.6932,0.9506,1.0000,1.0000,0.271447,0.450630,0.210851,0.067072 +bot_02652,splash_driven,1.0000,0.8391,1.0000,0.9142,1.0000,1.0000,1.0000,0.9585,0.9038,0.718238,0.054438,0.139065,0.088260 +bot_02653,reward_heavy,1.0000,0.6968,0.9749,1.0000,0.8629,0.7190,1.0000,0.9455,1.0000,0.581870,0.305560,0.100844,0.011726 +bot_02654,balanced,1.0000,1.0000,1.0000,0.9254,1.0000,1.0000,0.9770,0.9855,1.0000,0.371332,0.327964,0.291215,0.009489 +bot_02655,splash_driven,0.8328,0.6988,1.0000,0.9962,0.9672,1.0000,1.0000,1.0000,1.0000,0.922436,0.041384,0.012026,0.024154 +bot_02656,balanced,0.9033,1.0000,0.8943,1.0000,0.8598,0.9619,0.8695,1.0000,1.0000,0.421736,0.295391,0.141766,0.141107 +bot_02657,balanced,1.0000,1.0000,1.0000,0.9785,1.0000,1.0000,1.0000,0.9849,1.0000,0.470506,0.232605,0.286628,0.010261 +bot_02658,interstitial_focus,0.5485,1.0000,0.6927,0.9043,1.0000,0.7242,0.8154,1.0000,1.0000,0.277222,0.460442,0.252343,0.009993 +bot_02659,reward_heavy,1.0000,0.8810,0.9451,1.0000,0.8684,0.5884,1.0000,0.7751,1.0000,0.567342,0.228517,0.192009,0.012132 +bot_02660,interstitial_focus,0.7764,1.0000,0.7854,0.7963,1.0000,0.6735,0.8655,1.0000,1.0000,0.391612,0.363163,0.203719,0.041505 +bot_02661,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.780740,0.085218,0.122456,0.011585 +bot_02662,reward_heavy,1.0000,0.8741,0.7145,1.0000,0.8710,0.5412,1.0000,0.9656,1.0000,0.526935,0.314242,0.125611,0.033212 +bot_02663,reward_heavy,1.0000,0.9964,0.9392,1.0000,0.7242,0.4229,1.0000,0.8457,1.0000,0.713356,0.210288,0.010020,0.066335 +bot_02664,interstitial_focus,0.5297,1.0000,0.7076,0.9333,1.0000,0.5602,0.8070,0.9452,1.0000,0.192946,0.535225,0.210908,0.060921 +bot_02665,network_bound,0.9476,0.8494,1.0000,0.7506,0.8287,0.7352,0.8383,1.0000,0.9102,0.099009,0.129205,0.412310,0.359477 +bot_02666,reward_heavy,1.0000,0.6612,0.9795,1.0000,0.9072,0.4509,0.8809,0.9972,1.0000,0.582200,0.216595,0.045484,0.155721 +bot_02667,splash_driven,0.8384,1.0000,1.0000,1.0000,1.0000,1.0000,0.9800,1.0000,0.8865,0.674856,0.208631,0.107869,0.008644 +bot_02668,reward_heavy,1.0000,0.8855,0.8285,1.0000,0.6686,0.5700,1.0000,0.9289,1.0000,0.711457,0.268976,0.009783,0.009783 +bot_02669,reward_heavy,1.0000,0.9214,0.8074,1.0000,0.6574,0.5903,1.0000,0.8406,1.0000,0.569780,0.170148,0.165602,0.094470 +bot_02670,reward_heavy,1.0000,0.9999,0.6464,1.0000,0.6230,0.7060,1.0000,0.8303,1.0000,0.439102,0.318724,0.232858,0.009316 +bot_02671,reward_heavy,1.0000,1.0000,0.6239,1.0000,0.7969,0.4029,1.0000,0.8867,1.0000,0.559488,0.183830,0.197215,0.059467 +bot_02672,splash_driven,0.8375,1.0000,1.0000,1.0000,0.8977,1.0000,0.9507,1.0000,1.0000,0.700564,0.104476,0.124130,0.070830 +bot_02673,interstitial_focus,0.6935,1.0000,1.0000,0.9171,1.0000,0.7842,0.9795,1.0000,1.0000,0.221946,0.477610,0.229343,0.071102 +bot_02674,splash_driven,0.6504,0.7198,1.0000,0.8087,1.0000,1.0000,1.0000,0.9784,1.0000,0.759800,0.221832,0.009184,0.009184 +bot_02675,reward_heavy,1.0000,0.9506,0.6875,1.0000,0.5740,0.5421,1.0000,0.6819,1.0000,0.502349,0.209921,0.260362,0.027368 +bot_02676,balanced,1.0000,1.0000,1.0000,1.0000,0.9830,0.9814,0.8438,0.8771,0.9610,0.452160,0.379096,0.158809,0.009935 +bot_02677,balanced,0.8310,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9531,1.0000,0.342707,0.373119,0.085099,0.199075 +bot_02678,interstitial_focus,0.5811,1.0000,1.0000,0.6842,1.0000,0.8169,0.8685,1.0000,1.0000,0.379888,0.407740,0.168029,0.044344 +bot_02679,balanced,0.8167,0.9183,1.0000,1.0000,1.0000,0.9529,0.9187,1.0000,0.9151,0.339458,0.371435,0.279630,0.009477 +bot_02680,reward_heavy,1.0000,0.8400,1.0000,1.0000,0.8347,0.7561,1.0000,0.9887,1.0000,0.596514,0.379340,0.012073,0.012073 +bot_02681,interstitial_focus,0.6237,1.0000,0.7477,0.8847,1.0000,0.8279,1.0000,0.9898,1.0000,0.258887,0.418593,0.163006,0.159514 +bot_02682,balanced,0.9460,0.9298,1.0000,1.0000,0.9481,1.0000,1.0000,0.8293,1.0000,0.379486,0.342384,0.105782,0.172348 +bot_02683,interstitial_focus,0.6061,1.0000,0.7223,0.6704,1.0000,0.7458,0.8708,1.0000,1.0000,0.242591,0.335116,0.331033,0.091260 +bot_02684,network_bound,1.0000,0.9659,0.7984,0.9876,0.8756,0.6343,0.8000,1.0000,0.7085,0.087137,0.336943,0.306021,0.269900 +bot_02685,reward_heavy,1.0000,0.6102,0.8296,1.0000,0.9474,0.4178,1.0000,0.8898,1.0000,0.510103,0.227439,0.153174,0.109284 +bot_02686,balanced,1.0000,1.0000,1.0000,1.0000,0.7833,1.0000,0.8493,1.0000,0.9968,0.276512,0.391433,0.177584,0.154471 +bot_02687,splash_driven,0.6900,1.0000,1.0000,1.0000,1.0000,1.0000,0.9517,0.9618,0.9009,0.633278,0.171296,0.045870,0.149556 +bot_02688,splash_driven,0.6833,1.0000,1.0000,0.8681,0.9949,1.0000,0.7788,1.0000,0.8537,0.826969,0.084713,0.078234,0.010084 +bot_02689,reward_heavy,1.0000,0.6001,0.9636,1.0000,0.6589,0.7098,1.0000,0.9600,1.0000,0.582531,0.225000,0.181874,0.010595 +bot_02690,reward_heavy,1.0000,0.9879,0.7357,1.0000,0.8008,0.5759,1.0000,0.7533,1.0000,0.814118,0.161058,0.013851,0.010973 +bot_02691,churn_sensitive,0.5429,0.7703,0.4477,0.7028,0.6308,0.5435,0.5932,1.0000,0.6017,0.296493,0.246285,0.378894,0.078328 +bot_02692,network_bound,0.8689,0.9149,0.9643,0.7914,0.8553,0.5671,0.7391,1.0000,0.8366,0.178153,0.234494,0.329094,0.258259 +bot_02693,network_bound,0.7519,0.9728,0.5772,0.8962,0.6612,0.8584,0.7182,1.0000,0.7649,0.012429,0.139155,0.530022,0.318394 +bot_02694,reward_heavy,1.0000,0.8062,0.8782,1.0000,0.7474,0.7158,1.0000,0.9923,1.0000,0.604656,0.288230,0.098077,0.009037 +bot_02695,network_bound,0.7039,0.7729,0.9519,0.6866,0.6189,0.7540,0.7027,1.0000,0.8014,0.201111,0.324452,0.194756,0.279681 +bot_02696,network_bound,0.6498,0.7469,0.6569,1.0000,0.9578,0.5099,0.6620,1.0000,0.7343,0.066141,0.289439,0.292397,0.352023 +bot_02697,churn_sensitive,0.3763,0.6638,0.4359,0.8145,0.6558,0.4040,0.6637,1.0000,0.6098,0.129567,0.279063,0.216746,0.374624 +bot_02698,balanced,1.0000,1.0000,1.0000,0.9477,1.0000,1.0000,0.9772,0.9096,0.9483,0.358287,0.249276,0.237900,0.154538 +bot_02699,splash_driven,1.0000,0.7905,1.0000,1.0000,1.0000,1.0000,1.0000,0.9902,0.9590,0.806137,0.029712,0.009320,0.154830 +bot_02700,splash_driven,0.7170,1.0000,1.0000,1.0000,0.8573,1.0000,0.8655,0.8408,0.9548,0.787625,0.172038,0.011490,0.028848 +bot_02701,interstitial_focus,0.7713,1.0000,0.8331,0.6701,1.0000,0.7990,0.8236,0.9523,0.9346,0.284826,0.410930,0.189372,0.114872 +bot_02702,balanced,0.8858,1.0000,1.0000,1.0000,0.8742,1.0000,0.9082,1.0000,1.0000,0.396085,0.250032,0.220892,0.132990 +bot_02703,balanced,1.0000,0.9723,0.9832,1.0000,0.8526,0.8383,0.9388,1.0000,1.0000,0.420562,0.402337,0.165878,0.011223 +bot_02704,reward_heavy,1.0000,0.8783,0.7327,1.0000,0.8953,0.5128,1.0000,1.0000,1.0000,0.581764,0.374730,0.033226,0.010280 +bot_02705,reward_heavy,1.0000,0.7034,0.9644,1.0000,0.7747,0.4662,0.9144,0.9959,1.0000,0.645146,0.283207,0.029466,0.042182 +bot_02706,reward_heavy,1.0000,0.8471,0.7231,1.0000,0.8745,0.5885,1.0000,0.9515,1.0000,0.587193,0.393284,0.009761,0.009761 +bot_02707,reward_heavy,1.0000,0.7304,0.9025,1.0000,0.9196,0.5939,0.9749,0.9413,1.0000,0.600890,0.154575,0.234907,0.009627 +bot_02708,splash_driven,0.7629,0.9759,1.0000,0.8288,0.9730,1.0000,0.9415,1.0000,0.9771,0.642603,0.231823,0.013475,0.112100 +bot_02709,splash_driven,0.6469,1.0000,1.0000,1.0000,1.0000,1.0000,0.8201,0.9288,0.8577,0.710625,0.271643,0.008866,0.008866 +bot_02710,splash_driven,0.8183,0.7292,1.0000,0.8790,1.0000,1.0000,0.7511,0.8346,1.0000,0.814251,0.109253,0.009487,0.067009 +bot_02711,reward_heavy,1.0000,0.9818,0.5697,1.0000,0.5755,0.7372,0.9592,1.0000,1.0000,0.704402,0.158035,0.127366,0.010198 +bot_02712,balanced,0.9600,1.0000,0.9120,0.9924,1.0000,0.9471,1.0000,1.0000,1.0000,0.378610,0.317203,0.188563,0.115624 +bot_02713,balanced,0.8685,0.9152,1.0000,1.0000,0.8958,1.0000,0.8525,0.9371,0.9084,0.439323,0.307444,0.154415,0.098818 +bot_02714,reward_heavy,1.0000,0.6580,0.9683,1.0000,0.7104,0.4669,0.9861,0.7129,1.0000,0.530614,0.222177,0.213516,0.033694 +bot_02715,reward_heavy,1.0000,0.6244,0.7634,1.0000,0.9178,0.4978,1.0000,0.8699,1.0000,0.563197,0.179150,0.247262,0.010391 +bot_02716,splash_driven,1.0000,0.8640,1.0000,0.9985,1.0000,1.0000,0.8220,0.8860,1.0000,0.890271,0.050538,0.011799,0.047392 +bot_02717,balanced,1.0000,1.0000,0.9926,1.0000,1.0000,1.0000,0.8596,1.0000,1.0000,0.549685,0.247580,0.188437,0.014297 +bot_02718,reward_heavy,1.0000,0.5923,0.9091,1.0000,0.6092,0.7681,1.0000,1.0000,1.0000,0.471398,0.335739,0.183230,0.009633 +bot_02719,churn_sensitive,0.5071,0.7888,0.5771,0.5874,0.3398,0.6443,0.5987,1.0000,0.6511,0.309944,0.256154,0.352235,0.081667 +bot_02720,balanced,0.8644,0.9829,1.0000,1.0000,1.0000,0.7940,0.9915,1.0000,1.0000,0.283897,0.396996,0.249441,0.069666 +bot_02721,balanced,1.0000,1.0000,1.0000,0.9361,0.9645,0.8027,1.0000,1.0000,0.9213,0.507648,0.178279,0.185364,0.128708 +bot_02722,network_bound,0.8177,0.9096,1.0000,1.0000,0.7135,0.7562,0.8395,1.0000,0.7842,0.042296,0.218451,0.264859,0.474393 +bot_02723,balanced,1.0000,0.9715,1.0000,1.0000,1.0000,1.0000,0.9264,0.8662,1.0000,0.531729,0.340770,0.114404,0.013098 +bot_02724,network_bound,0.9678,0.9028,0.9419,0.9801,0.7831,0.8221,0.5519,1.0000,0.8816,0.086008,0.247913,0.355739,0.310341 +bot_02725,reward_heavy,1.0000,0.5881,0.8209,1.0000,0.8716,0.6367,1.0000,0.8165,1.0000,0.683688,0.167651,0.039909,0.108752 +bot_02726,churn_sensitive,0.4204,0.7100,0.2829,0.3973,0.7409,0.3208,0.7242,1.0000,0.5593,0.254608,0.213530,0.368897,0.162965 +bot_02727,interstitial_focus,0.7620,1.0000,0.7146,0.9198,1.0000,0.5525,0.9499,1.0000,0.9811,0.373409,0.323636,0.211910,0.091044 +bot_02728,splash_driven,0.7491,0.9011,1.0000,1.0000,1.0000,1.0000,0.7807,1.0000,0.8769,0.854649,0.124849,0.010251,0.010251 +bot_02729,interstitial_focus,0.5827,1.0000,0.8298,0.6930,1.0000,0.7821,0.9416,1.0000,1.0000,0.267459,0.415313,0.182526,0.134702 +bot_02730,balanced,1.0000,1.0000,0.9449,1.0000,0.8725,0.9818,1.0000,1.0000,1.0000,0.433662,0.303377,0.150727,0.112234 +bot_02731,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9164,0.450230,0.270387,0.259858,0.019525 +bot_02732,churn_sensitive,0.6302,0.4257,0.4788,0.6182,0.4918,0.3784,0.6934,1.0000,0.6775,0.277283,0.196603,0.426193,0.099921 +bot_02733,balanced,1.0000,0.9515,1.0000,1.0000,1.0000,1.0000,0.8823,1.0000,0.9015,0.348656,0.257654,0.222509,0.171182 +bot_02734,interstitial_focus,0.7501,1.0000,0.8709,0.8098,1.0000,0.6325,0.8738,1.0000,0.9910,0.320048,0.583639,0.082162,0.014152 +bot_02735,churn_sensitive,0.7345,0.4748,0.2463,0.5188,0.3919,0.5059,0.6574,1.0000,0.6455,0.271535,0.298322,0.328676,0.101467 +bot_02736,reward_heavy,1.0000,0.9675,0.9097,1.0000,0.7945,0.5004,0.9943,0.9662,1.0000,0.584104,0.304203,0.102578,0.009115 +bot_02737,splash_driven,0.7989,1.0000,1.0000,1.0000,0.9971,1.0000,0.8928,1.0000,0.9946,0.635919,0.177111,0.130842,0.056129 +bot_02738,reward_heavy,1.0000,0.9038,0.9298,1.0000,0.7288,0.6361,0.9190,0.9307,1.0000,0.543195,0.355399,0.009475,0.091932 +bot_02739,balanced,1.0000,1.0000,0.9908,1.0000,0.9229,1.0000,1.0000,1.0000,1.0000,0.319359,0.280075,0.388649,0.011916 +bot_02740,reward_heavy,1.0000,0.7652,0.8823,1.0000,0.7337,0.6399,0.9843,1.0000,1.0000,0.525525,0.361046,0.017388,0.096041 +bot_02741,reward_heavy,1.0000,0.6073,0.6446,1.0000,0.9762,0.8303,1.0000,1.0000,1.0000,0.570995,0.264212,0.035427,0.129366 +bot_02742,splash_driven,0.8734,0.8812,1.0000,1.0000,0.9279,1.0000,1.0000,0.8960,0.9074,0.776453,0.187737,0.008726,0.027084 +bot_02743,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.8801,0.6017,1.0000,0.8434,1.0000,0.457421,0.302281,0.180317,0.059982 +bot_02744,interstitial_focus,0.5867,1.0000,0.8498,0.9113,1.0000,0.7425,0.9879,0.8289,1.0000,0.379588,0.457380,0.077312,0.085720 +bot_02745,balanced,0.9003,1.0000,1.0000,0.9193,0.7920,0.9881,0.8438,1.0000,0.9183,0.592991,0.229905,0.164787,0.012317 +bot_02746,network_bound,0.8467,0.8907,0.9550,0.8631,0.7571,0.7466,0.7216,1.0000,0.9039,0.158244,0.139111,0.333482,0.369163 +bot_02747,interstitial_focus,0.8034,1.0000,0.7909,0.6358,1.0000,0.7918,0.9599,1.0000,1.0000,0.175605,0.430791,0.256131,0.137473 +bot_02748,balanced,1.0000,0.9860,0.9649,1.0000,1.0000,0.8381,0.8924,0.9053,1.0000,0.403238,0.368872,0.142084,0.085806 +bot_02749,interstitial_focus,0.9455,1.0000,0.6205,0.9600,1.0000,0.6055,0.8735,1.0000,1.0000,0.269109,0.642748,0.076741,0.011402 +bot_02750,churn_sensitive,0.4514,0.8762,0.6779,0.4826,0.7430,0.6364,0.8565,1.0000,0.6331,0.248760,0.324004,0.245883,0.181352 +bot_02751,balanced,1.0000,1.0000,1.0000,0.8626,0.9685,1.0000,1.0000,0.8643,0.9165,0.329599,0.260961,0.221583,0.187857 +bot_02752,splash_driven,0.6772,0.8224,1.0000,1.0000,1.0000,1.0000,0.7504,1.0000,0.9857,0.778869,0.199031,0.011050,0.011050 +bot_02753,reward_heavy,1.0000,0.8284,0.6304,1.0000,0.8515,0.4290,1.0000,0.9866,1.0000,0.698384,0.282112,0.009752,0.009752 +bot_02754,reward_heavy,1.0000,0.6769,0.8140,1.0000,0.8741,0.4911,1.0000,0.6944,1.0000,0.570903,0.405330,0.011883,0.011883 +bot_02755,churn_sensitive,0.4943,0.5431,0.3732,0.4525,0.7019,0.6639,0.8078,1.0000,0.4636,0.150228,0.383538,0.313361,0.152873 +bot_02756,reward_heavy,1.0000,0.7702,0.6042,1.0000,0.8323,0.5769,1.0000,1.0000,1.0000,0.616382,0.317292,0.032192,0.034134 +bot_02757,churn_sensitive,0.7326,0.8487,0.4179,0.4649,0.5576,0.2518,0.8375,0.9871,0.5813,0.472598,0.177136,0.280456,0.069810 +bot_02758,reward_heavy,1.0000,0.8460,0.7070,1.0000,0.9400,0.4511,1.0000,0.8657,1.0000,0.660930,0.312524,0.013273,0.013273 +bot_02759,reward_heavy,1.0000,0.8830,0.8578,1.0000,0.7249,0.5912,1.0000,0.7435,1.0000,0.520216,0.335994,0.010355,0.133435 +bot_02760,reward_heavy,1.0000,0.7566,0.6226,1.0000,0.5789,0.6932,1.0000,1.0000,1.0000,0.544435,0.307916,0.138852,0.008797 +bot_02761,reward_heavy,1.0000,0.7958,0.9287,1.0000,0.5866,0.5880,0.9765,0.9335,1.0000,0.473508,0.293391,0.223085,0.010016 +bot_02762,interstitial_focus,0.7112,1.0000,0.7985,0.8286,1.0000,0.7248,0.9834,1.0000,1.0000,0.231875,0.316542,0.264926,0.186657 +bot_02763,splash_driven,0.7234,0.9042,1.0000,0.9510,0.8105,1.0000,0.8053,1.0000,1.0000,0.696884,0.120373,0.057905,0.124839 +bot_02764,reward_heavy,1.0000,0.8572,0.9302,1.0000,0.6075,0.5088,0.9843,0.9801,1.0000,0.569874,0.332602,0.087505,0.010020 +bot_02765,network_bound,1.0000,1.0000,0.6242,1.0000,0.6343,0.5910,0.6148,1.0000,0.7955,0.131575,0.286358,0.147365,0.434701 +bot_02766,splash_driven,0.8699,1.0000,1.0000,0.8180,1.0000,1.0000,0.9395,0.9633,1.0000,0.716767,0.187850,0.084576,0.010807 +bot_02767,reward_heavy,1.0000,0.7089,0.6737,1.0000,0.8467,0.8066,1.0000,1.0000,1.0000,0.549955,0.354027,0.087482,0.008536 +bot_02768,network_bound,0.6106,0.7647,0.5686,0.7596,0.7203,0.7495,0.5632,1.0000,0.7262,0.252619,0.036909,0.334261,0.376210 +bot_02769,interstitial_focus,0.8151,1.0000,0.9230,0.9966,1.0000,0.6157,0.9638,1.0000,1.0000,0.220280,0.491435,0.128229,0.160056 +bot_02770,interstitial_focus,0.8212,1.0000,0.8575,0.6210,1.0000,0.7098,0.9734,0.8324,1.0000,0.365661,0.464507,0.084411,0.085421 +bot_02771,reward_heavy,1.0000,0.8649,0.6485,1.0000,0.7435,0.7449,0.9666,0.7306,1.0000,0.567866,0.362668,0.052992,0.016474 +bot_02772,interstitial_focus,0.6096,1.0000,0.8150,0.5920,1.0000,0.8200,0.9054,1.0000,1.0000,0.276360,0.396924,0.262453,0.064263 +bot_02773,reward_heavy,1.0000,0.8895,0.6378,1.0000,0.7290,0.4628,1.0000,0.7432,1.0000,0.548340,0.318604,0.123298,0.009758 +bot_02774,churn_sensitive,0.7213,0.5543,0.6573,0.4826,0.6993,0.3443,0.7099,1.0000,0.5621,0.380694,0.300416,0.171424,0.147466 +bot_02775,splash_driven,0.9360,0.7671,1.0000,0.9504,1.0000,1.0000,0.7542,1.0000,0.8472,0.751496,0.227158,0.010673,0.010673 +bot_02776,reward_heavy,1.0000,0.7269,0.8272,1.0000,0.8525,0.6528,1.0000,0.9817,1.0000,0.405641,0.335414,0.178590,0.080356 +bot_02777,network_bound,1.0000,0.9333,0.6791,0.8541,0.5987,0.6300,0.8022,1.0000,0.7354,0.060823,0.257147,0.256876,0.425154 +bot_02778,interstitial_focus,0.8238,1.0000,0.6546,0.5791,1.0000,0.6457,0.8219,0.9716,1.0000,0.371812,0.317357,0.191552,0.119279 +bot_02779,reward_heavy,1.0000,0.7006,0.7091,1.0000,0.7214,0.4947,1.0000,0.9221,1.0000,0.676808,0.216032,0.009155,0.098006 +bot_02780,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8457,0.8221,0.9818,0.279530,0.275470,0.242810,0.202191 +bot_02781,churn_sensitive,0.7861,0.5114,0.3593,0.5721,0.5341,0.3642,0.8783,1.0000,0.5909,0.106270,0.248674,0.360597,0.284459 +bot_02782,reward_heavy,1.0000,0.6109,0.6826,1.0000,0.8468,0.5365,1.0000,0.6811,1.0000,0.588937,0.392338,0.009363,0.009363 +bot_02783,churn_sensitive,0.4979,0.5480,0.6604,0.4046,0.3923,0.5380,0.6891,1.0000,0.5036,0.260851,0.143250,0.339658,0.256241 +bot_02784,interstitial_focus,0.5758,1.0000,0.7943,0.9079,1.0000,0.6781,0.9903,0.8927,1.0000,0.327108,0.437748,0.226355,0.008789 +bot_02785,reward_heavy,1.0000,0.6268,0.7602,1.0000,0.7686,0.7438,1.0000,0.9205,1.0000,0.601029,0.173646,0.214723,0.010602 +bot_02786,reward_heavy,1.0000,0.6122,0.5969,1.0000,0.7386,0.5362,1.0000,0.7300,1.0000,0.616270,0.136588,0.187773,0.059370 +bot_02787,balanced,1.0000,1.0000,0.8985,0.8432,0.8844,1.0000,0.8520,1.0000,0.9505,0.524887,0.327183,0.111208,0.036722 +bot_02788,reward_heavy,1.0000,0.8933,0.9478,1.0000,0.9035,0.7012,1.0000,0.9754,1.0000,0.745589,0.234517,0.009947,0.009947 +bot_02789,reward_heavy,1.0000,0.7239,0.6880,1.0000,0.6664,0.6379,0.9277,0.9921,1.0000,0.538246,0.316123,0.126515,0.019115 +bot_02790,network_bound,0.7140,0.6832,0.7863,0.7473,0.8196,0.7133,0.5986,1.0000,0.7690,0.125463,0.249092,0.275205,0.350240 +bot_02791,reward_heavy,1.0000,0.7857,0.6078,1.0000,0.5715,0.6361,0.8823,0.9389,1.0000,0.500869,0.337399,0.065288,0.096444 +bot_02792,splash_driven,1.0000,0.6990,1.0000,0.8690,0.8570,1.0000,0.9543,1.0000,0.8481,0.802637,0.175540,0.010912,0.010912 +bot_02793,splash_driven,0.9756,1.0000,1.0000,1.0000,0.8795,1.0000,0.8587,0.8182,0.9977,0.719694,0.252602,0.009346,0.018357 +bot_02794,reward_heavy,1.0000,0.7567,0.7105,1.0000,0.8861,0.8194,1.0000,0.9864,1.0000,0.574659,0.337774,0.077655,0.009912 +bot_02795,splash_driven,0.9386,1.0000,1.0000,0.8452,0.9982,1.0000,1.0000,0.8792,1.0000,0.709564,0.125712,0.147910,0.016814 +bot_02796,network_bound,0.7175,1.0000,0.8471,0.6621,0.5977,0.8882,0.8112,1.0000,0.9229,0.098388,0.173470,0.296098,0.432043 +bot_02797,interstitial_focus,0.9294,1.0000,0.6308,0.6972,1.0000,0.5735,1.0000,0.9600,1.0000,0.325195,0.350113,0.140242,0.184449 +bot_02798,reward_heavy,1.0000,0.6700,0.6460,1.0000,0.7003,0.4923,0.9544,0.8247,1.0000,0.547679,0.219608,0.154543,0.078171 +bot_02799,interstitial_focus,0.9199,1.0000,0.8883,0.9817,1.0000,0.7914,0.9448,1.0000,1.0000,0.290101,0.440267,0.261611,0.008021 +bot_02800,splash_driven,0.9425,0.8391,1.0000,1.0000,1.0000,1.0000,0.8124,0.8824,0.9625,0.803856,0.113173,0.035866,0.047105 +bot_02801,balanced,1.0000,1.0000,1.0000,0.8560,0.9040,0.8037,1.0000,1.0000,1.0000,0.425329,0.413376,0.087981,0.073314 +bot_02802,splash_driven,0.9374,0.7661,1.0000,0.8310,0.9348,1.0000,0.9167,0.8583,1.0000,0.692621,0.286338,0.010521,0.010521 +bot_02803,splash_driven,0.8287,1.0000,1.0000,0.9977,1.0000,1.0000,0.9464,1.0000,1.0000,0.780541,0.046050,0.143969,0.029441 +bot_02804,interstitial_focus,0.6759,1.0000,1.0000,0.5812,1.0000,0.5726,0.9942,1.0000,1.0000,0.291241,0.333517,0.203431,0.171811 +bot_02805,reward_heavy,1.0000,0.9955,0.8665,1.0000,0.8863,0.7761,1.0000,0.9600,1.0000,0.624461,0.320559,0.041737,0.013243 +bot_02806,churn_sensitive,0.3796,0.4371,0.5411,0.6402,0.7618,0.4104,0.7635,1.0000,0.6391,0.131734,0.381529,0.289810,0.196926 +bot_02807,churn_sensitive,0.5418,0.4584,0.4129,0.5601,0.6331,0.6051,0.5905,1.0000,0.5888,0.267345,0.269875,0.229757,0.233023 +bot_02808,reward_heavy,1.0000,0.9748,0.8208,1.0000,0.7872,0.6008,1.0000,0.7430,1.0000,0.491005,0.318233,0.182543,0.008219 +bot_02809,churn_sensitive,0.6798,0.6550,0.6676,0.4150,0.7231,0.3125,0.7419,1.0000,0.6742,0.270206,0.330970,0.149508,0.249316 +bot_02810,balanced,0.9851,0.8805,1.0000,1.0000,0.8915,0.9746,1.0000,1.0000,1.0000,0.311268,0.267020,0.296490,0.125222 +bot_02811,churn_sensitive,0.3194,0.8668,0.4775,0.7170,0.4934,0.3873,0.5695,1.0000,0.5993,0.218269,0.271448,0.288404,0.221880 +bot_02812,interstitial_focus,0.8655,1.0000,1.0000,0.9274,1.0000,0.7391,1.0000,1.0000,1.0000,0.281446,0.496551,0.134289,0.087714 +bot_02813,reward_heavy,1.0000,0.9149,0.5705,1.0000,0.6322,0.7088,0.8921,0.8282,1.0000,0.633492,0.227448,0.009497,0.129562 +bot_02814,splash_driven,1.0000,1.0000,1.0000,0.9653,0.8347,1.0000,0.9604,0.8290,0.9285,0.730730,0.172677,0.008268,0.088325 +bot_02815,splash_driven,1.0000,0.8883,1.0000,0.9932,0.9465,1.0000,0.9544,0.9874,1.0000,0.751553,0.229682,0.009382,0.009382 +bot_02816,interstitial_focus,0.9497,1.0000,0.8239,0.5858,1.0000,0.5852,0.9675,1.0000,1.0000,0.295035,0.488546,0.202861,0.013558 +bot_02817,reward_heavy,1.0000,0.6930,0.7704,1.0000,0.9125,0.5956,0.9273,0.9807,1.0000,0.637938,0.251464,0.053991,0.056607 +bot_02818,reward_heavy,1.0000,0.8990,0.9716,1.0000,0.6667,0.4259,1.0000,0.8717,1.0000,0.594773,0.248604,0.144459,0.012163 +bot_02819,balanced,1.0000,1.0000,0.9628,1.0000,0.9094,1.0000,1.0000,0.8827,1.0000,0.368719,0.460480,0.147762,0.023039 +bot_02820,interstitial_focus,0.8392,1.0000,0.8554,0.7492,1.0000,0.5803,0.9566,1.0000,1.0000,0.341063,0.311991,0.293954,0.052993 +bot_02821,interstitial_focus,0.8563,1.0000,0.6373,0.6412,1.0000,0.5785,0.9933,0.8358,1.0000,0.260948,0.335999,0.296493,0.106560 +bot_02822,splash_driven,1.0000,0.7373,1.0000,0.8282,1.0000,1.0000,0.8866,0.8455,0.9216,0.754745,0.210300,0.011195,0.023760 +bot_02823,splash_driven,0.7172,1.0000,1.0000,1.0000,0.8321,1.0000,0.9668,1.0000,1.0000,0.825510,0.090696,0.010888,0.072906 +bot_02824,balanced,0.8183,0.8891,1.0000,1.0000,0.9895,0.7970,0.8822,0.9048,0.9572,0.402025,0.354362,0.218488,0.025124 +bot_02825,reward_heavy,1.0000,0.6484,0.7407,1.0000,0.7457,0.4660,0.9577,0.8054,1.0000,0.570293,0.275994,0.009688,0.144026 +bot_02826,balanced,1.0000,1.0000,0.9233,0.9480,1.0000,0.8412,0.9049,0.8242,0.9025,0.390439,0.292218,0.239715,0.077627 +bot_02827,network_bound,0.8944,0.9598,0.5814,0.9727,0.8207,0.5216,0.6337,1.0000,0.8114,0.178328,0.199010,0.196306,0.426357 +bot_02828,churn_sensitive,0.6697,0.8420,0.5458,0.7088,0.6390,0.5122,0.5843,0.9952,0.6365,0.305592,0.191982,0.408983,0.093443 +bot_02829,splash_driven,0.9882,1.0000,1.0000,1.0000,0.8942,1.0000,1.0000,1.0000,1.0000,0.606656,0.276888,0.106980,0.009476 +bot_02830,network_bound,0.8648,0.6516,0.7534,0.8152,0.7815,0.9241,0.7273,1.0000,0.8226,0.170103,0.161611,0.341359,0.326927 +bot_02831,splash_driven,0.7575,0.6943,1.0000,1.0000,0.8819,1.0000,0.7681,1.0000,0.9164,0.691746,0.286131,0.011062,0.011062 +bot_02832,interstitial_focus,0.6881,1.0000,0.9514,0.8703,1.0000,0.4980,0.8003,1.0000,1.0000,0.422530,0.370262,0.195138,0.012069 +bot_02833,splash_driven,1.0000,0.9007,1.0000,1.0000,0.8722,1.0000,0.8211,1.0000,1.0000,0.763826,0.176006,0.009012,0.051156 +bot_02834,interstitial_focus,0.6439,1.0000,0.8735,0.8430,1.0000,0.8190,0.9672,0.9276,0.9639,0.231515,0.586800,0.087409,0.094276 +bot_02835,interstitial_focus,0.9085,1.0000,1.0000,0.9057,1.0000,0.6878,1.0000,0.8701,0.9556,0.200257,0.492363,0.297808,0.009572 +bot_02836,splash_driven,0.8173,1.0000,1.0000,0.8348,0.8270,1.0000,0.8320,1.0000,0.9965,0.834685,0.118875,0.027815,0.018625 +bot_02837,splash_driven,0.7827,1.0000,1.0000,1.0000,1.0000,1.0000,0.9865,0.8623,1.0000,0.709419,0.076259,0.203667,0.010656 +bot_02838,reward_heavy,1.0000,0.9159,0.7927,1.0000,0.5751,0.7456,1.0000,0.7169,1.0000,0.577940,0.167226,0.127632,0.127202 +bot_02839,interstitial_focus,0.6611,1.0000,0.9272,0.9760,1.0000,0.7292,1.0000,1.0000,1.0000,0.250029,0.436683,0.141037,0.172251 +bot_02840,network_bound,0.7432,0.8678,0.7193,0.6852,0.6553,0.6916,0.8152,1.0000,0.7137,0.055749,0.288123,0.370253,0.285875 +bot_02841,interstitial_focus,0.7553,1.0000,0.6226,0.8162,1.0000,0.6049,0.9999,1.0000,0.9877,0.257680,0.576831,0.155250,0.010239 +bot_02842,reward_heavy,1.0000,0.9144,0.8431,1.0000,0.5625,0.5028,1.0000,0.7718,1.0000,0.605428,0.288128,0.012441,0.094003 +bot_02843,reward_heavy,1.0000,0.6193,0.9836,1.0000,0.5542,0.6714,0.8812,0.7006,1.0000,0.436143,0.327862,0.226357,0.009639 +bot_02844,reward_heavy,1.0000,0.7210,0.8535,1.0000,0.8026,0.7564,0.8904,0.9191,1.0000,0.612036,0.282360,0.093510,0.012095 +bot_02845,balanced,1.0000,1.0000,1.0000,0.9163,1.0000,1.0000,1.0000,1.0000,1.0000,0.458381,0.219027,0.118196,0.204396 +bot_02846,reward_heavy,1.0000,0.9139,0.9422,1.0000,0.9358,0.5268,1.0000,0.7704,1.0000,0.738816,0.193659,0.011474,0.056050 +bot_02847,network_bound,0.9090,0.9486,0.7086,0.8890,0.7191,0.6479,0.5862,1.0000,0.8755,0.077887,0.143006,0.431975,0.347132 +bot_02848,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9055,1.0000,0.9732,0.8913,0.9778,0.701247,0.109389,0.144998,0.044366 +bot_02849,balanced,0.8846,1.0000,1.0000,0.8772,1.0000,1.0000,0.9931,1.0000,1.0000,0.336401,0.274115,0.231825,0.157659 +bot_02850,reward_heavy,1.0000,0.9383,1.0000,1.0000,0.7987,0.4574,0.9559,0.7715,1.0000,0.563242,0.284153,0.144997,0.007609 +bot_02851,reward_heavy,1.0000,0.7795,0.7529,1.0000,0.7419,0.5661,1.0000,0.8836,1.0000,0.593691,0.305030,0.010938,0.090341 +bot_02852,interstitial_focus,0.5439,1.0000,0.6716,0.9254,1.0000,0.6067,0.9490,1.0000,1.0000,0.359732,0.366799,0.220925,0.052544 +bot_02853,splash_driven,0.8824,0.7121,1.0000,0.9687,1.0000,1.0000,0.7523,1.0000,0.9619,0.711064,0.183206,0.083179,0.022551 +bot_02854,interstitial_focus,0.5657,1.0000,0.8618,0.7463,1.0000,0.6605,0.9441,0.8444,1.0000,0.325947,0.460867,0.200072,0.013113 +bot_02855,splash_driven,0.8424,1.0000,1.0000,0.8772,0.8985,1.0000,0.7913,0.9669,0.9507,0.753901,0.069034,0.119467,0.057598 +bot_02856,network_bound,0.8366,0.7095,0.7441,0.9725,0.9394,0.5258,0.5759,1.0000,0.8572,0.108931,0.269147,0.155225,0.466697 +bot_02857,interstitial_focus,0.6449,1.0000,0.5905,0.7998,1.0000,0.6091,1.0000,0.9797,1.0000,0.357105,0.282525,0.274240,0.086130 +bot_02858,interstitial_focus,0.7185,1.0000,0.8615,0.5853,1.0000,0.7162,0.8132,1.0000,1.0000,0.228756,0.451727,0.184629,0.134888 +bot_02859,splash_driven,0.8870,0.9841,1.0000,1.0000,1.0000,1.0000,0.8878,1.0000,0.9791,0.730180,0.118611,0.141746,0.009463 +bot_02860,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8099,1.0000,0.9596,0.689667,0.241899,0.007667,0.060767 +bot_02861,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8780,0.8048,0.9434,0.525992,0.359292,0.103454,0.011261 +bot_02862,balanced,1.0000,1.0000,1.0000,1.0000,0.8732,1.0000,1.0000,1.0000,1.0000,0.332435,0.358351,0.127820,0.181394 +bot_02863,reward_heavy,1.0000,0.6908,1.0000,1.0000,0.9677,0.6575,1.0000,1.0000,1.0000,0.569694,0.340416,0.064402,0.025487 +bot_02864,reward_heavy,1.0000,0.9825,0.6230,1.0000,0.5926,0.6290,0.9459,0.7600,1.0000,0.510285,0.277342,0.126289,0.086084 +bot_02865,interstitial_focus,0.5037,1.0000,0.8227,0.7649,1.0000,0.6425,0.8013,1.0000,1.0000,0.289601,0.467980,0.167093,0.075326 +bot_02866,network_bound,0.6699,1.0000,0.6781,0.7702,0.9562,0.7353,0.7696,1.0000,0.7029,0.201143,0.112460,0.375294,0.311103 +bot_02867,reward_heavy,1.0000,0.7987,0.8550,1.0000,0.8969,0.5633,1.0000,1.0000,1.0000,0.497940,0.254681,0.158447,0.088932 +bot_02868,churn_sensitive,0.6548,0.8451,0.2738,0.5730,0.4186,0.5591,0.6890,1.0000,0.6824,0.256933,0.210393,0.273899,0.258774 +bot_02869,splash_driven,0.6543,0.9256,1.0000,0.8503,1.0000,1.0000,1.0000,0.9441,0.9298,0.620561,0.150982,0.130633,0.097825 +bot_02870,reward_heavy,1.0000,0.7875,0.9164,1.0000,0.8233,0.6296,1.0000,0.9942,1.0000,0.661547,0.320538,0.008958,0.008958 +bot_02871,interstitial_focus,0.9018,1.0000,0.9762,0.6034,1.0000,0.6378,1.0000,1.0000,1.0000,0.393216,0.485194,0.111686,0.009904 +bot_02872,reward_heavy,1.0000,0.6038,1.0000,1.0000,0.9012,0.5285,0.8904,0.7057,1.0000,0.478362,0.353026,0.151833,0.016779 +bot_02873,splash_driven,0.7169,0.7588,1.0000,0.9920,1.0000,1.0000,1.0000,1.0000,1.0000,0.796741,0.100891,0.092558,0.009809 +bot_02874,balanced,1.0000,0.9920,1.0000,1.0000,1.0000,1.0000,0.8645,1.0000,1.0000,0.480558,0.290680,0.218566,0.010195 +bot_02875,splash_driven,0.7197,0.8297,1.0000,1.0000,0.9481,1.0000,0.8311,0.9697,0.9733,0.652986,0.127545,0.152133,0.067336 +bot_02876,balanced,0.9710,1.0000,1.0000,1.0000,1.0000,1.0000,0.9434,0.8072,1.0000,0.498008,0.215495,0.167728,0.118769 +bot_02877,network_bound,0.8711,0.8831,0.7833,0.7487,0.8830,0.8228,0.6689,1.0000,0.9341,0.169232,0.157124,0.328937,0.344707 +bot_02878,reward_heavy,1.0000,0.8058,0.6486,1.0000,0.9342,0.5059,0.8898,0.7582,1.0000,0.695508,0.137931,0.157144,0.009417 +bot_02879,network_bound,0.6364,0.7290,0.7908,1.0000,0.6439,0.7032,0.6314,1.0000,0.8073,0.054952,0.117901,0.415737,0.411409 +bot_02880,reward_heavy,1.0000,0.6861,0.8701,1.0000,0.6362,0.6283,1.0000,0.8473,1.0000,0.547792,0.279025,0.153693,0.019490 +bot_02881,interstitial_focus,0.8617,1.0000,0.9576,0.8453,1.0000,0.8072,1.0000,1.0000,1.0000,0.292751,0.434272,0.061742,0.211235 +bot_02882,network_bound,0.6344,0.7843,0.6841,0.8489,0.5708,0.7510,0.5891,1.0000,0.9084,0.189929,0.107204,0.179680,0.523187 +bot_02883,reward_heavy,1.0000,0.8425,0.8453,1.0000,0.6914,0.5034,1.0000,0.8608,1.0000,0.600515,0.373283,0.016203,0.010000 +bot_02884,network_bound,0.6928,0.8196,0.7313,0.9292,0.7080,0.8977,0.7118,1.0000,0.8198,0.203032,0.151572,0.248316,0.397080 +bot_02885,reward_heavy,1.0000,0.9475,0.6234,1.0000,0.7012,0.4396,0.9148,0.8712,1.0000,0.572296,0.408043,0.009830,0.009830 +bot_02886,balanced,0.9201,1.0000,1.0000,1.0000,0.9275,0.8930,1.0000,1.0000,0.9457,0.451342,0.329971,0.198538,0.020148 +bot_02887,splash_driven,0.8522,1.0000,1.0000,0.8162,1.0000,1.0000,1.0000,0.8321,0.9705,0.735063,0.212842,0.039965,0.012130 +bot_02888,network_bound,0.6322,0.7210,0.9034,0.8612,0.6687,0.7307,0.6880,1.0000,0.7133,0.059993,0.193710,0.253327,0.492970 +bot_02889,interstitial_focus,0.7934,1.0000,0.7963,0.6601,1.0000,0.6440,1.0000,1.0000,1.0000,0.193109,0.420377,0.292780,0.093734 +bot_02890,splash_driven,0.9662,0.7933,1.0000,1.0000,1.0000,1.0000,0.8163,1.0000,1.0000,0.673396,0.142637,0.072759,0.111208 +bot_02891,balanced,0.8951,1.0000,0.9000,1.0000,0.8887,0.9957,1.0000,0.8871,0.9414,0.276605,0.294320,0.322303,0.106772 +bot_02892,splash_driven,0.6970,0.8916,1.0000,1.0000,1.0000,1.0000,0.9978,1.0000,1.0000,0.686578,0.181998,0.008299,0.123125 +bot_02893,interstitial_focus,0.9575,1.0000,0.8906,0.7794,1.0000,0.8521,0.8236,0.9479,1.0000,0.338788,0.496890,0.110313,0.054009 +bot_02894,reward_heavy,1.0000,0.7357,0.5692,1.0000,0.7344,0.7388,0.9817,0.7873,1.0000,0.512187,0.373826,0.011295,0.102693 +bot_02895,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9727,0.8753,1.0000,1.0000,0.356548,0.455460,0.176002,0.011990 +bot_02896,churn_sensitive,0.5064,0.5265,0.2859,0.5271,0.4708,0.5502,0.6033,1.0000,0.6149,0.253923,0.398218,0.193512,0.154347 +bot_02897,balanced,0.9639,1.0000,0.9233,1.0000,1.0000,0.8780,1.0000,0.9667,0.9071,0.422885,0.413442,0.152894,0.010779 +bot_02898,reward_heavy,1.0000,0.8297,0.9253,1.0000,0.5724,0.6406,0.9286,0.9791,1.0000,0.484882,0.240483,0.163718,0.110918 +bot_02899,network_bound,0.9703,0.9241,0.7148,0.7524,0.7344,0.8318,0.5663,1.0000,0.7138,0.055706,0.099363,0.455866,0.389065 +bot_02900,reward_heavy,1.0000,1.0000,0.6553,1.0000,0.9117,0.4409,0.9628,0.8901,1.0000,0.493985,0.273912,0.138200,0.093903 +bot_02901,network_bound,0.7177,0.7020,0.7623,1.0000,0.6354,0.8525,0.5455,1.0000,0.8808,0.116681,0.274019,0.345677,0.263623 +bot_02902,splash_driven,1.0000,1.0000,1.0000,0.8702,1.0000,1.0000,0.9989,0.9433,0.9058,0.671483,0.218803,0.078175,0.031539 +bot_02903,churn_sensitive,0.6262,0.7148,0.6139,0.6390,0.6541,0.5748,0.5991,1.0000,0.6742,0.306904,0.291429,0.147854,0.253814 +bot_02904,splash_driven,1.0000,0.9646,1.0000,0.9939,0.8499,1.0000,0.8823,1.0000,1.0000,0.628338,0.250503,0.112008,0.009152 +bot_02905,interstitial_focus,0.8386,1.0000,0.7831,0.5608,1.0000,0.5387,0.8245,0.9542,0.9538,0.395546,0.341601,0.254103,0.008751 +bot_02906,splash_driven,0.9300,0.9666,1.0000,0.8331,0.9351,1.0000,0.8704,1.0000,1.0000,0.871094,0.063695,0.010944,0.054268 +bot_02907,balanced,0.8205,1.0000,1.0000,0.9517,1.0000,1.0000,0.9602,0.8464,0.9546,0.353273,0.239850,0.265570,0.141307 +bot_02908,splash_driven,0.8404,0.9378,1.0000,0.8889,0.9499,1.0000,0.9831,0.9408,1.0000,0.732628,0.147044,0.111322,0.009006 +bot_02909,splash_driven,0.9348,0.9150,1.0000,0.9144,1.0000,1.0000,0.8586,1.0000,0.9075,0.752993,0.229561,0.008723,0.008723 +bot_02910,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.7191,0.8005,1.0000,0.8485,1.0000,0.475404,0.215628,0.252768,0.056201 +bot_02911,interstitial_focus,0.7670,1.0000,0.7541,0.6105,1.0000,0.8013,1.0000,1.0000,1.0000,0.282932,0.468070,0.237281,0.011717 +bot_02912,splash_driven,0.7931,1.0000,1.0000,1.0000,0.8811,1.0000,0.9326,1.0000,0.8961,0.931718,0.032063,0.010591,0.025628 +bot_02913,interstitial_focus,0.6656,1.0000,0.7167,0.6912,1.0000,0.8960,1.0000,0.8269,0.9970,0.423001,0.477918,0.088527,0.010554 +bot_02914,splash_driven,1.0000,0.8948,1.0000,0.8800,1.0000,1.0000,0.9170,1.0000,1.0000,0.692283,0.236654,0.063133,0.007930 +bot_02915,churn_sensitive,0.7685,0.5902,0.6619,0.5600,0.7671,0.2544,0.8418,1.0000,0.5088,0.189299,0.406043,0.307183,0.097475 +bot_02916,reward_heavy,1.0000,0.6211,0.9920,1.0000,0.7082,0.8353,1.0000,0.9943,1.0000,0.485171,0.367187,0.138685,0.008957 +bot_02917,reward_heavy,1.0000,0.7600,0.6894,1.0000,0.6886,0.5917,1.0000,0.7221,1.0000,0.456474,0.327839,0.174509,0.041178 +bot_02918,balanced,0.9926,0.9374,0.8968,0.8576,0.8240,0.8565,0.9880,1.0000,0.9334,0.386037,0.426443,0.073689,0.113831 +bot_02919,interstitial_focus,0.5988,1.0000,0.9868,0.6455,1.0000,0.5943,1.0000,1.0000,1.0000,0.373875,0.372963,0.244635,0.008528 +bot_02920,reward_heavy,1.0000,0.7904,0.8259,1.0000,0.8310,0.7715,1.0000,1.0000,1.0000,0.637364,0.196756,0.089735,0.076145 +bot_02921,churn_sensitive,0.5141,0.5977,0.2969,0.7166,0.5703,0.2694,0.8730,1.0000,0.5563,0.136748,0.336742,0.429163,0.097346 +bot_02922,interstitial_focus,0.8507,1.0000,0.6474,0.9241,1.0000,0.6707,1.0000,1.0000,1.0000,0.383727,0.343562,0.131301,0.141410 +bot_02923,interstitial_focus,0.7562,1.0000,0.6961,0.6308,1.0000,0.7001,0.9873,1.0000,1.0000,0.299895,0.315005,0.319373,0.065727 +bot_02924,churn_sensitive,0.4327,0.4256,0.4480,0.5734,0.6164,0.4770,0.7988,1.0000,0.6268,0.225799,0.347837,0.291523,0.134842 +bot_02925,network_bound,0.8988,1.0000,0.9525,0.7858,0.9544,0.9226,0.7117,1.0000,0.9290,0.014087,0.191461,0.308359,0.486093 +bot_02926,interstitial_focus,0.5232,1.0000,0.9298,0.9116,1.0000,0.7949,1.0000,0.9311,1.0000,0.378090,0.362652,0.247319,0.011939 +bot_02927,interstitial_focus,0.8898,1.0000,0.9604,0.6486,1.0000,0.8930,1.0000,1.0000,1.0000,0.385753,0.403701,0.202002,0.008544 +bot_02928,churn_sensitive,0.5412,0.7098,0.6230,0.4388,0.4961,0.5658,0.6957,1.0000,0.6763,0.132593,0.434558,0.214285,0.218564 +bot_02929,churn_sensitive,0.6654,0.6435,0.4275,0.4050,0.5959,0.3927,0.6717,1.0000,0.6419,0.185416,0.288733,0.234594,0.291257 +bot_02930,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9255,0.9025,1.0000,1.0000,0.290102,0.493380,0.205657,0.010861 +bot_02931,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9557,0.8899,0.8038,1.0000,0.342789,0.404528,0.151247,0.101436 +bot_02932,balanced,0.9840,1.0000,1.0000,1.0000,0.7863,0.8952,0.9251,0.9805,0.9144,0.254859,0.267432,0.362968,0.114741 +bot_02933,balanced,0.9544,1.0000,1.0000,1.0000,0.9778,0.9677,0.9587,0.8020,0.8833,0.372940,0.290262,0.265059,0.071739 +bot_02934,churn_sensitive,0.4751,0.5544,0.6174,0.5666,0.5463,0.6215,0.6179,1.0000,0.6570,0.222136,0.264023,0.287911,0.225930 +bot_02935,reward_heavy,1.0000,0.6670,0.6599,1.0000,0.5452,0.5386,0.8978,0.8561,1.0000,0.457695,0.314070,0.182299,0.045935 +bot_02936,network_bound,0.6197,0.8020,0.8803,0.8910,0.7163,0.8724,0.6369,1.0000,0.7497,0.030892,0.277413,0.362359,0.329336 +bot_02937,splash_driven,0.6442,1.0000,1.0000,1.0000,0.8473,1.0000,0.8271,1.0000,0.9313,0.685469,0.198572,0.007673,0.108287 +bot_02938,splash_driven,0.9740,0.9180,1.0000,1.0000,0.9347,1.0000,0.7715,1.0000,0.8799,0.704834,0.119451,0.142254,0.033461 +bot_02939,interstitial_focus,0.5762,1.0000,0.6370,0.6897,1.0000,0.6099,1.0000,0.9115,1.0000,0.466472,0.301747,0.187303,0.044478 +bot_02940,splash_driven,0.7528,1.0000,1.0000,0.8123,1.0000,1.0000,0.9980,1.0000,0.9381,0.663359,0.218957,0.108584,0.009100 +bot_02941,network_bound,0.8866,0.7715,0.8231,0.8988,0.9696,0.8714,0.7962,1.0000,0.7295,0.061303,0.250935,0.240955,0.446806 +bot_02942,interstitial_focus,0.8359,1.0000,0.9692,0.9001,1.0000,0.7945,1.0000,0.8657,0.9382,0.297068,0.594806,0.092368,0.015757 +bot_02943,reward_heavy,1.0000,0.6201,0.8679,1.0000,0.8326,0.7604,0.9218,0.9823,1.0000,0.693967,0.283838,0.012078,0.010117 +bot_02944,reward_heavy,1.0000,0.9881,0.8680,1.0000,0.8488,0.7923,0.8877,0.9087,1.0000,0.733948,0.219132,0.011528,0.035392 +bot_02945,balanced,1.0000,1.0000,0.9962,1.0000,1.0000,0.9246,0.9237,0.8322,1.0000,0.461321,0.171903,0.289408,0.077368 +bot_02946,balanced,1.0000,1.0000,0.8913,1.0000,1.0000,0.9010,0.9401,0.8124,0.9973,0.416403,0.348739,0.227006,0.007852 +bot_02947,reward_heavy,1.0000,0.7165,0.8346,1.0000,0.8505,0.5691,1.0000,0.6826,1.0000,0.608151,0.265249,0.112471,0.014129 +bot_02948,reward_heavy,1.0000,0.9964,0.7860,1.0000,0.8364,0.5276,1.0000,0.9232,1.0000,0.559519,0.254484,0.177132,0.008865 +bot_02949,interstitial_focus,0.5010,1.0000,0.7454,0.9175,1.0000,0.8526,1.0000,1.0000,0.9829,0.245496,0.423908,0.278429,0.052167 +bot_02950,splash_driven,0.8117,0.9725,1.0000,0.9766,1.0000,1.0000,0.8371,0.9350,0.9214,0.812403,0.092626,0.084603,0.010368 +bot_02951,reward_heavy,1.0000,0.7289,0.9602,1.0000,0.6827,0.8038,1.0000,1.0000,1.0000,0.490953,0.286043,0.176689,0.046314 +bot_02952,reward_heavy,1.0000,0.9945,0.9999,1.0000,0.6238,0.7201,1.0000,0.9102,1.0000,0.650996,0.177406,0.030838,0.140760 +bot_02953,splash_driven,0.6818,0.7541,1.0000,0.9794,0.9658,1.0000,0.8661,1.0000,1.0000,0.698682,0.195458,0.048141,0.057719 +bot_02954,splash_driven,0.9727,1.0000,1.0000,0.9826,0.8340,1.0000,1.0000,0.9046,0.9436,0.884425,0.058317,0.045075,0.012183 +bot_02955,interstitial_focus,0.8041,1.0000,0.5944,0.8390,1.0000,0.5222,1.0000,1.0000,1.0000,0.247178,0.664951,0.066914,0.020957 +bot_02956,reward_heavy,1.0000,0.6492,0.6879,1.0000,0.5570,0.4575,0.8989,0.8026,1.0000,0.582570,0.353540,0.055504,0.008385 +bot_02957,splash_driven,0.7304,0.7356,1.0000,1.0000,1.0000,1.0000,0.8578,0.8160,1.0000,0.695520,0.285546,0.009467,0.009467 +bot_02958,balanced,1.0000,1.0000,1.0000,1.0000,0.8438,1.0000,1.0000,1.0000,0.9068,0.391655,0.315923,0.262649,0.029773 +bot_02959,reward_heavy,1.0000,0.8417,0.6061,1.0000,0.8342,0.8192,1.0000,0.9680,1.0000,0.572018,0.163309,0.241009,0.023664 +bot_02960,interstitial_focus,0.7701,1.0000,0.6812,0.5713,1.0000,0.6548,1.0000,1.0000,1.0000,0.444820,0.492772,0.052728,0.009679 +bot_02961,splash_driven,0.8885,1.0000,1.0000,0.9860,0.9698,1.0000,0.7720,1.0000,1.0000,0.678589,0.125809,0.093803,0.101799 +bot_02962,balanced,0.9879,1.0000,1.0000,1.0000,0.9141,0.9924,0.9418,1.0000,1.0000,0.436294,0.300877,0.254046,0.008783 +bot_02963,reward_heavy,1.0000,0.9866,0.6757,1.0000,0.9135,0.7377,1.0000,1.0000,1.0000,0.697562,0.172655,0.011099,0.118685 +bot_02964,reward_heavy,1.0000,0.7391,0.6071,1.0000,0.6943,0.7418,1.0000,0.9002,1.0000,0.684844,0.158073,0.145750,0.011334 +bot_02965,reward_heavy,1.0000,1.0000,0.7640,1.0000,0.7646,0.5177,1.0000,0.6871,1.0000,0.526450,0.260239,0.180744,0.032567 +bot_02966,splash_driven,0.8112,0.7780,1.0000,1.0000,0.9706,1.0000,0.9054,1.0000,1.0000,0.584774,0.271007,0.009506,0.134713 +bot_02967,balanced,0.8204,1.0000,1.0000,1.0000,0.8325,0.8579,0.9207,1.0000,0.9561,0.519161,0.351284,0.118036,0.011519 +bot_02968,network_bound,0.7831,1.0000,0.9378,1.0000,0.5657,0.8594,0.8115,1.0000,0.8282,0.202452,0.263427,0.201715,0.332406 +bot_02969,interstitial_focus,0.7375,1.0000,0.7540,0.8135,1.0000,0.6496,0.9081,0.9720,1.0000,0.377623,0.492002,0.120511,0.009864 +bot_02970,balanced,0.8659,1.0000,0.9326,0.9111,1.0000,1.0000,1.0000,0.9143,1.0000,0.513988,0.230589,0.245047,0.010375 +bot_02971,interstitial_focus,0.4809,1.0000,1.0000,0.9333,1.0000,0.7308,1.0000,1.0000,1.0000,0.258073,0.424609,0.115225,0.202093 +bot_02972,splash_driven,0.9918,0.9587,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.873138,0.037625,0.009885,0.079352 +bot_02973,balanced,1.0000,1.0000,1.0000,0.8707,1.0000,0.9554,1.0000,1.0000,0.9600,0.393974,0.310026,0.286703,0.009297 +bot_02974,balanced,0.9697,0.9795,0.9689,1.0000,0.9450,1.0000,0.9560,0.9962,0.9859,0.491869,0.345876,0.147730,0.014525 +bot_02975,network_bound,0.6515,0.8270,0.8201,1.0000,0.9750,0.5633,0.5593,1.0000,0.8861,0.274716,0.209214,0.235939,0.280131 +bot_02976,interstitial_focus,0.4826,1.0000,0.9141,0.7359,1.0000,0.5795,0.9307,1.0000,1.0000,0.230645,0.408030,0.229520,0.131805 +bot_02977,churn_sensitive,0.6963,0.7013,0.3455,0.4795,0.7668,0.3908,0.7401,1.0000,0.6507,0.264404,0.235049,0.333201,0.167347 +bot_02978,reward_heavy,1.0000,1.0000,0.9470,1.0000,0.6678,0.4439,1.0000,0.8112,1.0000,0.579519,0.307542,0.103100,0.009839 +bot_02979,splash_driven,0.7835,0.9397,1.0000,1.0000,1.0000,1.0000,0.7917,1.0000,1.0000,0.744412,0.087536,0.087399,0.080653 +bot_02980,network_bound,1.0000,0.6404,0.6005,0.7089,0.7553,0.5772,0.8233,1.0000,0.9253,0.165697,0.163558,0.194144,0.476600 +bot_02981,reward_heavy,1.0000,0.8156,0.6800,1.0000,0.9071,0.4307,1.0000,1.0000,1.0000,0.585812,0.355147,0.033854,0.025187 +bot_02982,reward_heavy,1.0000,0.9053,0.9941,1.0000,0.8135,0.4426,0.8994,0.9169,1.0000,0.740657,0.239094,0.010124,0.010124 +bot_02983,splash_driven,0.6602,0.9064,1.0000,1.0000,0.9990,1.0000,0.8366,1.0000,0.9319,0.808577,0.171017,0.010480,0.009927 +bot_02984,interstitial_focus,0.5310,1.0000,0.7237,0.7722,1.0000,0.8978,1.0000,1.0000,1.0000,0.209502,0.473082,0.240689,0.076727 +bot_02985,reward_heavy,1.0000,0.7775,0.9189,1.0000,0.7847,0.4533,1.0000,0.7418,1.0000,0.538742,0.248950,0.093953,0.118355 +bot_02986,splash_driven,0.8495,1.0000,1.0000,1.0000,0.8107,1.0000,0.9447,0.8876,0.9442,0.654617,0.229275,0.022051,0.094057 +bot_02987,splash_driven,0.8347,0.6959,1.0000,0.8015,1.0000,1.0000,0.9753,1.0000,1.0000,0.729754,0.103030,0.158410,0.008806 +bot_02988,network_bound,0.9406,0.7354,0.5602,0.6787,0.8979,0.8616,0.6296,1.0000,0.7045,0.261018,0.091988,0.182744,0.464250 +bot_02989,network_bound,0.7764,0.8287,1.0000,0.9434,0.8657,0.5400,0.7758,1.0000,0.8385,0.175384,0.045866,0.408791,0.369958 +bot_02990,interstitial_focus,0.6793,1.0000,1.0000,0.7408,1.0000,0.7831,0.8941,0.8212,1.0000,0.242866,0.412358,0.298562,0.046214 +bot_02991,interstitial_focus,0.8638,1.0000,0.8445,0.7605,1.0000,0.5568,1.0000,1.0000,1.0000,0.183479,0.491430,0.184785,0.140306 +bot_02992,reward_heavy,1.0000,0.7862,0.9645,1.0000,0.5704,0.7468,0.8943,0.8033,1.0000,0.495981,0.313428,0.058814,0.131777 +bot_02993,network_bound,1.0000,1.0000,0.6133,0.8830,0.7665,0.8295,0.6139,1.0000,0.8974,0.099612,0.133881,0.336731,0.429776 +bot_02994,reward_heavy,1.0000,1.0000,0.6812,1.0000,0.9343,0.8082,0.9699,1.0000,1.0000,0.681510,0.297812,0.010339,0.010339 +bot_02995,splash_driven,1.0000,0.9400,1.0000,1.0000,1.0000,1.0000,0.8911,1.0000,0.9373,0.650986,0.203221,0.008928,0.136866 +bot_02996,interstitial_focus,0.9578,1.0000,0.9156,0.9216,1.0000,0.6192,0.8091,1.0000,1.0000,0.335736,0.465572,0.188098,0.010595 +bot_02997,interstitial_focus,0.7770,1.0000,0.9541,0.7846,1.0000,0.9006,0.9889,1.0000,1.0000,0.336325,0.387915,0.120757,0.155002 +bot_02998,reward_heavy,1.0000,0.7964,0.7465,1.0000,0.8469,0.4725,1.0000,0.8798,1.0000,0.741424,0.235641,0.011468,0.011468 +bot_02999,interstitial_focus,0.6170,1.0000,1.0000,0.9064,1.0000,0.8485,0.9854,1.0000,1.0000,0.206463,0.399775,0.305711,0.088051 +bot_03000,balanced,1.0000,0.9399,1.0000,1.0000,0.8263,0.8757,1.0000,1.0000,0.9489,0.410860,0.339877,0.240962,0.008300 +bot_03001,interstitial_focus,0.5799,1.0000,0.9453,0.6950,1.0000,0.8182,0.9195,1.0000,1.0000,0.462991,0.296009,0.193550,0.047450 +bot_03002,reward_heavy,1.0000,1.0000,0.7156,1.0000,0.6547,0.6418,0.9000,0.9053,1.0000,0.420021,0.304470,0.129122,0.146387 +bot_03003,splash_driven,0.7077,0.7242,1.0000,1.0000,0.8783,1.0000,0.9343,1.0000,0.8886,0.634433,0.215903,0.052895,0.096768 +bot_03004,splash_driven,0.7621,0.8252,1.0000,1.0000,1.0000,1.0000,0.7671,1.0000,0.9881,0.695762,0.188230,0.008615,0.107392 +bot_03005,splash_driven,1.0000,0.8653,1.0000,0.8514,0.9143,1.0000,1.0000,1.0000,0.9498,0.898499,0.066311,0.023223,0.011968 +bot_03006,splash_driven,0.6526,0.7807,1.0000,1.0000,1.0000,1.0000,0.9528,0.9619,0.9531,0.760628,0.163414,0.008984,0.066974 +bot_03007,splash_driven,1.0000,1.0000,1.0000,0.9053,1.0000,1.0000,0.9373,1.0000,1.0000,0.894319,0.084077,0.010802,0.010802 +bot_03008,reward_heavy,1.0000,1.0000,0.8278,1.0000,0.9555,0.7572,1.0000,1.0000,1.0000,0.723938,0.254686,0.010688,0.010688 +bot_03009,reward_heavy,1.0000,0.9402,0.6944,1.0000,0.7030,0.5338,0.9398,0.9810,1.0000,0.478315,0.264897,0.175842,0.080947 +bot_03010,reward_heavy,1.0000,1.0000,0.8862,1.0000,0.6601,0.8268,0.9450,0.9845,1.0000,0.695950,0.283613,0.010675,0.009762 +bot_03011,interstitial_focus,0.8828,1.0000,0.9394,0.6610,1.0000,0.9130,1.0000,1.0000,1.0000,0.275486,0.526979,0.181458,0.016077 +bot_03012,splash_driven,0.6945,0.9006,1.0000,1.0000,0.8623,1.0000,0.8760,0.9188,1.0000,0.725143,0.253257,0.010800,0.010800 +bot_03013,network_bound,0.6235,0.9975,0.5986,0.8406,0.8657,0.5532,0.5643,1.0000,0.8806,0.196550,0.167154,0.142340,0.493956 +bot_03014,reward_heavy,1.0000,0.8046,0.6767,1.0000,0.6888,0.5596,0.9401,0.9749,1.0000,0.581317,0.303954,0.008982,0.105747 +bot_03015,reward_heavy,1.0000,0.7953,0.5942,1.0000,0.6977,0.7757,1.0000,0.8869,1.0000,0.595279,0.177908,0.216330,0.010482 +bot_03016,interstitial_focus,0.4884,1.0000,0.9553,0.9025,1.0000,0.8808,0.8247,0.8636,1.0000,0.348359,0.530994,0.096566,0.024081 +bot_03017,splash_driven,1.0000,1.0000,1.0000,0.8092,1.0000,1.0000,0.8718,0.8564,0.9073,0.760911,0.186701,0.009226,0.043162 +bot_03018,splash_driven,0.6874,1.0000,1.0000,1.0000,1.0000,1.0000,0.9917,1.0000,0.9225,0.669659,0.221339,0.101430,0.007572 +bot_03019,interstitial_focus,0.8532,1.0000,0.8438,0.9051,1.0000,0.5095,0.8375,1.0000,0.9617,0.232300,0.553325,0.203980,0.010395 +bot_03020,churn_sensitive,0.3634,0.5266,0.3840,0.8146,0.4024,0.5424,0.7597,1.0000,0.5851,0.220810,0.297391,0.330080,0.151719 +bot_03021,interstitial_focus,0.5446,1.0000,0.7486,0.7570,1.0000,0.8614,1.0000,1.0000,1.0000,0.263865,0.319448,0.280740,0.135948 +bot_03022,reward_heavy,1.0000,0.7450,0.8869,1.0000,0.9745,0.6472,0.9313,0.8046,1.0000,0.603106,0.144398,0.182484,0.070012 +bot_03023,interstitial_focus,0.7998,1.0000,0.7834,0.6034,1.0000,0.5845,0.8182,1.0000,1.0000,0.295916,0.500671,0.193440,0.009972 +bot_03024,interstitial_focus,0.5908,1.0000,0.9634,0.5680,1.0000,0.8153,1.0000,1.0000,1.0000,0.322645,0.436535,0.079177,0.161643 +bot_03025,network_bound,0.9674,0.8229,0.6045,0.9365,0.6889,0.6527,0.6089,1.0000,0.9367,0.198687,0.040517,0.253080,0.507715 +bot_03026,splash_driven,0.8387,1.0000,1.0000,1.0000,0.8296,1.0000,0.8387,1.0000,1.0000,0.644203,0.191036,0.026752,0.138009 +bot_03027,balanced,0.9941,1.0000,1.0000,0.8355,0.8775,1.0000,0.9141,1.0000,1.0000,0.558947,0.345483,0.084403,0.011167 +bot_03028,interstitial_focus,0.4870,1.0000,0.7244,0.7065,1.0000,0.8462,1.0000,0.8785,0.9642,0.448466,0.333977,0.206569,0.010988 +bot_03029,interstitial_focus,0.6763,1.0000,0.8285,0.7157,1.0000,0.6353,0.8491,0.8692,1.0000,0.335238,0.417252,0.236735,0.010775 +bot_03030,reward_heavy,1.0000,0.6535,0.9861,1.0000,0.7732,0.7910,1.0000,0.7774,1.0000,0.440307,0.320538,0.229676,0.009479 +bot_03031,interstitial_focus,0.8154,1.0000,0.9000,0.9182,1.0000,0.5008,0.8556,1.0000,1.0000,0.321368,0.433189,0.231779,0.013664 +bot_03032,interstitial_focus,0.7915,1.0000,0.9536,0.9296,1.0000,0.5697,0.8109,0.8343,1.0000,0.228481,0.455198,0.163259,0.153061 +bot_03033,interstitial_focus,0.6692,1.0000,0.6094,0.8009,1.0000,0.9080,1.0000,0.9154,0.9925,0.308627,0.491920,0.124650,0.074803 +bot_03034,reward_heavy,1.0000,0.8382,0.7250,1.0000,0.8131,0.7211,1.0000,0.8147,1.0000,0.554434,0.315215,0.009706,0.120645 +bot_03035,churn_sensitive,0.6805,0.8118,0.2613,0.5526,0.6671,0.3338,0.6624,1.0000,0.6365,0.331587,0.248103,0.267454,0.152856 +bot_03036,interstitial_focus,0.7376,1.0000,0.8534,0.8804,1.0000,0.5132,0.8902,0.9046,1.0000,0.208023,0.507222,0.119237,0.165518 +bot_03037,balanced,0.9177,0.9598,0.9596,1.0000,1.0000,0.9457,1.0000,0.8879,0.9616,0.414576,0.286163,0.290393,0.008867 +bot_03038,reward_heavy,1.0000,0.6875,0.7773,1.0000,0.5654,0.8309,1.0000,0.9146,1.0000,0.701355,0.176391,0.108793,0.013461 +bot_03039,interstitial_focus,0.7389,1.0000,1.0000,0.7009,1.0000,0.6421,0.9304,0.8795,1.0000,0.348872,0.399587,0.187304,0.064236 +bot_03040,splash_driven,1.0000,0.9868,1.0000,0.8521,1.0000,1.0000,0.8883,1.0000,0.8901,0.755629,0.064047,0.011962,0.168362 +bot_03041,interstitial_focus,0.5939,1.0000,0.8529,0.6102,1.0000,0.6516,0.9731,0.8945,0.9305,0.269687,0.460307,0.175636,0.094369 +bot_03042,balanced,0.8713,1.0000,1.0000,1.0000,1.0000,1.0000,0.8683,1.0000,1.0000,0.367182,0.271272,0.236403,0.125143 +bot_03043,balanced,0.9084,1.0000,0.9459,1.0000,1.0000,0.7837,0.9545,1.0000,0.9362,0.333023,0.227965,0.263258,0.175754 +bot_03044,balanced,0.9755,1.0000,1.0000,1.0000,1.0000,0.9535,1.0000,1.0000,0.9526,0.360124,0.399187,0.212302,0.028387 +bot_03045,interstitial_focus,0.7435,1.0000,0.9460,0.8079,1.0000,0.9176,1.0000,0.9847,1.0000,0.341343,0.391981,0.093143,0.173533 +bot_03046,churn_sensitive,0.4776,0.8151,0.4094,0.5080,0.7074,0.3498,0.7115,1.0000,0.5395,0.105217,0.344093,0.406636,0.144055 +bot_03047,balanced,1.0000,0.9305,1.0000,1.0000,0.9540,1.0000,1.0000,0.9275,1.0000,0.327687,0.257964,0.324862,0.089486 +bot_03048,network_bound,0.9553,1.0000,0.9553,0.7200,0.8224,0.8708,0.7179,1.0000,0.7933,0.116357,0.280358,0.342410,0.260875 +bot_03049,reward_heavy,1.0000,1.0000,0.8743,1.0000,0.5743,0.4121,1.0000,0.7969,1.0000,0.501060,0.364652,0.018829,0.115459 +bot_03050,network_bound,1.0000,1.0000,0.7063,0.6863,0.7747,0.7216,0.7108,1.0000,0.7776,0.163057,0.077799,0.347881,0.411263 +bot_03051,splash_driven,0.7186,1.0000,1.0000,1.0000,1.0000,1.0000,0.9643,1.0000,0.9936,0.706983,0.071229,0.039346,0.182442 +bot_03052,churn_sensitive,0.7879,0.5904,0.4162,0.4046,0.6901,0.4867,0.5684,1.0000,0.5260,0.177128,0.293667,0.307999,0.221206 +bot_03053,balanced,1.0000,1.0000,1.0000,0.9384,0.9817,0.9953,0.9024,1.0000,0.9978,0.344183,0.513633,0.129591,0.012594 +bot_03054,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8785,1.0000,0.350378,0.269566,0.244429,0.135627 +bot_03055,churn_sensitive,0.3529,0.6126,0.4407,0.5144,0.4323,0.4777,0.7435,1.0000,0.5341,0.108014,0.307823,0.257997,0.326165 +bot_03056,network_bound,0.6453,0.9035,0.7817,0.8253,0.7561,0.5348,0.7557,1.0000,0.9168,0.116936,0.173771,0.307273,0.402020 +bot_03057,splash_driven,1.0000,0.8400,1.0000,0.8112,1.0000,1.0000,0.8048,1.0000,0.9961,0.696663,0.089055,0.064287,0.149995 +bot_03058,interstitial_focus,0.9471,1.0000,0.8678,0.8104,1.0000,0.6493,0.8290,0.9503,1.0000,0.298348,0.420674,0.199087,0.081891 +bot_03059,balanced,0.9667,1.0000,0.9041,1.0000,1.0000,0.9617,0.8827,0.9343,1.0000,0.385880,0.408745,0.194691,0.010684 +bot_03060,interstitial_focus,0.4969,1.0000,1.0000,0.8410,1.0000,0.9033,1.0000,1.0000,1.0000,0.314581,0.564620,0.104981,0.015818 +bot_03061,reward_heavy,1.0000,0.7431,0.6880,1.0000,0.7191,0.5589,0.9447,0.9418,1.0000,0.549173,0.345421,0.052146,0.053260 +bot_03062,churn_sensitive,0.7256,0.5728,0.3476,0.4700,0.3506,0.6776,0.7815,1.0000,0.6630,0.244016,0.222536,0.308816,0.224631 +bot_03063,churn_sensitive,0.3701,0.7596,0.3378,0.3877,0.3313,0.5176,0.5781,1.0000,0.4833,0.275342,0.223213,0.385064,0.116381 +bot_03064,splash_driven,1.0000,0.9315,1.0000,1.0000,1.0000,1.0000,0.9351,0.8975,0.8477,0.672553,0.219810,0.010660,0.096978 +bot_03065,network_bound,0.8406,0.9939,0.6982,0.6725,0.6510,0.6508,0.5376,1.0000,0.8437,0.153479,0.152215,0.340116,0.354191 +bot_03066,balanced,1.0000,1.0000,1.0000,0.8902,0.8648,0.9535,0.8805,0.8179,1.0000,0.449190,0.347008,0.110835,0.092967 +bot_03067,reward_heavy,1.0000,0.6506,0.8836,1.0000,0.5489,0.4194,1.0000,0.7996,1.0000,0.599150,0.276211,0.064038,0.060601 +bot_03068,interstitial_focus,0.8339,1.0000,0.8658,0.8341,1.0000,0.8050,1.0000,1.0000,1.0000,0.321183,0.281774,0.334306,0.062737 +bot_03069,reward_heavy,1.0000,0.8339,0.7461,1.0000,0.6697,0.6291,1.0000,0.9780,1.0000,0.639276,0.244151,0.107593,0.008980 +bot_03070,churn_sensitive,0.3234,0.8500,0.3977,0.5381,0.7069,0.2725,0.8570,1.0000,0.6595,0.247315,0.301538,0.182731,0.268416 +bot_03071,churn_sensitive,0.7537,0.4103,0.3933,0.4610,0.4302,0.3367,0.6455,1.0000,0.4981,0.135068,0.377814,0.367783,0.119334 +bot_03072,reward_heavy,1.0000,0.9889,0.6456,1.0000,0.7188,0.6214,0.9003,0.7306,1.0000,0.633682,0.123733,0.141054,0.101531 +bot_03073,interstitial_focus,0.7768,1.0000,0.8900,0.8729,1.0000,0.6550,0.9211,1.0000,1.0000,0.293090,0.592929,0.102395,0.011586 +bot_03074,network_bound,0.6499,0.9155,0.6901,0.9149,0.9698,0.7762,0.5812,1.0000,0.7511,0.009804,0.237408,0.286615,0.466173 +bot_03075,interstitial_focus,0.7243,1.0000,0.9024,0.6838,1.0000,0.7522,0.9230,0.9283,0.9760,0.494113,0.331130,0.120045,0.054712 +bot_03076,splash_driven,0.8058,1.0000,1.0000,1.0000,0.9662,1.0000,0.8286,0.9905,1.0000,0.642272,0.274509,0.073443,0.009775 +bot_03077,balanced,0.8459,1.0000,1.0000,0.9612,1.0000,1.0000,0.9963,1.0000,1.0000,0.403928,0.322451,0.144276,0.129346 +bot_03078,balanced,0.9415,1.0000,0.9542,0.9965,1.0000,1.0000,0.9850,1.0000,0.9297,0.439980,0.289562,0.262034,0.008424 +bot_03079,churn_sensitive,0.4873,0.7703,0.2401,0.4590,0.5997,0.5560,0.8518,1.0000,0.5330,0.263553,0.437961,0.216580,0.081907 +bot_03080,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8316,0.8931,1.0000,0.9467,0.372131,0.346552,0.273865,0.007453 +bot_03081,churn_sensitive,0.4321,0.4258,0.2725,0.5068,0.6716,0.2976,0.6535,1.0000,0.6673,0.301608,0.158604,0.316856,0.222932 +bot_03082,splash_driven,0.6657,0.8726,1.0000,0.8554,0.9983,1.0000,0.7568,1.0000,0.9689,0.727835,0.121426,0.139001,0.011738 +bot_03083,splash_driven,0.6456,0.9143,1.0000,0.9166,1.0000,1.0000,0.8763,0.8113,0.9917,0.732184,0.078747,0.011533,0.177536 +bot_03084,splash_driven,0.6938,0.9974,1.0000,0.8167,1.0000,1.0000,0.7772,1.0000,0.9982,0.779298,0.200111,0.010296,0.010296 +bot_03085,interstitial_focus,0.9284,1.0000,0.8986,0.6646,1.0000,0.6955,1.0000,0.9055,1.0000,0.421569,0.490074,0.076365,0.011992 +bot_03086,splash_driven,0.6780,1.0000,1.0000,0.8606,1.0000,1.0000,0.9043,0.9320,0.9357,0.784049,0.194643,0.010654,0.010654 +bot_03087,network_bound,0.6704,0.7192,0.6559,0.7209,0.6497,0.6981,0.7310,1.0000,0.7869,0.020468,0.269061,0.223982,0.486489 +bot_03088,balanced,1.0000,0.9344,1.0000,1.0000,1.0000,0.9097,1.0000,1.0000,0.9862,0.509073,0.269468,0.117806,0.103653 +bot_03089,balanced,1.0000,1.0000,1.0000,0.8584,0.8955,1.0000,0.9925,0.9199,1.0000,0.317959,0.408358,0.151583,0.122100 +bot_03090,network_bound,0.7816,1.0000,0.5817,0.9690,0.7555,0.6895,0.6419,1.0000,0.8573,0.092502,0.303905,0.195876,0.407717 +bot_03091,interstitial_focus,0.8257,1.0000,0.6404,0.9262,1.0000,0.5949,1.0000,0.8967,1.0000,0.378063,0.549260,0.061596,0.011081 +bot_03092,interstitial_focus,0.5502,1.0000,0.6833,0.6103,1.0000,0.7367,0.8845,0.8297,0.9714,0.263672,0.400891,0.260076,0.075361 +bot_03093,reward_heavy,1.0000,0.8949,0.6083,1.0000,0.7286,0.7203,1.0000,0.7437,1.0000,0.382422,0.334207,0.145350,0.138021 +bot_03094,network_bound,0.7085,0.7431,0.7026,0.9804,0.7921,0.5729,0.7115,1.0000,0.9256,0.032807,0.183577,0.455688,0.327927 +bot_03095,network_bound,0.6444,0.7546,0.7782,0.7196,0.7709,0.6086,0.5722,1.0000,0.7311,0.053281,0.142200,0.356173,0.448345 +bot_03096,interstitial_focus,0.6779,1.0000,0.8228,0.5709,1.0000,0.9191,0.9678,1.0000,1.0000,0.225045,0.444957,0.158391,0.171607 +bot_03097,network_bound,1.0000,0.7906,0.7661,0.8502,0.9406,0.7993,0.6659,1.0000,0.9373,0.109833,0.231772,0.271212,0.387183 +bot_03098,interstitial_focus,0.7291,1.0000,0.7139,0.9994,1.0000,0.8798,0.9899,1.0000,0.9878,0.369730,0.269486,0.250998,0.109787 +bot_03099,network_bound,0.9849,0.7963,0.9966,0.8958,0.8488,0.7338,0.8394,1.0000,0.8270,0.140173,0.129990,0.330342,0.399495 +bot_03100,splash_driven,0.9279,1.0000,1.0000,0.9411,1.0000,1.0000,0.8093,1.0000,0.8694,0.638599,0.227143,0.125623,0.008635 +bot_03101,splash_driven,0.7037,0.7183,1.0000,0.8338,0.8317,1.0000,0.8688,0.8227,0.9335,0.627413,0.229974,0.059113,0.083500 +bot_03102,reward_heavy,1.0000,0.7776,1.0000,1.0000,0.6699,0.6779,0.9448,1.0000,1.0000,0.548340,0.218257,0.139195,0.094207 +bot_03103,splash_driven,0.6670,0.9824,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9648,0.840417,0.095288,0.050125,0.014170 +bot_03104,interstitial_focus,0.5242,1.0000,0.9021,0.7617,1.0000,0.6935,1.0000,0.8253,1.0000,0.383854,0.283359,0.278350,0.054437 +bot_03105,churn_sensitive,0.4907,0.5197,0.2919,0.5806,0.5306,0.5388,0.7083,1.0000,0.6925,0.315685,0.117374,0.290346,0.276595 +bot_03106,balanced,0.9666,1.0000,1.0000,0.9350,1.0000,0.9055,1.0000,1.0000,1.0000,0.397135,0.368010,0.100245,0.134610 +bot_03107,splash_driven,0.8468,1.0000,1.0000,1.0000,1.0000,1.0000,0.7819,1.0000,0.9748,0.692336,0.252994,0.036005,0.018665 +bot_03108,network_bound,0.9977,0.7970,0.9629,0.9620,0.6178,0.9347,0.7697,1.0000,0.8772,0.121669,0.197496,0.295278,0.385557 +bot_03109,splash_driven,0.8389,1.0000,1.0000,1.0000,0.8118,1.0000,0.9962,0.8209,0.8451,0.768174,0.086725,0.010681,0.134420 +bot_03110,interstitial_focus,0.9331,1.0000,0.6505,0.6207,1.0000,0.6785,1.0000,1.0000,1.0000,0.344816,0.404415,0.140181,0.110588 +bot_03111,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9293,0.9492,0.9734,0.9926,0.368072,0.274995,0.345563,0.011370 +bot_03112,balanced,1.0000,0.9996,1.0000,0.9868,1.0000,0.9806,0.8758,1.0000,0.8969,0.419184,0.136448,0.282940,0.161428 +bot_03113,balanced,1.0000,1.0000,0.9747,0.8397,0.9431,1.0000,0.9317,0.9155,0.9298,0.401002,0.242893,0.169298,0.186807 +bot_03114,reward_heavy,1.0000,1.0000,0.8554,1.0000,0.5645,0.5095,1.0000,0.8750,1.0000,0.497106,0.405055,0.087809,0.010031 +bot_03115,network_bound,0.9194,0.7313,0.5633,0.8542,0.8853,0.5927,0.6953,1.0000,0.8793,0.138889,0.257698,0.305265,0.298148 +bot_03116,balanced,0.8413,0.9565,1.0000,0.9513,0.8910,1.0000,0.9831,1.0000,1.0000,0.395985,0.347719,0.104877,0.151419 +bot_03117,reward_heavy,1.0000,0.9240,0.9051,1.0000,0.9264,0.5580,1.0000,0.7548,1.0000,0.484394,0.260728,0.127889,0.126989 +bot_03118,splash_driven,0.8928,0.7279,1.0000,0.8258,1.0000,1.0000,0.7983,0.9884,0.9225,0.827846,0.044778,0.117899,0.009478 +bot_03119,churn_sensitive,0.4132,0.7464,0.2221,0.6805,0.4170,0.5801,0.7826,1.0000,0.6617,0.224762,0.390543,0.262027,0.122668 +bot_03120,churn_sensitive,0.3997,0.5573,0.4483,0.6791,0.5403,0.6529,0.6289,1.0000,0.6091,0.301239,0.211722,0.346567,0.140472 +bot_03121,interstitial_focus,0.5199,1.0000,0.5935,0.8815,1.0000,0.8934,0.9115,1.0000,0.9936,0.237260,0.479936,0.090863,0.191942 +bot_03122,interstitial_focus,0.8540,1.0000,0.8744,0.7080,1.0000,0.4891,1.0000,0.9543,1.0000,0.260930,0.377241,0.205839,0.155989 +bot_03123,reward_heavy,1.0000,0.8828,0.7347,1.0000,0.6005,0.7941,1.0000,1.0000,1.0000,0.723348,0.181173,0.081552,0.013927 +bot_03124,reward_heavy,1.0000,0.7028,0.7470,1.0000,0.6233,0.6570,0.9715,0.7743,1.0000,0.706211,0.221124,0.038794,0.033871 +bot_03125,splash_driven,0.8048,1.0000,1.0000,1.0000,0.8189,1.0000,0.7597,1.0000,0.8675,0.693753,0.134022,0.011055,0.161170 +bot_03126,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.7783,0.9489,0.9415,0.682107,0.298031,0.009931,0.009931 +bot_03127,balanced,1.0000,0.9852,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.418278,0.429622,0.142115,0.009985 +bot_03128,network_bound,0.9672,0.9603,1.0000,1.0000,0.8265,0.8318,0.5663,1.0000,0.9261,0.158906,0.141459,0.169484,0.530151 +bot_03129,splash_driven,0.8543,0.7892,1.0000,1.0000,0.9267,1.0000,0.8466,1.0000,0.9542,0.774275,0.201447,0.012139,0.012139 +bot_03130,balanced,1.0000,0.9986,0.9927,0.8418,1.0000,1.0000,0.9088,0.8138,0.9811,0.346127,0.373483,0.242748,0.037643 +bot_03131,interstitial_focus,0.5619,1.0000,1.0000,0.8000,1.0000,0.7994,0.8601,1.0000,1.0000,0.331143,0.390721,0.154565,0.123571 +bot_03132,reward_heavy,1.0000,0.7533,0.6172,1.0000,0.7776,0.7162,0.9942,0.7621,1.0000,0.653740,0.226517,0.077441,0.042301 +bot_03133,interstitial_focus,0.6932,1.0000,0.8615,0.6473,1.0000,0.8909,1.0000,0.9251,1.0000,0.295493,0.437717,0.201642,0.065147 +bot_03134,splash_driven,0.8165,1.0000,1.0000,1.0000,0.8873,1.0000,0.9112,0.9063,0.8589,0.919567,0.057024,0.011704,0.011704 +bot_03135,splash_driven,0.7100,0.8362,1.0000,1.0000,1.0000,1.0000,0.9157,1.0000,0.9057,0.939110,0.039198,0.010846,0.010846 +bot_03136,network_bound,0.6481,0.9566,0.8453,0.7058,0.7411,0.5894,0.7175,1.0000,0.7982,0.066181,0.173762,0.375525,0.384532 +bot_03137,interstitial_focus,0.8301,1.0000,1.0000,0.7006,1.0000,0.5251,0.9503,0.9932,1.0000,0.229819,0.403590,0.200786,0.165805 +bot_03138,splash_driven,0.9186,1.0000,1.0000,0.8644,1.0000,1.0000,0.8225,1.0000,0.9844,0.767196,0.092295,0.009141,0.131369 +bot_03139,balanced,1.0000,1.0000,0.8733,1.0000,0.8913,1.0000,1.0000,0.9179,0.9603,0.389373,0.417928,0.179026,0.013673 +bot_03140,network_bound,0.6281,0.8340,1.0000,0.9943,0.6690,0.5227,0.6057,1.0000,0.8664,0.056003,0.145868,0.346513,0.451617 +bot_03141,splash_driven,0.7224,1.0000,1.0000,1.0000,0.9221,1.0000,0.7972,1.0000,0.9062,0.729449,0.213964,0.010349,0.046238 +bot_03142,reward_heavy,1.0000,0.7610,1.0000,1.0000,0.7142,0.6108,1.0000,0.8130,1.0000,0.480509,0.317884,0.192334,0.009273 +bot_03143,interstitial_focus,0.4888,1.0000,0.9261,0.7883,1.0000,0.7955,0.8254,1.0000,0.9559,0.323460,0.442552,0.080278,0.153710 +bot_03144,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8217,1.0000,1.0000,1.0000,0.475389,0.183023,0.161931,0.179658 +bot_03145,balanced,1.0000,0.9231,1.0000,0.8877,1.0000,1.0000,0.9365,0.9974,0.8964,0.363595,0.285401,0.340660,0.010343 +bot_03146,interstitial_focus,0.5478,1.0000,1.0000,0.7920,1.0000,0.8272,0.9500,1.0000,1.0000,0.220557,0.644521,0.121982,0.012941 +bot_03147,interstitial_focus,0.7175,1.0000,0.6485,0.9647,1.0000,0.6972,0.8711,1.0000,1.0000,0.365942,0.330701,0.089125,0.214231 +bot_03148,churn_sensitive,0.3656,0.6267,0.5386,0.6556,0.4604,0.3858,0.6276,1.0000,0.6526,0.285323,0.148503,0.273149,0.293025 +bot_03149,splash_driven,0.6698,1.0000,1.0000,1.0000,0.9595,1.0000,1.0000,1.0000,0.8899,0.657572,0.208464,0.007557,0.126407 +bot_03150,churn_sensitive,0.5630,0.6545,0.6055,0.5347,0.3945,0.6075,0.7484,1.0000,0.6369,0.145458,0.364376,0.296572,0.193594 +bot_03151,churn_sensitive,0.6216,0.8091,0.2353,0.5779,0.4235,0.5667,0.7644,1.0000,0.5252,0.175982,0.201931,0.461700,0.160388 +bot_03152,network_bound,1.0000,0.9524,0.9665,1.0000,0.9429,0.5147,0.5233,1.0000,0.8427,0.170267,0.222094,0.354301,0.253338 +bot_03153,network_bound,0.8695,0.8682,0.8503,0.7726,0.6501,0.5942,0.7033,1.0000,0.7720,0.096478,0.134651,0.250841,0.518030 +bot_03154,network_bound,0.7986,0.9939,0.7709,0.7558,0.8319,0.7666,0.5431,1.0000,0.7426,0.025125,0.069900,0.294405,0.610570 +bot_03155,splash_driven,0.8561,0.8867,1.0000,0.9963,1.0000,1.0000,0.9235,1.0000,0.9206,0.706121,0.277044,0.008418,0.008418 +bot_03156,reward_heavy,1.0000,0.7756,0.6342,1.0000,0.5751,0.6792,1.0000,0.8648,1.0000,0.640872,0.190293,0.060883,0.107952 +bot_03157,interstitial_focus,0.8928,1.0000,0.6911,0.6982,1.0000,0.8933,1.0000,1.0000,1.0000,0.286906,0.384031,0.292020,0.037043 +bot_03158,reward_heavy,1.0000,0.7476,0.8198,1.0000,0.6064,0.6620,1.0000,0.7653,1.0000,0.666032,0.227109,0.097472,0.009387 +bot_03159,reward_heavy,1.0000,0.7787,0.8026,1.0000,0.5785,0.4262,0.9901,0.7853,1.0000,0.481107,0.380517,0.010375,0.128002 +bot_03160,interstitial_focus,0.9279,1.0000,1.0000,0.8341,1.0000,0.5787,1.0000,0.9697,1.0000,0.230053,0.411786,0.214397,0.143764 +bot_03161,balanced,1.0000,1.0000,1.0000,0.9656,0.9979,1.0000,0.9224,0.8438,0.9138,0.363955,0.418027,0.206432,0.011586 +bot_03162,interstitial_focus,0.7704,1.0000,0.6701,0.7815,1.0000,0.7759,0.8700,1.0000,1.0000,0.347733,0.398681,0.151814,0.101773 +bot_03163,splash_driven,0.9059,0.7765,1.0000,1.0000,0.9927,1.0000,0.7894,0.8382,0.9940,0.745182,0.041875,0.202627,0.010317 +bot_03164,splash_driven,0.8000,0.7649,1.0000,0.8103,0.8178,1.0000,0.8247,1.0000,1.0000,0.645286,0.127290,0.072198,0.155226 +bot_03165,interstitial_focus,0.5292,1.0000,0.7479,0.7618,1.0000,0.5208,0.9953,0.9880,0.9300,0.406775,0.321994,0.261081,0.010150 +bot_03166,churn_sensitive,0.6101,0.4115,0.4736,0.5634,0.5794,0.2458,0.6188,1.0000,0.5723,0.251640,0.173024,0.313820,0.261515 +bot_03167,splash_driven,0.8219,0.8613,1.0000,1.0000,0.9631,1.0000,0.8072,1.0000,0.8966,0.814834,0.096964,0.077829,0.010373 +bot_03168,reward_heavy,1.0000,0.6037,0.7033,1.0000,0.8992,0.7405,1.0000,0.9679,1.0000,0.568459,0.351106,0.009419,0.071016 +bot_03169,interstitial_focus,0.6470,1.0000,0.7807,0.7041,1.0000,0.7482,1.0000,0.9950,1.0000,0.345159,0.339181,0.215331,0.100330 +bot_03170,splash_driven,0.6845,1.0000,1.0000,1.0000,1.0000,1.0000,0.7973,1.0000,0.9086,0.720692,0.100107,0.170364,0.008837 +bot_03171,splash_driven,0.9923,0.7251,1.0000,1.0000,1.0000,1.0000,1.0000,0.8293,1.0000,0.731116,0.086381,0.020056,0.162447 +bot_03172,reward_heavy,1.0000,0.6187,0.9146,1.0000,0.6570,0.4824,1.0000,1.0000,1.0000,0.741922,0.207974,0.039359,0.010745 +bot_03173,interstitial_focus,0.9525,1.0000,0.6092,0.5667,1.0000,0.6077,1.0000,0.9107,1.0000,0.436874,0.302161,0.127514,0.133451 +bot_03174,network_bound,0.8117,0.9492,0.9525,0.7618,0.6665,0.6859,0.7060,1.0000,0.7189,0.036583,0.173407,0.189560,0.600449 +bot_03175,splash_driven,0.6654,1.0000,1.0000,0.9714,1.0000,1.0000,0.8623,1.0000,0.9024,0.591960,0.256463,0.142776,0.008802 +bot_03176,reward_heavy,1.0000,0.7202,0.9195,1.0000,0.7434,0.5419,1.0000,1.0000,1.0000,0.573755,0.310702,0.105381,0.010163 +bot_03177,balanced,1.0000,0.9529,1.0000,1.0000,1.0000,1.0000,0.9737,0.9039,0.9563,0.293182,0.369881,0.323489,0.013449 +bot_03178,interstitial_focus,0.8501,1.0000,0.9030,0.5845,1.0000,0.6340,0.8868,0.9606,1.0000,0.353099,0.366692,0.101579,0.178630 +bot_03179,balanced,1.0000,1.0000,1.0000,1.0000,0.9779,0.9702,0.8666,1.0000,0.9304,0.416886,0.297837,0.277184,0.008092 +bot_03180,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9582,1.0000,0.8920,0.605870,0.294143,0.090019,0.009967 +bot_03181,reward_heavy,1.0000,0.7705,0.7911,1.0000,0.6305,0.7599,0.9078,0.9436,1.0000,0.626946,0.277833,0.083515,0.011706 +bot_03182,reward_heavy,1.0000,0.6368,0.7264,1.0000,0.8865,0.6473,1.0000,0.7529,1.0000,0.626795,0.178622,0.055163,0.139420 +bot_03183,splash_driven,0.6507,0.8599,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9678,0.815914,0.044027,0.011527,0.128532 +bot_03184,network_bound,0.8277,0.6518,0.8864,0.8644,0.9940,0.5665,0.5231,1.0000,0.9212,0.024738,0.235618,0.373690,0.365954 +bot_03185,network_bound,0.7173,0.8564,0.9910,0.9898,0.6625,0.6943,0.5917,1.0000,0.8200,0.023210,0.268396,0.154856,0.553539 +bot_03186,network_bound,0.7217,0.7668,0.8703,0.7561,0.5658,0.5590,0.6371,1.0000,0.7825,0.314497,0.111325,0.210729,0.363449 +bot_03187,churn_sensitive,0.3199,0.5140,0.5220,0.7113,0.5125,0.3007,0.6568,1.0000,0.6697,0.181350,0.247892,0.338358,0.232400 +bot_03188,balanced,1.0000,1.0000,1.0000,0.8315,1.0000,1.0000,1.0000,1.0000,0.9275,0.338392,0.303605,0.249993,0.108010 +bot_03189,churn_sensitive,0.3547,0.6882,0.2486,0.6033,0.3637,0.4411,0.5642,1.0000,0.6038,0.265116,0.200640,0.372404,0.161840 +bot_03190,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.8502,0.7579,1.0000,0.7338,1.0000,0.696688,0.196458,0.010884,0.095970 +bot_03191,balanced,1.0000,1.0000,0.9306,1.0000,1.0000,0.8565,0.9742,1.0000,1.0000,0.508940,0.235878,0.140293,0.114889 +bot_03192,splash_driven,1.0000,0.8722,1.0000,1.0000,0.9196,1.0000,1.0000,0.9882,0.9446,0.603664,0.239214,0.148692,0.008430 +bot_03193,reward_heavy,1.0000,0.6126,0.6621,1.0000,0.6033,0.8027,1.0000,1.0000,1.0000,0.525212,0.260871,0.202805,0.011112 +bot_03194,interstitial_focus,0.9545,1.0000,0.8379,0.9906,1.0000,0.5156,0.8076,1.0000,1.0000,0.495476,0.355391,0.132526,0.016607 +bot_03195,reward_heavy,1.0000,0.6390,0.6031,1.0000,0.6785,0.6088,1.0000,0.9607,1.0000,0.549713,0.271278,0.055540,0.123469 +bot_03196,churn_sensitive,0.5889,0.6902,0.5991,0.5362,0.5636,0.5417,0.7543,1.0000,0.6258,0.250083,0.111437,0.376751,0.261730 +bot_03197,reward_heavy,1.0000,0.5840,0.8130,1.0000,0.6350,0.5504,1.0000,0.7901,1.0000,0.505534,0.300616,0.186149,0.007701 +bot_03198,splash_driven,0.9073,0.6991,1.0000,0.8266,1.0000,1.0000,0.7625,0.8898,1.0000,0.638783,0.251181,0.057635,0.052401 +bot_03199,balanced,0.8463,1.0000,1.0000,0.9527,1.0000,1.0000,1.0000,0.9919,0.9787,0.326768,0.482993,0.093768,0.096470 +bot_03200,balanced,1.0000,0.9262,1.0000,0.9334,1.0000,1.0000,1.0000,1.0000,0.9871,0.402955,0.369050,0.151054,0.076941 +bot_03201,balanced,0.8601,1.0000,1.0000,1.0000,0.9717,1.0000,0.8686,0.8787,0.9318,0.373322,0.375003,0.080852,0.170823 +bot_03202,splash_driven,0.6525,0.9930,1.0000,1.0000,0.9660,1.0000,0.9526,1.0000,0.8600,0.830787,0.103982,0.053606,0.011624 +bot_03203,reward_heavy,1.0000,0.8655,0.8783,1.0000,0.9391,0.6243,0.8889,0.9842,1.0000,0.513394,0.303580,0.142511,0.040515 +bot_03204,churn_sensitive,0.3137,0.6099,0.2914,0.7322,0.4116,0.3920,0.7181,1.0000,0.4883,0.147119,0.285495,0.242679,0.324708 +bot_03205,splash_driven,0.7632,1.0000,1.0000,0.9923,1.0000,1.0000,0.9236,1.0000,1.0000,0.644980,0.199480,0.044065,0.111475 +bot_03206,network_bound,0.7319,0.9596,0.9506,0.7002,0.8940,0.6300,0.6032,1.0000,0.9119,0.039096,0.149676,0.461435,0.349793 +bot_03207,interstitial_focus,0.5942,1.0000,0.5902,0.7810,1.0000,0.5789,1.0000,1.0000,1.0000,0.357379,0.450321,0.183393,0.008907 +bot_03208,interstitial_focus,0.6432,1.0000,0.7630,0.6149,1.0000,0.5629,1.0000,1.0000,0.9380,0.395634,0.246188,0.240599,0.117578 +bot_03209,reward_heavy,1.0000,0.9957,0.8012,1.0000,0.7045,0.5913,1.0000,0.7190,1.0000,0.540766,0.438666,0.010284,0.010284 +bot_03210,reward_heavy,1.0000,0.6788,0.6799,1.0000,0.8910,0.4403,0.9249,1.0000,1.0000,0.560376,0.144343,0.156365,0.138916 +bot_03211,balanced,1.0000,1.0000,0.8642,0.9908,0.9680,1.0000,1.0000,1.0000,0.9535,0.320808,0.309529,0.350641,0.019022 +bot_03212,reward_heavy,1.0000,0.9048,0.6481,1.0000,0.7647,0.6317,1.0000,0.7726,1.0000,0.621685,0.228357,0.101244,0.048715 +bot_03213,balanced,1.0000,1.0000,1.0000,1.0000,0.8985,0.9008,0.9063,0.8951,1.0000,0.491324,0.256019,0.241688,0.010969 +bot_03214,reward_heavy,1.0000,0.6100,0.9363,1.0000,0.7155,0.5519,0.9555,0.7419,1.0000,0.580847,0.216101,0.183494,0.019559 +bot_03215,balanced,1.0000,1.0000,1.0000,0.9991,0.9688,1.0000,0.8830,1.0000,0.9326,0.520292,0.287535,0.082323,0.109851 +bot_03216,interstitial_focus,0.9270,1.0000,0.9833,0.8988,1.0000,0.6456,0.9431,0.9497,0.9830,0.415638,0.480921,0.073461,0.029980 +bot_03217,reward_heavy,1.0000,0.9815,0.6919,1.0000,0.5965,0.5104,1.0000,0.8693,1.0000,0.503616,0.291549,0.087541,0.117295 +bot_03218,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9776,1.0000,0.9400,1.0000,0.462563,0.351473,0.168284,0.017681 +bot_03219,splash_driven,0.9440,0.8353,1.0000,1.0000,0.9645,1.0000,0.8269,0.8852,1.0000,0.897824,0.066740,0.020631,0.014805 +bot_03220,reward_heavy,1.0000,0.8975,0.6357,1.0000,0.5517,0.5679,0.9336,0.6932,1.0000,0.678542,0.190340,0.027173,0.103945 +bot_03221,splash_driven,0.8806,0.7432,1.0000,1.0000,1.0000,1.0000,0.9104,1.0000,1.0000,0.738469,0.182140,0.069122,0.010270 +bot_03222,reward_heavy,1.0000,0.7446,1.0000,1.0000,0.7035,0.7105,0.9356,1.0000,1.0000,0.533604,0.281070,0.177218,0.008107 +bot_03223,balanced,1.0000,0.9047,1.0000,1.0000,0.9226,1.0000,0.8994,1.0000,1.0000,0.396102,0.342798,0.194500,0.066601 +bot_03224,churn_sensitive,0.5011,0.5561,0.3431,0.7374,0.6825,0.5365,0.7221,1.0000,0.5107,0.283941,0.273127,0.260130,0.182802 +bot_03225,splash_driven,0.6599,0.8026,1.0000,0.8017,1.0000,1.0000,0.9840,1.0000,0.9205,0.681234,0.216253,0.055539,0.046974 +bot_03226,network_bound,0.9282,0.7022,0.9541,0.8890,0.8315,0.8426,0.6951,1.0000,0.8655,0.090308,0.209369,0.309874,0.390449 +bot_03227,churn_sensitive,0.3822,0.8662,0.3028,0.3981,0.4988,0.4088,0.7368,1.0000,0.6826,0.184177,0.404873,0.286650,0.124300 +bot_03228,reward_heavy,1.0000,0.6449,0.6827,1.0000,0.7558,0.8094,1.0000,0.9023,1.0000,0.501249,0.324899,0.165587,0.008265 +bot_03229,balanced,0.8108,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.356713,0.320075,0.280789,0.042424 +bot_03230,splash_driven,0.9444,0.8587,1.0000,0.9383,0.9926,1.0000,0.7818,0.8435,0.8986,0.907940,0.063508,0.014276,0.014276 +bot_03231,reward_heavy,1.0000,1.0000,0.8920,1.0000,0.9736,0.6419,0.9709,0.8997,1.0000,0.590701,0.387896,0.010701,0.010701 +bot_03232,reward_heavy,1.0000,0.7237,0.9032,1.0000,0.7266,0.4574,1.0000,0.8079,1.0000,0.610189,0.358237,0.023202,0.008371 +bot_03233,interstitial_focus,0.6589,1.0000,0.7558,0.5977,1.0000,0.8554,0.8396,1.0000,1.0000,0.242945,0.410399,0.335477,0.011179 +bot_03234,interstitial_focus,0.8091,1.0000,0.6011,0.9656,1.0000,0.6812,1.0000,1.0000,1.0000,0.398752,0.382880,0.206606,0.011761 +bot_03235,reward_heavy,1.0000,1.0000,0.8372,1.0000,0.5428,0.5085,0.9130,0.6922,1.0000,0.556392,0.267804,0.075474,0.100330 +bot_03236,network_bound,1.0000,1.0000,0.7524,0.6636,0.8592,0.5183,0.5800,1.0000,0.9300,0.183761,0.180017,0.210472,0.425750 +bot_03237,splash_driven,0.8311,1.0000,1.0000,1.0000,0.9470,1.0000,0.9069,0.8474,0.9015,0.757392,0.139503,0.094487,0.008618 +bot_03238,interstitial_focus,0.8893,1.0000,0.6413,0.8677,1.0000,0.7054,0.8674,0.8961,0.9967,0.298588,0.402792,0.205531,0.093089 +bot_03239,balanced,1.0000,0.8891,0.9825,1.0000,0.9577,0.8309,1.0000,1.0000,1.0000,0.264314,0.305079,0.298955,0.131651 +bot_03240,interstitial_focus,0.6286,1.0000,0.9140,0.6062,1.0000,0.8881,0.8960,1.0000,1.0000,0.289983,0.398202,0.100660,0.211155 +bot_03241,balanced,1.0000,1.0000,1.0000,1.0000,0.9290,1.0000,1.0000,1.0000,0.8909,0.413581,0.352680,0.161555,0.072183 +bot_03242,interstitial_focus,0.8669,1.0000,0.6558,0.6318,1.0000,0.5834,0.8729,0.9372,0.9439,0.214147,0.588219,0.186062,0.011573 +bot_03243,balanced,1.0000,1.0000,1.0000,0.8930,0.8694,0.9834,1.0000,1.0000,0.9524,0.348227,0.301461,0.335261,0.015051 +bot_03244,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9706,0.259854,0.397536,0.165824,0.176787 +bot_03245,reward_heavy,1.0000,0.6152,0.8775,1.0000,0.7066,0.5676,0.8974,0.7721,1.0000,0.681710,0.240082,0.065730,0.012477 +bot_03246,reward_heavy,1.0000,0.8753,1.0000,1.0000,0.9140,0.7926,0.9631,0.9582,1.0000,0.485095,0.211444,0.185752,0.117709 +bot_03247,balanced,0.8905,1.0000,0.9749,0.8694,1.0000,1.0000,0.9998,0.9341,1.0000,0.364960,0.433862,0.165514,0.035664 +bot_03248,interstitial_focus,0.5837,1.0000,0.9223,0.5842,1.0000,0.6254,0.8817,1.0000,0.9530,0.473710,0.434978,0.080766,0.010546 +bot_03249,reward_heavy,1.0000,0.9378,0.6395,1.0000,0.7703,0.6243,0.9393,0.9869,1.0000,0.450210,0.251255,0.152171,0.146364 +bot_03250,interstitial_focus,0.5878,1.0000,0.6274,0.9419,1.0000,0.5522,1.0000,1.0000,1.0000,0.262390,0.564912,0.123270,0.049428 +bot_03251,interstitial_focus,0.5537,1.0000,0.6987,0.8352,1.0000,0.8301,0.9875,1.0000,1.0000,0.356999,0.431334,0.204013,0.007653 +bot_03252,balanced,1.0000,0.9487,1.0000,0.8758,1.0000,1.0000,0.8413,1.0000,0.9463,0.387816,0.249957,0.349780,0.012447 +bot_03253,splash_driven,0.9861,1.0000,1.0000,0.9510,1.0000,1.0000,0.7660,1.0000,1.0000,0.691968,0.199084,0.010635,0.098313 +bot_03254,interstitial_focus,0.5805,1.0000,0.9540,0.7140,1.0000,0.6243,0.9740,1.0000,0.9667,0.395198,0.419532,0.176116,0.009154 +bot_03255,splash_driven,0.9315,0.6868,1.0000,1.0000,0.8916,1.0000,0.8063,1.0000,0.9344,0.741668,0.112560,0.134641,0.011131 +bot_03256,network_bound,1.0000,0.7912,0.7416,0.8081,0.9069,0.7317,0.7693,1.0000,0.8421,0.129999,0.119433,0.274214,0.476354 +bot_03257,interstitial_focus,0.4938,1.0000,0.8858,0.7220,1.0000,0.8431,0.8773,0.8287,0.9968,0.298730,0.424504,0.247565,0.029201 +bot_03258,splash_driven,0.8375,0.8269,1.0000,1.0000,1.0000,1.0000,0.9185,1.0000,0.9409,0.720437,0.246634,0.022404,0.010525 +bot_03259,balanced,0.9322,0.9589,0.9808,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.315841,0.357513,0.172361,0.154285 +bot_03260,balanced,0.9275,1.0000,1.0000,0.8846,0.8250,0.7945,0.9042,1.0000,1.0000,0.378135,0.338741,0.274931,0.008193 +bot_03261,interstitial_focus,0.7257,1.0000,0.5915,0.8908,1.0000,0.5992,0.8467,0.8560,1.0000,0.243379,0.368110,0.377462,0.011050 +bot_03262,splash_driven,0.7290,1.0000,1.0000,0.8094,1.0000,1.0000,1.0000,0.9676,1.0000,0.772478,0.061878,0.155587,0.010057 +bot_03263,balanced,0.9718,0.9320,1.0000,0.8350,0.8492,1.0000,1.0000,0.9468,1.0000,0.319853,0.419385,0.133810,0.126952 +bot_03264,interstitial_focus,0.5898,1.0000,0.8688,0.8323,1.0000,0.5234,0.8356,1.0000,1.0000,0.237998,0.480808,0.133362,0.147832 +bot_03265,balanced,1.0000,1.0000,1.0000,0.9626,1.0000,1.0000,0.9638,1.0000,1.0000,0.385443,0.357612,0.108085,0.148860 +bot_03266,interstitial_focus,0.8770,1.0000,0.7008,0.9380,1.0000,0.5345,1.0000,0.9091,1.0000,0.367661,0.482054,0.136860,0.013425 +bot_03267,churn_sensitive,0.6151,0.4923,0.5961,0.5410,0.7018,0.2975,0.6556,1.0000,0.6818,0.251210,0.332775,0.250260,0.165755 +bot_03268,interstitial_focus,0.9061,1.0000,0.7948,0.6137,1.0000,0.5215,1.0000,1.0000,1.0000,0.371115,0.388999,0.231060,0.008826 +bot_03269,churn_sensitive,0.3222,0.6427,0.6341,0.7647,0.6290,0.4503,0.6210,1.0000,0.6757,0.327604,0.175120,0.338756,0.158519 +bot_03270,churn_sensitive,0.7813,0.7535,0.6687,0.5415,0.4997,0.3411,0.6311,1.0000,0.5132,0.470606,0.196687,0.254253,0.078453 +bot_03271,network_bound,0.7129,0.8586,0.5702,0.7375,0.9968,0.7256,0.5917,1.0000,0.7531,0.247048,0.225566,0.178306,0.349081 +bot_03272,interstitial_focus,0.6024,1.0000,0.6609,0.7721,1.0000,0.5408,1.0000,0.8397,0.9599,0.325753,0.424468,0.240753,0.009026 +bot_03273,reward_heavy,1.0000,0.9845,0.8606,1.0000,0.8572,0.7836,1.0000,0.8554,1.0000,0.450326,0.372645,0.113159,0.063870 +bot_03274,interstitial_focus,0.5531,1.0000,0.8135,0.8129,1.0000,0.7822,0.9966,1.0000,1.0000,0.450099,0.343902,0.121310,0.084689 +bot_03275,reward_heavy,1.0000,0.9571,0.8096,1.0000,0.8616,0.5015,1.0000,0.7969,1.0000,0.629825,0.351000,0.009588,0.009588 +bot_03276,network_bound,1.0000,0.8953,0.7539,0.9683,0.5723,0.8909,0.6655,1.0000,0.8958,0.110079,0.201840,0.280897,0.407184 +bot_03277,reward_heavy,1.0000,0.9663,0.7964,1.0000,0.5738,0.4070,0.9485,0.8753,1.0000,0.624516,0.348126,0.013679,0.013679 +bot_03278,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8738,0.9179,1.0000,1.0000,0.388565,0.269927,0.281458,0.060049 +bot_03279,reward_heavy,1.0000,0.6411,0.8056,1.0000,0.9041,0.5726,1.0000,0.8722,1.0000,0.545034,0.221178,0.140317,0.093471 +bot_03280,network_bound,0.6541,0.7754,0.9322,1.0000,0.8750,0.8995,0.8134,1.0000,0.7995,0.177438,0.081534,0.221153,0.519874 +bot_03281,splash_driven,0.8174,0.8537,1.0000,1.0000,0.9151,1.0000,0.8382,0.8847,0.9603,0.693631,0.210831,0.024133,0.071406 +bot_03282,splash_driven,0.6985,0.8647,1.0000,0.8574,1.0000,1.0000,1.0000,1.0000,1.0000,0.767628,0.214144,0.009114,0.009114 +bot_03283,churn_sensitive,0.6128,0.7006,0.3363,0.7595,0.6936,0.2984,0.6770,1.0000,0.6530,0.285053,0.159011,0.295218,0.260719 +bot_03284,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9557,1.0000,0.8429,0.736677,0.244479,0.009422,0.009422 +bot_03285,interstitial_focus,0.7417,1.0000,1.0000,0.8357,1.0000,0.7232,1.0000,0.9112,1.0000,0.287185,0.399771,0.172034,0.141011 +bot_03286,splash_driven,0.9293,0.7434,1.0000,1.0000,1.0000,1.0000,1.0000,0.9110,0.9767,0.742287,0.074886,0.170505,0.012322 +bot_03287,splash_driven,1.0000,1.0000,1.0000,0.9090,0.9253,1.0000,0.9169,0.9634,0.8920,0.697001,0.199197,0.007885,0.095916 +bot_03288,network_bound,1.0000,0.8009,0.9341,0.9691,0.8300,0.7744,0.5863,1.0000,0.7616,0.213450,0.153776,0.265854,0.366921 +bot_03289,network_bound,0.6652,1.0000,0.7808,1.0000,0.8343,0.7203,0.5612,1.0000,0.8880,0.105801,0.109659,0.321495,0.463045 +bot_03290,interstitial_focus,0.5418,1.0000,1.0000,0.6280,1.0000,0.7159,1.0000,0.9165,1.0000,0.306046,0.393118,0.292402,0.008433 +bot_03291,churn_sensitive,0.4221,0.4198,0.5477,0.7964,0.4410,0.2616,0.6688,1.0000,0.4988,0.263755,0.203007,0.235871,0.297367 +bot_03292,interstitial_focus,0.5894,1.0000,1.0000,0.6200,1.0000,0.6170,0.8770,1.0000,0.9352,0.394923,0.363538,0.161057,0.080482 +bot_03293,balanced,1.0000,0.9885,1.0000,1.0000,1.0000,1.0000,0.9229,0.8188,1.0000,0.347001,0.312043,0.216302,0.124654 +bot_03294,reward_heavy,1.0000,1.0000,0.6231,1.0000,0.8328,0.5038,1.0000,0.7727,1.0000,0.614667,0.265659,0.012380,0.107294 +bot_03295,balanced,1.0000,0.9861,1.0000,1.0000,1.0000,0.8605,1.0000,1.0000,0.9340,0.465013,0.253241,0.271795,0.009951 +bot_03296,reward_heavy,1.0000,0.7945,0.8710,1.0000,0.8036,0.8193,1.0000,0.7372,1.0000,0.540514,0.406702,0.009475,0.043310 +bot_03297,splash_driven,0.8849,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9194,0.666090,0.182421,0.139689,0.011800 +bot_03298,churn_sensitive,0.5797,0.7043,0.6869,0.4218,0.4653,0.3698,0.6130,1.0000,0.6430,0.240647,0.225018,0.329662,0.204673 +bot_03299,reward_heavy,1.0000,0.8326,0.9647,1.0000,0.8875,0.7088,1.0000,0.8526,1.0000,0.527541,0.249969,0.086704,0.135786 +bot_03300,churn_sensitive,0.5003,0.8212,0.4411,0.5776,0.7459,0.6627,0.6102,1.0000,0.6948,0.155041,0.226391,0.502576,0.115992 +bot_03301,splash_driven,0.7841,0.7491,1.0000,0.8636,1.0000,1.0000,0.9579,1.0000,0.9417,0.762685,0.038552,0.075779,0.122984 +bot_03302,network_bound,0.9428,0.9436,0.6320,0.6678,0.5900,0.9175,0.7243,1.0000,0.9272,0.059423,0.267892,0.266017,0.406668 +bot_03303,interstitial_focus,0.6213,1.0000,0.9106,0.8201,1.0000,0.7069,0.8329,0.9915,1.0000,0.292304,0.427540,0.087883,0.192273 +bot_03304,splash_driven,1.0000,0.7174,1.0000,0.8887,0.9244,1.0000,0.9190,0.9727,0.8610,0.922490,0.053045,0.012232,0.012232 +bot_03305,splash_driven,0.9459,0.8535,1.0000,1.0000,1.0000,1.0000,0.7947,1.0000,0.9068,0.698324,0.225278,0.065037,0.011361 +bot_03306,network_bound,0.6397,0.7795,1.0000,0.9641,0.6710,0.5498,0.6061,1.0000,0.7517,0.063943,0.254688,0.358801,0.322568 +bot_03307,balanced,0.8556,1.0000,1.0000,1.0000,0.9785,1.0000,1.0000,0.8557,0.9499,0.494772,0.386739,0.107957,0.010532 +bot_03308,splash_driven,0.8616,0.9096,1.0000,0.9476,1.0000,1.0000,1.0000,1.0000,0.9004,0.842152,0.137556,0.010146,0.010146 +bot_03309,reward_heavy,1.0000,0.6797,0.9771,1.0000,0.7803,0.5977,1.0000,1.0000,1.0000,0.467299,0.354684,0.168945,0.009072 +bot_03310,interstitial_focus,0.5725,1.0000,0.7916,0.7756,1.0000,0.9187,0.8269,0.9484,0.9989,0.193571,0.477986,0.179916,0.148526 +bot_03311,reward_heavy,1.0000,1.0000,0.6964,1.0000,0.7157,0.4578,1.0000,0.9429,1.0000,0.536783,0.279857,0.170492,0.012867 +bot_03312,reward_heavy,1.0000,0.8768,0.8394,1.0000,0.7203,0.6752,1.0000,0.9242,1.0000,0.544937,0.287970,0.039811,0.127283 +bot_03313,splash_driven,0.9486,0.9338,1.0000,1.0000,1.0000,1.0000,0.9259,1.0000,0.9854,0.746603,0.059782,0.074458,0.119156 +bot_03314,interstitial_focus,0.7716,1.0000,0.7156,0.8945,1.0000,0.4916,0.8758,0.8596,1.0000,0.339205,0.479442,0.172530,0.008823 +bot_03315,splash_driven,0.6746,0.9370,1.0000,0.9470,0.9938,1.0000,0.9914,1.0000,1.0000,0.709182,0.244226,0.011008,0.035584 +bot_03316,churn_sensitive,0.5803,0.8258,0.3615,0.4629,0.5812,0.4024,0.5830,1.0000,0.5589,0.150774,0.377180,0.337836,0.134210 +bot_03317,reward_heavy,1.0000,0.7874,0.9706,1.0000,0.8406,0.8129,1.0000,0.8491,1.0000,0.707968,0.140505,0.141297,0.010230 +bot_03318,reward_heavy,1.0000,0.7693,0.6150,1.0000,0.7336,0.6254,0.9445,0.9102,1.0000,0.474956,0.196679,0.219522,0.108843 +bot_03319,churn_sensitive,0.4913,0.7375,0.4784,0.6091,0.5721,0.4636,0.6578,1.0000,0.6030,0.179869,0.244623,0.281199,0.294309 +bot_03320,interstitial_focus,0.5778,1.0000,0.7336,0.6265,1.0000,0.7399,0.9793,0.9450,0.9561,0.200227,0.552016,0.082104,0.165653 +bot_03321,churn_sensitive,0.3374,0.7532,0.6833,0.7448,0.5453,0.5856,0.6719,1.0000,0.5192,0.280128,0.267267,0.246825,0.205780 +bot_03322,network_bound,1.0000,0.6928,0.8386,0.8016,0.9718,0.5616,0.7268,1.0000,0.7566,0.103694,0.271963,0.270360,0.353984 +bot_03323,interstitial_focus,0.6624,1.0000,0.9535,0.9475,1.0000,0.7858,0.8610,1.0000,0.9714,0.349065,0.335490,0.305800,0.009646 +bot_03324,splash_driven,0.7699,0.8988,1.0000,1.0000,1.0000,1.0000,0.7876,0.8887,1.0000,0.708997,0.105665,0.175300,0.010037 +bot_03325,interstitial_focus,0.8758,1.0000,0.7761,0.8848,1.0000,0.9034,0.9872,1.0000,1.0000,0.326450,0.291279,0.310632,0.071639 +bot_03326,balanced,1.0000,0.9539,1.0000,1.0000,1.0000,0.8182,1.0000,1.0000,1.0000,0.302749,0.563248,0.121938,0.012065 +bot_03327,splash_driven,0.6851,0.9619,1.0000,0.8553,0.8222,1.0000,0.9519,0.9811,1.0000,0.704350,0.260350,0.010686,0.024614 +bot_03328,interstitial_focus,0.5029,1.0000,1.0000,0.6526,1.0000,0.8600,0.9391,0.8458,0.9815,0.409357,0.476767,0.104985,0.008891 +bot_03329,network_bound,0.9396,0.9340,0.7601,0.9315,0.8474,0.6724,0.5416,1.0000,0.7676,0.200408,0.207024,0.261330,0.331238 +bot_03330,balanced,1.0000,1.0000,0.8779,0.9160,0.9742,0.8175,0.9739,1.0000,1.0000,0.424300,0.244107,0.140557,0.191035 +bot_03331,interstitial_focus,0.7699,1.0000,0.8057,0.9773,1.0000,0.7808,0.8151,0.8706,1.0000,0.300911,0.391054,0.167820,0.140215 +bot_03332,network_bound,1.0000,0.8388,0.6639,0.6972,0.6765,0.7807,0.5828,1.0000,0.9067,0.014497,0.241533,0.248002,0.495967 +bot_03333,network_bound,0.8287,0.9261,0.9574,0.9280,0.8711,0.7452,0.7415,1.0000,0.7224,0.122087,0.267054,0.225200,0.385659 +bot_03334,balanced,1.0000,0.9519,1.0000,1.0000,1.0000,1.0000,0.9667,1.0000,1.0000,0.232780,0.358611,0.289562,0.119048 +bot_03335,interstitial_focus,0.7206,1.0000,0.9312,0.8998,1.0000,0.5846,1.0000,1.0000,0.9645,0.439470,0.367022,0.165125,0.028383 +bot_03336,interstitial_focus,0.6102,1.0000,0.7808,0.8390,1.0000,0.7369,0.9582,1.0000,1.0000,0.360943,0.376659,0.243038,0.019359 +bot_03337,interstitial_focus,0.7914,1.0000,0.6997,0.7258,1.0000,0.7294,0.9073,1.0000,1.0000,0.267090,0.386248,0.332411,0.014251 +bot_03338,reward_heavy,1.0000,0.6257,0.8484,1.0000,0.9736,0.5257,0.9349,0.7848,1.0000,0.724337,0.251534,0.012064,0.012064 +bot_03339,reward_heavy,1.0000,0.5861,0.5763,1.0000,0.9117,0.8155,1.0000,1.0000,1.0000,0.579234,0.304741,0.108146,0.007878 +bot_03340,reward_heavy,1.0000,0.6833,0.8895,1.0000,0.9395,0.7188,1.0000,0.7545,1.0000,0.543437,0.297276,0.150132,0.009156 +bot_03341,network_bound,1.0000,0.7246,0.6765,0.9427,0.7420,0.8682,0.5472,1.0000,0.9307,0.011140,0.085180,0.469525,0.434155 +bot_03342,reward_heavy,1.0000,0.7580,0.7318,1.0000,0.8318,0.6192,1.0000,0.7381,1.0000,0.586970,0.281348,0.120701,0.010981 +bot_03343,network_bound,0.9766,0.9026,0.8708,1.0000,0.9710,0.6970,0.6290,1.0000,0.7076,0.113933,0.262973,0.248623,0.374471 +bot_03344,churn_sensitive,0.5930,0.8421,0.2738,0.6106,0.3401,0.5648,0.6680,1.0000,0.4696,0.284415,0.199965,0.315270,0.200350 +bot_03345,splash_driven,0.7609,0.8096,1.0000,1.0000,0.9316,1.0000,0.9830,0.9429,1.0000,0.725092,0.246901,0.019232,0.008776 +bot_03346,balanced,1.0000,1.0000,0.9366,1.0000,0.9784,0.9626,0.9719,1.0000,1.0000,0.448767,0.312087,0.230449,0.008697 +bot_03347,reward_heavy,1.0000,0.6794,0.7744,1.0000,0.8551,0.4652,0.9919,1.0000,1.0000,0.649173,0.155340,0.185022,0.010465 +bot_03348,reward_heavy,1.0000,0.9664,0.6700,1.0000,0.5727,0.5901,0.9948,0.9643,1.0000,0.523555,0.308579,0.159169,0.008696 +bot_03349,interstitial_focus,0.9318,1.0000,0.8884,0.9709,1.0000,0.7202,0.9609,0.9498,0.9917,0.355985,0.398398,0.087997,0.157620 +bot_03350,splash_driven,1.0000,0.8697,1.0000,1.0000,0.8185,1.0000,0.9465,1.0000,1.0000,0.791272,0.174481,0.024396,0.009851 +bot_03351,reward_heavy,1.0000,0.6316,0.9656,1.0000,0.7507,0.4899,1.0000,0.9280,1.0000,0.607189,0.287849,0.030363,0.074599 +bot_03352,interstitial_focus,0.5427,1.0000,0.8029,0.7275,1.0000,0.8152,0.9829,0.8782,1.0000,0.303470,0.582671,0.100796,0.013064 +bot_03353,network_bound,0.8359,0.6596,0.6383,0.6605,0.9504,0.6035,0.6450,1.0000,0.7040,0.104723,0.308840,0.277567,0.308870 +bot_03354,reward_heavy,1.0000,0.9969,0.7096,1.0000,0.8611,0.6258,1.0000,0.7010,1.0000,0.583222,0.389077,0.014756,0.012946 +bot_03355,churn_sensitive,0.7278,0.6745,0.4264,0.4496,0.4072,0.3054,0.5748,1.0000,0.5591,0.199776,0.226523,0.331035,0.242665 +bot_03356,interstitial_focus,0.7678,1.0000,0.8701,0.8743,1.0000,0.8738,1.0000,0.9668,1.0000,0.425403,0.310713,0.135952,0.127932 +bot_03357,reward_heavy,1.0000,0.8815,0.9204,1.0000,0.7625,0.8071,1.0000,0.8065,1.0000,0.777023,0.191158,0.018210,0.013610 +bot_03358,balanced,1.0000,1.0000,1.0000,0.9483,0.8072,0.9944,1.0000,0.8644,1.0000,0.335257,0.411841,0.161189,0.091713 +bot_03359,balanced,1.0000,0.9028,1.0000,0.8503,0.9277,1.0000,0.9983,1.0000,1.0000,0.319812,0.322069,0.227409,0.130709 +bot_03360,splash_driven,0.6663,1.0000,1.0000,0.9691,1.0000,1.0000,0.7780,1.0000,0.9187,0.829261,0.053742,0.107287,0.009710 +bot_03361,interstitial_focus,0.6349,1.0000,0.9996,0.6662,1.0000,0.7156,0.8088,1.0000,0.9320,0.289464,0.295525,0.250212,0.164800 +bot_03362,churn_sensitive,0.5081,0.5160,0.3487,0.7221,0.7273,0.3810,0.7758,1.0000,0.5555,0.112435,0.261237,0.350661,0.275667 +bot_03363,reward_heavy,1.0000,0.6978,0.8930,1.0000,0.8947,0.7110,1.0000,0.7036,1.0000,0.480767,0.254921,0.149003,0.115309 +bot_03364,churn_sensitive,0.5036,0.5946,0.4273,0.5243,0.4508,0.5732,0.6504,1.0000,0.6402,0.162939,0.284505,0.334064,0.218492 +bot_03365,interstitial_focus,0.4985,1.0000,0.6550,0.9388,1.0000,0.7277,0.8329,1.0000,0.9642,0.388455,0.341858,0.259206,0.010481 +bot_03366,reward_heavy,1.0000,0.7406,0.6559,1.0000,0.7545,0.7557,1.0000,0.6939,1.0000,0.604908,0.329528,0.010429,0.055134 +bot_03367,reward_heavy,1.0000,0.7613,0.6660,1.0000,0.6378,0.4936,0.9344,1.0000,1.0000,0.570315,0.156937,0.135700,0.137048 +bot_03368,reward_heavy,1.0000,0.6379,0.7902,1.0000,0.7410,0.5714,0.9595,0.8600,1.0000,0.516775,0.280306,0.194678,0.008241 +bot_03369,network_bound,0.9328,0.6302,0.8961,0.7181,0.7860,0.5428,0.6580,1.0000,0.7353,0.260253,0.205058,0.205663,0.329027 +bot_03370,reward_heavy,1.0000,0.8325,0.8729,1.0000,0.6009,0.7432,1.0000,0.9651,1.0000,0.563543,0.236698,0.180616,0.019143 +bot_03371,splash_driven,0.7540,1.0000,1.0000,1.0000,1.0000,1.0000,0.8671,0.9096,0.8461,0.711025,0.269899,0.009538,0.009538 +bot_03372,network_bound,0.6190,0.7292,0.7184,0.7256,0.8304,0.5573,0.6235,1.0000,0.7847,0.058360,0.186039,0.352925,0.402677 +bot_03373,churn_sensitive,0.5621,0.4980,0.4098,0.5502,0.4620,0.6368,0.8599,1.0000,0.6807,0.223093,0.397148,0.216896,0.162863 +bot_03374,network_bound,0.6677,0.6736,0.8178,0.9634,0.8116,0.6729,0.6736,1.0000,0.9056,0.008587,0.275432,0.348867,0.367115 +bot_03375,interstitial_focus,0.6874,1.0000,0.9853,0.8637,1.0000,0.7241,1.0000,1.0000,1.0000,0.198610,0.557851,0.164650,0.078889 +bot_03376,network_bound,0.8459,0.9758,0.8580,1.0000,0.8925,0.6098,0.6971,1.0000,0.8429,0.033457,0.272948,0.179746,0.513850 +bot_03377,interstitial_focus,0.8095,1.0000,0.8790,0.9833,1.0000,0.7328,0.8315,0.8493,1.0000,0.227050,0.557224,0.204033,0.011692 +bot_03378,interstitial_focus,0.5551,1.0000,0.7087,0.9294,1.0000,0.7630,0.9158,1.0000,1.0000,0.330540,0.397623,0.153969,0.117868 +bot_03379,interstitial_focus,0.7080,1.0000,0.7854,0.6389,1.0000,0.9106,1.0000,0.9534,1.0000,0.204986,0.489907,0.296149,0.008957 +bot_03380,churn_sensitive,0.6630,0.5961,0.3508,0.6687,0.5735,0.6376,0.5840,1.0000,0.6693,0.241204,0.268646,0.239531,0.250619 +bot_03381,reward_heavy,1.0000,0.9243,0.8152,1.0000,0.8949,0.6086,1.0000,1.0000,1.0000,0.543493,0.341380,0.105326,0.009801 +bot_03382,churn_sensitive,0.7183,0.7819,0.6031,0.7277,0.4463,0.6526,0.6948,1.0000,0.5027,0.158800,0.167569,0.367007,0.306624 +bot_03383,splash_driven,0.8047,0.8604,1.0000,1.0000,1.0000,1.0000,0.9762,0.9635,1.0000,0.684437,0.212760,0.045083,0.057720 +bot_03384,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8670,0.8356,1.0000,0.291245,0.375224,0.321909,0.011621 +bot_03385,reward_heavy,1.0000,0.7186,0.6027,1.0000,0.6290,0.6714,0.9757,0.7570,1.0000,0.712343,0.205796,0.067798,0.014063 +bot_03386,balanced,1.0000,1.0000,1.0000,0.9295,0.8501,1.0000,1.0000,1.0000,1.0000,0.380670,0.313901,0.264700,0.040728 +bot_03387,reward_heavy,1.0000,0.7613,1.0000,1.0000,0.7537,0.4827,1.0000,0.7210,1.0000,0.519370,0.323561,0.145821,0.011248 +bot_03388,network_bound,0.7321,1.0000,1.0000,0.9721,0.8318,0.5505,0.8290,1.0000,0.9039,0.182849,0.174802,0.221056,0.421293 +bot_03389,reward_heavy,1.0000,0.9978,0.5932,1.0000,0.9359,0.6253,0.9023,0.8774,1.0000,0.547444,0.319169,0.123416,0.009972 +bot_03390,reward_heavy,1.0000,0.6046,0.6387,1.0000,0.7359,0.4964,1.0000,0.9051,1.0000,0.499220,0.258544,0.223252,0.018984 +bot_03391,network_bound,1.0000,0.8126,0.5930,0.9512,0.8286,0.7927,0.5610,1.0000,0.9119,0.128589,0.063312,0.226854,0.581245 +bot_03392,splash_driven,0.8509,0.7567,1.0000,1.0000,1.0000,1.0000,0.9578,0.8501,1.0000,0.617339,0.208610,0.115369,0.058682 +bot_03393,reward_heavy,1.0000,0.8431,0.8294,1.0000,0.7651,0.6359,1.0000,0.6960,1.0000,0.425330,0.314336,0.145522,0.114812 +bot_03394,balanced,0.8860,1.0000,1.0000,1.0000,0.9153,1.0000,0.9213,0.8969,0.9263,0.511598,0.186522,0.292337,0.009543 +bot_03395,splash_driven,0.7803,0.8910,1.0000,1.0000,0.9113,1.0000,0.9707,1.0000,0.9297,0.711784,0.245589,0.008837,0.033789 +bot_03396,splash_driven,0.8889,0.7043,1.0000,0.9852,1.0000,1.0000,0.9493,1.0000,0.9666,0.661066,0.232956,0.097777,0.008201 +bot_03397,balanced,1.0000,0.9040,0.9169,0.9331,1.0000,1.0000,0.9719,1.0000,1.0000,0.448415,0.353539,0.189151,0.008895 +bot_03398,splash_driven,0.7494,0.7806,1.0000,1.0000,1.0000,1.0000,0.8425,1.0000,0.9159,0.738470,0.237627,0.014774,0.009129 +bot_03399,balanced,0.9499,1.0000,1.0000,0.8573,1.0000,0.8607,1.0000,0.9384,0.9304,0.555065,0.212220,0.122733,0.109981 +bot_03400,reward_heavy,1.0000,1.0000,0.9027,1.0000,0.5444,0.7897,1.0000,0.7536,1.0000,0.602628,0.344873,0.034598,0.017902 +bot_03401,churn_sensitive,0.5968,0.7578,0.4182,0.5717,0.4479,0.5335,0.8718,1.0000,0.5549,0.329807,0.202804,0.284152,0.183237 +bot_03402,network_bound,0.9934,0.8621,0.6991,0.7282,0.6037,0.6017,0.7295,1.0000,0.7279,0.235299,0.037204,0.326970,0.400527 +bot_03403,churn_sensitive,0.7021,0.6133,0.5148,0.4409,0.4462,0.4773,0.7985,1.0000,0.5292,0.279566,0.296918,0.155018,0.268497 +bot_03404,splash_driven,0.8102,1.0000,1.0000,0.9744,0.9709,1.0000,0.8365,0.8329,0.8843,0.700203,0.260419,0.030810,0.008567 +bot_03405,reward_heavy,1.0000,0.7643,0.6178,1.0000,0.8807,0.6991,1.0000,0.8226,1.0000,0.625656,0.354417,0.009963,0.009963 +bot_03406,churn_sensitive,0.6485,0.8335,0.6769,0.7738,0.4045,0.4962,0.6880,1.0000,0.6621,0.201531,0.201789,0.375665,0.221015 +bot_03407,churn_sensitive,0.6883,0.6634,0.4921,0.6910,0.4773,0.6469,0.6240,1.0000,0.6333,0.165809,0.301303,0.279361,0.253527 +bot_03408,splash_driven,0.9706,1.0000,1.0000,1.0000,1.0000,1.0000,0.9345,1.0000,0.9450,0.778365,0.092673,0.120142,0.008819 +bot_03409,interstitial_focus,0.9015,1.0000,0.7684,0.6808,1.0000,0.7737,0.8124,1.0000,0.9477,0.292535,0.352577,0.191106,0.163783 +bot_03410,reward_heavy,1.0000,1.0000,0.6183,1.0000,0.9123,0.8320,1.0000,0.9572,1.0000,0.574271,0.269732,0.012176,0.143821 +bot_03411,reward_heavy,1.0000,1.0000,0.9942,1.0000,0.7527,0.6934,0.9288,1.0000,1.0000,0.499882,0.380146,0.050540,0.069431 +bot_03412,interstitial_focus,0.8329,1.0000,0.5954,0.6326,1.0000,0.6879,1.0000,0.9906,1.0000,0.314796,0.450670,0.142276,0.092258 +bot_03413,reward_heavy,1.0000,0.9231,1.0000,1.0000,0.7414,0.6978,1.0000,1.0000,1.0000,0.602932,0.257815,0.129786,0.009467 +bot_03414,balanced,1.0000,1.0000,0.9991,1.0000,0.8722,1.0000,1.0000,0.9202,1.0000,0.538877,0.259324,0.085003,0.116796 +bot_03415,balanced,1.0000,1.0000,0.8921,1.0000,0.9273,1.0000,1.0000,0.8657,1.0000,0.326808,0.287475,0.253979,0.131738 +bot_03416,balanced,1.0000,1.0000,0.9067,1.0000,1.0000,1.0000,1.0000,1.0000,0.9246,0.316915,0.288379,0.279830,0.114876 +bot_03417,splash_driven,0.8399,0.7786,1.0000,0.9739,1.0000,1.0000,0.8149,0.8140,0.9242,0.691664,0.159067,0.140690,0.008580 +bot_03418,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.8403,0.6296,1.0000,0.7640,1.0000,0.797744,0.179360,0.011448,0.011448 +bot_03419,interstitial_focus,0.9411,1.0000,0.9652,0.7695,1.0000,0.7906,0.9106,1.0000,1.0000,0.386417,0.502765,0.096910,0.013908 +bot_03420,churn_sensitive,0.4276,0.7785,0.6176,0.4384,0.4711,0.2946,0.7592,1.0000,0.6566,0.220359,0.202088,0.330501,0.247052 +bot_03421,splash_driven,0.9956,0.8481,1.0000,0.8952,0.9953,1.0000,0.8930,0.9593,0.8667,0.901079,0.037244,0.050122,0.011554 +bot_03422,splash_driven,1.0000,0.9153,1.0000,1.0000,1.0000,1.0000,0.8697,1.0000,1.0000,0.663774,0.123106,0.136997,0.076123 +bot_03423,reward_heavy,1.0000,0.8014,0.6059,1.0000,0.8258,0.4904,1.0000,0.9967,1.0000,0.473384,0.312683,0.181100,0.032833 +bot_03424,network_bound,1.0000,0.8180,0.8094,0.9713,0.8063,0.5267,0.5511,1.0000,0.8158,0.021108,0.237429,0.197301,0.544162 +bot_03425,reward_heavy,1.0000,0.6450,0.6664,1.0000,0.8229,0.7679,0.9932,0.8124,1.0000,0.574963,0.173230,0.174211,0.077596 +bot_03426,reward_heavy,1.0000,0.7782,0.7588,1.0000,0.8933,0.6041,0.8948,0.9829,1.0000,0.621435,0.183627,0.183796,0.011142 +bot_03427,splash_driven,0.9561,0.7733,1.0000,1.0000,1.0000,1.0000,0.7629,1.0000,0.8961,0.720242,0.183910,0.013732,0.082115 +bot_03428,splash_driven,0.7772,0.9505,1.0000,1.0000,1.0000,1.0000,0.7576,1.0000,0.9428,0.769909,0.211015,0.009538,0.009538 +bot_03429,interstitial_focus,0.5645,1.0000,0.6518,0.8933,1.0000,0.7545,0.8298,0.9775,1.0000,0.455842,0.393616,0.140101,0.010441 +bot_03430,interstitial_focus,0.7108,1.0000,0.7191,0.9655,1.0000,0.8622,0.8088,1.0000,1.0000,0.231416,0.389319,0.258981,0.120285 +bot_03431,reward_heavy,1.0000,0.6082,0.8536,1.0000,0.8523,0.6934,0.9541,0.6965,1.0000,0.614131,0.351955,0.024548,0.009366 +bot_03432,balanced,1.0000,1.0000,0.8934,1.0000,1.0000,0.8213,1.0000,0.8004,1.0000,0.533448,0.195629,0.134517,0.136406 +bot_03433,network_bound,0.8898,0.9251,0.7351,0.7451,0.7810,0.7805,0.8273,1.0000,0.7794,0.033889,0.228516,0.314283,0.423312 +bot_03434,reward_heavy,1.0000,0.6729,0.6645,1.0000,0.5790,0.6175,1.0000,0.8454,1.0000,0.486917,0.290828,0.119847,0.102409 +bot_03435,balanced,0.9826,0.8875,0.9188,1.0000,1.0000,0.9979,0.9602,1.0000,0.9551,0.522673,0.295718,0.095970,0.085639 +bot_03436,splash_driven,0.8555,0.6805,1.0000,0.9857,1.0000,1.0000,0.9315,1.0000,0.9266,0.906895,0.063615,0.014745,0.014745 +bot_03437,reward_heavy,1.0000,0.7981,0.5619,1.0000,0.6703,0.4943,0.9974,0.8373,1.0000,0.650977,0.292675,0.008753,0.047595 +bot_03438,interstitial_focus,0.7911,1.0000,0.7635,0.7973,1.0000,0.8507,1.0000,1.0000,0.9542,0.350454,0.438691,0.106305,0.104550 +bot_03439,balanced,1.0000,1.0000,0.9719,0.9913,0.8022,0.9373,1.0000,1.0000,0.9027,0.570816,0.217937,0.200398,0.010849 +bot_03440,churn_sensitive,0.4780,0.4261,0.3246,0.5626,0.4503,0.2584,0.7991,1.0000,0.6089,0.340858,0.389420,0.148716,0.121006 +bot_03441,balanced,1.0000,1.0000,1.0000,0.8767,0.7953,1.0000,1.0000,1.0000,0.9981,0.352127,0.327323,0.296808,0.023742 +bot_03442,balanced,1.0000,1.0000,0.9815,1.0000,0.8138,0.8450,1.0000,0.9686,1.0000,0.334702,0.299218,0.251868,0.114212 +bot_03443,reward_heavy,1.0000,0.8370,1.0000,1.0000,0.5545,0.6155,0.9515,1.0000,1.0000,0.698190,0.182875,0.009376,0.109560 +bot_03444,network_bound,1.0000,1.0000,0.7316,0.8221,0.8336,0.9275,0.5262,1.0000,0.7752,0.180861,0.181080,0.188706,0.449353 +bot_03445,interstitial_focus,0.7456,1.0000,0.6060,0.8402,1.0000,0.9055,1.0000,0.9904,1.0000,0.289582,0.443844,0.256627,0.009947 +bot_03446,reward_heavy,1.0000,0.6632,0.9919,1.0000,0.5840,0.7887,0.9153,0.8994,1.0000,0.750162,0.218600,0.016984,0.014253 +bot_03447,reward_heavy,1.0000,0.8676,0.6298,1.0000,0.5801,0.4009,1.0000,0.8351,1.0000,0.769609,0.148504,0.010620,0.071267 +bot_03448,churn_sensitive,0.6042,0.5606,0.4785,0.5662,0.4259,0.5037,0.8520,1.0000,0.5097,0.152405,0.320014,0.379861,0.147719 +bot_03449,churn_sensitive,0.6472,0.5694,0.3278,0.4020,0.5751,0.3450,0.7518,1.0000,0.4854,0.281989,0.228965,0.389819,0.099226 +bot_03450,balanced,0.9408,1.0000,0.8960,1.0000,1.0000,0.9000,1.0000,0.8426,0.9140,0.488386,0.207297,0.294197,0.010119 +bot_03451,interstitial_focus,0.9008,1.0000,0.9603,0.7444,1.0000,0.5801,1.0000,0.9854,0.9608,0.418197,0.330825,0.194005,0.056973 +bot_03452,splash_driven,0.9418,0.7592,1.0000,1.0000,1.0000,1.0000,0.8669,0.8608,0.9212,0.627332,0.201371,0.098585,0.072712 +bot_03453,reward_heavy,1.0000,0.6568,0.6969,1.0000,0.9549,0.5908,0.9858,0.6904,1.0000,0.702817,0.230119,0.015257,0.051808 +bot_03454,reward_heavy,1.0000,1.0000,0.8531,1.0000,0.6894,0.6810,1.0000,0.8514,1.0000,0.551704,0.224921,0.096770,0.126605 +bot_03455,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9024,0.8407,0.9794,0.404225,0.327667,0.148674,0.119434 +bot_03456,churn_sensitive,0.6160,0.5673,0.5710,0.7640,0.7698,0.3286,0.7452,1.0000,0.4761,0.352511,0.207165,0.290908,0.149416 +bot_03457,network_bound,0.8633,1.0000,0.6895,0.9369,0.7832,0.8988,0.8347,1.0000,0.9301,0.119350,0.150579,0.411052,0.319019 +bot_03458,interstitial_focus,0.6291,1.0000,0.6943,0.7943,1.0000,0.6908,0.9245,0.8695,1.0000,0.213999,0.300216,0.329830,0.155955 +bot_03459,reward_heavy,1.0000,1.0000,0.6256,1.0000,0.6871,0.7804,0.9059,0.9941,1.0000,0.635766,0.186229,0.100141,0.077864 +bot_03460,reward_heavy,1.0000,0.9177,0.8360,1.0000,0.9093,0.4007,0.9820,1.0000,1.0000,0.673068,0.134748,0.182527,0.009657 +bot_03461,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9549,0.8647,1.0000,1.0000,0.543322,0.313022,0.132210,0.011447 +bot_03462,splash_driven,0.9347,1.0000,1.0000,0.9966,0.9407,1.0000,0.8089,0.9647,1.0000,0.614048,0.190218,0.121812,0.073922 +bot_03463,reward_heavy,1.0000,0.6813,0.5898,1.0000,0.6619,0.5343,1.0000,1.0000,1.0000,0.543668,0.318623,0.126115,0.011594 +bot_03464,churn_sensitive,0.3636,0.7807,0.3106,0.6252,0.5795,0.2676,0.6337,1.0000,0.5343,0.474425,0.199764,0.200859,0.124952 +bot_03465,interstitial_focus,0.8291,1.0000,0.9901,0.9002,1.0000,0.5221,0.9684,0.8278,1.0000,0.350342,0.503302,0.132403,0.013952 +bot_03466,splash_driven,0.7361,0.8275,1.0000,0.9065,0.9316,1.0000,1.0000,0.9429,0.9070,0.691208,0.231222,0.066192,0.011378 +bot_03467,churn_sensitive,0.5103,0.7047,0.2733,0.7254,0.5531,0.3001,0.8506,0.9922,0.6852,0.396636,0.123404,0.349890,0.130070 +bot_03468,reward_heavy,1.0000,0.6005,0.6609,1.0000,0.6051,0.5343,0.9645,0.8776,1.0000,0.645547,0.203571,0.008759,0.142123 +bot_03469,splash_driven,0.7037,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9454,0.656877,0.179867,0.041352,0.121904 +bot_03470,balanced,1.0000,1.0000,0.9564,1.0000,1.0000,1.0000,0.8538,1.0000,0.9296,0.435258,0.184794,0.318438,0.061510 +bot_03471,interstitial_focus,0.8011,1.0000,0.7137,0.7459,1.0000,0.6081,1.0000,1.0000,1.0000,0.308803,0.475743,0.200912,0.014542 +bot_03472,splash_driven,0.9190,1.0000,1.0000,0.8699,0.9226,1.0000,0.8250,0.8848,0.9522,0.598534,0.219517,0.102339,0.079610 +bot_03473,network_bound,0.9249,0.7333,0.6921,1.0000,0.9724,0.9207,0.7621,1.0000,0.8631,0.016646,0.061403,0.462939,0.459013 +bot_03474,reward_heavy,1.0000,1.0000,0.6978,1.0000,0.9063,0.6786,1.0000,0.9159,1.0000,0.731573,0.148565,0.081403,0.038459 +bot_03475,splash_driven,0.9692,0.9470,1.0000,0.9436,0.9843,1.0000,1.0000,1.0000,0.9923,0.784261,0.196832,0.009453,0.009453 +bot_03476,interstitial_focus,0.6974,1.0000,0.9396,0.7497,1.0000,0.7080,1.0000,0.8241,1.0000,0.412518,0.383777,0.189913,0.013792 +bot_03477,balanced,1.0000,1.0000,0.9098,1.0000,1.0000,1.0000,1.0000,0.8798,0.9564,0.245072,0.255749,0.349105,0.150075 +bot_03478,churn_sensitive,0.4076,0.5813,0.3305,0.4469,0.6845,0.5672,0.6530,1.0000,0.5665,0.225449,0.296638,0.242163,0.235750 +bot_03479,network_bound,0.8215,0.7389,0.8092,1.0000,0.7251,0.5223,0.7315,1.0000,0.8024,0.170276,0.221400,0.301751,0.306573 +bot_03480,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8688,1.0000,1.0000,0.362645,0.437638,0.162982,0.036735 +bot_03481,splash_driven,1.0000,0.8848,1.0000,0.9929,0.8900,1.0000,0.8064,1.0000,0.9795,0.598822,0.290899,0.009614,0.100665 +bot_03482,interstitial_focus,0.9437,1.0000,0.6372,0.6450,1.0000,0.6991,1.0000,1.0000,1.0000,0.429786,0.475947,0.084054,0.010212 +bot_03483,splash_driven,0.9905,0.8665,1.0000,1.0000,0.9915,1.0000,0.8702,1.0000,0.8969,0.903279,0.040284,0.039639,0.016797 +bot_03484,interstitial_focus,0.5856,1.0000,1.0000,0.6912,1.0000,0.5655,0.8228,1.0000,0.9910,0.388456,0.445199,0.075194,0.091151 +bot_03485,interstitial_focus,0.7215,1.0000,0.8105,0.5897,1.0000,0.7213,0.8736,1.0000,0.9808,0.191006,0.427823,0.239418,0.141754 +bot_03486,splash_driven,0.8733,0.9896,1.0000,1.0000,1.0000,1.0000,0.9064,1.0000,0.9295,0.695227,0.171221,0.125583,0.007968 +bot_03487,reward_heavy,1.0000,0.8837,0.7213,1.0000,0.7044,0.6032,0.8830,1.0000,1.0000,0.670966,0.188636,0.129164,0.011234 +bot_03488,reward_heavy,1.0000,0.9711,0.7160,1.0000,0.7290,0.4238,1.0000,0.9050,1.0000,0.611202,0.236304,0.140240,0.012254 +bot_03489,churn_sensitive,0.4733,0.5047,0.4268,0.7668,0.4172,0.4487,0.6015,1.0000,0.6037,0.271807,0.317582,0.349273,0.061337 +bot_03490,interstitial_focus,0.5254,1.0000,0.9881,0.5667,1.0000,0.8325,0.9512,0.8818,1.0000,0.390309,0.406338,0.107747,0.095606 +bot_03491,interstitial_focus,0.4931,1.0000,0.7462,0.6052,1.0000,0.8378,0.9662,0.8556,1.0000,0.276436,0.422287,0.121988,0.179290 +bot_03492,balanced,0.9247,0.9515,1.0000,1.0000,0.9235,1.0000,0.8418,0.8928,1.0000,0.285489,0.348218,0.186624,0.179670 +bot_03493,reward_heavy,1.0000,0.8197,0.5806,1.0000,0.7175,0.7490,1.0000,0.7432,1.0000,0.589929,0.331565,0.018913,0.059593 +bot_03494,interstitial_focus,0.8108,1.0000,0.6493,0.8208,1.0000,0.9031,1.0000,0.9777,1.0000,0.258131,0.350815,0.290524,0.100530 +bot_03495,interstitial_focus,0.7052,1.0000,0.8031,0.9819,1.0000,0.8567,0.9430,0.9152,0.9635,0.220614,0.616282,0.098445,0.064659 +bot_03496,interstitial_focus,0.9214,1.0000,0.8561,0.8993,1.0000,0.8361,1.0000,1.0000,0.9533,0.297959,0.475907,0.216910,0.009223 +bot_03497,reward_heavy,1.0000,0.9230,0.6630,1.0000,0.7159,0.8224,1.0000,0.8702,1.0000,0.655295,0.320853,0.011926,0.011926 +bot_03498,reward_heavy,1.0000,0.7125,0.8324,1.0000,0.8860,0.4809,0.9608,0.7194,1.0000,0.478182,0.244431,0.197470,0.079918 +bot_03499,reward_heavy,1.0000,0.9063,0.9384,1.0000,0.6693,0.7177,1.0000,0.8869,1.0000,0.379898,0.298260,0.191869,0.129972 +bot_03500,interstitial_focus,0.8788,1.0000,0.6305,0.6314,1.0000,0.5828,1.0000,1.0000,1.0000,0.430102,0.441810,0.066760,0.061328 +bot_03501,reward_heavy,1.0000,0.9207,0.9872,1.0000,0.6265,0.4573,1.0000,0.7594,1.0000,0.677348,0.296390,0.013131,0.013131 +bot_03502,splash_driven,0.8970,0.8172,1.0000,0.9519,0.9691,1.0000,0.8489,0.8465,0.8489,0.601548,0.200381,0.112030,0.086041 +bot_03503,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.6577,0.8359,1.0000,0.8656,1.0000,0.631252,0.222989,0.008713,0.137046 +bot_03504,churn_sensitive,0.3994,0.4619,0.4298,0.6534,0.4824,0.2595,0.8540,1.0000,0.5008,0.306446,0.239051,0.306260,0.148244 +bot_03505,reward_heavy,1.0000,0.8866,0.9494,1.0000,0.7551,0.7112,1.0000,0.9867,1.0000,0.609308,0.177443,0.203061,0.010188 +bot_03506,churn_sensitive,0.7214,0.4561,0.2625,0.5208,0.6513,0.6479,0.6371,1.0000,0.4634,0.173502,0.301332,0.442694,0.082472 +bot_03507,reward_heavy,1.0000,0.9396,0.9265,1.0000,0.9736,0.6054,1.0000,0.9227,1.0000,0.628513,0.181907,0.023372,0.166208 +bot_03508,churn_sensitive,0.4224,0.5105,0.2289,0.7573,0.3591,0.2661,0.7990,1.0000,0.5363,0.216095,0.414399,0.242360,0.127146 +bot_03509,balanced,0.8287,0.9592,1.0000,0.9951,0.9245,1.0000,1.0000,0.9797,1.0000,0.278149,0.254122,0.302753,0.164976 +bot_03510,splash_driven,1.0000,0.7780,1.0000,0.9275,0.9506,1.0000,1.0000,0.8689,0.9578,0.646014,0.121431,0.111486,0.121069 +bot_03511,splash_driven,0.8311,0.8681,1.0000,1.0000,1.0000,1.0000,0.8048,1.0000,0.9416,0.797007,0.106822,0.083639,0.012532 +bot_03512,network_bound,0.9524,0.8525,0.8402,0.8941,0.6075,0.5477,0.5609,1.0000,0.7120,0.116032,0.298535,0.256989,0.328445 +bot_03513,reward_heavy,1.0000,0.8746,0.7966,1.0000,0.8064,0.5493,1.0000,0.7260,1.0000,0.545718,0.198759,0.136845,0.118678 +bot_03514,interstitial_focus,0.4809,1.0000,0.6034,0.8386,1.0000,0.6152,1.0000,1.0000,0.9307,0.347140,0.445700,0.061292,0.145867 +bot_03515,splash_driven,0.9511,0.9202,1.0000,0.9213,1.0000,1.0000,0.7731,1.0000,0.9293,0.692024,0.206327,0.093897,0.007752 +bot_03516,balanced,1.0000,1.0000,1.0000,1.0000,0.8455,0.8137,1.0000,1.0000,0.9930,0.438455,0.237647,0.259326,0.064573 +bot_03517,reward_heavy,1.0000,0.6783,0.5883,1.0000,0.9027,0.7346,1.0000,0.7806,1.0000,0.671661,0.305733,0.011303,0.011303 +bot_03518,network_bound,1.0000,0.8175,0.8625,0.9320,0.6555,0.8631,0.7976,1.0000,0.8829,0.008478,0.268261,0.325160,0.398101 +bot_03519,balanced,1.0000,0.9121,0.9170,0.8893,0.9511,0.7860,0.9265,1.0000,1.0000,0.295825,0.301109,0.237931,0.165135 +bot_03520,splash_driven,0.7025,0.8904,1.0000,1.0000,1.0000,1.0000,0.8812,1.0000,1.0000,0.704180,0.224311,0.061143,0.010365 +bot_03521,reward_heavy,1.0000,0.6365,1.0000,1.0000,0.5921,0.5445,0.9254,0.7075,1.0000,0.490798,0.321221,0.095293,0.092688 +bot_03522,balanced,1.0000,1.0000,1.0000,1.0000,0.8375,1.0000,0.8714,1.0000,0.9255,0.506022,0.399741,0.084316,0.009920 +bot_03523,network_bound,0.9532,1.0000,0.5955,0.9556,0.7168,0.5702,0.5711,1.0000,0.8043,0.170090,0.211166,0.151559,0.467185 +bot_03524,reward_heavy,1.0000,0.9020,0.6515,1.0000,0.8047,0.5642,1.0000,0.9981,1.0000,0.581899,0.392123,0.010793,0.015185 +bot_03525,splash_driven,0.9092,0.7265,1.0000,1.0000,0.9961,1.0000,1.0000,0.9721,0.8472,0.757989,0.120591,0.096641,0.024780 +bot_03526,interstitial_focus,0.6604,1.0000,0.6028,0.7726,1.0000,0.5928,1.0000,1.0000,1.0000,0.383865,0.332642,0.272985,0.010508 +bot_03527,network_bound,0.8096,0.8581,0.9618,0.8193,0.9601,0.5905,0.8285,1.0000,0.7710,0.114233,0.199038,0.290960,0.395769 +bot_03528,splash_driven,0.7365,1.0000,1.0000,1.0000,1.0000,1.0000,0.9354,0.8653,1.0000,0.743824,0.087110,0.156885,0.012181 +bot_03529,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8784,1.0000,1.0000,0.387633,0.354150,0.115425,0.142792 +bot_03530,interstitial_focus,0.5282,1.0000,0.7892,0.9210,1.0000,0.8166,0.9836,0.9965,0.9481,0.339470,0.423017,0.228193,0.009320 +bot_03531,splash_driven,0.7113,0.8616,1.0000,0.8524,0.9451,1.0000,0.8712,0.8316,1.0000,0.700074,0.137521,0.094060,0.068344 +bot_03532,interstitial_focus,0.6617,1.0000,0.9821,0.6972,1.0000,0.8986,0.9348,1.0000,0.9957,0.362913,0.519577,0.105669,0.011841 +bot_03533,balanced,1.0000,1.0000,0.9895,1.0000,0.9671,0.7860,1.0000,0.9346,0.9647,0.363541,0.419315,0.204120,0.013023 +bot_03534,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.446050,0.284922,0.259027,0.010001 +bot_03535,reward_heavy,1.0000,0.8627,0.6365,1.0000,0.5411,0.7950,0.8970,0.7880,1.0000,0.435255,0.396724,0.009413,0.158607 +bot_03536,interstitial_focus,0.6435,1.0000,1.0000,0.7890,1.0000,0.8575,0.9352,0.9769,1.0000,0.337734,0.351656,0.298567,0.012043 +bot_03537,interstitial_focus,0.7327,1.0000,0.6445,0.9898,1.0000,0.5404,1.0000,0.8415,1.0000,0.207932,0.402665,0.255129,0.134275 +bot_03538,churn_sensitive,0.6897,0.4837,0.5263,0.6053,0.3759,0.5718,0.7872,0.9916,0.5698,0.183991,0.215851,0.432277,0.167881 +bot_03539,interstitial_focus,0.9388,1.0000,0.9700,0.6074,1.0000,0.4808,0.9352,0.8457,0.9735,0.412710,0.385215,0.162959,0.039116 +bot_03540,interstitial_focus,0.8869,1.0000,0.8774,0.7908,1.0000,0.7382,1.0000,0.8860,0.9892,0.235675,0.546435,0.157935,0.059955 +bot_03541,splash_driven,0.9655,1.0000,1.0000,0.9831,1.0000,1.0000,0.8945,1.0000,0.9462,0.558370,0.201088,0.157574,0.082968 +bot_03542,splash_driven,0.8451,0.7285,1.0000,0.9556,0.8745,1.0000,0.8910,0.9055,0.9780,0.711947,0.267766,0.009208,0.011079 +bot_03543,splash_driven,0.6643,0.8561,1.0000,1.0000,0.9701,1.0000,0.7932,1.0000,0.9810,0.728156,0.071374,0.190020,0.010450 +bot_03544,interstitial_focus,0.6088,1.0000,0.9924,0.7711,1.0000,0.5524,1.0000,0.8511,1.0000,0.361400,0.469144,0.152931,0.016525 +bot_03545,splash_driven,1.0000,0.6860,1.0000,1.0000,0.9149,1.0000,0.8671,1.0000,0.9466,0.591831,0.245314,0.058208,0.104647 +bot_03546,reward_heavy,1.0000,0.7510,0.8035,1.0000,0.8313,0.6016,0.9997,0.9350,1.0000,0.588291,0.211221,0.113933,0.086555 +bot_03547,churn_sensitive,0.6587,0.4884,0.4036,0.6416,0.5103,0.6209,0.6691,1.0000,0.5561,0.195947,0.356246,0.274866,0.172941 +bot_03548,splash_driven,0.8000,0.8089,1.0000,1.0000,1.0000,1.0000,0.8609,1.0000,0.8699,0.809376,0.171385,0.009620,0.009620 +bot_03549,churn_sensitive,0.7426,0.5569,0.4764,0.5257,0.6367,0.6049,0.7907,1.0000,0.6967,0.233805,0.143564,0.300808,0.321822 +bot_03550,interstitial_focus,0.7612,1.0000,0.8840,0.6326,1.0000,0.5865,0.8742,0.8608,1.0000,0.492393,0.422669,0.073548,0.011390 +bot_03551,balanced,1.0000,0.9051,1.0000,0.8712,1.0000,0.9290,1.0000,1.0000,0.9961,0.422635,0.202672,0.308532,0.066161 +bot_03552,reward_heavy,1.0000,0.6506,0.9271,1.0000,0.5629,0.8323,1.0000,0.9590,1.0000,0.495073,0.382229,0.077345,0.045352 +bot_03553,reward_heavy,1.0000,0.7880,0.7443,1.0000,0.8259,0.5553,0.9760,1.0000,1.0000,0.710262,0.212983,0.017236,0.059519 +bot_03554,splash_driven,1.0000,1.0000,1.0000,0.9981,0.9020,1.0000,0.7707,1.0000,1.0000,0.706108,0.273086,0.010403,0.010403 +bot_03555,reward_heavy,1.0000,0.8477,0.9836,1.0000,0.7963,0.5953,0.9748,1.0000,1.0000,0.684947,0.266408,0.033435,0.015210 +bot_03556,balanced,1.0000,0.9959,1.0000,1.0000,0.8815,1.0000,0.9540,0.9872,0.8822,0.563260,0.230506,0.195431,0.010803 +bot_03557,balanced,1.0000,0.9553,0.8754,0.9438,1.0000,1.0000,0.8853,1.0000,0.9463,0.248793,0.401171,0.189116,0.160920 +bot_03558,reward_heavy,1.0000,0.9896,0.7812,1.0000,0.5780,0.4715,1.0000,0.7833,1.0000,0.628099,0.241763,0.023348,0.106790 +bot_03559,reward_heavy,1.0000,0.9185,0.6319,1.0000,0.9704,0.6205,1.0000,1.0000,1.0000,0.473888,0.213659,0.194565,0.117887 +bot_03560,splash_driven,1.0000,1.0000,1.0000,0.9935,1.0000,1.0000,0.8660,0.9899,1.0000,0.648878,0.114722,0.109770,0.126631 +bot_03561,interstitial_focus,0.8553,1.0000,0.8463,0.5660,1.0000,0.8393,0.9431,1.0000,1.0000,0.429551,0.383422,0.089702,0.097325 +bot_03562,churn_sensitive,0.7543,0.6901,0.3952,0.6921,0.4520,0.3847,0.7922,1.0000,0.6830,0.127424,0.459965,0.327889,0.084722 +bot_03563,balanced,1.0000,1.0000,0.8672,0.9932,1.0000,0.9340,0.8453,0.8346,0.9843,0.363480,0.354257,0.273758,0.008505 +bot_03564,balanced,0.8932,0.9872,1.0000,1.0000,1.0000,0.8182,0.8443,1.0000,0.9270,0.238627,0.295655,0.284438,0.181280 +bot_03565,splash_driven,0.9532,1.0000,1.0000,1.0000,0.9052,1.0000,0.8853,1.0000,0.8821,0.710568,0.231227,0.047009,0.011195 +bot_03566,balanced,0.8890,1.0000,1.0000,1.0000,0.9664,1.0000,1.0000,1.0000,0.9572,0.375654,0.444658,0.087145,0.092543 +bot_03567,reward_heavy,1.0000,0.6017,0.9237,1.0000,0.9283,0.6980,0.9537,1.0000,1.0000,0.708669,0.206783,0.073519,0.011029 +bot_03568,interstitial_focus,0.5623,1.0000,0.8168,0.6339,1.0000,0.8899,0.9115,1.0000,1.0000,0.287444,0.554225,0.147457,0.010875 +bot_03569,splash_driven,0.6612,0.7470,1.0000,1.0000,0.9141,1.0000,0.8949,1.0000,0.9379,0.697932,0.251512,0.009057,0.041499 +bot_03570,splash_driven,1.0000,0.9019,1.0000,0.9671,0.8765,1.0000,0.8782,0.9017,1.0000,0.732395,0.204263,0.053131,0.010211 +bot_03571,splash_driven,1.0000,0.8783,1.0000,0.9145,0.8328,1.0000,0.9742,1.0000,1.0000,0.626703,0.249173,0.114742,0.009382 +bot_03572,interstitial_focus,0.8780,1.0000,0.7321,0.5624,1.0000,0.7842,0.9595,1.0000,0.9312,0.314652,0.408499,0.182022,0.094827 +bot_03573,interstitial_focus,0.9433,1.0000,0.6555,0.7644,1.0000,0.8661,0.9267,1.0000,0.9393,0.369476,0.474362,0.147530,0.008632 +bot_03574,interstitial_focus,0.8234,1.0000,0.7881,0.8405,1.0000,0.9156,1.0000,1.0000,0.9569,0.272524,0.386559,0.234066,0.106850 +bot_03575,interstitial_focus,0.5078,1.0000,0.6016,0.7512,1.0000,0.8876,0.9663,1.0000,1.0000,0.319362,0.457659,0.112039,0.110940 +bot_03576,churn_sensitive,0.5596,0.8296,0.4366,0.6931,0.4901,0.3082,0.8026,1.0000,0.6504,0.299090,0.154486,0.324803,0.221622 +bot_03577,interstitial_focus,0.7439,1.0000,0.7481,0.7637,1.0000,0.5759,0.8479,0.9733,1.0000,0.419888,0.295636,0.273600,0.010875 +bot_03578,reward_heavy,1.0000,0.7132,0.6136,1.0000,0.9453,0.4628,0.9392,0.8993,1.0000,0.577476,0.306620,0.030912,0.084992 +bot_03579,reward_heavy,1.0000,0.6007,0.8448,1.0000,0.8885,0.6931,1.0000,1.0000,1.0000,0.700811,0.280161,0.009514,0.009514 +bot_03580,splash_driven,0.9343,1.0000,1.0000,0.8922,1.0000,1.0000,0.9869,0.9624,0.9302,0.651529,0.261521,0.078859,0.008091 +bot_03581,network_bound,0.7688,0.6843,0.6194,1.0000,0.9592,0.5655,0.7878,1.0000,0.7549,0.252338,0.183234,0.206112,0.358315 +bot_03582,network_bound,0.9010,0.9745,0.6945,0.8696,0.9726,0.7206,0.8026,1.0000,0.8890,0.088499,0.290229,0.197719,0.423553 +bot_03583,splash_driven,0.7847,1.0000,1.0000,0.9767,0.9009,1.0000,0.8566,0.9084,1.0000,0.753923,0.199451,0.037100,0.009526 +bot_03584,interstitial_focus,0.7313,1.0000,1.0000,0.9775,1.0000,0.8417,1.0000,1.0000,0.9863,0.211193,0.321307,0.279561,0.187939 +bot_03585,splash_driven,0.6442,0.7213,1.0000,1.0000,0.8732,1.0000,0.9547,0.8167,1.0000,0.803273,0.170580,0.014855,0.011293 +bot_03586,interstitial_focus,0.4829,1.0000,0.8125,0.6224,1.0000,0.4893,0.9524,1.0000,1.0000,0.202723,0.474765,0.284532,0.037980 +bot_03587,splash_driven,1.0000,0.9633,1.0000,1.0000,1.0000,1.0000,0.7783,0.8950,0.9898,0.714863,0.240179,0.035883,0.009075 +bot_03588,splash_driven,0.7563,1.0000,1.0000,1.0000,1.0000,1.0000,0.9428,0.8987,1.0000,0.771868,0.155318,0.008595,0.064219 +bot_03589,splash_driven,0.6645,1.0000,1.0000,0.8187,0.9005,1.0000,0.8631,0.9367,0.9255,0.649749,0.174091,0.165484,0.010677 +bot_03590,balanced,1.0000,1.0000,0.9670,1.0000,1.0000,0.9946,0.9159,1.0000,0.8832,0.406016,0.344965,0.233723,0.015296 +bot_03591,interstitial_focus,0.7156,1.0000,1.0000,0.6415,1.0000,0.8378,1.0000,1.0000,0.9776,0.345192,0.362465,0.283171,0.009171 +bot_03592,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.8837,0.6148,1.0000,0.9456,1.0000,0.509976,0.228655,0.133191,0.128178 +bot_03593,network_bound,0.8644,0.9715,0.9264,0.7559,0.6127,0.9320,0.6730,1.0000,0.8877,0.105153,0.162036,0.375782,0.357030 +bot_03594,churn_sensitive,0.3304,0.4807,0.3459,0.7855,0.5665,0.2597,0.8028,1.0000,0.4784,0.252567,0.298021,0.163699,0.285713 +bot_03595,balanced,0.8706,0.9653,1.0000,1.0000,1.0000,0.8384,1.0000,0.9934,0.9974,0.365088,0.375651,0.194537,0.064724 +bot_03596,interstitial_focus,0.9047,1.0000,0.8736,0.7850,1.0000,0.7479,1.0000,1.0000,1.0000,0.298486,0.464689,0.069183,0.167642 +bot_03597,interstitial_focus,0.9267,1.0000,0.7793,0.6031,1.0000,0.5550,0.8146,1.0000,1.0000,0.268768,0.419286,0.215864,0.096083 +bot_03598,reward_heavy,1.0000,0.7131,0.6065,1.0000,0.5521,0.5054,1.0000,0.7204,1.0000,0.634093,0.287266,0.065577,0.013063 +bot_03599,interstitial_focus,0.8285,1.0000,0.6499,0.8087,1.0000,0.7075,0.8301,1.0000,1.0000,0.363718,0.338468,0.289231,0.008582 +bot_03600,splash_driven,1.0000,0.9483,1.0000,0.9905,1.0000,1.0000,0.8553,0.9399,1.0000,0.715632,0.264915,0.009727,0.009727 +bot_03601,balanced,1.0000,1.0000,1.0000,0.8656,0.9921,0.9053,1.0000,0.8534,0.9310,0.261137,0.366831,0.361715,0.010318 +bot_03602,reward_heavy,1.0000,0.8245,0.7884,1.0000,0.6123,0.8021,0.9516,0.8656,1.0000,0.518230,0.306806,0.134905,0.040059 +bot_03603,splash_driven,0.9615,1.0000,1.0000,1.0000,1.0000,1.0000,0.9918,0.9472,1.0000,0.665902,0.166816,0.156822,0.010459 +bot_03604,reward_heavy,1.0000,0.8817,0.6951,1.0000,0.7832,0.5926,0.9698,1.0000,1.0000,0.554624,0.248088,0.139466,0.057822 +bot_03605,churn_sensitive,0.6897,0.7156,0.6622,0.3850,0.3866,0.4293,0.5720,0.9896,0.6512,0.206335,0.255375,0.406407,0.131883 +bot_03606,balanced,1.0000,0.9087,0.8736,0.9318,0.7841,0.9576,0.8726,0.8094,0.9590,0.388093,0.267989,0.230051,0.113867 +bot_03607,reward_heavy,1.0000,0.8354,0.8938,1.0000,0.7898,0.5167,1.0000,0.9245,1.0000,0.646724,0.315118,0.024423,0.013736 +bot_03608,interstitial_focus,0.9307,1.0000,1.0000,0.9110,1.0000,0.7346,0.8915,0.9608,1.0000,0.419106,0.376408,0.193505,0.010982 +bot_03609,reward_heavy,1.0000,0.6689,0.8026,1.0000,0.7620,0.4835,1.0000,0.6935,1.0000,0.594983,0.248231,0.147274,0.009512 +bot_03610,splash_driven,0.9488,1.0000,1.0000,0.9584,1.0000,1.0000,1.0000,0.9427,1.0000,0.768568,0.176592,0.008554,0.046286 +bot_03611,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9036,1.0000,0.7895,1.0000,0.8800,0.698441,0.252781,0.010834,0.037944 +bot_03612,reward_heavy,1.0000,0.8737,0.7876,1.0000,0.9208,0.4638,0.9272,0.8856,1.0000,0.534088,0.188495,0.094064,0.183352 +bot_03613,interstitial_focus,0.8274,1.0000,0.9424,0.7157,1.0000,0.8604,0.8677,0.8957,0.9485,0.280514,0.499126,0.098813,0.121548 +bot_03614,reward_heavy,1.0000,0.9304,0.7606,1.0000,0.6148,0.4740,1.0000,0.7029,1.0000,0.539125,0.205226,0.145095,0.110554 +bot_03615,reward_heavy,1.0000,0.9544,0.5760,1.0000,0.7586,0.6146,0.9254,0.8036,1.0000,0.613196,0.236955,0.138350,0.011499 +bot_03616,balanced,1.0000,0.9485,1.0000,0.9426,1.0000,1.0000,1.0000,1.0000,1.0000,0.372386,0.379000,0.098641,0.149973 +bot_03617,churn_sensitive,0.4554,0.4435,0.5787,0.8011,0.5540,0.2419,0.7881,1.0000,0.6667,0.306481,0.163360,0.298913,0.231246 +bot_03618,network_bound,1.0000,1.0000,0.7794,0.9643,0.6459,0.5548,0.6338,1.0000,0.8961,0.213986,0.305284,0.184296,0.296434 +bot_03619,network_bound,0.7753,0.9686,0.6822,0.6659,0.5786,0.5333,0.5832,1.0000,0.7835,0.169395,0.272261,0.253211,0.305133 +bot_03620,churn_sensitive,0.4754,0.4422,0.6637,0.5247,0.5136,0.4418,0.5791,1.0000,0.6071,0.359401,0.300395,0.272073,0.068131 +bot_03621,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9921,0.9292,1.0000,0.522962,0.235780,0.227692,0.013566 +bot_03622,splash_driven,1.0000,0.7397,1.0000,1.0000,0.9637,1.0000,0.9085,1.0000,0.9435,0.663140,0.200146,0.080770,0.055944 +bot_03623,balanced,0.9791,1.0000,1.0000,0.8895,0.7989,0.9654,0.9485,1.0000,0.9265,0.349509,0.368461,0.268677,0.013354 +bot_03624,churn_sensitive,0.4303,0.4851,0.3438,0.5791,0.6348,0.4550,0.6944,1.0000,0.6580,0.291018,0.199652,0.392595,0.116735 +bot_03625,interstitial_focus,0.6096,1.0000,0.5963,0.9738,1.0000,0.8961,0.9610,1.0000,1.0000,0.226370,0.403094,0.223516,0.147020 +bot_03626,network_bound,0.7787,0.8754,0.5856,0.8232,0.9059,0.7128,0.7381,1.0000,0.8012,0.103142,0.213439,0.280441,0.402979 +bot_03627,churn_sensitive,0.5103,0.7455,0.3410,0.4759,0.5091,0.5907,0.7633,1.0000,0.5397,0.217024,0.196127,0.361192,0.225657 +bot_03628,balanced,1.0000,1.0000,1.0000,1.0000,0.9975,0.7898,0.8692,1.0000,1.0000,0.279991,0.325575,0.203885,0.190549 +bot_03629,reward_heavy,1.0000,1.0000,0.8061,1.0000,0.7174,0.4542,0.8852,0.8343,1.0000,0.641188,0.300656,0.033217,0.024940 +bot_03630,interstitial_focus,0.7850,1.0000,0.8552,0.6570,1.0000,0.8623,0.8132,1.0000,1.0000,0.410676,0.262290,0.317662,0.009372 +bot_03631,interstitial_focus,0.5552,1.0000,1.0000,0.5889,1.0000,0.5022,1.0000,1.0000,1.0000,0.343121,0.305448,0.340980,0.010451 +bot_03632,reward_heavy,1.0000,0.6902,0.6243,1.0000,0.7794,0.6056,1.0000,1.0000,1.0000,0.588238,0.204169,0.195780,0.011813 +bot_03633,interstitial_focus,0.9497,1.0000,1.0000,0.9462,1.0000,0.8907,1.0000,1.0000,1.0000,0.256822,0.490255,0.102598,0.150325 +bot_03634,interstitial_focus,0.7840,1.0000,0.9382,0.7561,1.0000,0.7682,1.0000,0.9997,0.9768,0.337270,0.354359,0.299535,0.008836 +bot_03635,splash_driven,0.8586,0.7288,1.0000,0.9363,0.8145,1.0000,1.0000,0.8242,0.9290,0.927858,0.045469,0.013336,0.013336 +bot_03636,network_bound,0.7844,0.7485,0.8396,0.7886,0.7307,0.8497,0.5387,1.0000,0.9279,0.014781,0.289203,0.234895,0.461122 +bot_03637,splash_driven,0.7465,0.9769,1.0000,0.8126,1.0000,1.0000,0.7504,0.8777,1.0000,0.681415,0.096052,0.211185,0.011348 +bot_03638,network_bound,1.0000,1.0000,0.7904,0.7755,0.5608,0.7470,0.5202,1.0000,0.8043,0.016175,0.103864,0.427893,0.452068 +bot_03639,splash_driven,0.8653,0.9419,1.0000,1.0000,1.0000,1.0000,1.0000,0.8360,0.8819,0.651078,0.220544,0.103814,0.024565 +bot_03640,interstitial_focus,0.7333,1.0000,1.0000,0.5844,1.0000,0.4922,0.8044,1.0000,0.9736,0.413224,0.371915,0.089770,0.125091 +bot_03641,interstitial_focus,0.8805,1.0000,0.9126,0.7288,1.0000,0.8710,1.0000,0.9527,1.0000,0.251173,0.485083,0.254900,0.008844 +bot_03642,interstitial_focus,0.4873,1.0000,0.6608,0.9292,1.0000,0.8595,1.0000,0.8489,0.9849,0.333310,0.466491,0.120542,0.079657 +bot_03643,interstitial_focus,0.7974,1.0000,1.0000,0.9825,1.0000,0.9128,1.0000,0.9018,1.0000,0.239249,0.504709,0.246289,0.009752 +bot_03644,interstitial_focus,0.5428,1.0000,0.7063,0.9685,1.0000,0.5365,0.9571,0.8430,1.0000,0.261752,0.418533,0.286074,0.033641 +bot_03645,network_bound,0.6444,0.9856,0.6077,1.0000,0.7914,0.6483,0.7923,1.0000,0.8571,0.009656,0.234515,0.250421,0.505408 +bot_03646,splash_driven,0.8656,0.7393,1.0000,1.0000,1.0000,1.0000,0.8710,1.0000,1.0000,0.826477,0.148143,0.012690,0.012690 +bot_03647,interstitial_focus,0.6335,1.0000,0.6963,0.7114,1.0000,0.8435,1.0000,0.8878,1.0000,0.348712,0.464330,0.178106,0.008851 +bot_03648,reward_heavy,1.0000,1.0000,0.8004,1.0000,0.9242,0.7040,0.9869,0.9952,1.0000,0.473245,0.194668,0.203426,0.128661 +bot_03649,interstitial_focus,0.7578,1.0000,0.8544,0.8849,1.0000,0.6143,0.8220,0.8274,0.9471,0.347188,0.424162,0.172101,0.056549 +bot_03650,balanced,1.0000,1.0000,1.0000,1.0000,0.9256,1.0000,0.9385,1.0000,1.0000,0.509364,0.334511,0.145481,0.010644 +bot_03651,reward_heavy,1.0000,0.9928,0.8816,1.0000,0.5808,0.4447,0.9872,0.7424,1.0000,0.442984,0.234450,0.230692,0.091874 +bot_03652,interstitial_focus,0.5903,1.0000,0.6268,0.8880,1.0000,0.9056,1.0000,0.8887,1.0000,0.487447,0.356636,0.113520,0.042397 +bot_03653,churn_sensitive,0.6259,0.7148,0.4733,0.5687,0.4026,0.5002,0.5724,1.0000,0.4676,0.386000,0.328106,0.212703,0.073191 +bot_03654,interstitial_focus,0.6178,1.0000,0.8877,0.7277,1.0000,0.8657,0.8134,0.9111,0.9418,0.383617,0.408701,0.096681,0.111001 +bot_03655,interstitial_focus,0.6916,1.0000,0.6306,0.7410,1.0000,0.7249,0.8693,1.0000,1.0000,0.234208,0.496321,0.256880,0.012591 +bot_03656,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8625,0.9358,1.0000,1.0000,0.486228,0.171424,0.140221,0.202127 +bot_03657,splash_driven,1.0000,1.0000,1.0000,1.0000,0.8798,1.0000,0.7965,1.0000,1.0000,0.709958,0.074954,0.033837,0.181251 +bot_03658,interstitial_focus,0.5513,1.0000,0.7506,0.7664,1.0000,0.8236,1.0000,0.9647,1.0000,0.285954,0.504825,0.192667,0.016554 +bot_03659,reward_heavy,1.0000,0.7483,0.7100,1.0000,0.7429,0.7563,0.9286,1.0000,1.0000,0.561583,0.210596,0.130039,0.097782 +bot_03660,interstitial_focus,0.4945,1.0000,0.9181,0.5723,1.0000,0.6448,0.8221,1.0000,1.0000,0.341776,0.249323,0.260414,0.148487 +bot_03661,balanced,0.8270,1.0000,1.0000,1.0000,0.8278,0.8728,1.0000,0.9424,0.8992,0.421156,0.228732,0.210678,0.139434 +bot_03662,reward_heavy,1.0000,0.7500,0.9143,1.0000,0.5516,0.7158,1.0000,0.8417,1.0000,0.717265,0.180795,0.091739,0.010202 +bot_03663,churn_sensitive,0.7600,0.8610,0.4453,0.4492,0.3474,0.2835,0.7184,1.0000,0.5592,0.290551,0.264729,0.271319,0.173401 +bot_03664,reward_heavy,1.0000,0.6829,1.0000,1.0000,0.5845,0.7589,0.9507,0.8660,1.0000,0.588897,0.263647,0.021650,0.125807 +bot_03665,interstitial_focus,0.5807,1.0000,0.9381,0.8573,1.0000,0.4941,0.9712,1.0000,1.0000,0.211602,0.629530,0.118911,0.039957 +bot_03666,churn_sensitive,0.3456,0.7569,0.4220,0.4831,0.3709,0.6628,0.7797,1.0000,0.4867,0.111236,0.321056,0.396342,0.171366 +bot_03667,interstitial_focus,0.6485,1.0000,0.9364,0.7574,1.0000,0.7751,1.0000,0.8734,0.9731,0.325571,0.420542,0.198534,0.055352 +bot_03668,reward_heavy,1.0000,0.6430,0.9147,1.0000,0.5960,0.6883,1.0000,0.9244,1.0000,0.517525,0.217365,0.160818,0.104291 +bot_03669,reward_heavy,1.0000,0.5910,0.8184,1.0000,0.9759,0.5896,0.9031,1.0000,1.0000,0.636082,0.202598,0.127064,0.034255 +bot_03670,network_bound,0.8328,0.6556,0.8535,0.7561,0.9168,0.6506,0.7169,1.0000,0.7809,0.030728,0.137253,0.461394,0.370624 +bot_03671,splash_driven,0.7272,1.0000,1.0000,0.8754,1.0000,1.0000,0.9266,1.0000,0.9836,0.733917,0.097079,0.128603,0.040401 +bot_03672,churn_sensitive,0.7169,0.5198,0.5518,0.6309,0.3726,0.6509,0.8658,1.0000,0.5006,0.248089,0.190437,0.297391,0.264082 +bot_03673,reward_heavy,1.0000,0.5954,0.6964,1.0000,0.5454,0.7713,1.0000,0.9440,1.0000,0.600348,0.259206,0.011987,0.128460 +bot_03674,reward_heavy,1.0000,0.6433,0.6223,1.0000,0.8621,0.7590,1.0000,1.0000,1.0000,0.512154,0.452652,0.024185,0.011009 +bot_03675,reward_heavy,1.0000,0.6424,0.8765,1.0000,0.6947,0.4087,1.0000,0.8534,1.0000,0.513450,0.322998,0.155813,0.007739 +bot_03676,interstitial_focus,0.9004,1.0000,0.8609,0.8797,1.0000,0.4992,1.0000,0.9231,1.0000,0.255162,0.437751,0.122827,0.184260 +bot_03677,balanced,1.0000,1.0000,1.0000,1.0000,0.8545,0.9048,0.8892,1.0000,1.0000,0.229778,0.354114,0.286456,0.129652 +bot_03678,churn_sensitive,0.7655,0.8040,0.5657,0.6128,0.6126,0.5029,0.7488,1.0000,0.4963,0.249432,0.309621,0.272309,0.168638 +bot_03679,reward_heavy,1.0000,0.8644,0.9421,1.0000,0.8366,0.5437,1.0000,0.9033,1.0000,0.527522,0.269520,0.107107,0.095852 +bot_03680,splash_driven,0.6529,0.9233,1.0000,0.8800,1.0000,1.0000,1.0000,1.0000,1.0000,0.635933,0.216485,0.139830,0.007752 +bot_03681,network_bound,1.0000,1.0000,0.6904,0.7657,0.5946,0.9250,0.6916,1.0000,0.8462,0.068485,0.271600,0.342497,0.317418 +bot_03682,splash_driven,1.0000,1.0000,1.0000,1.0000,0.8969,1.0000,0.9683,0.9813,1.0000,0.610274,0.241058,0.011565,0.137103 +bot_03683,network_bound,0.8525,0.8406,0.9714,0.7430,0.7416,0.6904,0.5723,1.0000,0.8967,0.136044,0.149061,0.320490,0.394405 +bot_03684,reward_heavy,1.0000,0.8956,0.6228,1.0000,0.6651,0.7519,1.0000,1.0000,1.0000,0.593252,0.318308,0.012842,0.075597 +bot_03685,network_bound,0.8236,0.6839,0.6389,0.7622,0.8370,0.6728,0.7749,1.0000,0.8921,0.106960,0.059845,0.399634,0.433561 +bot_03686,interstitial_focus,0.9051,1.0000,0.7259,0.6984,1.0000,0.5428,0.9048,0.9925,1.0000,0.192397,0.410156,0.290434,0.107014 +bot_03687,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9871,0.9649,1.0000,0.8938,0.296223,0.347027,0.201872,0.154877 +bot_03688,splash_driven,0.9857,0.7053,1.0000,0.8555,1.0000,1.0000,0.9316,1.0000,1.0000,0.630386,0.210632,0.114581,0.044401 +bot_03689,balanced,0.9517,1.0000,0.9753,1.0000,0.9259,1.0000,0.8772,0.8668,1.0000,0.297585,0.306900,0.252354,0.143161 +bot_03690,balanced,0.8396,1.0000,1.0000,0.8995,1.0000,0.8350,0.9966,1.0000,0.9096,0.388295,0.224165,0.276292,0.111248 +bot_03691,splash_driven,0.7941,0.9219,1.0000,1.0000,1.0000,1.0000,0.9889,0.8705,1.0000,0.818696,0.162530,0.009675,0.009098 +bot_03692,interstitial_focus,0.7814,1.0000,0.6426,0.8976,1.0000,0.5409,1.0000,1.0000,1.0000,0.321252,0.304115,0.239622,0.135011 +bot_03693,network_bound,0.9019,0.8408,1.0000,1.0000,0.6591,0.6083,0.5486,1.0000,0.7786,0.030105,0.185309,0.273597,0.510990 +bot_03694,churn_sensitive,0.5960,0.8754,0.3866,0.5034,0.3605,0.6590,0.7082,1.0000,0.5098,0.221784,0.258415,0.267332,0.252469 +bot_03695,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8331,1.0000,0.9770,0.800562,0.088554,0.011249,0.099635 +bot_03696,splash_driven,0.8511,0.8673,1.0000,0.8784,1.0000,1.0000,0.9125,1.0000,0.8631,0.630353,0.241102,0.120665,0.007880 +bot_03697,network_bound,0.8545,0.7587,1.0000,0.9533,0.5854,0.5147,0.6880,1.0000,0.9029,0.193513,0.266450,0.264476,0.275561 +bot_03698,reward_heavy,1.0000,0.6680,0.7715,1.0000,0.5852,0.4414,1.0000,0.7414,1.0000,0.768832,0.170183,0.050108,0.010878 +bot_03699,splash_driven,0.6455,0.7968,1.0000,1.0000,0.9651,1.0000,0.8275,0.8862,0.8645,0.642882,0.306535,0.026476,0.024107 +bot_03700,churn_sensitive,0.7200,0.6286,0.3178,0.7193,0.6894,0.6792,0.7459,1.0000,0.5679,0.294436,0.319432,0.281083,0.105049 +bot_03701,reward_heavy,1.0000,0.6217,0.6781,1.0000,0.8630,0.5107,1.0000,1.0000,1.0000,0.448969,0.351292,0.190417,0.009322 +bot_03702,balanced,1.0000,1.0000,1.0000,1.0000,0.9011,0.9652,1.0000,0.8943,0.9000,0.454450,0.247879,0.284723,0.012948 +bot_03703,interstitial_focus,0.5115,1.0000,0.9357,0.8633,1.0000,0.5673,0.8133,0.9370,1.0000,0.223016,0.480756,0.251849,0.044379 +bot_03704,reward_heavy,1.0000,0.9302,0.7995,1.0000,0.7827,0.6515,1.0000,0.9135,1.0000,0.617190,0.182710,0.082768,0.117332 +bot_03705,balanced,1.0000,1.0000,0.9965,1.0000,0.8841,1.0000,0.8474,1.0000,1.0000,0.365351,0.245055,0.271883,0.117711 +bot_03706,reward_heavy,1.0000,0.8162,0.9314,1.0000,0.8008,0.4532,0.9826,0.8429,1.0000,0.647036,0.177392,0.092888,0.082683 +bot_03707,reward_heavy,1.0000,0.5935,0.7738,1.0000,0.6258,0.7165,0.9610,0.8228,1.0000,0.473092,0.348128,0.110685,0.068095 +bot_03708,reward_heavy,1.0000,0.9514,0.5856,1.0000,0.8732,0.4333,0.9775,0.7347,1.0000,0.435522,0.361823,0.111980,0.090675 +bot_03709,interstitial_focus,0.6820,1.0000,1.0000,0.9584,1.0000,0.8055,1.0000,0.9092,0.9570,0.395504,0.331080,0.217975,0.055441 +bot_03710,reward_heavy,1.0000,1.0000,0.5699,1.0000,0.5637,0.5543,1.0000,0.7511,1.0000,0.545611,0.294678,0.151271,0.008440 +bot_03711,balanced,1.0000,1.0000,0.8753,1.0000,1.0000,1.0000,0.8943,0.9628,1.0000,0.368391,0.333762,0.181590,0.116256 +bot_03712,balanced,1.0000,1.0000,0.9982,1.0000,0.9111,1.0000,0.9349,0.8257,1.0000,0.425887,0.212254,0.182039,0.179820 +bot_03713,balanced,1.0000,0.9282,1.0000,1.0000,1.0000,0.9841,1.0000,1.0000,0.9735,0.522649,0.230183,0.209539,0.037629 +bot_03714,churn_sensitive,0.5019,0.7914,0.6808,0.6006,0.6873,0.6485,0.7449,1.0000,0.6897,0.295338,0.296725,0.143598,0.264339 +bot_03715,interstitial_focus,0.5532,1.0000,0.6497,0.9169,1.0000,0.5614,0.8052,1.0000,1.0000,0.493347,0.333319,0.162827,0.010507 +bot_03716,interstitial_focus,0.9257,1.0000,0.6335,0.9432,1.0000,0.7568,0.9181,1.0000,1.0000,0.324428,0.474202,0.192607,0.008763 +bot_03717,network_bound,0.9676,0.8024,0.8744,1.0000,0.6151,0.8580,0.7028,1.0000,0.7620,0.147276,0.056412,0.411525,0.384786 +bot_03718,balanced,1.0000,1.0000,1.0000,1.0000,0.8998,0.9048,1.0000,0.8309,1.0000,0.365318,0.286672,0.334537,0.013473 +bot_03719,balanced,0.8928,1.0000,0.9887,1.0000,1.0000,1.0000,1.0000,0.9141,0.9099,0.438623,0.328504,0.106040,0.126833 +bot_03720,network_bound,0.6677,0.9900,0.6678,0.8160,0.7137,0.8833,0.7846,1.0000,0.8600,0.219339,0.148413,0.291023,0.341225 +bot_03721,interstitial_focus,0.5806,1.0000,0.8075,0.8303,1.0000,0.5728,0.8368,0.8660,1.0000,0.282687,0.491926,0.085107,0.140280 +bot_03722,churn_sensitive,0.7407,0.7531,0.4031,0.7515,0.7064,0.6421,0.5932,1.0000,0.5274,0.248733,0.402928,0.288842,0.059496 +bot_03723,splash_driven,0.9468,0.7563,1.0000,1.0000,1.0000,1.0000,1.0000,0.8659,0.8446,0.635879,0.229616,0.126440,0.008064 +bot_03724,reward_heavy,1.0000,0.8121,0.6562,1.0000,0.8606,0.5511,0.9175,0.9864,1.0000,0.619114,0.299187,0.068799,0.012900 +bot_03725,interstitial_focus,0.8195,1.0000,0.9210,0.9845,1.0000,0.7658,1.0000,0.8644,1.0000,0.369043,0.368200,0.064264,0.198492 +bot_03726,network_bound,0.7752,0.7675,0.7709,1.0000,0.6653,0.7512,0.5302,1.0000,0.7338,0.102704,0.130598,0.274594,0.492103 +bot_03727,interstitial_focus,0.5137,1.0000,0.7652,0.9531,1.0000,0.7076,1.0000,0.9303,0.9840,0.448937,0.354957,0.152865,0.043241 +bot_03728,reward_heavy,1.0000,0.9246,0.6806,1.0000,0.6551,0.7547,1.0000,1.0000,1.0000,0.654665,0.309441,0.021629,0.014264 +bot_03729,churn_sensitive,0.4929,0.4102,0.6164,0.5794,0.7506,0.3299,0.8706,1.0000,0.6818,0.303970,0.143991,0.317961,0.234078 +bot_03730,reward_heavy,1.0000,0.9481,0.8374,1.0000,0.9333,0.4696,1.0000,0.8302,1.0000,0.564837,0.240856,0.185954,0.008353 +bot_03731,interstitial_focus,0.6898,1.0000,1.0000,0.9240,1.0000,0.5264,1.0000,0.9246,1.0000,0.455588,0.434119,0.057885,0.052408 +bot_03732,reward_heavy,1.0000,0.8566,0.7390,1.0000,0.6697,0.4779,0.9658,0.8667,1.0000,0.547521,0.269677,0.172139,0.010662 +bot_03733,interstitial_focus,0.8264,1.0000,0.7061,0.8775,1.0000,0.6249,1.0000,1.0000,0.9758,0.242998,0.300637,0.318930,0.137435 +bot_03734,interstitial_focus,0.6629,1.0000,0.9575,0.7834,1.0000,0.7555,1.0000,1.0000,1.0000,0.354966,0.419023,0.214911,0.011099 +bot_03735,interstitial_focus,0.9570,1.0000,0.6667,0.8752,1.0000,0.4973,1.0000,0.8597,1.0000,0.371011,0.443438,0.174595,0.010957 +bot_03736,interstitial_focus,0.8674,1.0000,0.9075,0.8942,1.0000,0.6313,1.0000,1.0000,0.9360,0.283159,0.313758,0.308419,0.094665 +bot_03737,churn_sensitive,0.7151,0.7749,0.3928,0.4564,0.3982,0.4500,0.7019,1.0000,0.6082,0.282088,0.328216,0.226348,0.163348 +bot_03738,interstitial_focus,0.5863,1.0000,0.9040,0.8890,1.0000,0.8698,1.0000,1.0000,1.0000,0.381452,0.338482,0.258791,0.021276 +bot_03739,network_bound,0.8248,0.9301,0.7549,0.9293,0.6746,0.6535,0.7884,1.0000,0.7676,0.245936,0.057965,0.250752,0.445347 +bot_03740,balanced,1.0000,1.0000,1.0000,0.8927,0.8546,0.9933,0.8482,0.8791,1.0000,0.453648,0.321105,0.215119,0.010127 +bot_03741,interstitial_focus,0.8517,1.0000,0.9005,0.7859,1.0000,0.4801,0.8776,1.0000,1.0000,0.330641,0.265890,0.251114,0.152355 +bot_03742,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.7608,0.9333,0.9288,0.674601,0.184028,0.105284,0.036087 +bot_03743,churn_sensitive,0.7414,0.4930,0.6762,0.3908,0.3880,0.2646,0.8733,1.0000,0.5912,0.273062,0.243439,0.314201,0.169298 +bot_03744,balanced,0.8203,1.0000,1.0000,1.0000,0.9625,0.9051,1.0000,0.9570,0.8913,0.363760,0.366034,0.258461,0.011745 +bot_03745,interstitial_focus,0.8018,1.0000,0.8158,0.8487,1.0000,0.4834,1.0000,0.9894,1.0000,0.374963,0.469105,0.147165,0.008767 +bot_03746,splash_driven,1.0000,1.0000,1.0000,0.9971,1.0000,1.0000,0.8736,0.8414,1.0000,0.605694,0.303064,0.010089,0.081154 +bot_03747,interstitial_focus,0.8092,1.0000,1.0000,0.7281,1.0000,0.8622,0.8131,1.0000,1.0000,0.395183,0.474006,0.118615,0.012197 +bot_03748,network_bound,1.0000,1.0000,0.8961,0.9608,0.5778,0.8021,0.6708,1.0000,0.8686,0.251319,0.124568,0.255704,0.368409 +bot_03749,churn_sensitive,0.7005,0.4476,0.5544,0.3817,0.7105,0.5453,0.7528,1.0000,0.6290,0.219024,0.155816,0.444127,0.181033 +bot_03750,churn_sensitive,0.6388,0.5362,0.4921,0.4447,0.4757,0.3506,0.7695,1.0000,0.4796,0.302215,0.209637,0.252990,0.235158 +bot_03751,churn_sensitive,0.7412,0.4997,0.6124,0.5222,0.3818,0.4091,0.6971,1.0000,0.4717,0.105543,0.384834,0.375672,0.133951 +bot_03752,reward_heavy,1.0000,0.8324,0.5759,1.0000,0.7247,0.7569,1.0000,1.0000,1.0000,0.629574,0.184084,0.175761,0.010581 +bot_03753,splash_driven,0.7460,1.0000,1.0000,0.9217,1.0000,1.0000,0.8667,1.0000,1.0000,0.670050,0.183515,0.094520,0.051915 +bot_03754,interstitial_focus,0.4859,1.0000,0.6030,0.6747,1.0000,0.5609,1.0000,0.8260,1.0000,0.292464,0.522167,0.175187,0.010182 +bot_03755,interstitial_focus,0.6136,1.0000,0.6209,0.5843,1.0000,0.6331,1.0000,0.9959,1.0000,0.222756,0.501389,0.263604,0.012251 +bot_03756,balanced,1.0000,1.0000,1.0000,0.9162,1.0000,1.0000,0.9258,1.0000,0.9020,0.268583,0.258718,0.362414,0.110285 +bot_03757,network_bound,0.8400,0.9557,0.9920,1.0000,0.9458,0.6560,0.7774,1.0000,0.7339,0.181260,0.225676,0.231164,0.361901 +bot_03758,reward_heavy,1.0000,0.7274,0.8775,1.0000,0.9022,0.5770,0.9099,0.7874,1.0000,0.593752,0.214443,0.183496,0.008309 +bot_03759,churn_sensitive,0.5320,0.7496,0.4319,0.4311,0.6202,0.5217,0.6993,1.0000,0.4944,0.203833,0.315458,0.343656,0.137054 +bot_03760,splash_driven,0.6837,1.0000,1.0000,0.9442,0.9209,1.0000,0.9309,0.9547,1.0000,0.748159,0.232388,0.009726,0.009726 +bot_03761,reward_heavy,1.0000,0.6927,0.5607,1.0000,0.9035,0.7484,1.0000,0.7194,1.0000,0.717271,0.244803,0.010105,0.027822 +bot_03762,network_bound,0.6722,0.7768,0.8100,0.9815,0.9117,0.6242,0.6744,1.0000,0.7873,0.222261,0.150715,0.186144,0.440880 +bot_03763,interstitial_focus,0.6550,1.0000,1.0000,0.5640,1.0000,0.6436,0.9211,0.9678,1.0000,0.326231,0.373272,0.290938,0.009558 +bot_03764,interstitial_focus,0.9085,1.0000,1.0000,0.8615,1.0000,0.8949,0.8963,1.0000,1.0000,0.214833,0.480838,0.096389,0.207940 +bot_03765,reward_heavy,1.0000,0.6137,0.7572,1.0000,0.8418,0.4453,0.9921,0.8016,1.0000,0.727467,0.251049,0.010742,0.010742 +bot_03766,reward_heavy,1.0000,0.6169,0.9903,1.0000,0.7509,0.4495,1.0000,1.0000,1.0000,0.604054,0.301425,0.022759,0.071762 +bot_03767,churn_sensitive,0.3979,0.5907,0.5179,0.7131,0.4177,0.5958,0.7376,1.0000,0.5904,0.177675,0.217630,0.365157,0.239538 +bot_03768,network_bound,0.7152,0.6448,0.9341,1.0000,0.8049,0.8859,0.5291,1.0000,0.8620,0.218526,0.185468,0.319976,0.276030 +bot_03769,splash_driven,0.8868,0.6956,1.0000,1.0000,1.0000,1.0000,0.9656,0.8750,1.0000,0.740368,0.111274,0.049899,0.098459 +bot_03770,splash_driven,0.6436,0.7530,1.0000,1.0000,0.9564,1.0000,0.9224,0.8143,0.9955,0.711679,0.224459,0.008395,0.055467 +bot_03771,churn_sensitive,0.5125,0.6662,0.4098,0.5291,0.6869,0.3117,0.8467,1.0000,0.5610,0.390714,0.360834,0.176545,0.071908 +bot_03772,reward_heavy,1.0000,0.9578,0.7670,1.0000,0.7855,0.5766,1.0000,0.7495,1.0000,0.628288,0.332258,0.010188,0.029266 +bot_03773,interstitial_focus,0.4853,1.0000,0.8999,0.8485,1.0000,0.8582,1.0000,1.0000,1.0000,0.381625,0.420720,0.135029,0.062626 +bot_03774,interstitial_focus,0.6221,1.0000,0.8576,0.9255,1.0000,0.5829,1.0000,0.9732,0.9599,0.363653,0.386694,0.236925,0.012728 +bot_03775,interstitial_focus,0.8548,1.0000,0.6985,0.5922,1.0000,0.7262,0.9607,1.0000,0.9887,0.334617,0.394185,0.261829,0.009369 +bot_03776,balanced,0.8862,0.8887,1.0000,1.0000,1.0000,0.9651,1.0000,0.9155,0.8914,0.381434,0.423628,0.120634,0.074303 +bot_03777,interstitial_focus,0.5567,1.0000,0.9362,0.8112,1.0000,0.7237,1.0000,0.9914,0.9882,0.539545,0.378241,0.070620,0.011594 +bot_03778,splash_driven,1.0000,1.0000,1.0000,1.0000,0.8377,1.0000,0.8733,1.0000,1.0000,0.666761,0.167239,0.145913,0.020086 +bot_03779,balanced,1.0000,1.0000,0.9715,1.0000,0.8260,0.9189,1.0000,0.8016,1.0000,0.330348,0.251185,0.240800,0.177667 +bot_03780,interstitial_focus,0.6247,1.0000,0.7920,0.6923,1.0000,0.7735,1.0000,0.8342,1.0000,0.255004,0.333525,0.314186,0.097285 +bot_03781,churn_sensitive,0.5755,0.4934,0.6582,0.7685,0.5926,0.3075,0.6152,1.0000,0.6519,0.177989,0.219481,0.230380,0.372150 +bot_03782,churn_sensitive,0.4027,0.8152,0.3180,0.6288,0.3500,0.4512,0.7813,1.0000,0.6817,0.294762,0.169454,0.242603,0.293182 +bot_03783,reward_heavy,1.0000,0.5810,0.5854,1.0000,0.7539,0.7081,1.0000,1.0000,1.0000,0.447673,0.267017,0.164354,0.120956 +bot_03784,splash_driven,1.0000,0.7878,1.0000,1.0000,1.0000,1.0000,0.9879,1.0000,0.9785,0.700383,0.130449,0.159274,0.009894 +bot_03785,interstitial_focus,0.6577,1.0000,0.9119,0.8143,1.0000,0.8309,0.9190,0.9378,1.0000,0.360618,0.343813,0.284263,0.011306 +bot_03786,churn_sensitive,0.4956,0.7516,0.6457,0.5616,0.4003,0.2825,0.7548,1.0000,0.4807,0.370299,0.127977,0.264697,0.237027 +bot_03787,balanced,1.0000,1.0000,1.0000,1.0000,0.9068,0.8510,1.0000,1.0000,0.9449,0.437069,0.378742,0.170126,0.014063 +bot_03788,splash_driven,0.7655,0.8381,1.0000,0.9791,1.0000,1.0000,0.8568,0.8350,1.0000,0.640358,0.139365,0.102922,0.117356 +bot_03789,balanced,0.8895,0.9070,1.0000,1.0000,0.8318,1.0000,1.0000,0.8481,1.0000,0.379176,0.350548,0.132089,0.138186 +bot_03790,splash_driven,1.0000,0.6825,1.0000,1.0000,0.9581,1.0000,0.9645,0.9847,1.0000,0.783964,0.082855,0.009422,0.123759 +bot_03791,interstitial_focus,0.5524,1.0000,0.8207,0.7956,1.0000,0.8210,0.9082,0.8308,1.0000,0.257548,0.423255,0.309875,0.009321 +bot_03792,interstitial_focus,0.7269,1.0000,0.6280,0.9493,1.0000,0.7323,0.9907,0.8948,1.0000,0.221886,0.404226,0.251270,0.122618 +bot_03793,balanced,1.0000,1.0000,0.9194,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.388012,0.432656,0.165689,0.013643 +bot_03794,reward_heavy,1.0000,0.8218,0.9736,1.0000,0.8655,0.5811,0.9956,0.8321,1.0000,0.705208,0.233772,0.050314,0.010706 +bot_03795,interstitial_focus,0.9276,1.0000,0.7752,0.6983,1.0000,0.5261,1.0000,0.8524,1.0000,0.306107,0.531256,0.152634,0.010002 +bot_03796,churn_sensitive,0.4054,0.4652,0.4291,0.7459,0.5391,0.3727,0.6489,1.0000,0.6791,0.324051,0.146423,0.347913,0.181613 +bot_03797,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8121,1.0000,1.0000,1.0000,0.368992,0.345773,0.277263,0.007972 +bot_03798,balanced,0.9366,1.0000,1.0000,1.0000,1.0000,0.8960,1.0000,1.0000,1.0000,0.476130,0.298675,0.141220,0.083974 +bot_03799,interstitial_focus,0.8206,1.0000,0.9784,0.8275,1.0000,0.7941,0.8705,0.8667,1.0000,0.309990,0.441245,0.238657,0.010108 +bot_03800,reward_heavy,1.0000,0.8855,0.9704,1.0000,0.6552,0.7524,0.9253,1.0000,1.0000,0.661015,0.260036,0.068774,0.010174 +bot_03801,splash_driven,0.6633,1.0000,1.0000,1.0000,1.0000,1.0000,0.7722,1.0000,0.8409,0.922908,0.051543,0.014033,0.011517 +bot_03802,reward_heavy,1.0000,0.6163,1.0000,1.0000,0.8194,0.5508,0.9995,0.8762,1.0000,0.622705,0.309066,0.058969,0.009259 +bot_03803,splash_driven,0.7729,0.8648,1.0000,0.8688,0.9514,1.0000,0.9695,0.9692,0.9393,0.879054,0.099474,0.010736,0.010736 +bot_03804,reward_heavy,1.0000,0.7385,0.6195,1.0000,0.9119,0.8267,0.8954,0.9767,1.0000,0.625501,0.261446,0.103133,0.009919 +bot_03805,reward_heavy,1.0000,0.9560,1.0000,1.0000,0.9286,0.7673,1.0000,0.8394,1.0000,0.532013,0.365671,0.092980,0.009336 +bot_03806,reward_heavy,1.0000,0.7509,0.7054,1.0000,0.5845,0.8251,1.0000,0.7136,1.0000,0.546380,0.243457,0.200682,0.009481 +bot_03807,churn_sensitive,0.4022,0.7870,0.3437,0.6841,0.6986,0.2895,0.6249,1.0000,0.4775,0.177100,0.230186,0.336964,0.255751 +bot_03808,splash_driven,0.7736,0.8973,1.0000,0.9982,0.8232,1.0000,0.9387,0.8268,0.8479,0.618966,0.245437,0.008299,0.127298 +bot_03809,interstitial_focus,0.8203,1.0000,0.6204,0.7481,1.0000,0.7311,0.8610,1.0000,1.0000,0.289868,0.544499,0.126506,0.039127 +bot_03810,splash_driven,0.8777,1.0000,1.0000,1.0000,0.9699,1.0000,0.9191,0.8437,0.9830,0.664106,0.316183,0.009856,0.009856 +bot_03811,splash_driven,1.0000,0.8651,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9825,0.645723,0.303622,0.040943,0.009712 +bot_03812,network_bound,0.9624,0.6405,0.8452,0.8639,0.6114,0.5582,0.5474,1.0000,0.7573,0.015550,0.128386,0.234643,0.621420 +bot_03813,interstitial_focus,0.6160,1.0000,0.6548,0.7789,1.0000,0.6611,1.0000,0.9106,1.0000,0.196834,0.492784,0.300489,0.009893 +bot_03814,network_bound,0.6152,0.7840,1.0000,1.0000,0.6222,0.5656,0.5812,1.0000,0.7527,0.107322,0.261540,0.241710,0.389429 +bot_03815,network_bound,0.6217,0.9419,0.8520,0.7997,0.7590,0.8139,0.7518,1.0000,0.8699,0.174131,0.074710,0.292186,0.458973 +bot_03816,churn_sensitive,0.4012,0.8152,0.5512,0.5734,0.7651,0.3702,0.8561,1.0000,0.5152,0.178959,0.277010,0.347574,0.196457 +bot_03817,network_bound,0.8084,0.9089,0.9101,0.8670,0.8917,0.7429,0.8023,1.0000,0.8825,0.157635,0.259612,0.158436,0.424318 +bot_03818,network_bound,0.7865,0.9626,0.9981,0.9100,0.7159,0.5227,0.7291,1.0000,0.7974,0.082602,0.134148,0.216026,0.567224 +bot_03819,balanced,1.0000,1.0000,0.9445,0.9918,1.0000,0.9823,1.0000,1.0000,0.9063,0.309578,0.213878,0.313748,0.162796 +bot_03820,interstitial_focus,0.5120,1.0000,0.7707,0.8879,1.0000,0.7571,0.9033,0.9725,1.0000,0.250870,0.377465,0.223412,0.148253 +bot_03821,reward_heavy,1.0000,0.7606,0.8860,1.0000,0.9781,0.6344,0.9825,0.9043,1.0000,0.565105,0.285557,0.009432,0.139906 +bot_03822,splash_driven,0.6726,1.0000,1.0000,1.0000,1.0000,1.0000,0.9976,0.8672,0.8857,0.806672,0.149891,0.033639,0.009799 +bot_03823,network_bound,0.6459,0.6733,0.8481,0.7259,0.8673,0.6976,0.6100,1.0000,0.9209,0.108052,0.367247,0.211907,0.312795 +bot_03824,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8246,1.0000,0.8030,1.0000,0.489383,0.240071,0.121999,0.148547 +bot_03825,splash_driven,0.8551,0.9050,1.0000,1.0000,0.8904,1.0000,0.7675,0.9165,0.8809,0.908035,0.053065,0.024484,0.014416 +bot_03826,reward_heavy,1.0000,0.8393,0.9340,1.0000,0.6493,0.5179,1.0000,0.8499,1.0000,0.522197,0.454891,0.011456,0.011456 +bot_03827,balanced,1.0000,1.0000,1.0000,0.9873,0.9223,1.0000,0.9007,0.9232,0.9108,0.572901,0.278999,0.135941,0.012160 +bot_03828,balanced,0.9517,0.9776,1.0000,1.0000,1.0000,0.9745,1.0000,1.0000,0.9810,0.314730,0.314577,0.258818,0.111875 +bot_03829,reward_heavy,1.0000,0.7748,0.8619,1.0000,0.7293,0.4786,0.9592,1.0000,1.0000,0.697873,0.187058,0.104140,0.010929 +bot_03830,interstitial_focus,0.6587,1.0000,0.9427,0.8064,1.0000,0.8555,0.9503,0.8433,0.9767,0.333592,0.353551,0.254514,0.058342 +bot_03831,interstitial_focus,0.7364,1.0000,0.8820,0.9518,1.0000,0.6140,0.9086,1.0000,1.0000,0.199147,0.456647,0.177451,0.166755 +bot_03832,churn_sensitive,0.7046,0.6343,0.2605,0.5439,0.3334,0.3987,0.7451,1.0000,0.5886,0.268176,0.142313,0.308291,0.281220 +bot_03833,interstitial_focus,0.5899,1.0000,0.6690,0.6236,1.0000,0.4908,0.9347,1.0000,1.0000,0.302128,0.410574,0.245874,0.041423 +bot_03834,network_bound,0.9410,1.0000,0.6112,0.7746,0.8823,0.7644,0.5223,1.0000,0.8866,0.141673,0.195530,0.347220,0.315577 +bot_03835,interstitial_focus,0.8006,1.0000,0.9265,0.8047,1.0000,0.6387,0.8686,1.0000,1.0000,0.371167,0.385646,0.235283,0.007903 +bot_03836,balanced,1.0000,1.0000,1.0000,1.0000,0.7803,0.9127,1.0000,1.0000,1.0000,0.335609,0.314304,0.338461,0.011626 +bot_03837,churn_sensitive,0.4175,0.4135,0.6083,0.6951,0.6944,0.4953,0.6349,1.0000,0.4986,0.443212,0.255663,0.209870,0.091256 +bot_03838,network_bound,0.9981,1.0000,0.6664,0.9169,0.8224,0.6542,0.6810,1.0000,0.8010,0.206598,0.064180,0.326492,0.402730 +bot_03839,network_bound,0.9356,0.9666,0.8201,1.0000,0.8009,0.6168,0.6900,1.0000,0.8037,0.010353,0.151428,0.397540,0.440678 +bot_03840,network_bound,0.8388,0.7916,0.7887,1.0000,0.8201,0.5298,0.7744,1.0000,0.7681,0.083521,0.218926,0.411669,0.285884 +bot_03841,churn_sensitive,0.5615,0.4069,0.4198,0.8138,0.6968,0.2552,0.7065,1.0000,0.6970,0.350865,0.274720,0.277138,0.097278 +bot_03842,splash_driven,1.0000,0.7409,1.0000,0.8526,1.0000,1.0000,0.7695,1.0000,0.9230,0.642832,0.271403,0.075052,0.010713 +bot_03843,balanced,1.0000,1.0000,0.9030,1.0000,1.0000,1.0000,0.8622,1.0000,1.0000,0.425850,0.291714,0.188156,0.094280 +bot_03844,interstitial_focus,0.5280,1.0000,0.7930,0.5928,1.0000,0.6974,0.8651,0.9842,1.0000,0.347313,0.411303,0.102792,0.138592 +bot_03845,churn_sensitive,0.3570,0.8645,0.2320,0.3949,0.4725,0.5215,0.7252,1.0000,0.6990,0.226218,0.351980,0.372774,0.049029 +bot_03846,interstitial_focus,0.8855,1.0000,0.7575,0.9589,1.0000,0.5196,0.9323,0.8987,1.0000,0.343887,0.376132,0.194617,0.085363 +bot_03847,balanced,1.0000,1.0000,1.0000,0.8502,1.0000,1.0000,0.8470,0.8503,0.9472,0.451438,0.294434,0.243299,0.010829 +bot_03848,reward_heavy,1.0000,0.6026,1.0000,1.0000,0.7991,0.4377,1.0000,0.6858,1.0000,0.671576,0.292956,0.023734,0.011734 +bot_03849,network_bound,0.9156,0.8157,0.9090,0.9440,0.9925,0.5918,0.8363,1.0000,0.9299,0.008849,0.269138,0.261247,0.460767 +bot_03850,splash_driven,0.7141,1.0000,1.0000,1.0000,1.0000,1.0000,0.7600,1.0000,0.9256,0.661913,0.238597,0.033748,0.065742 +bot_03851,interstitial_focus,0.5926,1.0000,0.7380,0.6807,1.0000,0.7681,1.0000,1.0000,1.0000,0.258624,0.395947,0.223358,0.122071 +bot_03852,balanced,0.9420,1.0000,0.9823,1.0000,0.8973,0.9003,1.0000,0.8254,0.9152,0.441342,0.256114,0.115766,0.186778 +bot_03853,reward_heavy,1.0000,0.7673,0.8547,1.0000,0.6193,0.5641,0.9533,0.9978,1.0000,0.562963,0.390338,0.037134,0.009566 +bot_03854,balanced,1.0000,1.0000,0.8935,1.0000,1.0000,0.8653,1.0000,0.9162,0.8972,0.265794,0.357951,0.228031,0.148225 +bot_03855,balanced,0.9177,1.0000,1.0000,0.9566,1.0000,1.0000,0.9995,0.8149,1.0000,0.516945,0.363435,0.097809,0.021812 +bot_03856,splash_driven,0.6534,0.8979,1.0000,1.0000,1.0000,1.0000,0.8038,0.9967,0.9486,0.662618,0.163917,0.010542,0.162924 +bot_03857,churn_sensitive,0.3791,0.6600,0.5419,0.4981,0.6159,0.6154,0.7629,1.0000,0.6673,0.390069,0.150820,0.270762,0.188348 +bot_03858,splash_driven,0.7386,0.7154,1.0000,1.0000,1.0000,1.0000,0.8409,1.0000,0.9501,0.593347,0.121860,0.175589,0.109204 +bot_03859,reward_heavy,1.0000,0.6340,0.9801,1.0000,0.9023,0.4371,0.9974,0.8003,1.0000,0.593665,0.147885,0.116044,0.142405 +bot_03860,interstitial_focus,0.6236,1.0000,0.6554,0.7077,1.0000,0.5385,0.9266,0.9916,0.9822,0.345445,0.489160,0.148716,0.016679 +bot_03861,interstitial_focus,0.6436,1.0000,1.0000,0.7801,1.0000,0.5362,0.8414,1.0000,0.9423,0.278512,0.544294,0.079149,0.098044 +bot_03862,reward_heavy,1.0000,0.8321,0.7832,1.0000,0.9190,0.6432,0.9953,0.7373,1.0000,0.440448,0.303276,0.135007,0.121269 +bot_03863,interstitial_focus,0.6687,1.0000,0.5951,0.6604,1.0000,0.7256,0.9021,1.0000,1.0000,0.202499,0.319719,0.282052,0.195730 +bot_03864,reward_heavy,1.0000,0.9440,0.8684,1.0000,0.7260,0.4679,0.8979,0.9098,1.0000,0.697268,0.277753,0.014707,0.010271 +bot_03865,network_bound,0.8147,0.8671,0.5713,0.9551,0.7279,0.5880,0.5713,1.0000,0.9115,0.168666,0.202999,0.276334,0.352002 +bot_03866,balanced,1.0000,0.8800,1.0000,0.8620,0.9075,0.9975,0.8670,1.0000,0.8848,0.360972,0.238062,0.220114,0.180852 +bot_03867,reward_heavy,1.0000,0.8441,0.8343,1.0000,0.8321,0.4911,1.0000,1.0000,1.0000,0.707865,0.170557,0.010139,0.111438 +bot_03868,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9660,1.0000,0.8668,1.0000,1.0000,0.788782,0.087076,0.010305,0.113837 +bot_03869,churn_sensitive,0.6370,0.5459,0.2522,0.7491,0.7058,0.3052,0.7312,1.0000,0.5039,0.176548,0.213274,0.301970,0.308208 +bot_03870,reward_heavy,1.0000,0.8771,0.7204,1.0000,0.9152,0.5924,1.0000,1.0000,1.0000,0.579959,0.251746,0.159691,0.008604 +bot_03871,interstitial_focus,0.6602,1.0000,0.6970,0.5802,1.0000,0.8873,0.8724,0.8552,1.0000,0.261778,0.474296,0.201381,0.062545 +bot_03872,splash_driven,1.0000,0.9453,1.0000,0.8521,0.9498,1.0000,0.9578,0.9716,1.0000,0.697241,0.155463,0.008231,0.139066 +bot_03873,interstitial_focus,0.9373,1.0000,0.9328,0.7888,1.0000,0.8547,1.0000,0.9203,0.9523,0.227694,0.467392,0.211867,0.093047 +bot_03874,interstitial_focus,0.7000,1.0000,0.5909,0.7006,1.0000,0.6372,0.9554,1.0000,1.0000,0.369349,0.351245,0.184679,0.094727 +bot_03875,interstitial_focus,0.8669,1.0000,0.7606,0.9410,1.0000,0.5797,0.8735,1.0000,0.9902,0.367850,0.330434,0.185279,0.116436 +bot_03876,interstitial_focus,0.7138,1.0000,0.9652,0.7001,1.0000,0.8463,0.8233,1.0000,1.0000,0.176050,0.474735,0.338867,0.010348 +bot_03877,splash_driven,0.7964,1.0000,1.0000,0.8304,1.0000,1.0000,1.0000,1.0000,0.9245,0.593372,0.152451,0.124297,0.129881 +bot_03878,splash_driven,0.8715,0.8416,1.0000,1.0000,1.0000,1.0000,1.0000,0.9581,0.8893,0.761692,0.058164,0.170942,0.009203 +bot_03879,network_bound,0.6130,0.7662,0.7620,0.9078,0.6124,0.7277,0.7415,1.0000,0.7527,0.169562,0.144768,0.306611,0.379059 +bot_03880,interstitial_focus,0.8125,1.0000,0.9219,0.5691,1.0000,0.5785,0.8297,1.0000,1.0000,0.398576,0.437169,0.152681,0.011574 +bot_03881,balanced,0.8538,0.9267,1.0000,0.9863,1.0000,0.9035,1.0000,1.0000,0.9379,0.406272,0.289731,0.293610,0.010387 +bot_03882,interstitial_focus,0.5442,1.0000,0.9125,0.7404,1.0000,0.8072,0.9292,0.8983,1.0000,0.216442,0.366779,0.302954,0.113826 +bot_03883,balanced,0.9749,1.0000,1.0000,1.0000,1.0000,1.0000,0.8474,1.0000,0.9757,0.467633,0.249084,0.117678,0.165605 +bot_03884,splash_driven,1.0000,0.7879,1.0000,0.9734,0.9012,1.0000,0.9302,1.0000,0.8618,0.913853,0.037953,0.021657,0.026537 +bot_03885,splash_driven,1.0000,1.0000,1.0000,0.9382,1.0000,1.0000,0.9870,0.8565,0.9671,0.827112,0.049378,0.113570,0.009940 +bot_03886,reward_heavy,1.0000,0.9161,0.8526,1.0000,0.5836,0.5541,1.0000,1.0000,1.0000,0.546830,0.169755,0.184390,0.099024 +bot_03887,balanced,1.0000,1.0000,1.0000,1.0000,0.8450,1.0000,1.0000,1.0000,1.0000,0.354611,0.251092,0.208554,0.185743 +bot_03888,reward_heavy,1.0000,1.0000,0.9786,1.0000,0.6994,0.4287,1.0000,0.9042,1.0000,0.642894,0.204553,0.008979,0.143573 +bot_03889,reward_heavy,1.0000,0.8000,0.6800,1.0000,0.8394,0.7502,1.0000,0.7599,1.0000,0.557577,0.325323,0.044894,0.072206 +bot_03890,reward_heavy,1.0000,0.8794,0.8885,1.0000,0.9708,0.6217,1.0000,0.9435,1.0000,0.750043,0.149458,0.010081,0.090418 +bot_03891,reward_heavy,1.0000,0.6035,0.9680,1.0000,0.7778,0.5783,1.0000,0.9756,1.0000,0.560701,0.258470,0.171854,0.008975 +bot_03892,interstitial_focus,0.6605,1.0000,0.8374,0.9461,1.0000,0.7747,0.8747,0.9992,1.0000,0.196224,0.439629,0.204887,0.159260 +bot_03893,balanced,1.0000,1.0000,1.0000,0.8826,1.0000,0.9887,1.0000,1.0000,0.9852,0.291383,0.233903,0.259536,0.215178 +bot_03894,splash_driven,0.6441,1.0000,1.0000,1.0000,0.9946,1.0000,0.8804,0.9649,1.0000,0.820858,0.066581,0.011363,0.101198 +bot_03895,splash_driven,0.6742,0.9870,1.0000,0.8265,0.8171,1.0000,0.9151,1.0000,1.0000,0.644003,0.139284,0.132220,0.084493 +bot_03896,balanced,0.8346,1.0000,1.0000,1.0000,0.9488,0.9739,0.9100,0.8626,1.0000,0.293445,0.341064,0.179999,0.185492 +bot_03897,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9730,0.9206,1.0000,0.9929,0.445349,0.409710,0.135653,0.009288 +bot_03898,splash_driven,0.9606,1.0000,1.0000,0.9110,1.0000,1.0000,0.9066,1.0000,0.9833,0.689840,0.193197,0.108607,0.008356 +bot_03899,interstitial_focus,0.6224,1.0000,0.6896,0.8313,1.0000,0.5945,0.9029,0.9497,1.0000,0.268479,0.465884,0.206726,0.058912 +bot_03900,reward_heavy,1.0000,0.7890,0.8457,1.0000,0.6010,0.5631,0.9232,0.7578,1.0000,0.526839,0.151093,0.160025,0.162043 +bot_03901,splash_driven,0.8454,0.9077,1.0000,1.0000,0.8272,1.0000,0.7772,0.8669,1.0000,0.695281,0.285134,0.009793,0.009793 +bot_03902,reward_heavy,1.0000,0.7321,0.8605,1.0000,0.8812,0.7253,1.0000,0.8983,1.0000,0.556304,0.287715,0.099032,0.056950 +bot_03903,interstitial_focus,0.7771,1.0000,0.6676,0.8303,1.0000,0.6060,0.9793,0.9916,1.0000,0.195316,0.513311,0.257021,0.034352 +bot_03904,balanced,0.8844,1.0000,1.0000,1.0000,0.9454,0.9604,1.0000,0.8411,1.0000,0.340287,0.243864,0.374624,0.041225 +bot_03905,splash_driven,1.0000,1.0000,1.0000,0.8994,1.0000,1.0000,0.9583,1.0000,0.8759,0.614378,0.190392,0.142621,0.052609 +bot_03906,splash_driven,0.7000,1.0000,1.0000,0.9354,0.9912,1.0000,0.9741,0.9459,0.9040,0.765387,0.209600,0.010361,0.014651 +bot_03907,reward_heavy,1.0000,1.0000,0.9263,1.0000,0.6563,0.6123,1.0000,1.0000,1.0000,0.590272,0.280899,0.077450,0.051378 +bot_03908,churn_sensitive,0.5354,0.7666,0.3353,0.7791,0.6750,0.4829,0.8209,1.0000,0.6036,0.259383,0.304359,0.209718,0.226541 +bot_03909,balanced,1.0000,1.0000,1.0000,1.0000,0.9484,0.9745,0.9942,0.8068,1.0000,0.351465,0.359296,0.264616,0.024623 +bot_03910,balanced,1.0000,0.9475,1.0000,1.0000,1.0000,0.9173,1.0000,1.0000,1.0000,0.421923,0.384427,0.184983,0.008667 +bot_03911,splash_driven,0.9964,0.7439,1.0000,0.9594,0.8162,1.0000,1.0000,1.0000,0.9214,0.648921,0.244013,0.098756,0.008310 +bot_03912,interstitial_focus,0.5707,1.0000,0.9650,0.7072,1.0000,0.5625,0.9084,1.0000,0.9366,0.308253,0.512377,0.168885,0.010485 +bot_03913,reward_heavy,1.0000,0.6635,1.0000,1.0000,0.6622,0.6581,1.0000,1.0000,1.0000,0.550265,0.296875,0.043727,0.109133 +bot_03914,network_bound,0.7748,0.6110,0.8976,0.9082,0.5628,0.6681,0.8075,1.0000,0.7136,0.196280,0.195578,0.177342,0.430800 +bot_03915,splash_driven,0.9071,0.7412,1.0000,0.8528,1.0000,1.0000,0.9600,0.8952,0.9328,0.708864,0.187184,0.007909,0.096043 +bot_03916,reward_heavy,1.0000,0.6617,0.7346,1.0000,0.6284,0.5642,1.0000,0.9420,1.0000,0.540418,0.405152,0.043075,0.011356 +bot_03917,network_bound,0.9354,0.8183,0.8280,0.7931,0.6752,0.8998,0.5280,1.0000,0.8530,0.196760,0.157359,0.216003,0.429878 +bot_03918,interstitial_focus,0.5298,1.0000,0.6710,0.6810,1.0000,0.4954,0.8242,1.0000,1.0000,0.252631,0.505322,0.229910,0.012137 +bot_03919,network_bound,0.8542,0.6851,1.0000,0.9522,0.8214,0.6383,0.6118,1.0000,0.9201,0.116607,0.152915,0.186472,0.544006 +bot_03920,interstitial_focus,0.6796,1.0000,0.7737,0.9001,1.0000,0.6912,1.0000,1.0000,1.0000,0.351103,0.436400,0.079308,0.133189 +bot_03921,interstitial_focus,0.5191,1.0000,0.7889,0.6023,1.0000,0.8353,0.9222,1.0000,1.0000,0.335574,0.599321,0.054297,0.010808 +bot_03922,balanced,0.9580,1.0000,1.0000,1.0000,0.8776,0.8601,0.9257,0.8684,0.9404,0.513086,0.378867,0.098389,0.009658 +bot_03923,churn_sensitive,0.7224,0.4757,0.6110,0.6508,0.7070,0.3339,0.8104,1.0000,0.5654,0.165373,0.243491,0.453068,0.138068 +bot_03924,balanced,0.9422,1.0000,1.0000,0.8741,1.0000,0.9871,1.0000,1.0000,1.0000,0.509035,0.321722,0.154820,0.014423 +bot_03925,churn_sensitive,0.5619,0.8723,0.4858,0.7412,0.5882,0.3338,0.7352,1.0000,0.5047,0.370586,0.191077,0.273686,0.164651 +bot_03926,balanced,1.0000,0.9921,0.8716,1.0000,0.8236,0.8878,1.0000,1.0000,1.0000,0.526577,0.348014,0.113378,0.012030 +bot_03927,churn_sensitive,0.4042,0.7169,0.2748,0.6284,0.3377,0.6015,0.7740,1.0000,0.4952,0.173251,0.373669,0.336493,0.116587 +bot_03928,splash_driven,0.8067,0.9512,1.0000,0.8914,0.8378,1.0000,0.9655,0.9165,1.0000,0.855213,0.040595,0.009939,0.094253 +bot_03929,splash_driven,0.6611,1.0000,1.0000,1.0000,0.8458,1.0000,0.8067,1.0000,0.9631,0.631369,0.213705,0.147143,0.007783 +bot_03930,reward_heavy,1.0000,0.8595,0.5800,1.0000,0.7292,0.6854,0.8808,0.8422,1.0000,0.543872,0.231189,0.174657,0.050283 +bot_03931,splash_driven,0.9979,1.0000,1.0000,0.8128,1.0000,1.0000,0.7545,1.0000,1.0000,0.793234,0.090242,0.009377,0.107146 +bot_03932,reward_heavy,1.0000,0.6274,0.7907,1.0000,0.9605,0.4934,0.9995,0.8523,1.0000,0.527762,0.361871,0.101784,0.008583 +bot_03933,splash_driven,0.8593,0.9393,1.0000,0.9078,1.0000,1.0000,0.8574,1.0000,0.9171,0.708858,0.208093,0.073886,0.009163 +bot_03934,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9760,0.8059,0.9365,0.284404,0.350245,0.258475,0.106875 +bot_03935,splash_driven,0.7407,1.0000,1.0000,1.0000,0.9953,1.0000,0.7634,0.8727,0.9084,0.691108,0.139580,0.132654,0.036658 +bot_03936,reward_heavy,1.0000,0.7809,0.6551,1.0000,0.9450,0.5980,1.0000,0.7124,1.0000,0.814091,0.159413,0.014799,0.011698 +bot_03937,balanced,1.0000,1.0000,1.0000,0.8774,1.0000,1.0000,1.0000,0.9431,0.9631,0.370367,0.393665,0.221509,0.014459 +bot_03938,reward_heavy,1.0000,0.5813,0.6850,1.0000,0.9543,0.7129,1.0000,1.0000,1.0000,0.694365,0.148810,0.126716,0.030109 +bot_03939,network_bound,0.9507,0.8932,0.6940,0.9413,0.6360,0.5751,0.5607,1.0000,0.7135,0.065815,0.256824,0.296149,0.381212 +bot_03940,reward_heavy,1.0000,0.6571,0.7237,1.0000,0.9605,0.5141,1.0000,0.7397,1.0000,0.439481,0.365826,0.185333,0.009359 +bot_03941,reward_heavy,1.0000,0.6810,0.7162,1.0000,0.7258,0.4077,1.0000,0.9543,1.0000,0.595140,0.384094,0.010383,0.010383 +bot_03942,interstitial_focus,0.6135,1.0000,0.9476,0.7013,1.0000,0.6771,0.9191,0.8779,1.0000,0.309382,0.591892,0.087833,0.010894 +bot_03943,balanced,1.0000,1.0000,1.0000,0.8506,0.9115,1.0000,0.8636,1.0000,0.8826,0.363109,0.383432,0.243360,0.010099 +bot_03944,balanced,1.0000,1.0000,0.9712,1.0000,1.0000,1.0000,1.0000,1.0000,0.9193,0.425507,0.370798,0.195305,0.008390 +bot_03945,network_bound,0.6249,0.8267,0.6638,0.8119,0.8702,0.6143,0.7286,1.0000,0.8481,0.188233,0.135183,0.308809,0.367774 +bot_03946,interstitial_focus,0.8944,1.0000,1.0000,0.9238,1.0000,0.7436,0.9500,1.0000,0.9978,0.296351,0.400719,0.240312,0.062618 +bot_03947,network_bound,0.9099,0.7561,0.8625,0.6808,0.8870,0.9008,0.7971,1.0000,0.7732,0.088091,0.215987,0.203991,0.491931 +bot_03948,interstitial_focus,0.7823,1.0000,0.7910,0.7686,1.0000,0.8225,0.9232,0.8579,1.0000,0.239335,0.424544,0.071039,0.265082 +bot_03949,splash_driven,1.0000,0.9497,1.0000,1.0000,0.9610,1.0000,0.9776,0.8494,0.9161,0.622585,0.131846,0.159817,0.085751 +bot_03950,balanced,1.0000,1.0000,1.0000,1.0000,0.7994,0.9797,0.8993,1.0000,1.0000,0.327461,0.295553,0.277773,0.099213 +bot_03951,reward_heavy,1.0000,0.8963,0.9981,1.0000,0.7870,0.5793,1.0000,0.9321,1.0000,0.673808,0.277774,0.010665,0.037752 +bot_03952,interstitial_focus,0.8101,1.0000,1.0000,0.6917,1.0000,0.6361,0.9822,0.8681,1.0000,0.246379,0.382221,0.177827,0.193574 +bot_03953,splash_driven,0.7583,0.7418,1.0000,0.9583,0.9446,1.0000,0.9679,0.8426,1.0000,0.702710,0.166289,0.009864,0.121137 +bot_03954,interstitial_focus,0.8019,1.0000,0.7523,0.8087,1.0000,0.5621,0.9382,1.0000,0.9676,0.317776,0.443086,0.230718,0.008420 +bot_03955,reward_heavy,1.0000,1.0000,0.9324,1.0000,0.7150,0.6609,1.0000,0.8477,1.0000,0.624160,0.177521,0.189236,0.009084 +bot_03956,splash_driven,0.7192,0.7167,1.0000,1.0000,1.0000,1.0000,0.9840,1.0000,0.9778,0.637316,0.195747,0.158349,0.008588 +bot_03957,churn_sensitive,0.4657,0.4334,0.2581,0.7701,0.4951,0.2935,0.6322,1.0000,0.5001,0.194038,0.237378,0.292223,0.276360 +bot_03958,splash_driven,1.0000,0.9069,1.0000,0.9586,0.8939,1.0000,1.0000,0.9778,1.0000,0.757819,0.222212,0.011501,0.008467 +bot_03959,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8853,1.0000,0.9452,0.8888,0.257559,0.347232,0.230932,0.164276 +bot_03960,interstitial_focus,0.6651,1.0000,0.6494,0.8984,1.0000,0.7254,1.0000,0.8546,1.0000,0.384618,0.348615,0.256658,0.010109 +bot_03961,churn_sensitive,0.5330,0.5278,0.2664,0.8002,0.4586,0.3834,0.6304,1.0000,0.5167,0.159820,0.267802,0.239439,0.332939 +bot_03962,splash_driven,0.6847,0.9835,1.0000,1.0000,0.8510,1.0000,0.7956,0.8613,1.0000,0.833554,0.137843,0.010026,0.018577 +bot_03963,interstitial_focus,0.5752,1.0000,0.6530,0.9122,1.0000,0.8303,0.9341,1.0000,0.9826,0.242061,0.443059,0.250882,0.063998 +bot_03964,interstitial_focus,0.6337,1.0000,1.0000,0.8840,1.0000,0.7683,0.9663,0.9023,1.0000,0.399098,0.369043,0.148843,0.083016 +bot_03965,reward_heavy,1.0000,0.6057,0.6508,1.0000,0.7983,0.4217,1.0000,0.7655,1.0000,0.661562,0.186607,0.116655,0.035176 +bot_03966,balanced,1.0000,1.0000,1.0000,0.9206,0.8264,1.0000,0.9058,1.0000,1.0000,0.293268,0.386334,0.144290,0.176108 +bot_03967,balanced,0.8622,1.0000,1.0000,1.0000,0.8543,0.7829,0.9964,0.9279,1.0000,0.437590,0.309840,0.123890,0.128679 +bot_03968,network_bound,0.9652,0.8039,0.7481,0.7271,0.7716,0.5805,0.5921,1.0000,0.8596,0.206764,0.103072,0.219487,0.470677 +bot_03969,balanced,0.8138,1.0000,1.0000,1.0000,0.9600,0.7903,1.0000,1.0000,1.0000,0.419660,0.260227,0.233525,0.086588 +bot_03970,splash_driven,0.8880,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8975,0.9099,0.658545,0.185076,0.089998,0.066380 +bot_03971,churn_sensitive,0.4657,0.5571,0.4358,0.7520,0.5216,0.5578,0.8760,1.0000,0.5526,0.243510,0.295108,0.314854,0.146528 +bot_03972,reward_heavy,1.0000,0.9231,0.9458,1.0000,0.6429,0.7020,1.0000,0.7335,1.0000,0.445359,0.310040,0.235183,0.009418 +bot_03973,interstitial_focus,0.5114,1.0000,0.9711,0.5848,1.0000,0.5230,0.8612,0.8478,1.0000,0.312938,0.455306,0.219754,0.012002 +bot_03974,balanced,0.9431,1.0000,1.0000,0.9515,1.0000,1.0000,0.9368,1.0000,0.9956,0.374815,0.374236,0.238146,0.012803 +bot_03975,balanced,0.8569,1.0000,1.0000,0.9810,0.8144,0.9005,0.9953,0.8749,0.9073,0.346155,0.320116,0.250357,0.083372 +bot_03976,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9037,1.0000,0.8549,1.0000,0.9983,0.828964,0.147028,0.012004,0.012004 +bot_03977,reward_heavy,1.0000,0.6301,0.7115,1.0000,0.9663,0.6114,1.0000,0.7335,1.0000,0.587623,0.183529,0.131249,0.097599 +bot_03978,splash_driven,0.9121,0.9853,1.0000,0.9714,0.8802,1.0000,1.0000,1.0000,0.9079,0.811191,0.165212,0.010047,0.013550 +bot_03979,reward_heavy,1.0000,0.8099,0.9151,1.0000,0.9589,0.6480,1.0000,1.0000,1.0000,0.469575,0.363163,0.156990,0.010271 +bot_03980,splash_driven,0.7361,0.8495,1.0000,0.9151,0.9004,1.0000,1.0000,0.9079,0.8536,0.882640,0.096222,0.010569,0.010569 +bot_03981,network_bound,1.0000,0.7836,0.7532,0.6695,0.7096,0.5114,0.5924,1.0000,0.8095,0.171849,0.165102,0.322746,0.340302 +bot_03982,interstitial_focus,0.6386,1.0000,1.0000,0.7099,1.0000,0.5889,0.9197,0.8360,0.9309,0.372012,0.462046,0.154654,0.011288 +bot_03983,interstitial_focus,0.7764,1.0000,0.7132,0.8292,1.0000,0.5665,0.8065,1.0000,0.9840,0.256059,0.423346,0.258013,0.062582 +bot_03984,reward_heavy,1.0000,0.9596,0.9452,1.0000,0.7520,0.5608,1.0000,0.8625,1.0000,0.588401,0.389405,0.011097,0.011097 +bot_03985,balanced,1.0000,1.0000,1.0000,0.8471,1.0000,1.0000,0.9455,1.0000,0.9379,0.443282,0.200654,0.236966,0.119098 +bot_03986,splash_driven,1.0000,0.7501,1.0000,0.9486,1.0000,1.0000,0.9393,0.8811,0.9766,0.773713,0.099254,0.008938,0.118095 +bot_03987,churn_sensitive,0.7338,0.7135,0.2956,0.5283,0.5582,0.3090,0.8399,1.0000,0.6090,0.238745,0.233466,0.360078,0.167710 +bot_03988,reward_heavy,1.0000,0.7702,0.9427,1.0000,0.5876,0.4389,0.8825,0.9843,1.0000,0.582697,0.173447,0.144448,0.099408 +bot_03989,splash_driven,1.0000,0.6907,1.0000,0.8417,1.0000,1.0000,1.0000,0.8836,0.9797,0.736880,0.194990,0.054512,0.013618 +bot_03990,interstitial_focus,0.9454,1.0000,1.0000,0.8648,1.0000,0.8672,0.8865,0.8661,1.0000,0.310983,0.486239,0.098745,0.104033 +bot_03991,reward_heavy,1.0000,0.9540,0.9897,1.0000,0.7991,0.4168,0.8959,0.7326,1.0000,0.621796,0.226036,0.060007,0.092161 +bot_03992,interstitial_focus,0.8630,1.0000,0.6293,0.9118,1.0000,0.5513,1.0000,1.0000,1.0000,0.387488,0.384720,0.050800,0.176992 +bot_03993,splash_driven,0.9701,1.0000,1.0000,0.8240,0.8529,1.0000,1.0000,0.8394,1.0000,0.566331,0.214090,0.078292,0.141287 +bot_03994,reward_heavy,1.0000,0.8485,0.6180,1.0000,0.6796,0.7273,0.9781,0.7344,1.0000,0.649260,0.185040,0.156107,0.009594 +bot_03995,reward_heavy,1.0000,0.7336,0.8329,1.0000,0.8133,0.6394,1.0000,0.9654,1.0000,0.554576,0.225100,0.124116,0.096207 +bot_03996,interstitial_focus,0.7168,1.0000,0.6128,0.9666,1.0000,0.7384,0.9897,1.0000,0.9321,0.192952,0.522567,0.275009,0.009471 +bot_03997,churn_sensitive,0.7737,0.6854,0.3736,0.4052,0.5743,0.6526,0.8756,1.0000,0.6537,0.161004,0.213296,0.341037,0.284662 +bot_03998,interstitial_focus,0.9540,1.0000,0.7896,0.8946,1.0000,0.7105,0.9159,0.8845,0.9407,0.358715,0.325367,0.225792,0.090126 +bot_03999,network_bound,0.6792,0.8384,0.8672,0.7894,0.5600,0.5643,0.6277,1.0000,0.7089,0.101018,0.067727,0.318083,0.513172 +bot_04000,splash_driven,0.7181,0.7484,1.0000,1.0000,0.8676,1.0000,0.8983,0.8860,0.8920,0.697551,0.232163,0.008890,0.061396 +bot_04001,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.356379,0.241899,0.232455,0.169267 +bot_04002,network_bound,0.6691,0.9113,0.7775,0.8533,0.7209,0.7765,0.6597,1.0000,0.7600,0.120745,0.148527,0.321322,0.409407 +bot_04003,splash_driven,0.8960,0.7953,1.0000,0.8132,1.0000,1.0000,0.9456,1.0000,0.9424,0.774744,0.176429,0.040079,0.008748 +bot_04004,interstitial_focus,0.4942,1.0000,0.8883,0.9882,1.0000,0.9110,0.8246,1.0000,0.9664,0.216709,0.415538,0.264496,0.103257 +bot_04005,balanced,1.0000,1.0000,0.9008,0.8866,0.9745,0.9657,1.0000,1.0000,0.9451,0.320250,0.504845,0.164081,0.010824 +bot_04006,churn_sensitive,0.6604,0.5686,0.4228,0.5642,0.3386,0.3579,0.6792,0.9814,0.5280,0.272106,0.215734,0.333338,0.178821 +bot_04007,interstitial_focus,0.9510,1.0000,0.7521,0.9106,1.0000,0.5573,0.9411,0.8809,1.0000,0.437507,0.412367,0.138516,0.011609 +bot_04008,interstitial_focus,0.8175,1.0000,0.9225,0.5996,1.0000,0.6195,1.0000,0.9694,1.0000,0.350345,0.464195,0.136697,0.048762 +bot_04009,interstitial_focus,0.7502,1.0000,0.5976,0.9052,1.0000,0.8040,0.8977,1.0000,1.0000,0.344040,0.560446,0.084966,0.010548 +bot_04010,reward_heavy,1.0000,0.6369,0.8471,1.0000,0.7244,0.5639,0.9476,0.9057,1.0000,0.499148,0.287389,0.204420,0.009043 +bot_04011,splash_driven,0.8750,0.7905,1.0000,1.0000,0.9272,1.0000,1.0000,0.9557,1.0000,0.655005,0.207458,0.088454,0.049083 +bot_04012,balanced,1.0000,1.0000,1.0000,1.0000,0.8060,1.0000,1.0000,1.0000,0.9207,0.341218,0.243101,0.293216,0.122465 +bot_04013,splash_driven,0.7397,0.9919,1.0000,0.9638,0.9401,1.0000,0.9568,1.0000,0.9326,0.652697,0.101249,0.114221,0.131833 +bot_04014,network_bound,1.0000,0.6500,0.9580,1.0000,0.6946,0.5233,0.6759,1.0000,0.9054,0.086356,0.280598,0.344548,0.288498 +bot_04015,interstitial_focus,0.5827,1.0000,1.0000,0.9461,1.0000,0.9177,1.0000,0.9250,1.0000,0.329912,0.577380,0.078695,0.014013 +bot_04016,balanced,1.0000,1.0000,1.0000,0.9868,1.0000,1.0000,0.8665,1.0000,1.0000,0.420401,0.358555,0.106949,0.114095 +bot_04017,reward_heavy,1.0000,0.6882,0.8215,1.0000,0.6738,0.6306,1.0000,0.8341,1.0000,0.543108,0.319814,0.095107,0.041970 +bot_04018,reward_heavy,1.0000,0.8051,0.6467,1.0000,0.8879,0.6808,1.0000,0.7566,1.0000,0.606717,0.334426,0.050716,0.008141 +bot_04019,splash_driven,0.8250,0.7181,1.0000,1.0000,0.9005,1.0000,0.9234,0.8258,0.8452,0.579632,0.273730,0.008482,0.138156 +bot_04020,reward_heavy,1.0000,0.8112,0.7953,1.0000,0.7650,0.4757,1.0000,0.7289,1.0000,0.511405,0.252285,0.090732,0.145578 +bot_04021,reward_heavy,1.0000,1.0000,0.9402,1.0000,0.6787,0.5632,1.0000,0.9038,1.0000,0.407074,0.313385,0.180523,0.099018 +bot_04022,balanced,0.9431,1.0000,1.0000,0.9815,1.0000,1.0000,0.8977,0.9063,1.0000,0.323591,0.414272,0.205650,0.056487 +bot_04023,splash_driven,0.6553,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9748,0.687295,0.207049,0.043378,0.062278 +bot_04024,interstitial_focus,0.9122,1.0000,1.0000,0.7605,1.0000,0.7401,0.9799,1.0000,1.0000,0.297265,0.419374,0.274406,0.008955 +bot_04025,splash_driven,1.0000,0.7619,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9692,0.763109,0.080206,0.144707,0.011977 +bot_04026,reward_heavy,1.0000,0.7814,0.8311,1.0000,0.5965,0.7470,1.0000,0.9723,1.0000,0.495709,0.289828,0.170652,0.043811 +bot_04027,churn_sensitive,0.7481,0.4785,0.5645,0.7331,0.4144,0.3166,0.6972,1.0000,0.6050,0.273666,0.274665,0.252650,0.199019 +bot_04028,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9078,1.0000,0.7932,1.0000,1.0000,0.599227,0.274462,0.060077,0.066234 +bot_04029,interstitial_focus,0.9466,1.0000,0.7981,0.7285,1.0000,0.8863,1.0000,1.0000,1.0000,0.233812,0.340820,0.247307,0.178061 +bot_04030,network_bound,0.7698,0.7304,0.7800,1.0000,0.9136,0.9009,0.6712,1.0000,0.7699,0.139742,0.062091,0.431131,0.367036 +bot_04031,interstitial_focus,0.8453,1.0000,0.9981,0.8102,1.0000,0.8728,0.9488,1.0000,0.9768,0.253027,0.397122,0.193332,0.156520 +bot_04032,interstitial_focus,0.5977,1.0000,0.9267,0.9975,1.0000,0.5340,0.9375,1.0000,1.0000,0.309077,0.446488,0.228966,0.015469 +bot_04033,network_bound,0.9537,0.8737,0.6779,0.6752,0.5780,0.5877,0.7768,1.0000,0.7188,0.013228,0.254602,0.227013,0.505156 +bot_04034,interstitial_focus,0.6314,1.0000,0.8588,0.9864,1.0000,0.9010,0.9366,1.0000,1.0000,0.362918,0.334372,0.284689,0.018021 +bot_04035,splash_driven,1.0000,0.7944,1.0000,1.0000,0.8322,1.0000,0.8600,1.0000,1.0000,0.520830,0.219924,0.136767,0.122479 +bot_04036,interstitial_focus,0.7937,1.0000,0.7314,0.8072,1.0000,0.6374,0.8612,0.8550,1.0000,0.336922,0.316627,0.200755,0.145697 +bot_04037,reward_heavy,1.0000,1.0000,0.7394,1.0000,0.9481,0.8175,0.9501,0.9077,1.0000,0.540087,0.362273,0.089193,0.008447 +bot_04038,reward_heavy,1.0000,0.8257,1.0000,1.0000,0.7624,0.5559,0.9550,0.8218,1.0000,0.609681,0.269946,0.108932,0.011441 +bot_04039,balanced,1.0000,1.0000,1.0000,1.0000,0.8677,0.9548,0.8909,0.8548,0.9180,0.407639,0.294065,0.279478,0.018818 +bot_04040,network_bound,1.0000,0.7090,0.8906,0.9907,0.6910,0.5516,0.6840,1.0000,0.9329,0.138575,0.314590,0.271595,0.275240 +bot_04041,interstitial_focus,0.7666,1.0000,0.9938,0.7991,1.0000,0.5422,0.9081,0.8603,1.0000,0.375038,0.472986,0.142870,0.009105 +bot_04042,network_bound,0.8112,0.8513,0.8383,0.9292,0.8923,0.6354,0.7582,1.0000,0.9063,0.121874,0.172777,0.217634,0.487715 +bot_04043,splash_driven,1.0000,0.8229,1.0000,1.0000,0.8712,1.0000,1.0000,0.8135,0.9228,0.743012,0.125181,0.121266,0.010541 +bot_04044,balanced,1.0000,1.0000,0.8986,1.0000,0.9052,1.0000,1.0000,0.9065,1.0000,0.401778,0.302832,0.286626,0.008764 +bot_04045,balanced,1.0000,1.0000,0.9630,1.0000,1.0000,1.0000,0.9565,0.9754,1.0000,0.417824,0.414670,0.157066,0.010440 +bot_04046,reward_heavy,1.0000,0.7755,0.7550,1.0000,0.6233,0.8284,1.0000,0.9858,1.0000,0.415802,0.313365,0.188852,0.081981 +bot_04047,splash_driven,0.7983,0.8901,1.0000,1.0000,1.0000,1.0000,0.7658,1.0000,0.9945,0.757674,0.135576,0.095456,0.011295 +bot_04048,reward_heavy,1.0000,0.8242,0.9646,1.0000,0.5520,0.8075,0.9008,0.7878,1.0000,0.425367,0.323411,0.155382,0.095841 +bot_04049,splash_driven,0.7900,0.8782,1.0000,1.0000,0.8441,1.0000,1.0000,0.8138,1.0000,0.629244,0.238908,0.122523,0.009325 +bot_04050,splash_driven,1.0000,0.7715,1.0000,0.9742,1.0000,1.0000,0.8161,1.0000,1.0000,0.764858,0.211527,0.011807,0.011807 +bot_04051,churn_sensitive,0.5213,0.8096,0.6353,0.6911,0.4958,0.6752,0.6458,1.0000,0.5665,0.270499,0.232654,0.253169,0.243678 +bot_04052,interstitial_focus,0.6144,1.0000,0.9125,0.7621,1.0000,0.8489,1.0000,1.0000,0.9559,0.373169,0.370205,0.143130,0.113496 +bot_04053,splash_driven,0.9849,0.7608,1.0000,0.8285,1.0000,1.0000,1.0000,1.0000,1.0000,0.740648,0.094942,0.153359,0.011051 +bot_04054,reward_heavy,1.0000,0.7588,1.0000,1.0000,0.5515,0.6463,1.0000,0.8347,1.0000,0.480927,0.297100,0.189575,0.032398 +bot_04055,interstitial_focus,0.8437,1.0000,0.6141,0.7300,1.0000,0.5096,0.9225,1.0000,1.0000,0.178071,0.455121,0.281701,0.085107 +bot_04056,reward_heavy,1.0000,0.7866,0.7896,1.0000,0.6778,0.6847,1.0000,1.0000,1.0000,0.722799,0.246700,0.015250,0.015250 +bot_04057,splash_driven,1.0000,0.9510,1.0000,0.8865,0.9691,1.0000,0.8753,1.0000,0.9823,0.729111,0.251618,0.009636,0.009636 +bot_04058,interstitial_focus,0.6753,1.0000,0.7160,0.6089,1.0000,0.8624,0.8108,0.8849,0.9802,0.326770,0.493723,0.170647,0.008860 +bot_04059,interstitial_focus,0.9405,1.0000,0.9616,0.7137,1.0000,0.7262,0.8171,1.0000,1.0000,0.481656,0.398610,0.081364,0.038370 +bot_04060,splash_driven,0.6622,0.7082,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9385,0.748808,0.083201,0.157996,0.009995 +bot_04061,reward_heavy,1.0000,0.7902,0.6282,1.0000,0.8400,0.8181,1.0000,0.9678,1.0000,0.634015,0.331259,0.008701,0.026025 +bot_04062,churn_sensitive,0.3725,0.8715,0.3496,0.7276,0.7627,0.6768,0.5856,1.0000,0.5377,0.136616,0.172020,0.334397,0.356967 +bot_04063,interstitial_focus,0.5573,1.0000,0.9705,0.8739,1.0000,0.8421,0.9975,0.9156,1.0000,0.268491,0.395771,0.249143,0.086595 +bot_04064,churn_sensitive,0.3120,0.7320,0.5943,0.4768,0.7447,0.6650,0.7757,1.0000,0.5243,0.327507,0.281291,0.338705,0.052498 +bot_04065,balanced,1.0000,1.0000,0.8743,0.9585,1.0000,0.9888,1.0000,1.0000,1.0000,0.287066,0.218308,0.321469,0.173157 +bot_04066,balanced,1.0000,1.0000,1.0000,0.8694,1.0000,1.0000,1.0000,0.9448,0.9658,0.532109,0.250013,0.168935,0.048942 +bot_04067,splash_driven,0.8119,1.0000,1.0000,1.0000,1.0000,1.0000,0.8939,1.0000,0.9835,0.629810,0.100074,0.151170,0.118946 +bot_04068,interstitial_focus,0.7343,1.0000,0.7578,0.8655,1.0000,0.7013,1.0000,0.9000,1.0000,0.284552,0.336561,0.355499,0.023388 +bot_04069,reward_heavy,1.0000,0.7826,0.7689,1.0000,0.5479,0.5722,0.9530,0.8409,1.0000,0.507740,0.324643,0.090013,0.077604 +bot_04070,balanced,0.9584,0.9042,0.9508,1.0000,1.0000,1.0000,1.0000,1.0000,0.9868,0.283631,0.309440,0.239802,0.167127 +bot_04071,balanced,0.9446,1.0000,1.0000,1.0000,1.0000,0.8445,0.9883,1.0000,0.9025,0.441063,0.374750,0.101647,0.082539 +bot_04072,interstitial_focus,0.4945,1.0000,0.7808,0.6999,1.0000,0.8178,0.9456,1.0000,1.0000,0.321548,0.403174,0.246642,0.028636 +bot_04073,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9215,0.8214,0.9870,0.452837,0.191808,0.301601,0.053753 +bot_04074,network_bound,0.6515,0.9430,0.8511,1.0000,0.8798,0.6071,0.7093,1.0000,0.7451,0.160995,0.189695,0.353927,0.295383 +bot_04075,interstitial_focus,0.9160,1.0000,0.6835,0.7842,1.0000,0.8413,0.8407,0.8367,1.0000,0.195851,0.568947,0.225008,0.010193 +bot_04076,balanced,1.0000,1.0000,1.0000,1.0000,0.9067,1.0000,0.9399,0.9496,0.9000,0.393711,0.285370,0.300140,0.020778 +bot_04077,splash_driven,0.7111,0.8360,1.0000,1.0000,0.9954,1.0000,0.9111,1.0000,1.0000,0.730715,0.135098,0.125376,0.008811 +bot_04078,balanced,1.0000,1.0000,1.0000,0.8793,1.0000,1.0000,0.9613,1.0000,0.9434,0.265356,0.321305,0.269194,0.144145 +bot_04079,reward_heavy,1.0000,0.9338,0.5860,1.0000,0.6661,0.7366,0.9880,0.9551,1.0000,0.679821,0.145905,0.141416,0.032858 +bot_04080,churn_sensitive,0.7393,0.4012,0.6622,0.6455,0.5256,0.4336,0.7334,1.0000,0.6042,0.195023,0.364619,0.376480,0.063878 +bot_04081,balanced,1.0000,0.9519,1.0000,1.0000,0.8085,0.8909,0.9070,0.9958,0.9562,0.238620,0.359187,0.297055,0.105138 +bot_04082,interstitial_focus,0.7684,1.0000,0.8204,0.5636,1.0000,0.5553,1.0000,1.0000,0.9484,0.370289,0.377794,0.101524,0.150393 +bot_04083,balanced,1.0000,1.0000,0.8632,1.0000,0.8130,0.9550,0.8458,1.0000,1.0000,0.356651,0.226724,0.398115,0.018511 +bot_04084,interstitial_focus,0.5441,1.0000,0.7036,0.8651,1.0000,0.8631,0.9221,0.8666,1.0000,0.328002,0.403718,0.258360,0.009920 +bot_04085,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8048,1.0000,0.371931,0.348753,0.271750,0.007566 +bot_04086,balanced,0.9174,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9958,0.9275,0.369418,0.359253,0.106295,0.165033 +bot_04087,reward_heavy,1.0000,0.8368,0.6444,1.0000,0.7996,0.7588,1.0000,1.0000,1.0000,0.657346,0.206771,0.050738,0.085145 +bot_04088,network_bound,1.0000,0.9294,1.0000,0.9471,0.9729,0.9141,0.6058,1.0000,0.9260,0.088776,0.160625,0.389954,0.360645 +bot_04089,churn_sensitive,0.7699,0.7716,0.3420,0.6256,0.7321,0.3656,0.7393,1.0000,0.6529,0.310185,0.231102,0.267606,0.191107 +bot_04090,churn_sensitive,0.4735,0.6001,0.6769,0.8035,0.7074,0.4086,0.6089,1.0000,0.6458,0.283834,0.166323,0.259108,0.290735 +bot_04091,reward_heavy,1.0000,0.6740,0.6338,1.0000,0.5991,0.5998,1.0000,0.7275,1.0000,0.731705,0.140869,0.117483,0.009944 +bot_04092,reward_heavy,1.0000,0.9896,0.6356,1.0000,0.7597,0.7762,0.9771,0.7138,1.0000,0.519402,0.278310,0.190598,0.011690 +bot_04093,splash_driven,1.0000,0.8963,1.0000,1.0000,1.0000,1.0000,0.9154,1.0000,0.9626,0.745488,0.155167,0.090621,0.008725 +bot_04094,interstitial_focus,0.6558,1.0000,0.6817,0.7802,1.0000,0.7411,0.8890,1.0000,1.0000,0.383895,0.453544,0.153710,0.008851 +bot_04095,splash_driven,0.7021,0.9436,1.0000,1.0000,1.0000,1.0000,0.9743,1.0000,1.0000,0.629494,0.213374,0.110722,0.046411 +bot_04096,splash_driven,0.9231,1.0000,1.0000,0.9866,0.8871,1.0000,0.9906,1.0000,0.9035,0.665086,0.106441,0.099264,0.129209 +bot_04097,network_bound,0.6999,1.0000,0.6784,0.7393,0.5720,0.8427,0.7445,1.0000,0.8773,0.223732,0.262857,0.259281,0.254130 +bot_04098,splash_driven,1.0000,1.0000,1.0000,0.9726,0.8728,1.0000,0.9088,1.0000,0.9170,0.669940,0.048543,0.106465,0.175051 +bot_04099,balanced,1.0000,1.0000,1.0000,1.0000,0.8231,0.8391,1.0000,0.8956,1.0000,0.340776,0.361542,0.279358,0.018324 +bot_04100,balanced,0.9305,0.8934,1.0000,0.9315,1.0000,0.9832,1.0000,0.8533,1.0000,0.504381,0.234637,0.238121,0.022861 +bot_04101,interstitial_focus,0.8030,1.0000,0.9719,0.7126,1.0000,0.8126,1.0000,0.9586,1.0000,0.204907,0.419968,0.248014,0.127110 +bot_04102,network_bound,0.8239,0.7254,0.9236,0.7771,0.6890,0.6562,0.6358,1.0000,0.9223,0.124383,0.096406,0.355145,0.424065 +bot_04103,reward_heavy,1.0000,0.8053,0.7395,1.0000,0.8152,0.4389,0.9548,0.7281,1.0000,0.448987,0.249939,0.199053,0.102022 +bot_04104,balanced,1.0000,0.9613,0.9587,1.0000,1.0000,1.0000,1.0000,0.8700,0.9036,0.472553,0.385755,0.129511,0.012181 +bot_04105,network_bound,0.9806,0.7258,0.9781,0.9981,0.5826,0.6235,0.8356,1.0000,0.9206,0.178099,0.226284,0.256013,0.339605 +bot_04106,splash_driven,0.9215,0.8932,1.0000,0.8813,1.0000,1.0000,0.8131,0.8889,0.8854,0.732764,0.142973,0.114548,0.009715 +bot_04107,balanced,1.0000,1.0000,1.0000,1.0000,0.8808,1.0000,1.0000,0.9921,1.0000,0.422145,0.387206,0.089409,0.101240 +bot_04108,splash_driven,0.9335,1.0000,1.0000,0.9904,1.0000,1.0000,0.8122,0.9567,0.8517,0.814988,0.097632,0.009158,0.078222 +bot_04109,reward_heavy,1.0000,0.6189,0.5754,1.0000,0.8191,0.4362,1.0000,0.8240,1.0000,0.603020,0.224067,0.128302,0.044612 +bot_04110,balanced,1.0000,1.0000,1.0000,1.0000,0.8117,0.9662,0.8798,1.0000,1.0000,0.456014,0.402496,0.131044,0.010446 +bot_04111,balanced,1.0000,1.0000,1.0000,1.0000,0.8310,0.8753,0.8522,0.8380,1.0000,0.400763,0.374510,0.194367,0.030360 +bot_04112,churn_sensitive,0.3661,0.5900,0.4044,0.4806,0.6687,0.6130,0.8515,1.0000,0.6852,0.277800,0.151326,0.298288,0.272586 +bot_04113,splash_driven,0.7916,0.7815,1.0000,1.0000,0.9643,1.0000,1.0000,0.8861,0.8913,0.655634,0.260592,0.025217,0.058556 +bot_04114,reward_heavy,1.0000,0.8988,0.7094,1.0000,0.6518,0.8018,0.9771,0.7683,1.0000,0.614928,0.147453,0.228234,0.009385 +bot_04115,churn_sensitive,0.5608,0.5004,0.6368,0.8100,0.4008,0.5815,0.6840,1.0000,0.5738,0.212724,0.169190,0.247788,0.370298 +bot_04116,churn_sensitive,0.4179,0.6720,0.5790,0.6757,0.5140,0.3635,0.8301,1.0000,0.4945,0.283404,0.258136,0.203802,0.254658 +bot_04117,churn_sensitive,0.7857,0.6110,0.6261,0.4489,0.6130,0.3523,0.6707,1.0000,0.6898,0.275114,0.175688,0.184622,0.364576 +bot_04118,splash_driven,1.0000,0.9747,1.0000,0.9927,0.9713,1.0000,0.9974,1.0000,0.9967,0.709995,0.091470,0.040581,0.157955 +bot_04119,balanced,0.8873,1.0000,1.0000,0.9350,1.0000,0.8241,1.0000,1.0000,0.9207,0.474423,0.209423,0.307058,0.009097 +bot_04120,balanced,1.0000,1.0000,1.0000,0.8670,0.9321,0.9176,0.8530,0.8692,1.0000,0.338104,0.435612,0.193627,0.032658 +bot_04121,reward_heavy,1.0000,0.7130,1.0000,1.0000,0.7735,0.4483,1.0000,0.9330,1.0000,0.583811,0.396399,0.009895,0.009895 +bot_04122,splash_driven,1.0000,1.0000,1.0000,0.9594,0.8136,1.0000,0.8517,1.0000,0.8691,0.638059,0.236316,0.007976,0.117649 +bot_04123,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8461,1.0000,1.0000,0.713623,0.036233,0.171855,0.078289 +bot_04124,interstitial_focus,0.7948,1.0000,0.8665,0.8926,1.0000,0.7831,0.8292,0.9319,1.0000,0.350173,0.333737,0.266406,0.049684 +bot_04125,balanced,0.9629,0.9085,1.0000,0.9267,1.0000,0.9233,1.0000,0.8015,1.0000,0.354540,0.308328,0.229509,0.107624 +bot_04126,splash_driven,0.8371,0.9254,1.0000,1.0000,1.0000,1.0000,0.7762,0.9249,1.0000,0.702381,0.129372,0.114795,0.053452 +bot_04127,splash_driven,1.0000,0.9312,1.0000,0.9462,0.9183,1.0000,1.0000,1.0000,0.9193,0.601582,0.230875,0.061303,0.106240 +bot_04128,network_bound,0.6362,0.8143,1.0000,0.9363,0.9862,0.7716,0.7759,1.0000,0.8430,0.083262,0.134432,0.312871,0.469435 +bot_04129,network_bound,0.6976,0.9097,0.9652,0.7035,0.9004,0.8204,0.7084,1.0000,0.7998,0.011479,0.162828,0.376015,0.449677 +bot_04130,balanced,0.9957,1.0000,0.9882,1.0000,1.0000,0.9218,0.8404,1.0000,1.0000,0.425349,0.424488,0.140752,0.009412 +bot_04131,interstitial_focus,0.7270,1.0000,0.7382,0.6685,1.0000,0.6068,0.9352,1.0000,0.9449,0.310102,0.399617,0.236715,0.053566 +bot_04132,reward_heavy,1.0000,0.8516,0.7327,1.0000,0.8853,0.4001,0.8819,0.7500,1.0000,0.518489,0.131264,0.194544,0.155703 +bot_04133,network_bound,0.9195,0.6400,0.8704,1.0000,0.7759,0.9127,0.7498,1.0000,0.8650,0.113950,0.182625,0.307129,0.396296 +bot_04134,balanced,1.0000,0.8802,0.9717,1.0000,0.8237,0.9587,0.8638,0.8217,0.9994,0.449719,0.250835,0.261496,0.037950 +bot_04135,reward_heavy,1.0000,0.8843,0.7383,1.0000,0.6830,0.7019,0.8867,1.0000,1.0000,0.721633,0.254704,0.011831,0.011831 +bot_04136,reward_heavy,1.0000,0.9138,0.6729,1.0000,0.8593,0.4229,1.0000,0.8438,1.0000,0.588104,0.258299,0.144354,0.009243 +bot_04137,reward_heavy,1.0000,0.8654,0.7170,1.0000,0.6766,0.4667,1.0000,0.8115,1.0000,0.553197,0.361586,0.044067,0.041150 +bot_04138,reward_heavy,1.0000,0.9108,0.6803,1.0000,0.6216,0.4993,1.0000,0.8030,1.0000,0.613264,0.369020,0.008858,0.008858 +bot_04139,network_bound,0.6245,0.7085,0.6153,0.7563,0.8580,0.6672,0.6309,1.0000,0.9074,0.016200,0.152771,0.274386,0.556643 +bot_04140,network_bound,0.7111,1.0000,0.6876,0.9830,0.9588,0.6087,0.6523,1.0000,0.8905,0.182405,0.194969,0.262464,0.360162 +bot_04141,network_bound,0.6495,0.8195,0.5960,0.8242,0.8824,0.8836,0.5388,1.0000,0.7091,0.185673,0.162607,0.336810,0.314910 +bot_04142,network_bound,0.9468,0.8940,0.5844,0.9528,0.6658,0.6315,0.6106,1.0000,0.7891,0.010440,0.248577,0.451665,0.289318 +bot_04143,reward_heavy,1.0000,0.6987,0.7901,1.0000,0.6738,0.6455,1.0000,0.6815,1.0000,0.582575,0.337119,0.007943,0.072363 +bot_04144,interstitial_focus,0.6414,1.0000,0.9239,0.8305,1.0000,0.5584,1.0000,1.0000,1.0000,0.296892,0.354013,0.197921,0.151175 +bot_04145,splash_driven,0.6543,1.0000,1.0000,1.0000,0.9927,1.0000,1.0000,0.9595,0.8621,0.776176,0.175480,0.038664,0.009680 +bot_04146,network_bound,0.9931,1.0000,0.7806,0.6882,0.7477,0.6724,0.7208,1.0000,0.8788,0.062557,0.306547,0.334129,0.296767 +bot_04147,network_bound,0.6148,0.6664,0.7401,1.0000,0.6607,0.9387,0.6687,1.0000,0.7690,0.206902,0.163029,0.352843,0.277226 +bot_04148,balanced,0.8209,1.0000,1.0000,1.0000,1.0000,0.8187,0.8457,1.0000,1.0000,0.346339,0.236267,0.381634,0.035761 +bot_04149,balanced,0.8472,1.0000,1.0000,0.9119,0.8854,1.0000,0.8953,1.0000,0.9236,0.470927,0.362805,0.093024,0.073244 +bot_04150,reward_heavy,1.0000,0.8418,0.8479,1.0000,0.6473,0.4288,1.0000,1.0000,1.0000,0.717100,0.198785,0.069651,0.014465 +bot_04151,interstitial_focus,0.8670,1.0000,0.6075,0.8335,1.0000,0.8443,1.0000,1.0000,1.0000,0.360844,0.465796,0.164965,0.008395 +bot_04152,interstitial_focus,0.8694,1.0000,0.6973,0.6009,1.0000,0.5745,0.8584,1.0000,1.0000,0.317629,0.409060,0.251766,0.021545 +bot_04153,splash_driven,0.6491,1.0000,1.0000,1.0000,0.8557,1.0000,1.0000,1.0000,1.0000,0.880072,0.099021,0.010453,0.010453 +bot_04154,balanced,0.8391,0.9844,1.0000,0.9186,0.8765,0.9382,1.0000,0.9361,0.9299,0.402588,0.287122,0.233935,0.076355 +bot_04155,network_bound,0.6916,0.7253,0.9996,0.8377,0.8727,0.8090,0.6656,1.0000,0.8715,0.152272,0.190483,0.273701,0.383544 +bot_04156,splash_driven,0.7118,1.0000,1.0000,1.0000,0.9824,1.0000,0.9814,0.8317,1.0000,0.772517,0.195131,0.011337,0.021016 +bot_04157,interstitial_focus,0.5012,1.0000,1.0000,0.9470,1.0000,0.8995,0.9433,1.0000,1.0000,0.170620,0.381185,0.314791,0.133404 +bot_04158,reward_heavy,1.0000,0.6879,0.8341,1.0000,0.6009,0.5024,0.9600,1.0000,1.0000,0.624711,0.193427,0.171454,0.010408 +bot_04159,balanced,0.8612,1.0000,1.0000,1.0000,0.9654,1.0000,1.0000,1.0000,1.0000,0.282403,0.356454,0.231178,0.129965 +bot_04160,interstitial_focus,0.6193,1.0000,0.9849,0.6392,1.0000,0.6459,0.9803,1.0000,1.0000,0.285432,0.497982,0.204064,0.012522 +bot_04161,interstitial_focus,0.6302,1.0000,0.8284,0.6544,1.0000,0.5954,1.0000,0.9827,1.0000,0.272485,0.346495,0.199791,0.181229 +bot_04162,reward_heavy,1.0000,0.9761,1.0000,1.0000,0.7213,0.5214,1.0000,0.8631,1.0000,0.440005,0.338777,0.180618,0.040601 +bot_04163,splash_driven,0.7752,1.0000,1.0000,0.8298,0.8357,1.0000,0.9517,1.0000,0.9486,0.712165,0.132202,0.134048,0.021585 +bot_04164,balanced,0.9143,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.401828,0.270082,0.168235,0.159855 +bot_04165,interstitial_focus,0.7215,1.0000,1.0000,0.8657,1.0000,0.6799,0.8640,1.0000,1.0000,0.232816,0.561050,0.195545,0.010589 +bot_04166,interstitial_focus,0.8880,1.0000,0.7232,0.9862,1.0000,0.6667,1.0000,1.0000,0.9544,0.373121,0.291385,0.271343,0.064150 +bot_04167,reward_heavy,1.0000,0.6940,0.7974,1.0000,0.8545,0.4916,1.0000,0.9420,1.0000,0.565200,0.222543,0.203690,0.008567 +bot_04168,churn_sensitive,0.4103,0.4408,0.2580,0.3846,0.6914,0.2922,0.7575,1.0000,0.5455,0.187165,0.276231,0.315599,0.221005 +bot_04169,interstitial_focus,0.7291,1.0000,0.9733,0.5922,1.0000,0.6426,0.9753,0.8761,1.0000,0.349232,0.426544,0.171728,0.052496 +bot_04170,balanced,0.8605,1.0000,0.9764,0.8434,0.9103,0.8442,0.8485,1.0000,1.0000,0.422810,0.212098,0.188515,0.176576 +bot_04171,interstitial_focus,0.7177,1.0000,0.8328,0.9090,1.0000,0.9158,0.9397,1.0000,0.9550,0.241194,0.491257,0.258585,0.008964 +bot_04172,interstitial_focus,0.8992,1.0000,0.8786,0.7150,1.0000,0.6141,1.0000,0.8666,1.0000,0.465095,0.449919,0.057825,0.027161 +bot_04173,interstitial_focus,0.5830,1.0000,0.7691,0.7120,1.0000,0.5506,0.8204,1.0000,0.9631,0.207985,0.393325,0.251088,0.147601 +bot_04174,splash_driven,0.6687,0.7230,1.0000,0.9141,1.0000,1.0000,0.9474,1.0000,1.0000,0.656926,0.252617,0.019916,0.070541 +bot_04175,interstitial_focus,0.6469,1.0000,0.7847,0.6439,1.0000,0.6991,1.0000,0.8258,1.0000,0.309001,0.492508,0.183118,0.015373 +bot_04176,balanced,0.9830,1.0000,0.9208,1.0000,1.0000,0.8857,1.0000,1.0000,1.0000,0.365137,0.330105,0.202299,0.102458 +bot_04177,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8687,0.797895,0.180112,0.010996,0.010996 +bot_04178,balanced,0.9463,1.0000,1.0000,0.9893,0.9152,0.9905,0.9285,1.0000,1.0000,0.281654,0.262494,0.324653,0.131199 +bot_04179,interstitial_focus,0.9225,1.0000,0.8375,0.8382,1.0000,0.5529,1.0000,0.8303,1.0000,0.385948,0.341438,0.142178,0.130435 +bot_04180,interstitial_focus,0.4843,1.0000,0.8154,0.9472,1.0000,0.8600,0.8127,1.0000,1.0000,0.254674,0.474257,0.165409,0.105660 +bot_04181,churn_sensitive,0.4407,0.8269,0.6499,0.6976,0.4847,0.4077,0.8561,1.0000,0.5769,0.174807,0.218255,0.330908,0.276029 +bot_04182,interstitial_focus,0.7255,1.0000,1.0000,0.8835,1.0000,0.8313,1.0000,0.8783,0.9343,0.345530,0.351606,0.271091,0.031773 +bot_04183,churn_sensitive,0.3111,0.4819,0.3848,0.5758,0.6042,0.5618,0.6355,1.0000,0.4856,0.298675,0.326043,0.328223,0.047059 +bot_04184,interstitial_focus,0.5616,1.0000,0.6257,0.7207,1.0000,0.7771,0.9629,1.0000,1.0000,0.330636,0.332884,0.171953,0.164527 +bot_04185,reward_heavy,1.0000,0.6284,0.9759,1.0000,0.6878,0.7111,0.9898,1.0000,1.0000,0.594456,0.335098,0.008349,0.062097 +bot_04186,balanced,0.9280,0.8818,1.0000,1.0000,0.8545,1.0000,0.8743,1.0000,1.0000,0.341293,0.275406,0.308027,0.075275 +bot_04187,reward_heavy,1.0000,0.6419,1.0000,1.0000,0.9318,0.4881,1.0000,0.8032,1.0000,0.475056,0.261761,0.165274,0.097910 +bot_04188,reward_heavy,1.0000,1.0000,0.8040,1.0000,0.5511,0.6237,0.9875,1.0000,1.0000,0.733021,0.207940,0.010166,0.048872 +bot_04189,interstitial_focus,0.9070,1.0000,0.8411,0.9494,1.0000,0.8201,0.9591,0.9060,1.0000,0.297470,0.438193,0.255534,0.008803 +bot_04190,churn_sensitive,0.7668,0.4482,0.5292,0.7282,0.5238,0.6242,0.6971,1.0000,0.5188,0.374758,0.349158,0.159279,0.116805 +bot_04191,network_bound,1.0000,1.0000,0.7819,0.9882,0.7345,0.8179,0.7290,1.0000,0.8857,0.123443,0.247738,0.274711,0.354108 +bot_04192,reward_heavy,1.0000,0.6999,0.6171,1.0000,0.9309,0.8318,1.0000,0.8034,1.0000,0.577571,0.273235,0.073284,0.075910 +bot_04193,network_bound,0.7537,0.7207,0.7505,0.9956,0.6843,0.5119,0.6189,1.0000,0.7253,0.195504,0.111227,0.381609,0.311660 +bot_04194,balanced,0.9715,1.0000,0.9269,0.8561,0.8068,1.0000,1.0000,1.0000,1.0000,0.280486,0.407716,0.301869,0.009928 +bot_04195,reward_heavy,1.0000,0.7562,0.6239,1.0000,0.9045,0.6450,0.8952,0.7380,1.0000,0.646007,0.298691,0.042993,0.012309 +bot_04196,balanced,0.8135,1.0000,1.0000,1.0000,0.8857,0.8481,0.8915,1.0000,1.0000,0.442657,0.273852,0.226511,0.056980 +bot_04197,reward_heavy,1.0000,0.8132,0.6432,1.0000,0.8694,0.5202,0.8919,0.9208,1.0000,0.446434,0.371484,0.172814,0.009268 +bot_04198,reward_heavy,1.0000,0.6356,0.9876,1.0000,0.6738,0.7487,0.9575,0.8923,1.0000,0.562148,0.230370,0.124342,0.083140 +bot_04199,splash_driven,0.7015,0.7375,1.0000,1.0000,0.9014,1.0000,0.9201,0.9338,0.9262,0.749599,0.152944,0.083876,0.013581 +bot_04200,reward_heavy,1.0000,0.9724,0.9946,1.0000,0.9554,0.7852,1.0000,0.9002,1.0000,0.485121,0.254953,0.128377,0.131548 +bot_04201,interstitial_focus,0.9483,1.0000,0.7274,0.5681,1.0000,0.8942,1.0000,0.9595,1.0000,0.366460,0.491347,0.098926,0.043268 +bot_04202,reward_heavy,1.0000,0.9986,0.6460,1.0000,0.8458,0.4245,0.9984,0.7258,1.0000,0.666199,0.195712,0.128645,0.009444 +bot_04203,reward_heavy,1.0000,0.6225,0.9119,1.0000,0.5504,0.4843,1.0000,1.0000,1.0000,0.588815,0.236580,0.165459,0.009146 +bot_04204,reward_heavy,1.0000,0.9253,0.9543,1.0000,0.9208,0.5508,1.0000,1.0000,1.0000,0.669399,0.263614,0.023861,0.043127 +bot_04205,network_bound,0.9904,0.7287,0.7693,0.7364,0.8683,0.8333,0.8387,1.0000,0.8806,0.084229,0.247388,0.322208,0.346175 +bot_04206,interstitial_focus,0.7771,1.0000,0.9478,0.8155,1.0000,0.5106,1.0000,0.9157,1.0000,0.331272,0.464265,0.116129,0.088334 +bot_04207,splash_driven,1.0000,0.9694,1.0000,1.0000,1.0000,1.0000,0.8793,0.8477,0.9078,0.745170,0.228909,0.017600,0.008321 +bot_04208,balanced,0.9057,1.0000,1.0000,1.0000,1.0000,0.8404,1.0000,0.8784,0.9452,0.314498,0.391097,0.284937,0.009468 +bot_04209,reward_heavy,1.0000,0.6181,0.7528,1.0000,0.9083,0.7229,1.0000,0.9566,1.0000,0.677854,0.195436,0.037594,0.089116 +bot_04210,reward_heavy,1.0000,0.9403,0.7383,1.0000,0.9481,0.6542,0.9080,1.0000,1.0000,0.479206,0.391572,0.009518,0.119705 +bot_04211,interstitial_focus,0.6078,1.0000,0.8410,0.9866,1.0000,0.7598,0.9049,0.8613,1.0000,0.312871,0.436676,0.240085,0.010368 +bot_04212,interstitial_focus,0.7646,1.0000,0.6805,0.9624,1.0000,0.7975,0.9903,1.0000,1.0000,0.241457,0.433821,0.121371,0.203351 +bot_04213,splash_driven,0.8151,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8659,0.812766,0.169132,0.009051,0.009051 +bot_04214,reward_heavy,1.0000,0.6583,0.7489,1.0000,0.7109,0.6339,1.0000,0.9882,1.0000,0.662857,0.264010,0.062556,0.010577 +bot_04215,reward_heavy,1.0000,0.7920,0.6141,1.0000,0.9720,0.6199,0.9574,0.7662,1.0000,0.587256,0.317127,0.010114,0.085502 +bot_04216,interstitial_focus,0.8553,1.0000,1.0000,0.5792,1.0000,0.6728,1.0000,1.0000,0.9475,0.405614,0.257125,0.327774,0.009487 +bot_04217,interstitial_focus,0.9297,1.0000,0.7006,0.8185,1.0000,0.5064,0.8808,0.9833,1.0000,0.233210,0.515127,0.148488,0.103176 +bot_04218,balanced,1.0000,1.0000,1.0000,0.9938,1.0000,0.8847,1.0000,1.0000,1.0000,0.506461,0.175335,0.308484,0.009720 +bot_04219,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8960,1.0000,1.0000,0.9194,0.447913,0.353268,0.074064,0.124755 +bot_04220,balanced,1.0000,1.0000,1.0000,0.9141,0.9425,1.0000,0.8680,0.9783,0.9854,0.360009,0.451051,0.162941,0.025999 +bot_04221,interstitial_focus,0.8317,1.0000,1.0000,0.8154,1.0000,0.8944,1.0000,1.0000,1.0000,0.428256,0.284991,0.212155,0.074598 +bot_04222,churn_sensitive,0.7595,0.4138,0.6719,0.4352,0.3886,0.3047,0.8056,1.0000,0.5349,0.135538,0.208086,0.346659,0.309717 +bot_04223,interstitial_focus,0.8027,1.0000,0.9021,0.8638,1.0000,0.5417,0.8828,1.0000,0.9315,0.286440,0.321649,0.216717,0.175194 +bot_04224,balanced,0.9525,1.0000,1.0000,1.0000,0.9476,0.8569,1.0000,0.8493,1.0000,0.554693,0.212431,0.221621,0.011254 +bot_04225,network_bound,0.6186,0.7976,0.7489,0.6717,0.6907,0.6233,0.6350,1.0000,0.7334,0.119528,0.038381,0.316904,0.525187 +bot_04226,splash_driven,0.9015,0.9085,1.0000,1.0000,1.0000,1.0000,0.7836,0.8870,0.9471,0.663166,0.152713,0.098556,0.085565 +bot_04227,interstitial_focus,0.8395,1.0000,0.7509,0.8177,1.0000,0.5524,0.8633,0.9550,1.0000,0.355016,0.426543,0.210156,0.008285 +bot_04228,splash_driven,1.0000,0.7408,1.0000,1.0000,0.8874,1.0000,0.9917,1.0000,0.9592,0.705516,0.134659,0.149296,0.010529 +bot_04229,churn_sensitive,0.7183,0.5624,0.5974,0.8170,0.3369,0.6739,0.8457,0.9926,0.5937,0.188372,0.262168,0.371054,0.178405 +bot_04230,splash_driven,0.7684,0.9848,1.0000,0.8450,0.9141,1.0000,1.0000,0.8481,1.0000,0.741832,0.097236,0.071266,0.089667 +bot_04231,interstitial_focus,0.7793,1.0000,1.0000,0.5697,1.0000,0.7829,0.8864,1.0000,1.0000,0.423812,0.443711,0.084293,0.048185 +bot_04232,balanced,0.9104,1.0000,1.0000,1.0000,0.9990,0.9703,1.0000,0.9861,0.9062,0.484799,0.295642,0.081352,0.138207 +bot_04233,network_bound,0.8749,0.6884,0.6904,0.7527,0.6516,0.5621,0.7341,1.0000,0.7930,0.248611,0.130090,0.254091,0.367208 +bot_04234,splash_driven,0.9432,0.7296,1.0000,0.8846,1.0000,1.0000,0.8233,1.0000,0.9372,0.792599,0.032683,0.112112,0.062605 +bot_04235,interstitial_focus,0.8435,1.0000,0.6849,0.9680,1.0000,0.7833,0.9364,1.0000,1.0000,0.221545,0.449933,0.249909,0.078613 +bot_04236,interstitial_focus,0.5383,1.0000,0.8161,0.6905,1.0000,0.6831,0.9578,1.0000,1.0000,0.350957,0.288119,0.172330,0.188593 +bot_04237,network_bound,0.9487,0.7257,0.7841,0.8721,0.9237,0.5074,0.6208,1.0000,0.9271,0.015197,0.062793,0.511692,0.410318 +bot_04238,interstitial_focus,0.7785,1.0000,1.0000,0.6427,1.0000,0.8224,1.0000,1.0000,0.9842,0.352751,0.386885,0.240266,0.020098 +bot_04239,splash_driven,0.7696,1.0000,1.0000,0.9981,1.0000,1.0000,1.0000,1.0000,1.0000,0.576520,0.182351,0.136472,0.104657 +bot_04240,reward_heavy,1.0000,1.0000,0.8938,1.0000,0.5713,0.6325,1.0000,0.6973,1.0000,0.522136,0.299448,0.169448,0.008968 +bot_04241,interstitial_focus,0.5551,1.0000,0.9197,0.7709,1.0000,0.5311,1.0000,0.9004,1.0000,0.357161,0.467439,0.161531,0.013869 +bot_04242,reward_heavy,1.0000,1.0000,0.8814,1.0000,0.7096,0.4750,1.0000,0.7914,1.0000,0.544838,0.383162,0.062321,0.009678 +bot_04243,balanced,0.9504,1.0000,1.0000,0.8684,1.0000,0.9557,1.0000,0.8791,1.0000,0.396845,0.344985,0.126210,0.131961 +bot_04244,interstitial_focus,0.6509,1.0000,1.0000,0.6901,1.0000,0.9137,0.8922,1.0000,0.9725,0.280988,0.376817,0.225564,0.116632 +bot_04245,balanced,0.8858,1.0000,1.0000,1.0000,0.9992,1.0000,0.9304,1.0000,1.0000,0.299253,0.424300,0.175275,0.101172 +bot_04246,balanced,1.0000,1.0000,0.8796,0.8859,0.8056,0.8004,0.9747,0.8064,0.9144,0.492768,0.249468,0.188013,0.069751 +bot_04247,balanced,0.9971,1.0000,0.9883,1.0000,1.0000,1.0000,0.8539,1.0000,0.9270,0.389194,0.209100,0.307430,0.094277 +bot_04248,balanced,1.0000,1.0000,0.8903,0.8397,0.9701,0.9305,1.0000,1.0000,0.9560,0.386637,0.316905,0.286729,0.009729 +bot_04249,reward_heavy,1.0000,0.8314,0.8949,1.0000,0.6501,0.5803,1.0000,0.7439,1.0000,0.644566,0.177225,0.156125,0.022084 +bot_04250,splash_driven,0.8203,0.8142,1.0000,1.0000,1.0000,1.0000,0.8225,0.9686,1.0000,0.762997,0.108113,0.119925,0.008965 +bot_04251,churn_sensitive,0.6303,0.4064,0.6303,0.6487,0.3530,0.5147,0.8500,1.0000,0.6413,0.227647,0.296921,0.320923,0.154509 +bot_04252,splash_driven,0.8820,1.0000,1.0000,1.0000,1.0000,1.0000,0.9523,1.0000,0.9891,0.827909,0.113824,0.010154,0.048113 +bot_04253,churn_sensitive,0.3583,0.4829,0.2658,0.4820,0.5788,0.6641,0.7675,1.0000,0.4626,0.252007,0.311637,0.244133,0.192223 +bot_04254,reward_heavy,1.0000,0.8418,0.7397,1.0000,0.8455,0.5376,1.0000,1.0000,1.0000,0.504505,0.296958,0.092489,0.106048 +bot_04255,interstitial_focus,0.6351,1.0000,0.7252,0.9988,1.0000,0.6633,0.9559,1.0000,1.0000,0.521883,0.338473,0.128267,0.011376 +bot_04256,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9704,1.0000,0.7884,1.0000,0.9863,0.714555,0.155603,0.119511,0.010330 +bot_04257,interstitial_focus,0.8126,1.0000,0.8105,0.7738,1.0000,0.8972,0.9136,0.9206,1.0000,0.253452,0.496182,0.239018,0.011348 +bot_04258,splash_driven,0.7479,0.9871,1.0000,1.0000,1.0000,1.0000,0.9048,1.0000,1.0000,0.729769,0.196222,0.063086,0.010923 +bot_04259,balanced,1.0000,1.0000,1.0000,1.0000,0.7843,0.8832,0.9424,1.0000,0.9680,0.428345,0.386992,0.172425,0.012238 +bot_04260,balanced,1.0000,0.9929,1.0000,0.8586,1.0000,0.9841,0.9431,0.8782,1.0000,0.452600,0.358548,0.175917,0.012935 +bot_04261,interstitial_focus,0.7600,1.0000,0.8411,0.7867,1.0000,0.5223,0.9345,1.0000,1.0000,0.429476,0.281902,0.168715,0.119907 +bot_04262,splash_driven,0.7593,0.8881,1.0000,1.0000,0.9125,1.0000,0.8247,0.9452,0.8544,0.783536,0.066884,0.009631,0.139948 +bot_04263,balanced,1.0000,1.0000,1.0000,1.0000,0.7969,0.9086,1.0000,0.9567,1.0000,0.277013,0.303421,0.264416,0.155150 +bot_04264,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8439,0.9544,0.9224,0.406485,0.401049,0.168286,0.024180 +bot_04265,churn_sensitive,0.6066,0.4961,0.5672,0.4921,0.6241,0.3198,0.6929,1.0000,0.6832,0.127844,0.362599,0.385343,0.124215 +bot_04266,balanced,0.9019,0.9130,1.0000,1.0000,0.8642,0.8419,1.0000,1.0000,1.0000,0.344532,0.311377,0.248088,0.096003 +bot_04267,balanced,1.0000,1.0000,1.0000,0.9879,0.9304,0.9856,0.9659,0.9228,0.9973,0.360786,0.359073,0.149352,0.130789 +bot_04268,balanced,1.0000,1.0000,0.9106,0.9583,0.9524,1.0000,0.8420,1.0000,0.9372,0.442405,0.250720,0.295557,0.011318 +bot_04269,splash_driven,0.9909,1.0000,1.0000,1.0000,0.9789,1.0000,1.0000,0.9378,0.8886,0.651625,0.098792,0.146327,0.103256 +bot_04270,splash_driven,0.7317,1.0000,1.0000,1.0000,0.9471,1.0000,0.9786,1.0000,0.9109,0.800805,0.180147,0.009524,0.009524 +bot_04271,interstitial_focus,0.8991,1.0000,0.9310,0.6086,1.0000,0.8313,1.0000,0.9161,0.9735,0.395749,0.459063,0.136603,0.008585 +bot_04272,interstitial_focus,0.8410,1.0000,0.7764,0.7407,1.0000,0.7208,0.8356,1.0000,1.0000,0.489924,0.324854,0.090520,0.094702 +bot_04273,reward_heavy,1.0000,0.6767,0.8629,1.0000,0.8419,0.6073,0.8982,0.8936,1.0000,0.546739,0.362618,0.079104,0.011539 +bot_04274,balanced,0.9507,0.9699,0.9189,1.0000,0.9468,1.0000,1.0000,1.0000,1.0000,0.455525,0.240069,0.294812,0.009594 +bot_04275,interstitial_focus,0.5505,1.0000,1.0000,0.8946,1.0000,0.9147,0.8991,1.0000,1.0000,0.313631,0.396165,0.194876,0.095329 +bot_04276,network_bound,1.0000,0.6866,0.8222,0.8556,0.8004,0.7978,0.5238,1.0000,0.8119,0.011906,0.338708,0.307705,0.341681 +bot_04277,churn_sensitive,0.7311,0.7450,0.6245,0.7286,0.6137,0.2968,0.7799,1.0000,0.4657,0.232869,0.296612,0.273110,0.197409 +bot_04278,balanced,0.9657,1.0000,1.0000,0.8753,1.0000,1.0000,1.0000,1.0000,0.9226,0.485731,0.249432,0.254501,0.010336 +bot_04279,splash_driven,0.6674,0.7068,1.0000,0.8169,0.9989,1.0000,0.7847,0.8317,1.0000,0.681973,0.043172,0.118081,0.156775 +bot_04280,reward_heavy,1.0000,1.0000,0.7011,1.0000,0.7758,0.6878,1.0000,1.0000,1.0000,0.532235,0.191632,0.152807,0.123325 +bot_04281,interstitial_focus,0.8721,1.0000,0.9050,0.9759,1.0000,0.8678,1.0000,0.9752,1.0000,0.331161,0.363941,0.238694,0.066203 +bot_04282,interstitial_focus,0.8004,1.0000,0.8878,0.8112,1.0000,0.6082,1.0000,1.0000,1.0000,0.361919,0.443516,0.079942,0.114623 +bot_04283,reward_heavy,1.0000,0.9139,0.7097,1.0000,0.7315,0.6325,0.9190,0.8214,1.0000,0.492772,0.288559,0.207894,0.010774 +bot_04284,interstitial_focus,0.7380,1.0000,0.9474,0.7653,1.0000,0.8462,0.9453,0.8862,0.9862,0.227146,0.355081,0.254303,0.163470 +bot_04285,balanced,0.8625,0.9957,1.0000,1.0000,0.9122,1.0000,0.9769,1.0000,0.9643,0.297054,0.255581,0.249287,0.198078 +bot_04286,reward_heavy,1.0000,0.5932,0.7416,1.0000,0.5854,0.4123,1.0000,0.7183,1.0000,0.547898,0.271780,0.173008,0.007314 +bot_04287,reward_heavy,1.0000,0.6419,0.8062,1.0000,0.5907,0.5035,1.0000,0.7850,1.0000,0.719644,0.252931,0.013712,0.013712 +bot_04288,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9154,1.0000,1.0000,0.9119,0.409625,0.200228,0.233801,0.156346 +bot_04289,reward_heavy,1.0000,0.7085,0.8365,1.0000,0.6637,0.8006,1.0000,0.6819,1.0000,0.613247,0.160429,0.215102,0.011222 +bot_04290,reward_heavy,1.0000,0.5912,0.7951,1.0000,0.8587,0.8396,1.0000,0.8118,1.0000,0.558796,0.303292,0.129931,0.007981 +bot_04291,splash_driven,0.8235,0.9025,1.0000,1.0000,0.9516,1.0000,0.9682,0.9201,0.8495,0.624637,0.204202,0.009634,0.161527 +bot_04292,splash_driven,0.6870,0.6986,1.0000,1.0000,1.0000,1.0000,0.8114,0.9407,0.9981,0.667495,0.292086,0.030714,0.009706 +bot_04293,interstitial_focus,0.5670,1.0000,0.6923,0.9421,1.0000,0.5677,0.8493,1.0000,1.0000,0.393511,0.329340,0.221497,0.055652 +bot_04294,interstitial_focus,0.5207,1.0000,0.6591,0.5641,1.0000,0.8594,1.0000,0.8497,1.0000,0.249047,0.460071,0.280440,0.010442 +bot_04295,churn_sensitive,0.6026,0.7897,0.3959,0.4510,0.3572,0.2698,0.6506,1.0000,0.6943,0.249502,0.265016,0.325444,0.160038 +bot_04296,reward_heavy,1.0000,0.9321,0.9752,1.0000,0.9112,0.7689,1.0000,0.9484,1.0000,0.473323,0.308948,0.119622,0.098107 +bot_04297,reward_heavy,1.0000,0.7878,0.5972,1.0000,0.7228,0.6345,1.0000,0.8498,1.0000,0.706552,0.226970,0.051452,0.015027 +bot_04298,reward_heavy,1.0000,0.8077,0.8556,1.0000,0.8085,0.7200,0.9712,0.9094,1.0000,0.592752,0.270830,0.008633,0.127785 +bot_04299,network_bound,0.7674,0.9808,0.7052,1.0000,0.5614,0.7688,0.5998,1.0000,0.7818,0.097583,0.192641,0.247541,0.462236 +bot_04300,interstitial_focus,0.7344,1.0000,0.9587,0.8870,1.0000,0.4922,0.8771,1.0000,0.9388,0.325588,0.454459,0.086096,0.133857 +bot_04301,splash_driven,0.7061,0.8741,1.0000,1.0000,0.9450,1.0000,0.9015,0.8242,1.0000,0.842133,0.138566,0.009651,0.009651 +bot_04302,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9553,1.0000,1.0000,0.514895,0.346526,0.127420,0.011159 +bot_04303,reward_heavy,1.0000,0.9568,0.6954,1.0000,0.7183,0.7882,0.9167,1.0000,1.0000,0.640071,0.217634,0.102413,0.039883 +bot_04304,balanced,1.0000,1.0000,1.0000,0.9693,0.9401,0.7868,0.8607,0.9042,1.0000,0.463234,0.326138,0.174074,0.036554 +bot_04305,network_bound,0.8618,0.9816,0.9643,0.9044,0.9009,0.6334,0.6109,1.0000,0.8145,0.012025,0.091730,0.316388,0.579856 +bot_04306,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9510,1.0000,1.0000,0.9184,0.328419,0.377944,0.130387,0.163251 +bot_04307,splash_driven,1.0000,0.6985,1.0000,0.8595,0.9738,1.0000,1.0000,1.0000,0.9049,0.628579,0.243638,0.112962,0.014821 +bot_04308,interstitial_focus,0.7604,1.0000,0.7228,0.5934,1.0000,0.6269,1.0000,1.0000,1.0000,0.196881,0.463089,0.267295,0.072735 +bot_04309,balanced,1.0000,1.0000,0.8820,0.9603,1.0000,1.0000,1.0000,1.0000,1.0000,0.347472,0.398540,0.244571,0.009418 +bot_04310,balanced,0.9811,0.9227,1.0000,1.0000,1.0000,1.0000,0.9125,0.8683,1.0000,0.451622,0.190254,0.257481,0.100644 +bot_04311,interstitial_focus,0.8421,1.0000,0.8433,0.5960,1.0000,0.9098,0.8016,1.0000,0.9489,0.244711,0.490501,0.251903,0.012885 +bot_04312,churn_sensitive,0.6282,0.6075,0.5682,0.8177,0.6642,0.4676,0.8718,1.0000,0.6775,0.140996,0.160716,0.515335,0.182953 +bot_04313,splash_driven,0.8982,0.9229,1.0000,0.8814,1.0000,1.0000,0.7841,0.8461,0.9038,0.829128,0.146518,0.013675,0.010679 +bot_04314,interstitial_focus,0.7156,1.0000,0.6300,0.6268,1.0000,0.6582,1.0000,1.0000,1.0000,0.409032,0.435540,0.141338,0.014090 +bot_04315,reward_heavy,1.0000,0.6660,0.8746,1.0000,0.9395,0.5775,0.9511,0.9854,1.0000,0.701112,0.191182,0.095748,0.011958 +bot_04316,balanced,0.8268,0.8853,0.9287,1.0000,1.0000,0.9887,0.9295,1.0000,0.9789,0.359237,0.349272,0.282051,0.009440 +bot_04317,balanced,1.0000,1.0000,0.9960,1.0000,1.0000,1.0000,0.8471,0.8769,1.0000,0.385993,0.334643,0.148042,0.131322 +bot_04318,reward_heavy,1.0000,0.6856,0.8904,1.0000,0.7702,0.4511,1.0000,0.9568,1.0000,0.658526,0.286821,0.045536,0.009118 +bot_04319,reward_heavy,1.0000,0.7817,0.9025,1.0000,0.9363,0.6334,1.0000,0.8776,1.0000,0.541680,0.228338,0.219132,0.010851 +bot_04320,network_bound,0.6546,0.7223,0.6544,0.8245,0.5958,0.6974,0.7691,1.0000,0.8843,0.097556,0.299904,0.260676,0.341863 +bot_04321,interstitial_focus,0.7697,1.0000,0.9117,0.8423,1.0000,0.6895,0.9733,0.8756,1.0000,0.256381,0.328428,0.256641,0.158550 +bot_04322,reward_heavy,1.0000,0.8651,0.9981,1.0000,0.7386,0.8242,0.9382,0.8626,1.0000,0.607540,0.312205,0.011029,0.069226 +bot_04323,splash_driven,0.8098,0.8662,1.0000,0.9596,0.9898,1.0000,0.8457,0.8549,0.8420,0.730121,0.252791,0.008544,0.008544 +bot_04324,splash_driven,0.6996,0.7514,1.0000,0.8928,1.0000,1.0000,0.9025,0.9292,0.8541,0.617743,0.182768,0.057493,0.141996 +bot_04325,balanced,0.9262,1.0000,0.9655,1.0000,1.0000,0.9401,0.8929,0.9808,1.0000,0.428064,0.408374,0.153026,0.010536 +bot_04326,balanced,1.0000,1.0000,1.0000,0.9775,1.0000,1.0000,1.0000,1.0000,1.0000,0.537438,0.240564,0.115020,0.106978 +bot_04327,balanced,1.0000,1.0000,0.8762,0.9474,0.9765,0.9836,0.9288,1.0000,1.0000,0.333818,0.301534,0.231703,0.132946 +bot_04328,interstitial_focus,0.7451,1.0000,0.6100,0.7583,1.0000,0.8171,0.9410,1.0000,0.9875,0.406677,0.442555,0.138634,0.012134 +bot_04329,reward_heavy,1.0000,0.9368,0.7934,1.0000,0.9409,0.7061,0.9171,0.7229,1.0000,0.511597,0.344749,0.077513,0.066141 +bot_04330,network_bound,0.8999,1.0000,0.6781,1.0000,0.5903,0.7442,0.7868,1.0000,0.7350,0.020148,0.244581,0.398001,0.337270 +bot_04331,interstitial_focus,0.5401,1.0000,1.0000,0.9309,1.0000,0.5566,0.8590,1.0000,1.0000,0.308887,0.329702,0.174736,0.186676 +bot_04332,balanced,1.0000,0.9685,1.0000,1.0000,1.0000,0.8361,0.9936,1.0000,1.0000,0.380653,0.265385,0.344022,0.009940 +bot_04333,interstitial_focus,0.7482,1.0000,0.7106,0.9470,1.0000,0.6177,0.8043,0.9768,0.9552,0.273585,0.489063,0.063285,0.174067 +bot_04334,splash_driven,0.7870,0.7272,1.0000,1.0000,0.9527,1.0000,1.0000,0.9613,0.8745,0.755143,0.082832,0.151350,0.010675 +bot_04335,balanced,0.9291,1.0000,1.0000,0.8901,0.7994,0.9603,1.0000,1.0000,1.0000,0.397768,0.450892,0.132872,0.018468 +bot_04336,splash_driven,0.6427,1.0000,1.0000,1.0000,0.9262,1.0000,0.8394,0.9175,0.8569,0.724977,0.126110,0.035117,0.113796 +bot_04337,balanced,0.8238,1.0000,0.9752,0.9727,1.0000,1.0000,0.9631,0.9330,1.0000,0.357177,0.350017,0.200881,0.091925 +bot_04338,splash_driven,0.8662,1.0000,1.0000,1.0000,0.8940,1.0000,0.9341,0.8815,1.0000,0.521381,0.220448,0.154157,0.104014 +bot_04339,reward_heavy,1.0000,0.9143,0.8578,1.0000,0.9470,0.4192,1.0000,1.0000,1.0000,0.618982,0.171196,0.201391,0.008431 +bot_04340,balanced,1.0000,1.0000,0.9665,0.9362,0.9580,0.8651,1.0000,0.9515,1.0000,0.370897,0.350135,0.229220,0.049748 +bot_04341,network_bound,0.8568,0.6603,0.6944,0.8325,0.9927,0.6156,0.6187,1.0000,0.8369,0.020972,0.235684,0.284124,0.459220 +bot_04342,splash_driven,0.6539,0.9663,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9359,0.800912,0.065746,0.010146,0.123196 +bot_04343,reward_heavy,1.0000,0.7059,0.5713,1.0000,0.7059,0.4071,1.0000,0.8118,1.0000,0.610765,0.203210,0.175753,0.010272 +bot_04344,churn_sensitive,0.4434,0.6513,0.6012,0.4993,0.4242,0.5142,0.6033,1.0000,0.6484,0.300089,0.405096,0.180641,0.114174 +bot_04345,reward_heavy,1.0000,0.7636,0.8047,1.0000,0.6901,0.6173,0.9139,0.8669,1.0000,0.601055,0.230837,0.158311,0.009797 +bot_04346,reward_heavy,1.0000,0.9663,0.6532,1.0000,0.7356,0.7600,0.9232,0.9182,1.0000,0.558940,0.237353,0.137335,0.066372 +bot_04347,interstitial_focus,0.7011,1.0000,0.6253,0.9555,1.0000,0.7281,0.9038,0.9208,1.0000,0.258790,0.498520,0.228438,0.014252 +bot_04348,reward_heavy,1.0000,0.5885,1.0000,1.0000,0.9672,0.6715,0.8850,1.0000,1.0000,0.553818,0.302245,0.134550,0.009387 +bot_04349,reward_heavy,1.0000,0.7057,0.9672,1.0000,0.9313,0.5628,0.9149,0.7987,1.0000,0.546637,0.196766,0.187736,0.068862 +bot_04350,interstitial_focus,0.8278,1.0000,0.8207,0.7500,1.0000,0.6380,0.9842,1.0000,0.9997,0.294423,0.467218,0.227038,0.011321 +bot_04351,reward_heavy,1.0000,0.7940,0.9920,1.0000,0.7871,0.7484,1.0000,0.9385,1.0000,0.587113,0.274644,0.095572,0.042671 +bot_04352,churn_sensitive,0.4114,0.5041,0.6756,0.4257,0.7352,0.3354,0.6955,1.0000,0.6043,0.173018,0.338853,0.172222,0.315906 +bot_04353,splash_driven,0.9817,0.8083,1.0000,1.0000,1.0000,1.0000,0.9568,1.0000,0.9170,0.853911,0.070576,0.064442,0.011072 +bot_04354,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9844,0.9144,1.0000,0.9324,0.484021,0.186518,0.154586,0.174875 +bot_04355,interstitial_focus,0.5085,1.0000,0.7167,0.7793,1.0000,0.6108,0.8940,0.9191,1.0000,0.327823,0.424611,0.154487,0.093079 +bot_04356,interstitial_focus,0.7166,1.0000,0.5910,0.8442,1.0000,0.5107,0.9817,1.0000,1.0000,0.183351,0.479334,0.326725,0.010590 +bot_04357,churn_sensitive,0.5136,0.6332,0.4809,0.5664,0.5231,0.5351,0.7726,1.0000,0.4701,0.112289,0.362147,0.337728,0.187836 +bot_04358,splash_driven,0.6685,0.8534,1.0000,1.0000,1.0000,1.0000,0.7616,0.9328,0.8961,0.645419,0.170835,0.077595,0.106151 +bot_04359,splash_driven,0.9198,0.8024,1.0000,0.8276,1.0000,1.0000,0.7968,1.0000,0.9478,0.657365,0.318533,0.013657,0.010445 +bot_04360,interstitial_focus,0.5673,1.0000,1.0000,0.9397,1.0000,0.8154,0.8670,1.0000,1.0000,0.217594,0.419104,0.269542,0.093761 +bot_04361,balanced,0.9720,0.9947,1.0000,0.9427,1.0000,1.0000,0.9417,0.9299,0.9086,0.520195,0.358831,0.109701,0.011273 +bot_04362,splash_driven,0.8373,0.7796,1.0000,1.0000,1.0000,1.0000,0.8693,0.9287,1.0000,0.710119,0.108000,0.171471,0.010411 +bot_04363,splash_driven,1.0000,0.8344,1.0000,1.0000,0.8626,1.0000,0.9578,0.9556,0.9201,0.747109,0.086113,0.076672,0.090107 +bot_04364,reward_heavy,1.0000,0.9622,0.6325,1.0000,0.7361,0.6567,1.0000,0.7256,1.0000,0.483756,0.266043,0.157556,0.092646 +bot_04365,reward_heavy,1.0000,1.0000,0.9017,1.0000,0.7150,0.4346,0.9689,0.6945,1.0000,0.685988,0.192309,0.111957,0.009747 +bot_04366,reward_heavy,1.0000,0.7643,0.7882,1.0000,0.7856,0.7751,1.0000,0.7125,1.0000,0.533083,0.363950,0.009584,0.093384 +bot_04367,balanced,0.9119,1.0000,1.0000,0.8868,0.8264,1.0000,1.0000,0.9567,0.9751,0.443510,0.357758,0.153271,0.045461 +bot_04368,reward_heavy,1.0000,0.6999,0.7340,1.0000,0.8943,0.4107,0.8914,0.9494,1.0000,0.650756,0.188280,0.152179,0.008785 +bot_04369,balanced,1.0000,1.0000,1.0000,0.8639,0.8858,0.9105,1.0000,0.9413,0.9904,0.474186,0.329428,0.186585,0.009801 +bot_04370,churn_sensitive,0.6175,0.5359,0.3481,0.4868,0.5379,0.5851,0.5637,1.0000,0.5465,0.146212,0.368930,0.369574,0.115283 +bot_04371,churn_sensitive,0.4550,0.8074,0.3474,0.4245,0.6388,0.2915,0.7241,1.0000,0.6547,0.232363,0.208981,0.328830,0.229825 +bot_04372,balanced,1.0000,0.9357,1.0000,0.8692,0.8839,0.9457,1.0000,1.0000,1.0000,0.395240,0.311716,0.245501,0.047543 +bot_04373,splash_driven,0.9001,1.0000,1.0000,1.0000,1.0000,1.0000,0.9933,0.8346,0.9392,0.659495,0.071081,0.173640,0.095784 +bot_04374,churn_sensitive,0.7145,0.4466,0.4926,0.6689,0.4595,0.4628,0.6093,1.0000,0.6769,0.156348,0.315157,0.370743,0.157752 +bot_04375,churn_sensitive,0.5273,0.5348,0.3486,0.6124,0.3487,0.6549,0.5777,1.0000,0.4628,0.295902,0.217363,0.231755,0.254980 +bot_04376,churn_sensitive,0.6547,0.7609,0.3748,0.5518,0.4738,0.4719,0.7105,1.0000,0.5799,0.362468,0.143366,0.316230,0.177936 +bot_04377,churn_sensitive,0.4416,0.5092,0.6493,0.7949,0.7570,0.6650,0.5927,1.0000,0.5898,0.223805,0.221428,0.276363,0.278404 +bot_04378,splash_driven,0.8474,0.8516,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.705345,0.272111,0.011272,0.011272 +bot_04379,splash_driven,1.0000,0.7454,1.0000,1.0000,0.9333,1.0000,0.7956,0.8747,0.8478,0.864213,0.077451,0.043268,0.015068 +bot_04380,churn_sensitive,0.7303,0.4583,0.6699,0.4855,0.6149,0.2983,0.8579,1.0000,0.6878,0.217166,0.165168,0.438304,0.179362 +bot_04381,reward_heavy,1.0000,0.8401,0.7879,1.0000,0.9163,0.4692,1.0000,0.7976,1.0000,0.620432,0.244040,0.106805,0.028723 +bot_04382,splash_driven,0.7550,1.0000,1.0000,0.9815,1.0000,1.0000,0.9974,1.0000,0.8484,0.692731,0.289167,0.009051,0.009051 +bot_04383,network_bound,0.6690,0.8902,0.6565,0.9585,0.6267,0.8782,0.7608,1.0000,0.8989,0.032960,0.263700,0.373463,0.329877 +bot_04384,interstitial_focus,0.7645,1.0000,0.6736,0.6504,1.0000,0.5453,1.0000,1.0000,0.9857,0.272731,0.354928,0.361300,0.011041 +bot_04385,splash_driven,0.7975,1.0000,1.0000,1.0000,1.0000,1.0000,0.9619,0.8590,0.9697,0.667067,0.182187,0.141838,0.008908 +bot_04386,balanced,0.8682,0.8981,1.0000,1.0000,0.9491,0.9158,0.8752,0.8501,0.9291,0.556520,0.292072,0.140326,0.011082 +bot_04387,reward_heavy,1.0000,0.5817,0.7899,1.0000,0.6482,0.7938,0.9362,0.9313,1.0000,0.640392,0.191897,0.116757,0.050954 +bot_04388,balanced,1.0000,0.8906,0.9949,0.8527,1.0000,1.0000,0.8478,1.0000,1.0000,0.273943,0.380447,0.185201,0.160409 +bot_04389,reward_heavy,1.0000,0.9120,0.8449,1.0000,0.8575,0.6636,1.0000,0.7426,1.0000,0.634215,0.137202,0.184988,0.043596 +bot_04390,balanced,1.0000,1.0000,1.0000,0.9041,0.8631,1.0000,1.0000,0.9783,1.0000,0.527880,0.353975,0.100582,0.017562 +bot_04391,reward_heavy,1.0000,1.0000,0.5679,1.0000,0.9484,0.4066,1.0000,0.8994,1.0000,0.575056,0.152333,0.132878,0.139733 +bot_04392,balanced,1.0000,1.0000,1.0000,1.0000,0.8492,1.0000,1.0000,1.0000,1.0000,0.289476,0.330525,0.352396,0.027603 +bot_04393,network_bound,0.9651,0.8639,0.7922,0.9078,0.9576,0.8228,0.6402,1.0000,0.8646,0.045307,0.276216,0.363064,0.315413 +bot_04394,splash_driven,0.9092,0.8429,1.0000,0.9312,1.0000,1.0000,0.8318,0.8918,1.0000,0.785682,0.167199,0.037727,0.009392 +bot_04395,churn_sensitive,0.6106,0.5574,0.4327,0.6218,0.6617,0.4472,0.7649,1.0000,0.6307,0.312719,0.131424,0.495231,0.060626 +bot_04396,splash_driven,0.8761,0.9960,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9622,0.699489,0.280507,0.010002,0.010002 +bot_04397,churn_sensitive,0.3378,0.7183,0.2812,0.5426,0.4952,0.3724,0.7951,1.0000,0.4985,0.312807,0.268035,0.183372,0.235786 +bot_04398,balanced,1.0000,1.0000,1.0000,0.8842,1.0000,1.0000,0.8836,0.9474,1.0000,0.419862,0.247120,0.230165,0.102854 +bot_04399,reward_heavy,1.0000,0.9833,0.8474,1.0000,0.5425,0.5132,0.9209,0.8713,1.0000,0.696492,0.185088,0.108321,0.010100 +bot_04400,splash_driven,0.6755,0.7778,1.0000,0.8188,1.0000,1.0000,0.8401,1.0000,1.0000,0.658198,0.215148,0.072067,0.054588 +bot_04401,interstitial_focus,0.8044,1.0000,0.9226,0.9058,1.0000,0.7326,0.8555,0.8599,1.0000,0.324017,0.466339,0.097148,0.112496 +bot_04402,balanced,1.0000,0.9091,0.9902,1.0000,1.0000,1.0000,0.8483,0.8689,1.0000,0.525139,0.343586,0.120707,0.010568 +bot_04403,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8252,1.0000,0.368148,0.273939,0.225765,0.132148 +bot_04404,reward_heavy,1.0000,0.7847,0.7609,1.0000,0.9235,0.6842,0.9348,0.8753,1.0000,0.446786,0.333484,0.128199,0.091531 +bot_04405,splash_driven,0.8094,1.0000,1.0000,0.9523,0.9394,1.0000,0.8934,0.9060,0.9279,0.710511,0.230363,0.008083,0.051043 +bot_04406,churn_sensitive,0.4003,0.6968,0.3595,0.4827,0.5405,0.6210,0.7578,1.0000,0.5619,0.190345,0.264332,0.414080,0.131243 +bot_04407,reward_heavy,1.0000,1.0000,0.6121,1.0000,0.6574,0.4539,1.0000,0.7906,1.0000,0.522035,0.362508,0.106143,0.009314 +bot_04408,network_bound,0.9033,0.7476,0.8372,0.9382,0.7437,0.7553,0.5717,1.0000,0.7939,0.014769,0.278595,0.298201,0.408436 +bot_04409,reward_heavy,1.0000,0.8383,0.6487,1.0000,0.6996,0.4171,0.9812,1.0000,1.0000,0.551430,0.262229,0.097474,0.088867 +bot_04410,interstitial_focus,0.5941,1.0000,0.8793,0.6787,1.0000,0.5533,1.0000,0.9335,0.9837,0.253294,0.441024,0.160382,0.145300 +bot_04411,interstitial_focus,0.9242,1.0000,1.0000,0.5682,1.0000,0.9197,0.8214,1.0000,1.0000,0.423524,0.403806,0.159672,0.012999 +bot_04412,reward_heavy,1.0000,0.7434,1.0000,1.0000,0.9742,0.7106,1.0000,0.7221,1.0000,0.440033,0.302053,0.178071,0.079844 +bot_04413,balanced,1.0000,1.0000,1.0000,1.0000,0.9299,1.0000,1.0000,1.0000,0.9036,0.408630,0.311901,0.231138,0.048332 +bot_04414,reward_heavy,1.0000,0.7391,0.8284,1.0000,0.5752,0.4047,1.0000,0.7246,1.0000,0.695571,0.225018,0.069354,0.010056 +bot_04415,interstitial_focus,0.6992,1.0000,1.0000,0.5660,1.0000,0.9162,0.9237,1.0000,1.0000,0.242330,0.395426,0.273858,0.088386 +bot_04416,churn_sensitive,0.6473,0.6314,0.2436,0.4048,0.3617,0.5350,0.8273,1.0000,0.6824,0.321846,0.121988,0.252339,0.303827 +bot_04417,interstitial_focus,0.5221,1.0000,0.6572,0.6693,1.0000,0.7745,0.9925,1.0000,1.0000,0.341027,0.388324,0.188764,0.081886 +bot_04418,reward_heavy,1.0000,1.0000,0.9027,1.0000,0.9459,0.5788,0.9227,0.7579,1.0000,0.515454,0.359162,0.116154,0.009230 +bot_04419,reward_heavy,1.0000,0.6914,0.8758,1.0000,0.7753,0.4289,1.0000,0.7064,1.0000,0.564002,0.228233,0.071184,0.136581 +bot_04420,interstitial_focus,0.5103,1.0000,0.7613,0.7529,1.0000,0.7200,0.9150,0.9118,0.9512,0.422131,0.321768,0.150462,0.105639 +bot_04421,splash_driven,0.7822,0.7600,1.0000,1.0000,1.0000,1.0000,0.9446,1.0000,0.9650,0.771815,0.119924,0.011282,0.096979 +bot_04422,network_bound,0.7693,0.7206,0.9001,0.7055,0.6012,0.8010,0.6685,1.0000,0.7920,0.102741,0.213096,0.361033,0.323130 +bot_04423,splash_driven,0.7973,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.591044,0.268088,0.109518,0.031350 +bot_04424,reward_heavy,1.0000,0.8001,0.6597,1.0000,0.6515,0.5941,1.0000,1.0000,1.0000,0.672303,0.161073,0.157383,0.009241 +bot_04425,splash_driven,0.8359,0.8579,1.0000,0.8249,0.9056,1.0000,0.8307,1.0000,0.9517,0.780555,0.071100,0.010291,0.138054 +bot_04426,reward_heavy,1.0000,0.6352,0.9629,1.0000,0.7491,0.4653,1.0000,0.8681,1.0000,0.639305,0.217378,0.131904,0.011412 +bot_04427,splash_driven,0.7926,1.0000,1.0000,1.0000,1.0000,1.0000,0.9354,1.0000,0.8940,0.562014,0.263516,0.165303,0.009167 +bot_04428,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8975,0.8519,1.0000,0.397155,0.406402,0.186890,0.009553 +bot_04429,network_bound,0.7144,0.7887,0.9639,0.7431,0.6921,0.6601,0.7681,1.0000,0.7314,0.217396,0.156398,0.322619,0.303587 +bot_04430,reward_heavy,1.0000,0.7875,0.8543,1.0000,0.9788,0.8375,1.0000,0.8465,1.0000,0.581302,0.312000,0.073699,0.032999 +bot_04431,splash_driven,0.6537,1.0000,1.0000,0.8879,1.0000,1.0000,0.7619,1.0000,0.8495,0.591254,0.210079,0.116468,0.082198 +bot_04432,churn_sensitive,0.6876,0.7229,0.6869,0.5169,0.6136,0.5590,0.8137,1.0000,0.6119,0.133043,0.184314,0.331851,0.350792 +bot_04433,reward_heavy,1.0000,0.7288,0.9204,1.0000,0.8174,0.8163,1.0000,0.7917,1.0000,0.523922,0.214478,0.149768,0.111832 +bot_04434,splash_driven,0.9100,1.0000,1.0000,1.0000,1.0000,1.0000,0.9332,0.8867,0.9013,0.616950,0.105906,0.155813,0.121331 +bot_04435,balanced,1.0000,1.0000,0.9955,0.8481,1.0000,0.8340,0.8687,0.8542,0.9009,0.376367,0.333072,0.282397,0.008164 +bot_04436,reward_heavy,1.0000,1.0000,0.8799,1.0000,0.9768,0.7197,0.9105,0.7423,1.0000,0.494048,0.319415,0.148856,0.037681 +bot_04437,reward_heavy,1.0000,0.9516,0.9740,1.0000,0.8838,0.8213,0.9172,0.8449,1.0000,0.580932,0.114781,0.179139,0.125149 +bot_04438,churn_sensitive,0.5010,0.6118,0.4008,0.5130,0.4097,0.2898,0.6035,1.0000,0.4908,0.368808,0.311876,0.223759,0.095557 +bot_04439,churn_sensitive,0.4301,0.6817,0.4389,0.4350,0.6055,0.2706,0.7613,1.0000,0.5328,0.215449,0.166162,0.437744,0.180645 +bot_04440,reward_heavy,1.0000,0.8518,0.9392,1.0000,0.6342,0.4665,1.0000,0.7677,1.0000,0.575207,0.397919,0.015065,0.011809 +bot_04441,reward_heavy,1.0000,0.8242,0.6548,1.0000,0.7775,0.8383,0.8811,0.6810,1.0000,0.569611,0.372349,0.047505,0.010535 +bot_04442,balanced,0.9699,1.0000,1.0000,1.0000,1.0000,1.0000,0.9955,1.0000,0.9677,0.474675,0.364797,0.137506,0.023022 +bot_04443,interstitial_focus,0.7644,1.0000,0.7029,0.9131,1.0000,0.7485,0.9798,0.9005,0.9533,0.317401,0.434408,0.107193,0.140998 +bot_04444,interstitial_focus,0.6655,1.0000,0.8378,0.8533,1.0000,0.5549,1.0000,0.9548,1.0000,0.363060,0.358910,0.202218,0.075813 +bot_04445,reward_heavy,1.0000,0.6874,0.5733,1.0000,0.6154,0.6134,1.0000,0.8609,1.0000,0.543936,0.287047,0.159623,0.009394 +bot_04446,balanced,1.0000,1.0000,0.8636,1.0000,0.8472,0.9091,1.0000,1.0000,0.9631,0.380447,0.507476,0.101237,0.010840 +bot_04447,splash_driven,0.6895,1.0000,1.0000,0.9787,1.0000,1.0000,0.9040,0.8864,0.9221,0.764537,0.072643,0.062712,0.100108 +bot_04448,network_bound,0.7787,0.9684,0.8801,0.8700,0.9281,0.7336,0.6222,1.0000,0.7622,0.172194,0.182081,0.380280,0.265445 +bot_04449,reward_heavy,1.0000,0.7803,0.5928,1.0000,0.6271,0.5080,0.9874,0.9411,1.0000,0.525146,0.389013,0.075518,0.010323 +bot_04450,balanced,1.0000,0.9274,1.0000,0.9104,0.7948,0.9984,1.0000,0.8242,1.0000,0.485563,0.282816,0.217856,0.013766 +bot_04451,network_bound,1.0000,0.6961,0.9013,0.8761,0.6571,0.8980,0.6895,1.0000,0.7674,0.067413,0.132445,0.417072,0.383070 +bot_04452,balanced,0.9476,0.9420,1.0000,0.9671,0.8998,1.0000,1.0000,1.0000,0.9811,0.423455,0.216745,0.268253,0.091547 +bot_04453,reward_heavy,1.0000,0.7176,0.7283,1.0000,0.5617,0.8198,1.0000,1.0000,1.0000,0.618718,0.291407,0.077989,0.011886 +bot_04454,interstitial_focus,0.5304,1.0000,0.8259,0.6276,1.0000,0.7625,0.9364,0.8938,1.0000,0.288821,0.427813,0.193855,0.089511 +bot_04455,balanced,0.8573,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9007,0.473868,0.309543,0.205839,0.010751 +bot_04456,balanced,1.0000,1.0000,1.0000,0.8691,0.7825,0.9217,0.9531,1.0000,1.0000,0.278721,0.435427,0.162017,0.123836 +bot_04457,splash_driven,0.9865,0.8210,1.0000,0.8722,1.0000,1.0000,0.8209,1.0000,1.0000,0.688883,0.253930,0.048765,0.008422 +bot_04458,churn_sensitive,0.7013,0.8744,0.4561,0.5033,0.5823,0.4568,0.8410,1.0000,0.6311,0.281797,0.293564,0.308613,0.116025 +bot_04459,interstitial_focus,0.7330,1.0000,0.8067,0.8126,1.0000,0.5588,0.8187,0.8944,1.0000,0.397450,0.324896,0.268444,0.009210 +bot_04460,splash_driven,1.0000,0.8291,1.0000,1.0000,0.9746,1.0000,0.9910,1.0000,0.8672,0.822583,0.156801,0.010001,0.010614 +bot_04461,splash_driven,0.8154,0.8842,1.0000,0.8498,0.8968,1.0000,0.9661,1.0000,1.0000,0.732670,0.246193,0.010568,0.010568 +bot_04462,churn_sensitive,0.7063,0.6594,0.4989,0.7781,0.4491,0.6134,0.7943,1.0000,0.5886,0.109457,0.369982,0.300230,0.220331 +bot_04463,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9575,1.0000,0.8944,0.284676,0.381777,0.322413,0.011134 +bot_04464,network_bound,0.7534,0.9598,0.9245,0.9255,0.8052,0.6108,0.6402,1.0000,0.8482,0.135993,0.042900,0.401773,0.419335 +bot_04465,balanced,1.0000,1.0000,0.8956,1.0000,1.0000,1.0000,0.9503,0.9427,0.9782,0.517073,0.331983,0.113707,0.037238 +bot_04466,interstitial_focus,0.7270,1.0000,0.7315,0.9191,1.0000,0.6896,1.0000,0.8866,0.9807,0.237190,0.422072,0.257687,0.083051 +bot_04467,splash_driven,0.7822,1.0000,1.0000,0.8117,1.0000,1.0000,0.9489,1.0000,1.0000,0.590001,0.117319,0.167001,0.125678 +bot_04468,network_bound,0.9491,0.9078,0.7318,1.0000,0.8498,0.7269,0.7640,1.0000,0.9122,0.147046,0.131740,0.250692,0.470522 +bot_04469,interstitial_focus,0.5659,1.0000,0.7689,0.8600,1.0000,0.5286,0.9133,0.9693,1.0000,0.305338,0.356672,0.280693,0.057296 +bot_04470,splash_driven,0.9674,0.7619,1.0000,1.0000,0.9026,1.0000,0.8215,1.0000,0.9303,0.844005,0.134012,0.010991,0.010991 +bot_04471,reward_heavy,1.0000,0.7806,0.6187,1.0000,0.7547,0.4619,1.0000,0.9659,1.0000,0.692820,0.166698,0.079344,0.061138 +bot_04472,reward_heavy,1.0000,0.5878,0.8395,1.0000,0.5733,0.4935,1.0000,0.8586,1.0000,0.562723,0.305167,0.121459,0.010652 +bot_04473,balanced,1.0000,0.9365,1.0000,1.0000,0.8551,1.0000,1.0000,0.9743,0.9341,0.479621,0.365446,0.135978,0.018955 +bot_04474,churn_sensitive,0.3441,0.4810,0.2881,0.4033,0.3471,0.3282,0.8614,1.0000,0.5915,0.394394,0.242450,0.272610,0.090546 +bot_04475,splash_driven,0.7158,0.8125,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.777213,0.089540,0.123759,0.009488 +bot_04476,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8564,0.8455,0.8963,0.9078,0.307899,0.298899,0.283085,0.110117 +bot_04477,interstitial_focus,0.8209,1.0000,1.0000,0.6765,1.0000,0.8998,0.8817,1.0000,0.9330,0.343153,0.439814,0.205493,0.011540 +bot_04478,splash_driven,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8799,1.0000,0.9869,0.817919,0.108126,0.063587,0.010368 +bot_04479,splash_driven,1.0000,0.7202,1.0000,0.9160,1.0000,1.0000,0.7631,0.9507,0.9848,0.574263,0.189613,0.133872,0.102252 +bot_04480,reward_heavy,1.0000,0.7220,0.7986,1.0000,0.8358,0.7657,1.0000,0.9975,1.0000,0.608996,0.367044,0.015245,0.008715 +bot_04481,churn_sensitive,0.5776,0.4272,0.3981,0.4343,0.5934,0.3178,0.6348,1.0000,0.6084,0.267654,0.149173,0.242156,0.341017 +bot_04482,interstitial_focus,0.5012,1.0000,0.9588,0.9840,1.0000,0.6501,1.0000,1.0000,0.9729,0.279207,0.467320,0.243764,0.009710 +bot_04483,splash_driven,0.7592,0.8242,1.0000,0.8750,1.0000,1.0000,1.0000,0.8153,0.9566,0.877867,0.072222,0.011686,0.038224 +bot_04484,splash_driven,0.8750,1.0000,1.0000,1.0000,1.0000,1.0000,0.9572,1.0000,0.9858,0.673861,0.206564,0.110163,0.009413 +bot_04485,reward_heavy,1.0000,0.7725,0.8980,1.0000,0.6056,0.5120,1.0000,1.0000,1.0000,0.615906,0.224191,0.047511,0.112392 +bot_04486,interstitial_focus,0.5952,1.0000,0.6597,0.8436,1.0000,0.7370,0.8801,0.9177,1.0000,0.243568,0.417468,0.328960,0.010003 +bot_04487,churn_sensitive,0.7229,0.7379,0.4981,0.3947,0.7638,0.2488,0.7059,1.0000,0.5021,0.223289,0.211760,0.286993,0.277958 +bot_04488,network_bound,0.8416,0.9923,0.6410,0.9016,0.8678,0.6933,0.5466,1.0000,0.7867,0.027916,0.112176,0.355292,0.504616 +bot_04489,interstitial_focus,0.5461,1.0000,0.7369,0.8696,1.0000,0.7161,1.0000,0.8787,1.0000,0.330325,0.325702,0.333414,0.010560 +bot_04490,splash_driven,0.7263,0.9295,1.0000,1.0000,1.0000,1.0000,0.7566,1.0000,0.9756,0.638009,0.188881,0.010146,0.162965 +bot_04491,balanced,1.0000,0.8851,1.0000,1.0000,0.9761,0.9332,1.0000,0.9781,0.9921,0.402113,0.214214,0.338110,0.045563 +bot_04492,splash_driven,0.9538,0.8851,1.0000,1.0000,1.0000,1.0000,0.9070,0.8514,0.9255,0.682167,0.191596,0.008578,0.117659 +bot_04493,interstitial_focus,0.7036,1.0000,0.9709,0.5885,1.0000,0.7221,0.8245,0.9789,1.0000,0.293489,0.438004,0.207246,0.061261 +bot_04494,reward_heavy,1.0000,0.8217,0.7378,1.0000,0.8654,0.4949,0.9291,0.8467,1.0000,0.721821,0.258324,0.009928,0.009928 +bot_04495,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9956,1.0000,1.0000,0.533661,0.227071,0.204219,0.035049 +bot_04496,balanced,1.0000,1.0000,0.9148,1.0000,0.8115,0.9266,0.9120,0.9037,1.0000,0.506259,0.339253,0.142645,0.011843 +bot_04497,balanced,1.0000,1.0000,1.0000,0.9455,1.0000,0.8343,0.9332,1.0000,0.9191,0.357083,0.362519,0.177945,0.102453 +bot_04498,churn_sensitive,0.7002,0.6293,0.4488,0.6701,0.3810,0.4806,0.7442,1.0000,0.4750,0.157434,0.349716,0.267433,0.225418 +bot_04499,reward_heavy,1.0000,0.6389,1.0000,1.0000,0.8196,0.5093,0.9570,0.8466,1.0000,0.523005,0.258166,0.168895,0.049934 +bot_04500,splash_driven,0.6874,0.7373,1.0000,1.0000,1.0000,1.0000,0.8670,0.8718,0.8542,0.556189,0.269261,0.147575,0.026974 +bot_04501,splash_driven,1.0000,0.9184,1.0000,0.8423,0.9167,1.0000,0.9164,0.9726,0.9739,0.887856,0.066781,0.010059,0.035305 +bot_04502,balanced,1.0000,1.0000,1.0000,0.8455,0.8764,0.8496,0.9030,0.9807,1.0000,0.617875,0.220079,0.149844,0.012202 +bot_04503,balanced,0.8395,1.0000,1.0000,0.9624,0.9166,1.0000,0.9873,1.0000,0.9290,0.377846,0.471029,0.084636,0.066489 +bot_04504,churn_sensitive,0.4586,0.5524,0.5100,0.8101,0.5991,0.3899,0.6989,1.0000,0.6794,0.131862,0.167824,0.373304,0.327009 +bot_04505,interstitial_focus,0.8403,1.0000,0.9080,0.6349,1.0000,0.5381,1.0000,1.0000,1.0000,0.370922,0.339507,0.279071,0.010500 +bot_04506,reward_heavy,1.0000,0.7172,0.7590,1.0000,0.8269,0.5309,1.0000,0.9588,1.0000,0.663533,0.233631,0.069980,0.032855 +bot_04507,reward_heavy,1.0000,0.7295,0.8858,1.0000,0.7259,0.7907,1.0000,0.9167,1.0000,0.613058,0.258922,0.117415,0.010605 +bot_04508,network_bound,0.6607,1.0000,0.8614,0.8531,0.5765,0.7127,0.6570,1.0000,0.8869,0.196987,0.135374,0.277299,0.390340 +bot_04509,churn_sensitive,0.6871,0.7878,0.3336,0.4226,0.6450,0.6065,0.8573,1.0000,0.5007,0.093341,0.410282,0.286106,0.210271 +bot_04510,churn_sensitive,0.4629,0.7545,0.4926,0.5863,0.6429,0.2481,0.7465,1.0000,0.4685,0.314193,0.244484,0.212991,0.228332 +bot_04511,splash_driven,0.8320,0.8038,1.0000,1.0000,1.0000,1.0000,0.9271,0.9395,0.9775,0.651678,0.212206,0.052202,0.083914 +bot_04512,reward_heavy,1.0000,0.7495,0.8808,1.0000,0.6301,0.7446,0.9740,0.7770,1.0000,0.599481,0.178355,0.150326,0.071837 +bot_04513,balanced,1.0000,0.8853,0.8959,1.0000,1.0000,0.8790,1.0000,1.0000,1.0000,0.348829,0.384160,0.129120,0.137891 +bot_04514,network_bound,1.0000,0.6379,0.8247,1.0000,0.5938,0.6218,0.5762,1.0000,0.7981,0.173833,0.106991,0.381732,0.337445 +bot_04515,interstitial_focus,0.6314,1.0000,1.0000,0.5805,1.0000,0.8265,0.8263,0.8782,1.0000,0.329552,0.491586,0.169933,0.008929 +bot_04516,churn_sensitive,0.5183,0.8194,0.3215,0.7878,0.3800,0.4875,0.5848,1.0000,0.6103,0.152923,0.357864,0.237792,0.251420 +bot_04517,interstitial_focus,0.7672,1.0000,1.0000,0.9217,1.0000,0.7891,0.9746,1.0000,0.9897,0.212637,0.322986,0.293125,0.171252 +bot_04518,churn_sensitive,0.7807,0.6242,0.4776,0.6672,0.7218,0.4419,0.6431,0.9854,0.6747,0.401733,0.218982,0.238569,0.140716 +bot_04519,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.7912,1.0000,0.8533,1.0000,0.387311,0.315082,0.286739,0.010868 +bot_04520,splash_driven,0.6753,0.8081,1.0000,1.0000,1.0000,1.0000,0.9391,0.9583,0.8736,0.621718,0.241469,0.128555,0.008258 +bot_04521,reward_heavy,1.0000,0.9549,0.8396,1.0000,0.9739,0.7559,1.0000,0.9276,1.0000,0.578126,0.181964,0.112650,0.127260 +bot_04522,interstitial_focus,0.5889,1.0000,0.7026,0.6322,1.0000,0.8161,0.9134,1.0000,1.0000,0.319462,0.445791,0.223362,0.011384 +bot_04523,reward_heavy,1.0000,0.5829,0.8393,1.0000,0.6201,0.7860,0.9672,0.9424,1.0000,0.641897,0.218532,0.010912,0.128659 +bot_04524,reward_heavy,1.0000,0.9280,0.8544,1.0000,0.7239,0.6118,0.8964,0.9108,1.0000,0.529701,0.296718,0.082171,0.091410 +bot_04525,churn_sensitive,0.4690,0.4914,0.5283,0.4639,0.5278,0.6748,0.7513,1.0000,0.6191,0.101799,0.290834,0.314171,0.293196 +bot_04526,interstitial_focus,0.9330,1.0000,0.6747,0.8823,1.0000,0.5657,0.9246,0.8326,0.9962,0.419631,0.339790,0.229301,0.011277 +bot_04527,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.8760,0.9213,1.0000,1.0000,0.395144,0.302253,0.287452,0.015151 +bot_04528,splash_driven,0.7959,1.0000,1.0000,1.0000,0.9015,1.0000,0.9808,0.9025,1.0000,0.652613,0.314704,0.023062,0.009621 +bot_04529,splash_driven,0.7632,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8858,0.9612,0.646688,0.171828,0.040593,0.140890 +bot_04530,interstitial_focus,0.4851,1.0000,0.8892,0.7852,1.0000,0.8369,0.9353,1.0000,1.0000,0.233881,0.592628,0.162659,0.010831 +bot_04531,splash_driven,0.7715,0.8945,1.0000,0.9538,0.8635,1.0000,1.0000,1.0000,0.9206,0.691739,0.283081,0.013952,0.011228 +bot_04532,splash_driven,0.8025,1.0000,1.0000,1.0000,1.0000,1.0000,0.9107,1.0000,0.8643,0.643891,0.234250,0.112452,0.009408 +bot_04533,reward_heavy,1.0000,0.8773,0.8724,1.0000,0.8336,0.4516,1.0000,0.7981,1.0000,0.476970,0.404187,0.063370,0.055473 +bot_04534,splash_driven,0.8412,0.8820,1.0000,1.0000,1.0000,1.0000,0.9263,1.0000,0.9823,0.632902,0.252583,0.040131,0.074384 +bot_04535,network_bound,0.7367,0.9692,0.6160,0.7730,0.7528,0.9043,0.6506,1.0000,0.8459,0.171546,0.081540,0.273509,0.473405 +bot_04536,balanced,1.0000,1.0000,1.0000,0.9870,1.0000,1.0000,1.0000,0.9956,0.9240,0.396976,0.338495,0.152125,0.112403 +bot_04537,reward_heavy,1.0000,0.8308,0.7323,1.0000,0.8568,0.5130,1.0000,0.8118,1.0000,0.724440,0.175070,0.089129,0.011361 +bot_04538,balanced,0.9419,1.0000,1.0000,1.0000,1.0000,0.8272,1.0000,0.8176,0.9606,0.305838,0.344249,0.292811,0.057102 +bot_04539,splash_driven,0.7531,1.0000,1.0000,1.0000,1.0000,1.0000,0.9864,1.0000,0.8768,0.731163,0.068352,0.190625,0.009859 +bot_04540,balanced,1.0000,1.0000,1.0000,0.8311,0.7970,1.0000,1.0000,1.0000,1.0000,0.381019,0.392662,0.118553,0.107766 +bot_04541,network_bound,0.7607,0.8206,0.5831,1.0000,0.8060,0.7004,0.5312,1.0000,0.8909,0.183318,0.172553,0.339442,0.304686 +bot_04542,splash_driven,0.6771,0.7569,1.0000,0.9361,1.0000,1.0000,0.7812,1.0000,0.9753,0.706107,0.130334,0.130691,0.032868 +bot_04543,network_bound,0.8273,1.0000,0.7128,1.0000,0.9311,0.6392,0.5571,1.0000,0.7069,0.055196,0.098422,0.458780,0.387602 +bot_04544,interstitial_focus,0.6378,1.0000,0.7929,0.6584,1.0000,0.6811,1.0000,0.8637,1.0000,0.342070,0.497031,0.150022,0.010878 +bot_04545,interstitial_focus,0.4936,1.0000,0.7321,0.7256,1.0000,0.5767,0.9131,1.0000,1.0000,0.179803,0.441541,0.219506,0.159150 +bot_04546,balanced,0.8131,1.0000,1.0000,1.0000,1.0000,0.7869,1.0000,0.9811,1.0000,0.584607,0.269141,0.134213,0.012039 +bot_04547,churn_sensitive,0.4804,0.5148,0.5158,0.4077,0.5492,0.5500,0.6383,1.0000,0.5038,0.263142,0.302727,0.196806,0.237325 +bot_04548,network_bound,0.6808,1.0000,1.0000,0.8340,0.6639,0.5489,0.5376,1.0000,0.7533,0.199714,0.090963,0.213780,0.495543 +bot_04549,reward_heavy,1.0000,0.9118,0.9521,1.0000,0.9310,0.7534,1.0000,0.6913,1.0000,0.549709,0.333396,0.107763,0.009132 +bot_04550,reward_heavy,1.0000,0.9407,0.5735,1.0000,0.7208,0.7916,1.0000,0.8816,1.0000,0.630268,0.342731,0.012494,0.014507 +bot_04551,network_bound,0.9113,0.7414,0.8014,0.7394,0.6959,0.5639,0.7307,1.0000,0.8354,0.219817,0.064667,0.257430,0.458086 +bot_04552,network_bound,0.8122,0.9183,0.8565,0.6783,0.7610,0.8719,0.7824,1.0000,0.8551,0.089167,0.183187,0.353716,0.373930 +bot_04553,reward_heavy,1.0000,0.8061,0.7778,1.0000,0.7503,0.7659,0.9802,0.6976,1.0000,0.552720,0.236131,0.148070,0.063079 +bot_04554,reward_heavy,1.0000,1.0000,0.8665,1.0000,0.9246,0.4245,1.0000,1.0000,1.0000,0.757139,0.216435,0.013213,0.013213 +bot_04555,interstitial_focus,0.8848,1.0000,1.0000,0.7812,1.0000,0.4959,0.8349,0.9671,1.0000,0.229050,0.342869,0.298312,0.129770 +bot_04556,interstitial_focus,0.8758,1.0000,0.8904,0.8366,1.0000,0.7434,0.8860,1.0000,1.0000,0.349400,0.287796,0.323536,0.039267 +bot_04557,splash_driven,0.7180,0.9222,1.0000,0.8633,1.0000,1.0000,0.9181,1.0000,1.0000,0.872479,0.073398,0.042628,0.011495 +bot_04558,interstitial_focus,0.4847,1.0000,0.7476,0.5779,1.0000,0.7518,1.0000,1.0000,1.0000,0.354293,0.396790,0.193413,0.055504 +bot_04559,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.339488,0.324264,0.231836,0.104411 +bot_04560,reward_heavy,1.0000,0.7070,0.5991,1.0000,0.8615,0.7686,1.0000,0.9474,1.0000,0.502435,0.253640,0.137986,0.105939 +bot_04561,interstitial_focus,0.5843,1.0000,1.0000,0.7200,1.0000,0.5322,0.9941,1.0000,1.0000,0.340865,0.425348,0.195767,0.038020 +bot_04562,reward_heavy,1.0000,0.7485,0.9811,1.0000,0.7269,0.5471,0.9639,0.8397,1.0000,0.459577,0.334090,0.047013,0.159319 +bot_04563,splash_driven,0.7258,0.6934,1.0000,1.0000,1.0000,1.0000,0.9605,0.8907,0.8907,0.802834,0.086385,0.085730,0.025051 +bot_04564,interstitial_focus,0.7792,1.0000,0.9329,0.9627,1.0000,0.6529,1.0000,0.9821,1.0000,0.324743,0.382444,0.244133,0.048681 +bot_04565,splash_driven,1.0000,1.0000,1.0000,0.8087,0.8662,1.0000,0.9803,0.8211,0.9996,0.663272,0.044367,0.155926,0.136435 +bot_04566,splash_driven,0.9328,1.0000,1.0000,0.9594,1.0000,1.0000,0.9490,1.0000,0.9409,0.669534,0.191869,0.011153,0.127445 +bot_04567,reward_heavy,1.0000,0.9670,0.6060,1.0000,0.8756,0.7712,0.8825,0.6843,1.0000,0.511967,0.286310,0.193014,0.008709 +bot_04568,reward_heavy,1.0000,0.8741,0.6328,1.0000,0.6550,0.5325,0.9894,1.0000,1.0000,0.503046,0.436133,0.023408,0.037414 +bot_04569,splash_driven,0.7476,0.7596,1.0000,0.9427,1.0000,1.0000,0.8996,1.0000,0.9528,0.669185,0.176255,0.147057,0.007503 +bot_04570,churn_sensitive,0.4722,0.7274,0.6408,0.7930,0.7041,0.2725,0.6207,1.0000,0.5810,0.325671,0.269253,0.323990,0.081086 +bot_04571,reward_heavy,1.0000,0.8671,0.8816,1.0000,0.8932,0.5495,0.9147,0.9189,1.0000,0.628374,0.309794,0.008888,0.052944 +bot_04572,balanced,1.0000,1.0000,1.0000,0.8988,0.9635,1.0000,1.0000,0.8389,0.8998,0.413892,0.339299,0.120524,0.126285 +bot_04573,splash_driven,1.0000,0.9232,1.0000,1.0000,1.0000,1.0000,0.9548,0.9900,1.0000,0.774490,0.207555,0.008978,0.008978 +bot_04574,splash_driven,1.0000,0.9380,1.0000,0.8592,1.0000,1.0000,0.8978,1.0000,0.9214,0.667326,0.100001,0.151035,0.081638 +bot_04575,balanced,1.0000,1.0000,1.0000,0.9780,1.0000,0.9553,0.8655,1.0000,0.9882,0.396360,0.278719,0.239211,0.085710 +bot_04576,interstitial_focus,0.5507,1.0000,0.8818,0.8414,1.0000,0.5764,0.9760,0.9776,0.9484,0.325871,0.429617,0.235714,0.008798 +bot_04577,interstitial_focus,0.6886,1.0000,0.5967,0.9992,1.0000,0.5761,0.9803,1.0000,0.9707,0.406585,0.341441,0.192272,0.059701 +bot_04578,balanced,0.8359,1.0000,1.0000,1.0000,1.0000,0.9388,0.9180,0.8831,1.0000,0.304478,0.305569,0.242210,0.147743 +bot_04579,churn_sensitive,0.4143,0.4972,0.6701,0.5936,0.3723,0.5889,0.6317,1.0000,0.6850,0.188362,0.356671,0.343869,0.111097 +bot_04580,balanced,1.0000,1.0000,1.0000,0.9716,0.8651,1.0000,1.0000,1.0000,1.0000,0.270539,0.348531,0.288002,0.092928 +bot_04581,reward_heavy,1.0000,1.0000,0.8546,1.0000,0.9720,0.7717,0.9933,1.0000,1.0000,0.581719,0.206524,0.193801,0.017956 +bot_04582,interstitial_focus,0.7796,1.0000,0.8677,0.5746,1.0000,0.5392,1.0000,1.0000,0.9441,0.346850,0.358109,0.193902,0.101139 +bot_04583,network_bound,0.6420,0.8241,0.6478,0.6672,0.6969,0.6031,0.7832,1.0000,0.7890,0.172268,0.100946,0.336956,0.389830 +bot_04584,reward_heavy,1.0000,0.9979,0.7346,1.0000,0.7016,0.7016,1.0000,1.0000,1.0000,0.637742,0.173302,0.179177,0.009778 +bot_04585,interstitial_focus,0.9315,1.0000,0.5902,0.6238,1.0000,0.6779,1.0000,1.0000,1.0000,0.318421,0.360467,0.219801,0.101310 +bot_04586,splash_driven,0.6573,1.0000,1.0000,0.9436,1.0000,1.0000,0.7786,0.9445,1.0000,0.712733,0.109659,0.098346,0.079262 +bot_04587,balanced,1.0000,1.0000,0.9106,1.0000,0.8788,0.8028,0.8927,0.8199,0.8998,0.478164,0.412086,0.099785,0.009965 +bot_04588,network_bound,0.9652,1.0000,0.7549,0.7123,0.9786,0.8183,0.8396,1.0000,0.7079,0.208738,0.099798,0.352936,0.338527 +bot_04589,balanced,0.9249,0.9362,1.0000,0.9181,0.9689,1.0000,1.0000,1.0000,1.0000,0.395664,0.301559,0.114600,0.188177 +bot_04590,interstitial_focus,0.7482,1.0000,0.8640,0.6120,1.0000,0.6682,1.0000,0.8808,1.0000,0.257374,0.479590,0.233399,0.029636 +bot_04591,balanced,1.0000,0.9399,0.8781,1.0000,0.7809,0.9724,0.8486,1.0000,1.0000,0.353619,0.221997,0.281744,0.142639 +bot_04592,reward_heavy,1.0000,0.6913,0.8215,1.0000,0.7515,0.7931,1.0000,0.7516,1.0000,0.713848,0.223715,0.051762,0.010676 +bot_04593,reward_heavy,1.0000,0.5865,0.9312,1.0000,0.8014,0.5387,1.0000,0.7707,1.0000,0.731072,0.245860,0.011534,0.011534 +bot_04594,interstitial_focus,0.7360,1.0000,0.9579,0.8559,1.0000,0.6856,0.9786,1.0000,1.0000,0.363138,0.532086,0.093783,0.010993 +bot_04595,splash_driven,0.8833,0.8778,1.0000,1.0000,0.8851,1.0000,0.7640,0.9786,0.8849,0.724752,0.140757,0.010020,0.124471 +bot_04596,reward_heavy,1.0000,0.8447,0.7478,1.0000,0.7892,0.6774,0.9437,0.7078,1.0000,0.576159,0.310302,0.058167,0.055373 +bot_04597,splash_driven,0.9764,0.9610,1.0000,1.0000,1.0000,1.0000,0.9232,1.0000,0.8924,0.615253,0.258040,0.008498,0.118208 +bot_04598,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9024,1.0000,1.0000,0.9788,0.277483,0.459810,0.132872,0.129836 +bot_04599,reward_heavy,1.0000,0.5992,0.8942,1.0000,0.9243,0.6194,1.0000,0.6981,1.0000,0.661257,0.243952,0.020086,0.074706 +bot_04600,reward_heavy,1.0000,1.0000,0.8947,1.0000,0.8599,0.6679,0.9218,1.0000,1.0000,0.627967,0.214271,0.025396,0.132365 +bot_04601,network_bound,0.8759,0.8218,0.6049,0.9882,0.9086,0.8946,0.5509,1.0000,0.8275,0.040924,0.240874,0.348323,0.369879 +bot_04602,interstitial_focus,0.6064,1.0000,0.6084,0.9824,1.0000,0.6870,0.9006,0.9268,1.0000,0.361752,0.321606,0.297883,0.018759 +bot_04603,balanced,0.8903,1.0000,1.0000,1.0000,0.9566,0.9067,0.8624,1.0000,0.9801,0.298365,0.409486,0.273850,0.018299 +bot_04604,balanced,1.0000,0.9190,0.9557,1.0000,1.0000,0.8083,1.0000,1.0000,1.0000,0.443237,0.375707,0.071402,0.109654 +bot_04605,balanced,1.0000,1.0000,1.0000,1.0000,0.9676,1.0000,1.0000,1.0000,0.9347,0.510807,0.222231,0.215124,0.051838 +bot_04606,splash_driven,0.6679,1.0000,1.0000,0.8669,0.9970,1.0000,0.9062,1.0000,0.8519,0.725947,0.181349,0.010192,0.082511 +bot_04607,reward_heavy,1.0000,0.8766,0.9505,1.0000,0.6351,0.5053,0.9539,0.8492,1.0000,0.522662,0.367864,0.100678,0.008796 +bot_04608,interstitial_focus,0.7155,1.0000,0.7046,0.9555,1.0000,0.7785,1.0000,0.9585,0.9348,0.317136,0.514251,0.124567,0.044045 +bot_04609,interstitial_focus,0.6785,1.0000,0.8592,0.7631,1.0000,0.6368,0.8482,1.0000,1.0000,0.371404,0.377154,0.125581,0.125860 +bot_04610,churn_sensitive,0.6621,0.5282,0.6049,0.4324,0.7376,0.5430,0.6208,1.0000,0.6941,0.368538,0.267479,0.290606,0.073378 +bot_04611,splash_driven,0.8728,0.7783,1.0000,1.0000,0.8867,1.0000,0.9982,1.0000,0.9977,0.743921,0.235336,0.010371,0.010371 +bot_04612,reward_heavy,1.0000,0.7389,0.8831,1.0000,0.8831,0.7382,1.0000,0.7067,1.0000,0.609146,0.367531,0.011662,0.011662 +bot_04613,network_bound,0.8952,0.8295,0.6881,0.9081,0.9880,0.5205,0.6095,1.0000,0.7510,0.190748,0.207141,0.305871,0.296240 +bot_04614,reward_heavy,1.0000,0.9370,0.8696,1.0000,0.5400,0.4490,1.0000,0.8308,1.0000,0.537230,0.356819,0.096841,0.009110 +bot_04615,balanced,1.0000,1.0000,0.8919,1.0000,0.8125,1.0000,1.0000,0.9256,1.0000,0.469136,0.341368,0.157953,0.031542 +bot_04616,balanced,0.8901,0.9111,1.0000,1.0000,0.8308,0.9084,0.9337,1.0000,1.0000,0.351300,0.401860,0.220413,0.026427 +bot_04617,network_bound,1.0000,0.9697,0.6924,0.8853,0.9930,0.7722,0.7786,1.0000,0.9014,0.052906,0.292290,0.279663,0.375140 +bot_04618,balanced,0.9809,1.0000,1.0000,0.9304,0.8738,0.9930,0.8530,0.8504,1.0000,0.466696,0.405975,0.117625,0.009704 +bot_04619,interstitial_focus,0.5958,1.0000,0.6962,0.7713,1.0000,0.5785,0.8768,1.0000,1.0000,0.244099,0.422083,0.242511,0.091306 +bot_04620,interstitial_focus,0.6701,1.0000,0.7966,0.8196,1.0000,0.7159,0.9796,0.9693,1.0000,0.297289,0.516763,0.176112,0.009837 +bot_04621,balanced,1.0000,1.0000,1.0000,1.0000,0.8234,0.8751,1.0000,0.9372,0.8906,0.332222,0.338060,0.218201,0.111517 +bot_04622,balanced,1.0000,1.0000,1.0000,1.0000,0.7975,1.0000,0.9514,0.8227,0.9426,0.395602,0.244511,0.158790,0.201097 +bot_04623,network_bound,0.7264,0.7816,0.6863,1.0000,0.7983,0.8435,0.6936,1.0000,0.8144,0.220749,0.127359,0.164484,0.487408 +bot_04624,churn_sensitive,0.4581,0.6974,0.4103,0.6004,0.7578,0.2903,0.7299,1.0000,0.6700,0.332785,0.130850,0.249403,0.286962 +bot_04625,churn_sensitive,0.5875,0.6630,0.3681,0.4588,0.3528,0.6704,0.8365,1.0000,0.6515,0.276007,0.135325,0.290816,0.297852 +bot_04626,churn_sensitive,0.5186,0.7192,0.6771,0.5735,0.6726,0.5204,0.7956,1.0000,0.4867,0.150624,0.243759,0.300160,0.305457 +bot_04627,network_bound,0.8939,0.8203,0.6214,0.7698,0.6244,0.7804,0.7193,1.0000,0.7029,0.119756,0.203707,0.335222,0.341315 +bot_04628,balanced,1.0000,0.9407,0.9451,0.8551,1.0000,1.0000,0.8605,0.9611,0.8887,0.528560,0.257052,0.182179,0.032209 +bot_04629,reward_heavy,1.0000,0.6537,1.0000,1.0000,0.7391,0.6848,1.0000,0.9708,1.0000,0.478838,0.362995,0.010596,0.147571 +bot_04630,balanced,1.0000,1.0000,1.0000,1.0000,0.9630,0.9463,1.0000,0.8645,1.0000,0.479767,0.343816,0.162777,0.013641 +bot_04631,network_bound,0.9337,0.7970,0.7837,0.7887,0.9526,0.7989,0.7036,1.0000,0.7944,0.023577,0.355299,0.247355,0.373769 +bot_04632,interstitial_focus,0.7483,1.0000,0.7947,0.8921,1.0000,0.7994,0.9252,0.9068,1.0000,0.274175,0.364908,0.216992,0.143925 +bot_04633,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8781,0.9366,0.9841,0.262011,0.363158,0.364893,0.009938 +bot_04634,splash_driven,0.8350,0.9753,1.0000,0.8410,1.0000,1.0000,0.9636,0.9622,0.9588,0.669125,0.241964,0.010655,0.078256 +bot_04635,interstitial_focus,0.7138,1.0000,0.6243,0.6381,1.0000,0.8187,1.0000,1.0000,1.0000,0.402275,0.491960,0.058182,0.047583 +bot_04636,churn_sensitive,0.4433,0.6539,0.3129,0.6423,0.3851,0.4951,0.7163,1.0000,0.6463,0.247679,0.430658,0.241240,0.080423 +bot_04637,network_bound,0.7402,0.6937,0.8333,1.0000,0.7191,0.8444,0.5933,1.0000,0.7928,0.219721,0.177820,0.199252,0.403207 +bot_04638,reward_heavy,1.0000,1.0000,0.5808,1.0000,0.7627,0.5606,1.0000,1.0000,1.0000,0.644431,0.200493,0.008738,0.146337 +bot_04639,splash_driven,0.6510,1.0000,1.0000,1.0000,0.9364,1.0000,0.8187,0.8778,0.9772,0.697145,0.178459,0.046935,0.077461 +bot_04640,balanced,1.0000,1.0000,0.9038,1.0000,1.0000,0.9180,1.0000,1.0000,1.0000,0.310733,0.361560,0.089496,0.238211 +bot_04641,interstitial_focus,0.7563,1.0000,1.0000,0.6902,1.0000,0.5873,0.8919,1.0000,0.9477,0.291296,0.516133,0.180647,0.011924 +bot_04642,interstitial_focus,0.6090,1.0000,0.6410,0.9280,1.0000,0.7438,0.9441,1.0000,1.0000,0.278450,0.358317,0.352913,0.010320 +bot_04643,reward_heavy,1.0000,0.5939,0.5640,1.0000,0.7978,0.5253,0.9488,0.8288,1.0000,0.567583,0.203668,0.218948,0.009801 +bot_04644,reward_heavy,1.0000,0.9700,0.5638,1.0000,0.6780,0.6520,1.0000,0.7563,1.0000,0.562297,0.210890,0.214069,0.012744 +bot_04645,interstitial_focus,0.5615,1.0000,1.0000,0.8491,1.0000,0.6224,0.8825,1.0000,1.0000,0.222740,0.379266,0.281467,0.116528 +bot_04646,reward_heavy,1.0000,0.8379,0.9794,1.0000,0.8989,0.6998,1.0000,0.9260,1.0000,0.553988,0.422045,0.011983,0.011983 +bot_04647,interstitial_focus,0.4826,1.0000,1.0000,0.7898,1.0000,0.8922,0.8413,1.0000,1.0000,0.424156,0.356821,0.208313,0.010709 +bot_04648,splash_driven,0.9943,0.9475,1.0000,1.0000,1.0000,1.0000,0.9022,1.0000,1.0000,0.593903,0.226405,0.092487,0.087206 +bot_04649,balanced,1.0000,1.0000,1.0000,0.8816,1.0000,0.7917,1.0000,0.9229,1.0000,0.460393,0.303884,0.071618,0.164105 +bot_04650,reward_heavy,1.0000,0.6260,0.5745,1.0000,0.6585,0.6824,0.9200,0.6837,1.0000,0.638832,0.170768,0.084957,0.105443 +bot_04651,splash_driven,1.0000,0.8434,1.0000,0.9468,0.9632,1.0000,1.0000,0.8799,1.0000,0.816918,0.163031,0.010026,0.010026 +bot_04652,churn_sensitive,0.7263,0.4950,0.3623,0.7922,0.6636,0.5562,0.6744,1.0000,0.5740,0.100282,0.233124,0.393307,0.273286 +bot_04653,balanced,1.0000,1.0000,0.9165,1.0000,0.8099,0.9252,0.9390,1.0000,1.0000,0.275301,0.315316,0.308104,0.101279 +bot_04654,splash_driven,0.7290,0.7238,1.0000,1.0000,0.9473,1.0000,0.9148,0.8622,0.8655,0.689285,0.106832,0.181723,0.022160 +bot_04655,reward_heavy,1.0000,0.6930,0.7009,1.0000,0.9679,0.6019,0.9877,0.8919,1.0000,0.770198,0.207603,0.011099,0.011099 +bot_04656,interstitial_focus,0.6761,1.0000,1.0000,0.8145,1.0000,0.7972,0.8323,0.8687,1.0000,0.310119,0.480171,0.110050,0.099660 +bot_04657,balanced,1.0000,1.0000,1.0000,0.9834,0.9700,1.0000,0.9207,0.8554,1.0000,0.346988,0.399659,0.104621,0.148732 +bot_04658,churn_sensitive,0.5594,0.4571,0.2416,0.5678,0.6540,0.6540,0.6929,1.0000,0.5424,0.325292,0.198304,0.187148,0.289256 +bot_04659,reward_heavy,1.0000,0.5907,0.7111,1.0000,0.8828,0.6369,1.0000,0.8819,1.0000,0.561030,0.291105,0.138584,0.009281 +bot_04660,network_bound,0.7155,1.0000,0.8947,0.9336,0.5665,0.7533,0.6583,1.0000,0.7811,0.148842,0.269615,0.173162,0.408381 +bot_04661,balanced,0.8203,1.0000,1.0000,1.0000,1.0000,0.8452,1.0000,1.0000,1.0000,0.362583,0.249721,0.185457,0.202239 +bot_04662,interstitial_focus,0.8094,1.0000,0.7421,0.6560,1.0000,0.7524,0.9527,1.0000,0.9319,0.339312,0.463538,0.145962,0.051188 +bot_04663,churn_sensitive,0.5497,0.6646,0.4381,0.7205,0.4659,0.5911,0.5609,1.0000,0.5334,0.166800,0.472168,0.204064,0.156968 +bot_04664,reward_heavy,1.0000,0.7870,0.5930,1.0000,0.7863,0.4981,0.8957,1.0000,1.0000,0.758909,0.218770,0.011161,0.011161 +bot_04665,balanced,1.0000,1.0000,0.9735,0.9439,1.0000,1.0000,1.0000,0.9037,1.0000,0.408575,0.436300,0.077448,0.077677 +bot_04666,reward_heavy,1.0000,1.0000,0.9619,1.0000,0.9502,0.5049,0.8855,1.0000,1.0000,0.609542,0.200827,0.179535,0.010096 +bot_04667,churn_sensitive,0.3643,0.4107,0.3928,0.6757,0.3411,0.2816,0.7074,1.0000,0.6023,0.237650,0.282093,0.223822,0.256435 +bot_04668,interstitial_focus,0.7551,1.0000,0.8944,0.7783,1.0000,0.5794,1.0000,1.0000,1.0000,0.464253,0.355228,0.167803,0.012716 +bot_04669,reward_heavy,1.0000,1.0000,0.7085,1.0000,0.7670,0.5844,1.0000,0.7818,1.0000,0.541624,0.272498,0.061316,0.124562 +bot_04670,interstitial_focus,0.4836,1.0000,0.7273,0.7929,1.0000,0.5209,0.9871,1.0000,1.0000,0.426156,0.295102,0.191846,0.086896 +bot_04671,balanced,0.8214,1.0000,0.9235,0.8996,0.9708,1.0000,0.8851,0.8596,1.0000,0.457004,0.405306,0.128570,0.009120 +bot_04672,churn_sensitive,0.5244,0.7513,0.5620,0.6764,0.6925,0.3667,0.8367,1.0000,0.4653,0.178055,0.270025,0.328720,0.223200 +bot_04673,interstitial_focus,0.9192,1.0000,0.9327,0.5724,1.0000,0.7301,1.0000,0.8429,1.0000,0.287121,0.325900,0.320530,0.066449 +bot_04674,splash_driven,0.6954,0.8269,1.0000,0.9766,0.8191,1.0000,0.9734,0.9302,0.9181,0.596986,0.151147,0.155923,0.095944 +bot_04675,reward_heavy,1.0000,1.0000,0.5890,1.0000,0.9715,0.5217,1.0000,0.9114,1.0000,0.473559,0.191871,0.199268,0.135303 +bot_04676,reward_heavy,1.0000,1.0000,0.8146,1.0000,0.8313,0.5965,0.9676,0.9027,1.0000,0.492050,0.316833,0.142948,0.048169 +bot_04677,reward_heavy,1.0000,0.9203,0.6272,1.0000,0.6292,0.6601,1.0000,0.7437,1.0000,0.489628,0.389574,0.009885,0.110913 +bot_04678,reward_heavy,1.0000,0.6410,0.9774,1.0000,0.6380,0.7405,1.0000,0.9345,1.0000,0.585787,0.246818,0.158300,0.009095 +bot_04679,splash_driven,0.7107,0.7754,1.0000,1.0000,0.9210,1.0000,0.8057,0.9991,1.0000,0.828336,0.048763,0.013042,0.109859 +bot_04680,reward_heavy,1.0000,0.6004,0.5820,1.0000,0.8497,0.5668,0.8987,0.9928,1.0000,0.602650,0.167551,0.107063,0.122736 +bot_04681,reward_heavy,1.0000,1.0000,0.5788,1.0000,0.5732,0.5311,0.9658,0.8401,1.0000,0.438997,0.223248,0.199567,0.138188 +bot_04682,reward_heavy,1.0000,0.9561,0.8213,1.0000,0.8403,0.5613,1.0000,0.7083,1.0000,0.490790,0.211494,0.174170,0.123546 +bot_04683,reward_heavy,1.0000,0.9981,0.9201,1.0000,0.7539,0.6720,1.0000,1.0000,1.0000,0.600483,0.193209,0.012660,0.193648 +bot_04684,splash_driven,0.9897,1.0000,1.0000,1.0000,0.9908,1.0000,0.7999,0.8771,0.9637,0.716200,0.210260,0.019007,0.054534 +bot_04685,interstitial_focus,0.6328,1.0000,1.0000,0.5748,1.0000,0.8648,1.0000,1.0000,1.0000,0.368287,0.302037,0.265684,0.063992 +bot_04686,reward_heavy,1.0000,0.6205,1.0000,1.0000,0.8711,0.7617,1.0000,0.7999,1.0000,0.731474,0.239873,0.010389,0.018265 +bot_04687,interstitial_focus,0.7026,1.0000,0.8935,0.5989,1.0000,0.6195,1.0000,0.9402,1.0000,0.448458,0.396132,0.145545,0.009866 +bot_04688,reward_heavy,1.0000,0.7315,0.5873,1.0000,0.9139,0.7610,0.9498,0.6942,1.0000,0.485322,0.273566,0.139298,0.101814 +bot_04689,interstitial_focus,0.5610,1.0000,0.6354,0.8460,1.0000,0.6822,1.0000,0.8513,1.0000,0.260630,0.511853,0.212514,0.015002 +bot_04690,splash_driven,1.0000,0.7083,1.0000,0.8789,0.9646,1.0000,1.0000,1.0000,1.0000,0.718767,0.239684,0.032578,0.008971 +bot_04691,splash_driven,0.6942,1.0000,1.0000,0.8239,1.0000,1.0000,0.7605,1.0000,0.8949,0.736464,0.148268,0.010185,0.105083 +bot_04692,churn_sensitive,0.3813,0.5302,0.2977,0.8144,0.6110,0.6234,0.8478,1.0000,0.6967,0.222877,0.246666,0.321116,0.209341 +bot_04693,network_bound,0.6285,0.7011,0.8050,0.7033,0.6637,0.7162,0.5378,1.0000,0.8635,0.014761,0.045779,0.271018,0.668442 +bot_04694,network_bound,0.7666,0.6226,0.6536,0.8821,0.6630,0.8310,0.5358,1.0000,0.7974,0.136744,0.199708,0.287661,0.375888 +bot_04695,splash_driven,0.6470,0.8755,1.0000,0.9524,1.0000,1.0000,0.8172,1.0000,1.0000,0.669438,0.227630,0.008461,0.094470 +bot_04696,reward_heavy,1.0000,1.0000,0.6698,1.0000,0.8627,0.4852,0.9344,0.8016,1.0000,0.485748,0.332487,0.057264,0.124501 +bot_04697,splash_driven,0.6546,1.0000,1.0000,1.0000,1.0000,1.0000,0.9005,0.8314,0.9059,0.712675,0.218115,0.040265,0.028946 +bot_04698,reward_heavy,1.0000,0.8195,0.6129,1.0000,0.5420,0.8004,1.0000,0.9095,1.0000,0.699966,0.252586,0.036482,0.010966 +bot_04699,network_bound,0.9836,0.7379,1.0000,1.0000,0.6018,0.9038,0.7666,1.0000,0.7997,0.059247,0.170306,0.371961,0.398485 +bot_04700,splash_driven,1.0000,1.0000,1.0000,0.8730,1.0000,1.0000,1.0000,1.0000,1.0000,0.714325,0.051220,0.155582,0.078873 +bot_04701,splash_driven,0.9833,0.7757,1.0000,0.9986,0.8635,1.0000,0.9553,0.8894,0.9515,0.741697,0.239687,0.009308,0.009308 +bot_04702,churn_sensitive,0.4908,0.6209,0.6840,0.4828,0.3499,0.3247,0.7255,1.0000,0.5501,0.196326,0.302375,0.234829,0.266470 +bot_04703,interstitial_focus,0.7011,1.0000,0.9565,0.8402,1.0000,0.5500,0.9881,1.0000,1.0000,0.299594,0.443111,0.211118,0.046177 +bot_04704,network_bound,0.7783,1.0000,1.0000,0.9214,0.6014,0.5438,0.7567,1.0000,0.7373,0.017498,0.250679,0.267071,0.464752 +bot_04705,interstitial_focus,0.7945,1.0000,0.7834,0.9115,1.0000,0.5773,0.8564,0.9144,0.9799,0.260378,0.608944,0.115990,0.014688 +bot_04706,interstitial_focus,0.9114,1.0000,0.7710,0.6337,1.0000,0.8574,1.0000,1.0000,1.0000,0.368039,0.427607,0.195980,0.008375 +bot_04707,splash_driven,0.9931,0.7495,1.0000,0.8276,0.9747,1.0000,1.0000,1.0000,0.9201,0.661689,0.244208,0.085781,0.008322 +bot_04708,splash_driven,0.6497,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8618,0.724517,0.183550,0.073390,0.018543 +bot_04709,splash_driven,0.7541,0.9971,1.0000,1.0000,0.8890,1.0000,1.0000,1.0000,0.9909,0.778979,0.202970,0.009025,0.009025 +bot_04710,churn_sensitive,0.5304,0.8514,0.5756,0.4661,0.6740,0.3448,0.7828,1.0000,0.5538,0.384041,0.164160,0.262531,0.189268 +bot_04711,interstitial_focus,0.7186,1.0000,0.6404,0.7128,1.0000,0.7669,0.9014,0.8335,1.0000,0.311941,0.339956,0.336769,0.011334 +bot_04712,reward_heavy,1.0000,0.8660,0.6818,1.0000,0.5654,0.7939,1.0000,0.7087,1.0000,0.571246,0.408499,0.010128,0.010128 +bot_04713,splash_driven,0.7678,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9811,1.0000,0.762269,0.206989,0.008557,0.022185 +bot_04714,interstitial_focus,0.6489,1.0000,0.6501,0.7914,1.0000,0.4825,1.0000,0.9628,0.9875,0.264288,0.353237,0.197916,0.184559 +bot_04715,reward_heavy,1.0000,0.8334,1.0000,1.0000,0.7168,0.6635,1.0000,0.7389,1.0000,0.707465,0.164544,0.009768,0.118223 +bot_04716,reward_heavy,1.0000,0.9409,0.9041,1.0000,0.7560,0.6813,1.0000,0.8292,1.0000,0.558149,0.377627,0.054893,0.009332 +bot_04717,reward_heavy,1.0000,0.8873,0.8012,1.0000,0.6873,0.5954,1.0000,1.0000,1.0000,0.553805,0.288553,0.009384,0.148259 +bot_04718,reward_heavy,1.0000,0.9646,0.7731,1.0000,0.7280,0.7340,1.0000,0.9510,1.0000,0.554982,0.308055,0.129371,0.007592 +bot_04719,churn_sensitive,0.5554,0.8561,0.6373,0.6921,0.3530,0.4268,0.7285,1.0000,0.5619,0.239910,0.147411,0.321126,0.291553 +bot_04720,splash_driven,0.9283,0.7840,1.0000,1.0000,0.8563,1.0000,0.9063,1.0000,0.8907,0.689302,0.266574,0.032745,0.011378 +bot_04721,churn_sensitive,0.5663,0.4187,0.3900,0.4375,0.4842,0.5764,0.8459,1.0000,0.5198,0.308879,0.253690,0.214165,0.223266 +bot_04722,network_bound,1.0000,1.0000,0.6252,0.7389,0.5753,0.6976,0.8233,1.0000,0.7145,0.226488,0.177519,0.209760,0.386233 +bot_04723,reward_heavy,1.0000,0.6454,0.6067,1.0000,0.5783,0.5373,1.0000,0.9826,1.0000,0.769881,0.182300,0.036656,0.011163 +bot_04724,splash_driven,1.0000,0.7112,1.0000,0.9596,0.8169,1.0000,0.9785,1.0000,0.9417,0.883592,0.045129,0.010188,0.061091 +bot_04725,reward_heavy,1.0000,0.9857,0.6957,1.0000,0.8657,0.6549,0.8876,0.8925,1.0000,0.620770,0.197002,0.013635,0.168594 +bot_04726,interstitial_focus,0.5538,1.0000,0.6387,0.7658,1.0000,0.7851,0.9162,1.0000,0.9604,0.269770,0.403567,0.182961,0.143701 +bot_04727,interstitial_focus,0.9475,1.0000,0.8206,0.9421,1.0000,0.7002,0.9181,1.0000,1.0000,0.379775,0.406723,0.183603,0.029898 +bot_04728,splash_driven,1.0000,0.6987,1.0000,1.0000,0.9728,1.0000,0.7754,1.0000,0.9876,0.802741,0.092952,0.093552,0.010754 +bot_04729,reward_heavy,1.0000,0.7856,0.7285,1.0000,0.8160,0.6973,1.0000,0.6884,1.0000,0.707199,0.241920,0.039236,0.011645 +bot_04730,network_bound,0.9948,0.6259,0.6929,1.0000,0.7356,0.6348,0.7915,1.0000,0.9361,0.085971,0.221728,0.267817,0.424484 +bot_04731,balanced,0.8910,1.0000,1.0000,1.0000,0.8623,1.0000,1.0000,0.9482,0.9516,0.423470,0.198589,0.249000,0.128941 +bot_04732,churn_sensitive,0.4347,0.6010,0.5786,0.4972,0.6077,0.2892,0.8443,1.0000,0.5032,0.235650,0.416227,0.242840,0.105284 +bot_04733,splash_driven,1.0000,0.8438,1.0000,0.9280,1.0000,1.0000,0.8612,0.8205,0.8993,0.853830,0.097115,0.038584,0.010471 +bot_04734,reward_heavy,1.0000,0.8498,0.9197,1.0000,0.6717,0.6814,1.0000,0.9481,1.0000,0.568767,0.202240,0.154552,0.074441 +bot_04735,splash_driven,0.9116,1.0000,1.0000,0.8780,0.8864,1.0000,0.9596,1.0000,0.8575,0.761796,0.216052,0.011076,0.011076 +bot_04736,interstitial_focus,0.7526,1.0000,0.6297,0.6292,1.0000,0.6303,1.0000,1.0000,0.9724,0.197553,0.537382,0.141432,0.123633 +bot_04737,splash_driven,1.0000,0.7443,1.0000,0.8281,1.0000,1.0000,0.8677,0.8385,0.8992,0.800377,0.181071,0.009276,0.009276 +bot_04738,interstitial_focus,0.6824,1.0000,0.8714,0.5912,1.0000,0.8031,0.9888,0.8251,1.0000,0.258147,0.368852,0.145120,0.227881 +bot_04739,reward_heavy,1.0000,0.7424,0.8299,1.0000,0.6349,0.5355,0.9965,1.0000,1.0000,0.531553,0.269717,0.153996,0.044733 +bot_04740,reward_heavy,1.0000,0.9383,0.6726,1.0000,0.5898,0.7029,0.9175,0.9215,1.0000,0.658329,0.171714,0.044974,0.124983 +bot_04741,churn_sensitive,0.6531,0.4206,0.6729,0.5205,0.5456,0.4164,0.7349,1.0000,0.5814,0.221230,0.249686,0.316152,0.212933 +bot_04742,splash_driven,1.0000,0.9549,1.0000,1.0000,1.0000,1.0000,0.8091,1.0000,0.9330,0.810303,0.078334,0.100414,0.010949 +bot_04743,reward_heavy,1.0000,0.6691,0.5719,1.0000,0.9100,0.6645,0.8857,0.7066,1.0000,0.706164,0.213516,0.014864,0.065456 +bot_04744,reward_heavy,1.0000,0.6405,0.6632,1.0000,0.6157,0.5818,1.0000,1.0000,1.0000,0.513636,0.345352,0.088379,0.052634 +bot_04745,balanced,0.9192,0.9691,0.9886,0.8941,1.0000,0.8024,1.0000,0.8683,0.9422,0.288570,0.348089,0.194259,0.169082 +bot_04746,churn_sensitive,0.4506,0.5904,0.4773,0.6800,0.3645,0.3689,0.7530,1.0000,0.5671,0.221983,0.439252,0.199717,0.139048 +bot_04747,reward_heavy,1.0000,0.7855,0.7878,1.0000,0.5472,0.6212,1.0000,0.6884,1.0000,0.563817,0.264013,0.103224,0.068945 +bot_04748,splash_driven,0.8620,0.7112,1.0000,0.8736,0.9594,1.0000,0.8036,1.0000,0.9012,0.835776,0.138919,0.012652,0.012652 +bot_04749,reward_heavy,1.0000,0.9658,0.5718,1.0000,0.7263,0.4244,0.9406,0.6808,1.0000,0.663197,0.161109,0.010937,0.164757 +bot_04750,churn_sensitive,0.7718,0.7510,0.3329,0.6229,0.7150,0.5588,0.7927,1.0000,0.5505,0.177961,0.302722,0.179043,0.340274 +bot_04751,network_bound,0.9220,0.8234,1.0000,1.0000,0.9639,0.7466,0.6227,1.0000,0.7017,0.018147,0.095633,0.198709,0.687511 +bot_04752,reward_heavy,1.0000,0.6639,0.9576,1.0000,0.8772,0.6843,1.0000,0.7024,1.0000,0.622426,0.301574,0.066229,0.009771 +bot_04753,interstitial_focus,0.8032,1.0000,0.9062,0.8561,1.0000,0.7943,0.9023,0.8536,1.0000,0.348481,0.303842,0.222570,0.125108 +bot_04754,balanced,0.9490,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8235,1.0000,0.264073,0.426118,0.300305,0.009504 +bot_04755,reward_heavy,1.0000,0.9304,0.9616,1.0000,0.7289,0.4030,0.9496,0.8700,1.0000,0.489112,0.407524,0.093484,0.009880 +bot_04756,splash_driven,0.8400,0.9996,1.0000,1.0000,0.9007,1.0000,0.9128,1.0000,0.9201,0.570345,0.187203,0.130222,0.112230 +bot_04757,interstitial_focus,0.5727,1.0000,0.6538,0.7531,1.0000,0.4935,1.0000,0.8890,1.0000,0.263729,0.482785,0.166743,0.086743 +bot_04758,network_bound,0.9296,0.9479,0.8505,0.9540,0.7040,0.8088,0.7566,1.0000,0.7380,0.248564,0.259658,0.178313,0.313466 +bot_04759,network_bound,0.8182,1.0000,0.6220,1.0000,0.8222,0.8391,0.7659,1.0000,0.8185,0.088196,0.282332,0.331110,0.298363 +bot_04760,splash_driven,0.8648,0.9567,1.0000,1.0000,0.8668,1.0000,0.9838,1.0000,1.0000,0.642458,0.273513,0.050948,0.033081 +bot_04761,interstitial_focus,0.8514,1.0000,0.9706,0.8867,1.0000,0.6405,0.8693,0.9713,1.0000,0.268381,0.342054,0.278034,0.111531 +bot_04762,interstitial_focus,0.4879,1.0000,0.8558,0.7343,1.0000,0.8325,0.8793,1.0000,1.0000,0.349143,0.459455,0.082394,0.109008 +bot_04763,reward_heavy,1.0000,0.9283,0.9262,1.0000,0.6915,0.7998,0.9091,1.0000,1.0000,0.618965,0.205978,0.164844,0.010213 +bot_04764,balanced,1.0000,1.0000,0.8971,0.8434,1.0000,0.8890,1.0000,0.8637,0.9413,0.381025,0.370900,0.239923,0.008153 +bot_04765,interstitial_focus,0.5912,1.0000,0.8044,0.5822,1.0000,0.8373,1.0000,0.9561,1.0000,0.372288,0.380387,0.168482,0.078843 +bot_04766,interstitial_focus,0.5226,1.0000,0.9115,0.7779,1.0000,0.6421,0.9822,0.9818,0.9445,0.414734,0.322038,0.148051,0.115177 +bot_04767,splash_driven,0.6571,0.8922,1.0000,1.0000,1.0000,1.0000,1.0000,0.8598,1.0000,0.749849,0.059120,0.160152,0.030880 +bot_04768,splash_driven,1.0000,0.9849,1.0000,1.0000,0.9151,1.0000,0.8388,0.8828,0.9303,0.708872,0.070883,0.176060,0.044185 +bot_04769,splash_driven,0.7635,0.7792,1.0000,1.0000,1.0000,1.0000,0.8921,0.9280,0.8471,0.758011,0.223727,0.009131,0.009131 +bot_04770,splash_driven,1.0000,0.8306,1.0000,1.0000,0.8668,1.0000,0.7837,0.8285,0.9234,0.620390,0.174764,0.105351,0.099495 +bot_04771,reward_heavy,1.0000,0.5976,0.6234,1.0000,0.9166,0.5720,1.0000,0.9103,1.0000,0.586042,0.286204,0.119527,0.008227 +bot_04772,balanced,0.9295,1.0000,0.9625,1.0000,0.9735,0.8211,1.0000,0.9865,1.0000,0.325501,0.303096,0.281315,0.090088 +bot_04773,splash_driven,1.0000,1.0000,1.0000,0.8047,1.0000,1.0000,1.0000,1.0000,0.9451,0.808632,0.080585,0.009064,0.101719 +bot_04774,reward_heavy,1.0000,0.6012,0.5650,1.0000,0.8972,0.7584,0.9580,0.9136,1.0000,0.594836,0.223575,0.170517,0.011073 +bot_04775,reward_heavy,1.0000,0.6834,0.5821,1.0000,0.6502,0.4256,0.9922,0.8032,1.0000,0.494303,0.343220,0.139493,0.022983 +bot_04776,balanced,1.0000,1.0000,1.0000,1.0000,0.8981,1.0000,0.9396,0.9172,1.0000,0.402334,0.253302,0.208548,0.135816 +bot_04777,balanced,0.9028,1.0000,1.0000,0.8952,1.0000,1.0000,1.0000,1.0000,1.0000,0.313379,0.253757,0.240217,0.192647 +bot_04778,balanced,0.8820,1.0000,0.8773,1.0000,1.0000,0.8601,0.9952,0.9237,1.0000,0.312431,0.507816,0.167431,0.012322 +bot_04779,reward_heavy,1.0000,0.6646,0.8015,1.0000,0.7961,0.7735,1.0000,1.0000,1.0000,0.747362,0.220272,0.018102,0.014263 +bot_04780,network_bound,0.6926,0.6948,0.6628,1.0000,0.8142,0.5715,0.7509,1.0000,0.7492,0.064971,0.213657,0.387226,0.334146 +bot_04781,reward_heavy,1.0000,0.6208,0.7435,1.0000,0.8607,0.7599,1.0000,0.7972,1.0000,0.561527,0.157109,0.116574,0.164789 +bot_04782,interstitial_focus,0.9362,1.0000,0.8856,0.7278,1.0000,0.8194,0.9844,0.9053,1.0000,0.488840,0.367142,0.131570,0.012447 +bot_04783,interstitial_focus,0.5491,1.0000,0.9818,0.6486,1.0000,0.6954,1.0000,1.0000,1.0000,0.365469,0.422185,0.203281,0.009066 +bot_04784,splash_driven,1.0000,1.0000,1.0000,1.0000,0.9751,1.0000,1.0000,1.0000,0.8636,0.641360,0.337866,0.010387,0.010387 +bot_04785,interstitial_focus,0.7178,1.0000,0.8201,0.9762,1.0000,0.8716,0.9443,0.8355,1.0000,0.389657,0.466066,0.135242,0.009036 +bot_04786,reward_heavy,1.0000,0.8443,0.9847,1.0000,0.5722,0.6524,1.0000,0.7535,1.0000,0.610842,0.141253,0.237129,0.010777 +bot_04787,interstitial_focus,0.9301,1.0000,0.8515,0.8810,1.0000,0.6747,1.0000,1.0000,1.0000,0.303527,0.599717,0.071468,0.025288 +bot_04788,churn_sensitive,0.3390,0.6694,0.3035,0.4355,0.5745,0.4977,0.7769,1.0000,0.6654,0.175199,0.140059,0.322318,0.362424 +bot_04789,network_bound,1.0000,0.9445,0.6485,0.8872,0.7161,0.5600,0.7558,1.0000,0.7905,0.010420,0.065088,0.366204,0.558288 +bot_04790,interstitial_focus,0.4999,1.0000,0.6411,0.8116,1.0000,0.8585,0.9108,0.9790,1.0000,0.320315,0.522391,0.145690,0.011604 +bot_04791,churn_sensitive,0.5791,0.8395,0.3749,0.7323,0.7322,0.2497,0.7256,1.0000,0.5847,0.170742,0.362866,0.404132,0.062260 +bot_04792,churn_sensitive,0.5888,0.7012,0.2462,0.7559,0.6970,0.6266,0.6542,1.0000,0.5434,0.276903,0.248258,0.266632,0.208206 +bot_04793,network_bound,0.9955,1.0000,0.6829,0.7115,0.7821,0.7610,0.7943,1.0000,0.8383,0.107546,0.202357,0.162975,0.527123 +bot_04794,interstitial_focus,0.7031,1.0000,1.0000,0.7949,1.0000,0.7432,0.8179,1.0000,1.0000,0.335262,0.329118,0.192265,0.143355 +bot_04795,churn_sensitive,0.4627,0.6266,0.3077,0.6340,0.4592,0.3432,0.7961,1.0000,0.4888,0.144314,0.311084,0.447596,0.097006 +bot_04796,reward_heavy,1.0000,0.6602,0.7368,1.0000,0.5434,0.5291,1.0000,0.9516,1.0000,0.544986,0.199654,0.160288,0.095072 +bot_04797,reward_heavy,1.0000,0.7101,0.7296,1.0000,0.9501,0.4856,0.9366,0.7443,1.0000,0.564990,0.305581,0.120786,0.008643 +bot_04798,churn_sensitive,0.6735,0.6126,0.4222,0.4202,0.4136,0.5846,0.6105,1.0000,0.6811,0.158717,0.247176,0.385731,0.208376 +bot_04799,interstitial_focus,0.8783,1.0000,0.6222,0.9691,1.0000,0.6292,0.8013,0.9923,0.9550,0.333682,0.303699,0.194075,0.168543 +bot_04800,network_bound,0.6512,0.9258,1.0000,0.8213,0.6648,0.6723,0.6589,1.0000,0.9059,0.172187,0.193216,0.277220,0.357376 +bot_04801,reward_heavy,1.0000,0.8972,1.0000,1.0000,0.9040,0.7382,1.0000,0.7272,1.0000,0.552054,0.243084,0.196722,0.008141 +bot_04802,reward_heavy,1.0000,0.9406,0.7715,1.0000,0.7112,0.6793,0.8986,0.9280,1.0000,0.548434,0.313113,0.055699,0.082754 +bot_04803,reward_heavy,1.0000,0.7110,1.0000,1.0000,0.5511,0.6874,1.0000,0.7851,1.0000,0.451730,0.347504,0.165463,0.035303 +bot_04804,reward_heavy,1.0000,0.9761,0.8009,1.0000,0.6208,0.8228,0.9972,1.0000,1.0000,0.597332,0.195456,0.199113,0.008100 +bot_04805,splash_driven,0.7433,0.8763,1.0000,0.8532,0.8137,1.0000,0.8683,0.9591,1.0000,0.747214,0.075370,0.167770,0.009646 +bot_04806,splash_driven,1.0000,0.9650,1.0000,0.9230,1.0000,1.0000,0.9920,0.8607,0.9561,0.666182,0.302722,0.010315,0.020781 +bot_04807,network_bound,0.8942,0.6927,1.0000,0.9079,0.7170,0.5889,0.8062,1.0000,0.8043,0.184915,0.036446,0.378868,0.399771 +bot_04808,splash_driven,0.6775,0.8541,1.0000,1.0000,0.9919,1.0000,1.0000,0.9455,0.8429,0.720250,0.189666,0.080182,0.009901 +bot_04809,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,0.9479,0.8628,1.0000,0.9401,0.347303,0.377864,0.120061,0.154772 +bot_04810,interstitial_focus,0.7890,1.0000,0.8461,0.7574,1.0000,0.8567,0.8264,1.0000,1.0000,0.233647,0.495050,0.154310,0.116993 +bot_04811,balanced,1.0000,0.9031,1.0000,1.0000,1.0000,0.8543,0.9012,0.8385,0.9722,0.298513,0.417511,0.129462,0.154514 +bot_04812,churn_sensitive,0.7290,0.7698,0.5984,0.4843,0.5105,0.6514,0.8015,1.0000,0.6087,0.406769,0.198350,0.265535,0.129347 +bot_04813,network_bound,0.8993,1.0000,0.5765,0.9962,0.9169,0.6562,0.8053,1.0000,0.8802,0.009773,0.236364,0.226038,0.527824 +bot_04814,reward_heavy,1.0000,0.8268,0.7097,1.0000,0.6851,0.7856,1.0000,0.9864,1.0000,0.727411,0.237587,0.023826,0.011176 +bot_04815,interstitial_focus,0.8152,1.0000,0.7970,0.7791,1.0000,0.4963,0.8063,1.0000,1.0000,0.312691,0.539807,0.058811,0.088691 +bot_04816,interstitial_focus,0.5750,1.0000,0.9200,0.8902,1.0000,0.6951,0.9121,0.8837,1.0000,0.439471,0.475275,0.073666,0.011588 +bot_04817,interstitial_focus,0.6998,1.0000,0.8465,0.8804,1.0000,0.5103,1.0000,0.8471,1.0000,0.342085,0.386959,0.160995,0.109961 +bot_04818,reward_heavy,1.0000,0.6106,0.9494,1.0000,0.6088,0.6761,0.9536,1.0000,1.0000,0.590927,0.244639,0.118172,0.046262 +bot_04819,splash_driven,0.9128,0.9315,1.0000,0.9181,0.8355,1.0000,0.9659,0.8543,1.0000,0.744243,0.095124,0.117634,0.042999 +bot_04820,balanced,0.8106,1.0000,1.0000,1.0000,0.8010,0.9975,1.0000,1.0000,0.9375,0.401433,0.446593,0.142089,0.009884 +bot_04821,splash_driven,0.6741,1.0000,1.0000,1.0000,0.9473,1.0000,1.0000,0.8727,0.9765,0.600874,0.262410,0.015933,0.120784 +bot_04822,reward_heavy,1.0000,0.8458,0.6971,1.0000,0.5890,0.8368,0.8806,0.8925,1.0000,0.552784,0.164777,0.195431,0.087008 +bot_04823,interstitial_focus,0.8045,1.0000,0.7592,0.7510,1.0000,0.4887,0.9941,0.9108,1.0000,0.334009,0.376478,0.186298,0.103215 +bot_04824,interstitial_focus,0.6564,1.0000,0.9446,0.8299,1.0000,0.7458,0.9606,1.0000,0.9708,0.313123,0.402618,0.275763,0.008495 +bot_04825,reward_heavy,1.0000,1.0000,0.8191,1.0000,0.6474,0.4760,1.0000,0.8569,1.0000,0.554671,0.204377,0.228032,0.012920 +bot_04826,balanced,1.0000,1.0000,0.9983,1.0000,0.9148,0.9593,0.8791,1.0000,0.9812,0.332905,0.255925,0.399966,0.011204 +bot_04827,reward_heavy,1.0000,0.9061,0.8793,1.0000,0.9406,0.6883,1.0000,0.9405,1.0000,0.699837,0.217360,0.072217,0.010586 +bot_04828,splash_driven,0.7469,0.8222,1.0000,0.8905,0.9606,1.0000,0.8800,0.8685,0.8783,0.692393,0.178674,0.112055,0.016879 +bot_04829,interstitial_focus,0.8231,1.0000,0.7218,0.8604,1.0000,0.5091,0.9682,0.9807,0.9684,0.305235,0.296273,0.268945,0.129547 +bot_04830,interstitial_focus,0.5349,1.0000,1.0000,0.6525,1.0000,0.7692,1.0000,1.0000,0.9739,0.267920,0.380541,0.188127,0.163411 +bot_04831,reward_heavy,1.0000,0.8521,0.6093,1.0000,0.5744,0.5898,0.9231,0.9988,1.0000,0.698333,0.246515,0.009730,0.045422 +bot_04832,network_bound,0.7408,0.8196,0.9634,1.0000,0.9313,0.5872,0.5545,1.0000,0.8049,0.203857,0.317574,0.158892,0.319677 +bot_04833,splash_driven,0.9321,0.9532,1.0000,0.9779,0.9165,1.0000,0.9822,1.0000,0.8682,0.878628,0.044064,0.045515,0.031793 +bot_04834,splash_driven,0.8012,0.6886,1.0000,1.0000,1.0000,1.0000,0.8685,0.8471,1.0000,0.744390,0.082375,0.161694,0.011541 +bot_04835,balanced,0.8659,1.0000,1.0000,0.8854,0.9018,0.8981,0.9773,0.8823,1.0000,0.447943,0.307215,0.098398,0.146444 +bot_04836,network_bound,0.9349,0.8431,0.8609,0.9459,0.8933,0.8049,0.5848,1.0000,0.7270,0.225790,0.176726,0.307916,0.289568 +bot_04837,splash_driven,1.0000,0.8276,1.0000,1.0000,1.0000,1.0000,0.8864,1.0000,0.8743,0.572505,0.239265,0.091967,0.096263 +bot_04838,splash_driven,1.0000,0.7442,1.0000,1.0000,1.0000,1.0000,0.7762,1.0000,1.0000,0.834759,0.052975,0.102377,0.009889 +bot_04839,balanced,1.0000,1.0000,0.9598,1.0000,0.9700,0.7845,1.0000,0.9063,0.9024,0.502793,0.213179,0.274337,0.009691 +bot_04840,network_bound,0.6820,0.6946,0.6114,0.9427,0.5660,0.8250,0.6953,1.0000,0.7597,0.125165,0.225289,0.393345,0.256201 +bot_04841,splash_driven,1.0000,0.8047,1.0000,0.9796,0.9518,1.0000,0.9733,0.8770,0.9166,0.675563,0.213591,0.007996,0.102850 +bot_04842,splash_driven,0.7754,0.8288,1.0000,0.9028,1.0000,1.0000,1.0000,1.0000,0.8716,0.701030,0.124100,0.016737,0.158133 +bot_04843,churn_sensitive,0.5498,0.6381,0.5959,0.7560,0.6756,0.4339,0.8397,1.0000,0.6256,0.308689,0.240318,0.366781,0.084212 +bot_04844,reward_heavy,1.0000,0.8678,0.8480,1.0000,0.6126,0.7360,1.0000,0.7904,1.0000,0.569762,0.371948,0.048333,0.009957 +bot_04845,reward_heavy,1.0000,1.0000,0.5687,1.0000,0.8755,0.4561,0.8914,0.7464,1.0000,0.585890,0.176763,0.180489,0.056857 +bot_04846,network_bound,1.0000,0.8396,0.8350,0.6971,0.6208,0.5769,0.8088,1.0000,0.8076,0.250971,0.171535,0.166455,0.411038 +bot_04847,splash_driven,1.0000,0.9322,1.0000,1.0000,1.0000,1.0000,0.8022,1.0000,0.8466,0.671221,0.288097,0.009936,0.030746 +bot_04848,balanced,1.0000,1.0000,1.0000,0.9016,1.0000,0.9299,1.0000,1.0000,0.9550,0.443708,0.356317,0.112608,0.087367 +bot_04849,reward_heavy,1.0000,1.0000,0.6647,1.0000,0.5720,0.5785,0.8943,1.0000,1.0000,0.565340,0.228510,0.194398,0.011752 +bot_04850,churn_sensitive,0.5226,0.5993,0.4113,0.5542,0.5924,0.2652,0.6914,1.0000,0.5075,0.318395,0.250086,0.227924,0.203594 +bot_04851,splash_driven,0.8110,0.9950,1.0000,0.9155,1.0000,1.0000,1.0000,1.0000,0.9949,0.838670,0.101395,0.050077,0.009857 +bot_04852,balanced,1.0000,1.0000,1.0000,1.0000,0.8186,0.9666,1.0000,1.0000,1.0000,0.372592,0.419548,0.120265,0.087596 +bot_04853,reward_heavy,1.0000,0.6917,0.6267,1.0000,0.8416,0.4093,1.0000,0.6982,1.0000,0.649154,0.219009,0.010357,0.121480 +bot_04854,splash_driven,0.8717,1.0000,1.0000,1.0000,1.0000,1.0000,0.9887,1.0000,1.0000,0.575014,0.136564,0.172965,0.115457 +bot_04855,network_bound,0.8116,0.6423,0.5606,0.8733,0.9941,0.5710,0.7691,1.0000,0.9048,0.086407,0.142139,0.336314,0.435139 +bot_04856,network_bound,0.7263,0.7789,0.8345,0.7252,0.7075,0.8333,0.6976,1.0000,0.7453,0.187640,0.178192,0.175000,0.459167 +bot_04857,network_bound,0.7409,0.6953,0.6935,1.0000,0.6655,0.8075,0.7145,1.0000,0.7145,0.163706,0.160343,0.267915,0.408036 +bot_04858,interstitial_focus,0.7366,1.0000,0.7062,0.9896,1.0000,0.5538,1.0000,1.0000,1.0000,0.259388,0.537051,0.150536,0.053025 +bot_04859,reward_heavy,1.0000,1.0000,0.7510,1.0000,0.8624,0.6390,1.0000,0.7803,1.0000,0.655411,0.237313,0.009138,0.098138 +bot_04860,reward_heavy,1.0000,0.9571,0.9428,1.0000,0.7788,0.5465,1.0000,0.9228,1.0000,0.617956,0.134201,0.170832,0.077011 +bot_04861,reward_heavy,1.0000,0.6326,0.7420,1.0000,0.7689,0.5420,0.9837,0.6805,1.0000,0.436912,0.351809,0.201686,0.009593 +bot_04862,network_bound,0.9863,1.0000,0.9885,1.0000,0.9595,0.8297,0.5610,1.0000,0.7383,0.076001,0.227812,0.223801,0.472386 +bot_04863,reward_heavy,1.0000,0.9238,0.9995,1.0000,0.7130,0.6774,1.0000,0.7777,1.0000,0.499221,0.322116,0.168876,0.009788 +bot_04864,network_bound,0.7056,0.7056,0.9213,1.0000,0.7739,0.6622,0.7790,1.0000,0.9366,0.012099,0.166270,0.266939,0.554691 +bot_04865,interstitial_focus,0.8654,1.0000,0.7897,0.8863,1.0000,0.5415,0.8749,1.0000,1.0000,0.241951,0.481780,0.264530,0.011739 +bot_04866,reward_heavy,1.0000,0.6777,0.9445,1.0000,0.5849,0.4055,0.9149,0.9148,1.0000,0.523459,0.307108,0.159908,0.009525 +bot_04867,splash_driven,1.0000,0.8736,1.0000,1.0000,0.8604,1.0000,0.8664,0.9513,0.8444,0.681260,0.033467,0.184755,0.100518 +bot_04868,network_bound,0.7831,0.6645,0.9632,1.0000,0.7281,0.8450,0.5409,1.0000,0.7486,0.086739,0.140382,0.257678,0.515200 +bot_04869,balanced,0.8800,1.0000,0.9084,0.8442,0.9247,1.0000,0.9559,1.0000,0.9081,0.371755,0.340138,0.271139,0.016968 +bot_04870,interstitial_focus,0.7373,1.0000,0.6592,0.8230,1.0000,0.6221,0.9002,1.0000,1.0000,0.367128,0.363078,0.126573,0.143221 +bot_04871,reward_heavy,1.0000,0.7704,0.5624,1.0000,0.9314,0.7966,1.0000,0.7098,1.0000,0.547969,0.315886,0.114874,0.021271 +bot_04872,splash_driven,0.7987,0.8757,1.0000,0.9150,0.9278,1.0000,1.0000,0.8818,0.9024,0.894273,0.047996,0.010078,0.047653 +bot_04873,churn_sensitive,0.4212,0.5182,0.5884,0.4845,0.4417,0.5983,0.7632,1.0000,0.6464,0.301512,0.259414,0.172210,0.266864 +bot_04874,reward_heavy,1.0000,0.9793,1.0000,1.0000,0.8452,0.6794,0.9838,0.8265,1.0000,0.511364,0.345544,0.133574,0.009518 +bot_04875,splash_driven,1.0000,0.7551,1.0000,0.9362,1.0000,1.0000,0.9127,1.0000,0.9812,0.791927,0.128993,0.026945,0.052134 +bot_04876,interstitial_focus,0.8963,1.0000,0.8622,0.7831,1.0000,0.6864,0.9651,1.0000,1.0000,0.225057,0.499752,0.265816,0.009375 +bot_04877,churn_sensitive,0.3613,0.4795,0.2372,0.8063,0.4027,0.3903,0.6641,1.0000,0.5478,0.276898,0.322114,0.148235,0.252753 +bot_04878,balanced,0.9337,1.0000,1.0000,1.0000,0.9549,1.0000,1.0000,1.0000,0.9885,0.400065,0.220676,0.187056,0.192203 +bot_04879,reward_heavy,1.0000,0.7863,0.9188,1.0000,0.5515,0.5671,1.0000,0.8075,1.0000,0.588367,0.314544,0.009206,0.087882 +bot_04880,splash_driven,0.6958,0.7852,1.0000,1.0000,0.8325,1.0000,0.7792,0.9725,0.9163,0.799931,0.181240,0.009414,0.009414 +bot_04881,network_bound,0.6581,0.6883,0.9007,0.7074,0.8848,0.7027,0.6569,1.0000,0.7077,0.087410,0.209838,0.229897,0.472856 +bot_04882,balanced,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8949,0.270741,0.338129,0.305069,0.086062 +bot_04883,balanced,1.0000,1.0000,0.8708,1.0000,0.9970,1.0000,1.0000,0.9497,1.0000,0.468973,0.368967,0.148575,0.013486 +bot_04884,balanced,0.8609,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.9870,0.283797,0.276524,0.333585,0.106093 +bot_04885,interstitial_focus,0.9159,1.0000,0.6330,0.9324,1.0000,0.5158,1.0000,0.9033,1.0000,0.239656,0.462022,0.277176,0.021146 +bot_04886,churn_sensitive,0.3666,0.4432,0.5774,0.3926,0.3380,0.2963,0.6778,1.0000,0.4631,0.291339,0.124215,0.353943,0.230503 +bot_04887,reward_heavy,1.0000,0.6056,0.6091,1.0000,0.8034,0.4962,1.0000,0.9886,1.0000,0.522889,0.226986,0.146508,0.103618 +bot_04888,reward_heavy,1.0000,1.0000,0.9019,1.0000,0.7662,0.7129,1.0000,1.0000,1.0000,0.723862,0.248142,0.013998,0.013998 +bot_04889,interstitial_focus,0.7411,1.0000,0.8642,0.8051,1.0000,0.6515,0.9484,1.0000,1.0000,0.408741,0.281702,0.299654,0.009903 +bot_04890,reward_heavy,1.0000,0.6703,0.6871,1.0000,0.8957,0.8231,0.9752,0.8909,1.0000,0.534850,0.162838,0.187847,0.114464 +bot_04891,splash_driven,0.9837,0.8861,1.0000,1.0000,1.0000,1.0000,0.7568,1.0000,1.0000,0.631401,0.147346,0.106612,0.114642 +bot_04892,reward_heavy,1.0000,0.8525,0.6824,1.0000,0.5637,0.5397,1.0000,0.8786,1.0000,0.510936,0.346687,0.134126,0.008252 +bot_04893,interstitial_focus,0.6845,1.0000,0.8832,0.7826,1.0000,0.8577,0.8511,1.0000,1.0000,0.313879,0.355989,0.246734,0.083398 +bot_04894,interstitial_focus,0.5441,1.0000,0.6862,0.8081,1.0000,0.8994,1.0000,1.0000,1.0000,0.501321,0.422633,0.064062,0.011984 +bot_04895,reward_heavy,1.0000,0.7382,0.5824,1.0000,0.7119,0.8321,0.9598,0.8108,1.0000,0.473547,0.301385,0.216159,0.008909 +bot_04896,reward_heavy,1.0000,0.7254,1.0000,1.0000,0.6256,0.6947,1.0000,1.0000,1.0000,0.649081,0.246539,0.092512,0.011868 +bot_04897,interstitial_focus,0.8648,1.0000,0.9955,0.5887,1.0000,0.7361,1.0000,0.8955,0.9714,0.227037,0.390325,0.371653,0.010985 +bot_04898,interstitial_focus,0.8483,1.0000,0.9577,0.6193,1.0000,0.5194,0.8610,1.0000,1.0000,0.379813,0.435346,0.074759,0.110082 +bot_04899,interstitial_focus,0.8553,1.0000,0.9886,0.9584,1.0000,0.8231,0.8204,1.0000,1.0000,0.246892,0.341494,0.275614,0.136000 +bot_04900,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.8838,0.7496,1.0000,1.0000,1.0000,0.415787,0.250624,0.198204,0.135386 +bot_04901,balanced,0.8999,1.0000,1.0000,0.9422,0.8269,1.0000,1.0000,1.0000,0.9249,0.332896,0.468395,0.187220,0.011489 +bot_04902,interstitial_focus,0.6821,1.0000,0.6890,0.9231,1.0000,0.5806,0.9619,1.0000,1.0000,0.372355,0.435635,0.179063,0.012947 +bot_04903,balanced,1.0000,1.0000,1.0000,0.9543,1.0000,0.7933,0.9967,1.0000,0.9802,0.518130,0.332728,0.134687,0.014456 +bot_04904,balanced,0.9602,1.0000,1.0000,1.0000,1.0000,1.0000,1.0000,0.8951,1.0000,0.403239,0.278416,0.277864,0.040481 +bot_04905,splash_driven,0.7448,1.0000,1.0000,0.9553,0.8512,1.0000,1.0000,0.8344,1.0000,0.793718,0.184208,0.011037,0.011037 +bot_04906,network_bound,0.7676,0.8953,0.9044,0.8195,0.5757,0.6266,0.6605,1.0000,0.7434,0.110309,0.140865,0.286693,0.462133 +bot_04907,reward_heavy,1.0000,0.7011,0.9073,1.0000,0.7616,0.7902,1.0000,0.8317,1.0000,0.665460,0.248467,0.014362,0.071711 +bot_04908,interstitial_focus,0.8318,1.0000,1.0000,0.9176,1.0000,0.5492,1.0000,0.9874,0.9538,0.276262,0.376462,0.216155,0.131121 +bot_04909,splash_driven,0.9542,1.0000,1.0000,0.9480,0.8739,1.0000,0.9062,0.9250,1.0000,0.818122,0.052198,0.117227,0.012453 +bot_04910,reward_heavy,1.0000,1.0000,0.6388,1.0000,0.6422,0.4549,0.9163,0.6938,1.0000,0.584426,0.238767,0.165093,0.011713 +bot_04911,reward_heavy,1.0000,0.7495,0.9839,1.0000,0.7161,0.6909,0.9905,0.8315,1.0000,0.692227,0.270667,0.025771,0.011335 +bot_04912,splash_driven,0.8777,0.7865,1.0000,1.0000,1.0000,1.0000,0.8657,1.0000,0.9925,0.693271,0.135500,0.163072,0.008156 +bot_04913,splash_driven,0.9905,0.9051,1.0000,0.8675,0.9427,1.0000,0.9051,1.0000,0.9250,0.756754,0.222088,0.010579,0.010579 +bot_04914,interstitial_focus,0.5888,1.0000,1.0000,0.6625,1.0000,0.6087,0.8643,0.9977,1.0000,0.343252,0.296185,0.185668,0.174895 +bot_04915,splash_driven,0.8882,0.7946,1.0000,1.0000,0.9892,1.0000,0.9349,1.0000,0.9077,0.768890,0.206989,0.012379,0.011743 +bot_04916,churn_sensitive,0.6307,0.6367,0.5033,0.3931,0.5541,0.2865,0.7544,1.0000,0.5274,0.371580,0.222573,0.160352,0.245495 +bot_04917,network_bound,0.7840,0.6125,0.9171,1.0000,0.7179,0.6493,0.5305,1.0000,0.9336,0.214310,0.220516,0.225580,0.339594 +bot_04918,balanced,1.0000,1.0000,1.0000,0.8745,0.8655,0.8674,1.0000,1.0000,0.9815,0.525639,0.252797,0.167492,0.054071 +bot_04919,reward_heavy,1.0000,0.7518,0.9625,1.0000,0.7589,0.7893,1.0000,0.7610,1.0000,0.495839,0.319106,0.177490,0.007565 +bot_04920,reward_heavy,1.0000,0.6030,0.7891,1.0000,0.9167,0.4137,1.0000,0.7716,1.0000,0.605613,0.208101,0.070796,0.115490 +bot_04921,balanced,0.8149,1.0000,1.0000,0.9490,1.0000,0.7932,0.9668,0.9489,1.0000,0.258769,0.262364,0.338427,0.140440 +bot_04922,balanced,1.0000,1.0000,0.9219,0.8414,0.9321,0.9757,1.0000,1.0000,1.0000,0.438704,0.204178,0.148404,0.208714 +bot_04923,balanced,1.0000,0.8914,1.0000,0.9779,1.0000,0.8029,0.8781,1.0000,1.0000,0.605152,0.282388,0.101380,0.011080 +bot_04924,reward_heavy,1.0000,0.6184,0.9263,1.0000,0.5714,0.7646,0.9137,0.8883,1.0000,0.567332,0.280406,0.120345,0.031918 +bot_04925,interstitial_focus,0.8816,1.0000,0.8274,0.8471,1.0000,0.8100,0.8963,0.9318,1.0000,0.232249,0.505765,0.249730,0.012256 +bot_04926,churn_sensitive,0.7444,0.7903,0.5755,0.6188,0.6328,0.5156,0.6336,1.0000,0.5665,0.211792,0.243774,0.363497,0.180937 +bot_04927,balanced,0.8360,1.0000,1.0000,1.0000,1.0000,0.7946,1.0000,0.9765,1.0000,0.347393,0.416676,0.179786,0.056145 +bot_04928,balanced,1.0000,1.0000,1.0000,0.8626,1.0000,0.9114,1.0000,1.0000,0.9273,0.358194,0.341637,0.290080,0.010089 +bot_04929,churn_sensitive,0.6825,0.6863,0.4371,0.6956,0.3849,0.5422,0.7580,1.0000,0.6239,0.269551,0.233947,0.239774,0.256728 +bot_04930,splash_driven,0.9525,1.0000,1.0000,1.0000,1.0000,1.0000,0.9775,1.0000,0.8813,0.615889,0.216788,0.058160,0.109163 +bot_04931,churn_sensitive,0.5656,0.6173,0.3130,0.4474,0.7617,0.5813,0.6481,1.0000,0.4769,0.207774,0.223760,0.465583,0.102883 +bot_04932,churn_sensitive,0.4978,0.4832,0.6224,0.5450,0.6102,0.3444,0.8413,1.0000,0.6341,0.185172,0.144965,0.565082,0.104781 +bot_04933,reward_heavy,1.0000,1.0000,0.5606,1.0000,0.9667,0.5083,1.0000,0.7282,1.0000,0.606095,0.157810,0.226840,0.009256 +bot_04934,churn_sensitive,0.6350,0.8419,0.6074,0.7048,0.3729,0.2739,0.6082,1.0000,0.5753,0.140536,0.341414,0.348747,0.169304 +bot_04935,balanced,1.0000,1.0000,1.0000,0.9884,1.0000,1.0000,0.9263,1.0000,0.9011,0.446703,0.301591,0.240788,0.010918 +bot_04936,interstitial_focus,0.8581,1.0000,0.7289,0.6128,1.0000,0.7824,0.9330,0.9983,1.0000,0.379946,0.367080,0.241136,0.011839 +bot_04937,reward_heavy,1.0000,0.9094,0.8899,1.0000,0.5729,0.7093,1.0000,0.7731,1.0000,0.621633,0.182704,0.186750,0.008913 +bot_04938,interstitial_focus,0.5280,1.0000,0.9308,0.7368,1.0000,0.8010,0.9086,0.9000,0.9953,0.318635,0.494165,0.177187,0.010012 +bot_04939,balanced,0.8173,1.0000,1.0000,1.0000,1.0000,0.7922,1.0000,1.0000,1.0000,0.526424,0.181557,0.281698,0.010321 +bot_04940,reward_heavy,1.0000,0.7440,1.0000,1.0000,0.8937,0.5737,0.9082,0.8336,1.0000,0.740309,0.186041,0.012848,0.060802 +bot_04941,balanced,1.0000,1.0000,1.0000,1.0000,0.7978,1.0000,1.0000,1.0000,0.9585,0.462123,0.262490,0.173770,0.101617 +bot_04942,churn_sensitive,0.5205,0.4471,0.6138,0.6827,0.5029,0.5071,0.7929,1.0000,0.5193,0.385043,0.136216,0.380581,0.098160 +bot_04943,interstitial_focus,0.9585,1.0000,0.8202,0.8397,1.0000,0.8376,1.0000,1.0000,0.9373,0.321415,0.438088,0.162943,0.077554 +bot_04944,network_bound,0.9314,0.6873,0.7231,0.8037,0.6804,0.5505,0.5320,1.0000,0.8463,0.179773,0.299507,0.245296,0.275424 +bot_04945,balanced,1.0000,0.9603,0.9004,0.8732,0.8079,1.0000,0.9825,0.8798,0.8993,0.332916,0.177281,0.290193,0.199610 +bot_04946,network_bound,0.6210,0.8744,0.8059,0.9523,0.9070,0.7414,0.5514,1.0000,0.7881,0.158446,0.278152,0.283871,0.279531 +bot_04947,churn_sensitive,0.6811,0.6844,0.6726,0.6905,0.6490,0.6279,0.7377,1.0000,0.6544,0.306471,0.292194,0.298112,0.103223 +bot_04948,reward_heavy,1.0000,0.9053,0.9014,1.0000,0.8686,0.4354,1.0000,1.0000,1.0000,0.623023,0.356437,0.010270,0.010270 +bot_04949,network_bound,0.6111,0.9586,0.9076,1.0000,0.6643,0.6709,0.5291,1.0000,0.7367,0.069186,0.196584,0.326917,0.407313 +bot_04950,splash_driven,0.7311,0.8021,1.0000,1.0000,0.9976,1.0000,0.9555,0.8769,0.8910,0.710829,0.143947,0.133536,0.011688 +bot_04951,network_bound,0.6885,0.6650,1.0000,0.8865,0.5831,0.8087,0.8286,1.0000,0.8522,0.016596,0.208741,0.277887,0.496776 +bot_04952,splash_driven,0.8956,0.8504,1.0000,1.0000,0.9090,1.0000,0.7582,1.0000,0.8570,0.881098,0.053754,0.052276,0.012872 +bot_04953,reward_heavy,1.0000,0.5851,0.7494,1.0000,0.7409,0.7727,0.9422,0.9963,1.0000,0.733229,0.217593,0.038237,0.010941 +bot_04954,splash_driven,1.0000,0.7056,1.0000,0.9144,1.0000,1.0000,1.0000,1.0000,1.0000,0.823873,0.130122,0.011855,0.034150 +bot_04955,balanced,0.9086,0.9074,1.0000,0.9930,0.8121,0.8946,0.8731,0.9250,0.9526,0.375002,0.325669,0.291386,0.007943 +bot_04956,splash_driven,0.7992,1.0000,1.0000,0.8235,0.8968,1.0000,0.8936,1.0000,0.9473,0.712115,0.233271,0.045934,0.008680 +bot_04957,balanced,0.8523,0.8932,1.0000,1.0000,1.0000,0.8529,0.8594,0.9680,0.9317,0.423886,0.395484,0.167807,0.012823 +bot_04958,churn_sensitive,0.4305,0.4157,0.3703,0.6771,0.4622,0.6086,0.7406,1.0000,0.5573,0.247247,0.143807,0.403408,0.205539 +bot_04959,network_bound,0.7648,0.6877,0.7545,0.7667,0.6401,0.7999,0.5930,1.0000,0.8014,0.085070,0.173116,0.209157,0.532657 +bot_04960,splash_driven,1.0000,0.6916,1.0000,0.9036,1.0000,1.0000,0.9058,0.9478,0.8989,0.630268,0.242653,0.108835,0.018244 +bot_04961,balanced,0.8124,1.0000,0.9366,0.9803,0.9043,1.0000,0.8966,0.8372,1.0000,0.433748,0.340026,0.142568,0.083658 +bot_04962,splash_driven,0.8173,0.9828,1.0000,0.8318,1.0000,1.0000,0.9179,1.0000,1.0000,0.774699,0.199934,0.012684,0.012684 +bot_04963,reward_heavy,1.0000,1.0000,1.0000,1.0000,0.6116,0.8369,1.0000,0.8650,1.0000,0.544915,0.251330,0.158614,0.045140 +bot_04964,splash_driven,0.9534,0.6907,1.0000,0.8840,0.9562,1.0000,0.9505,1.0000,0.8918,0.746670,0.235664,0.008833,0.008833 +bot_04965,interstitial_focus,0.6201,1.0000,0.6264,0.8975,1.0000,0.8303,1.0000,1.0000,1.0000,0.449514,0.408878,0.071329,0.070280 +bot_04966,interstitial_focus,0.7539,1.0000,0.9600,0.7241,1.0000,0.8211,1.0000,0.8687,0.9321,0.231221,0.395976,0.360944,0.011860 +bot_04967,splash_driven,0.7980,0.9854,1.0000,1.0000,1.0000,1.0000,0.7630,1.0000,1.0000,0.852708,0.119831,0.009811,0.017650 +bot_04968,splash_driven,0.9642,0.7252,1.0000,1.0000,1.0000,1.0000,0.9323,1.0000,0.8730,0.643526,0.205374,0.009955,0.141145 +bot_04969,reward_heavy,1.0000,0.8160,0.9595,1.0000,0.9212,0.7463,1.0000,1.0000,1.0000,0.557406,0.322664,0.049631,0.070299 +bot_04970,interstitial_focus,0.6007,1.0000,0.9335,0.7380,1.0000,0.7201,0.8870,0.9603,0.9825,0.236685,0.396410,0.232528,0.134376 +bot_04971,network_bound,0.9691,0.8399,0.7274,1.0000,0.6123,0.6677,0.6520,1.0000,0.8298,0.199031,0.205721,0.334901,0.260347 +bot_04972,balanced,1.0000,1.0000,0.9594,0.8652,0.8181,0.9265,0.9624,1.0000,0.9491,0.302973,0.312644,0.254882,0.129501 +bot_04973,reward_heavy,1.0000,0.9912,0.6753,1.0000,0.6818,0.4151,1.0000,0.8441,1.0000,0.560927,0.413067,0.010127,0.015878 +bot_04974,splash_driven,0.9145,0.6917,1.0000,1.0000,0.9791,1.0000,1.0000,1.0000,0.9773,0.603972,0.270190,0.071420,0.054417 +bot_04975,interstitial_focus,0.6310,1.0000,0.6481,0.6180,1.0000,0.5642,0.8708,1.0000,1.0000,0.249015,0.478019,0.143506,0.129460 +bot_04976,reward_heavy,1.0000,0.6678,0.6789,1.0000,0.6714,0.7910,1.0000,0.9331,1.0000,0.448351,0.260014,0.223724,0.067911 +bot_04977,splash_driven,0.7910,1.0000,1.0000,1.0000,1.0000,1.0000,0.9375,0.8938,1.0000,0.728967,0.131557,0.061580,0.077897 +bot_04978,reward_heavy,1.0000,0.6597,0.7543,1.0000,0.5576,0.6006,1.0000,0.8940,1.0000,0.490342,0.249104,0.105177,0.155377 +bot_04979,network_bound,0.7522,0.7407,0.6920,0.6732,0.7830,0.6781,0.5299,1.0000,0.9013,0.119227,0.252510,0.314474,0.313789 +bot_04980,interstitial_focus,0.6033,1.0000,1.0000,0.8369,1.0000,0.4853,0.8647,0.9223,0.9570,0.256610,0.282118,0.288411,0.172861 +bot_04981,balanced,0.9881,1.0000,1.0000,0.9299,1.0000,1.0000,0.9496,1.0000,1.0000,0.384177,0.360111,0.241246,0.014466 +bot_04982,interstitial_focus,0.7658,1.0000,0.6319,0.6893,1.0000,0.5767,0.9842,1.0000,1.0000,0.324297,0.430221,0.237023,0.008460 +bot_04983,churn_sensitive,0.7873,0.4988,0.5325,0.4331,0.4099,0.3094,0.7070,1.0000,0.4882,0.174958,0.249305,0.430914,0.144823 +bot_04984,network_bound,0.6820,0.9982,0.8721,0.8325,0.6524,0.6957,0.7657,1.0000,0.7882,0.128896,0.165916,0.278696,0.426492 +bot_04985,churn_sensitive,0.6623,0.7042,0.3586,0.6605,0.4898,0.5409,0.7983,1.0000,0.5128,0.180406,0.526328,0.212134,0.081132 +bot_04986,splash_driven,1.0000,1.0000,1.0000,0.8565,1.0000,1.0000,0.8693,1.0000,1.0000,0.627261,0.228247,0.030123,0.114369 +bot_04987,splash_driven,0.9904,1.0000,1.0000,1.0000,0.9646,1.0000,0.9630,1.0000,0.9651,0.698560,0.069425,0.094486,0.137530 +bot_04988,reward_heavy,1.0000,0.9338,0.8166,1.0000,0.9076,0.7464,1.0000,0.9232,1.0000,0.642256,0.309161,0.012809,0.035775 +bot_04989,churn_sensitive,0.5294,0.5757,0.3287,0.5256,0.3393,0.3614,0.7457,1.0000,0.6522,0.139249,0.316987,0.339013,0.204751 +bot_04990,interstitial_focus,0.6094,1.0000,1.0000,0.6214,1.0000,0.4869,0.9216,1.0000,1.0000,0.356840,0.397789,0.237701,0.007670 +bot_04991,network_bound,1.0000,0.9320,0.9159,1.0000,0.8669,0.8421,0.7692,1.0000,0.9051,0.138504,0.134328,0.207206,0.519961 +bot_04992,reward_heavy,1.0000,0.5944,0.8971,1.0000,0.5925,0.5275,1.0000,1.0000,1.0000,0.678328,0.282634,0.028790,0.010248 +bot_04993,reward_heavy,1.0000,0.7827,0.8558,1.0000,0.7656,0.5335,0.8986,0.9332,1.0000,0.809644,0.166745,0.011806,0.011806 +bot_04994,network_bound,0.9534,0.6768,0.5994,0.6828,0.9807,0.6259,0.7926,1.0000,0.7406,0.217103,0.105530,0.192298,0.485068 +bot_04995,splash_driven,1.0000,1.0000,1.0000,1.0000,0.8295,1.0000,0.7762,1.0000,1.0000,0.648063,0.167656,0.123746,0.060535 +bot_04996,splash_driven,0.9169,1.0000,1.0000,1.0000,1.0000,1.0000,0.9256,1.0000,0.9297,0.790796,0.117522,0.080868,0.010815 +bot_04997,splash_driven,0.8773,0.7326,1.0000,1.0000,0.8806,1.0000,1.0000,0.9277,1.0000,0.635397,0.241887,0.007397,0.115319 +bot_04998,churn_sensitive,0.6864,0.7685,0.2417,0.5850,0.5503,0.6117,0.7053,1.0000,0.6816,0.208993,0.149530,0.491951,0.149526 +bot_04999,splash_driven,0.7900,0.8695,1.0000,1.0000,1.0000,1.0000,0.7731,1.0000,0.9791,0.730225,0.142179,0.115478,0.012117 diff --git a/Tools/SmartLoadSensitivity/output/smartload_sensitivity_summary.csv b/Tools/SmartLoadSensitivity/output/smartload_sensitivity_summary.csv new file mode 100644 index 0000000..384578f --- /dev/null +++ b/Tools/SmartLoadSensitivity/output/smartload_sensitivity_summary.csv @@ -0,0 +1,743 @@ +mode,retention,threshold,cooldown,total_show_requests,total_show_success,total_show_fail,immediate_show,avg_wait_ms,p95_wait_ms,total_preload_requests,preload_success,preload_fail,preload_waste,show_success_rate,preload_success_rate,wasted_ratio,baseline_immediate_show,baseline_avg_wait_ms,delta_immediate_show,delta_wait_ms,delta_wait_pct,delta_show_success +manual,0.2000,1.00,300,6601,4712,1889,0.000000,1618.47,2869.03,0,0,0,0,0.713831,0.000000,0.000000,0.000000,1618.47,0.000000,0.00,0.000000,0.000000 +manual,0.2500,1.00,300,7113,4917,2196,0.000000,1640.73,2916.82,0,0,0,0,0.691270,0.000000,0.000000,0.000000,1640.73,0.000000,0.00,0.000000,0.000000 +manual,0.3000,1.00,300,7568,5337,2231,0.000000,1629.38,2904.78,0,0,0,0,0.705206,0.000000,0.000000,0.000000,1629.38,0.000000,0.00,0.000000,0.000000 +manual,0.3500,1.00,300,8100,5686,2414,0.000000,1615.17,2912.73,0,0,0,0,0.701975,0.000000,0.000000,0.000000,1615.17,0.000000,0.00,0.000000,0.000000 +manual,0.4000,1.00,300,8913,6297,2616,0.000000,1617.46,2889.73,0,0,0,0,0.706496,0.000000,0.000000,0.000000,1617.46,0.000000,0.00,0.000000,0.000000 +manual,0.5000,1.00,300,10317,7270,3047,0.000000,1617.67,2917.55,0,0,0,0,0.704662,0.000000,0.000000,0.000000,1617.67,0.000000,0.00,0.000000,0.000000 +manual,0.6000,1.00,300,12479,8797,3682,0.000000,1618.80,2907.39,0,0,0,0,0.704944,0.000000,0.000000,0.000000,1618.80,0.000000,0.00,0.000000,0.000000 +smart,0.2000,0.2000,30,6647,5392,1255,0.386941,1049.57,2826.32,4513,3165,1348,593,0.811193,0.701307,0.131398,0.000000,1618.47,0.386941,-568.90,-0.351504,0.097362 +smart,0.2000,0.2000,60,6650,5144,1506,0.248571,1253.79,2871.60,2669,1805,864,152,0.773534,0.676283,0.056950,0.000000,1618.47,0.248571,-364.67,-0.225320,0.059703 +smart,0.2000,0.2000,90,6611,5008,1603,0.188625,1336.10,2812.10,1887,1305,582,58,0.757525,0.691574,0.030737,0.000000,1618.47,0.188625,-282.36,-0.174463,0.043694 +smart,0.2000,0.2000,120,6655,4958,1697,0.146356,1412.64,2871.89,1453,995,458,21,0.745004,0.684790,0.014453,0.000000,1618.47,0.146356,-205.83,-0.127175,0.031173 +smart,0.2000,0.2000,180,6665,4863,1802,0.103976,1472.79,2899.48,1019,695,324,2,0.729632,0.682041,0.001963,0.000000,1618.47,0.103976,-145.67,-0.090008,0.015801 +smart,0.2000,0.2000,240,6593,4801,1792,0.081905,1514.89,2917.23,773,540,233,0,0.728197,0.698577,0.000000,0.000000,1618.47,0.081905,-103.58,-0.063998,0.014365 +smart,0.2000,0.2000,300,6735,4906,1829,0.065776,1522.95,2864.89,638,443,195,0,0.728434,0.694357,0.000000,0.000000,1618.47,0.065776,-95.52,-0.059020,0.014602 +smart,0.2000,0.2500,30,6579,5345,1234,0.373917,1051.27,2744.75,4464,3062,1402,601,0.812434,0.685932,0.134633,0.000000,1618.47,0.373917,-567.19,-0.350450,0.098602 +smart,0.2000,0.2500,60,6591,5162,1429,0.252769,1249.04,2829.95,2649,1840,809,174,0.783189,0.694602,0.065685,0.000000,1618.47,0.252769,-369.42,-0.228255,0.069358 +smart,0.2000,0.2500,90,6499,4833,1666,0.194799,1325.50,2885.99,1870,1316,554,50,0.743653,0.703743,0.026738,0.000000,1618.47,0.194799,-292.97,-0.181018,0.029822 +smart,0.2000,0.2500,120,6646,4929,1717,0.148360,1396.87,2866.52,1458,1004,454,18,0.741649,0.688615,0.012346,0.000000,1618.47,0.148360,-221.59,-0.136915,0.027818 +smart,0.2000,0.2500,180,6613,4877,1736,0.102828,1473.97,2900.38,995,686,309,6,0.737487,0.689447,0.006030,0.000000,1618.47,0.102828,-144.49,-0.089277,0.023656 +smart,0.2000,0.2500,240,6697,4849,1848,0.081678,1497.34,2866.35,767,549,218,2,0.724056,0.715776,0.002608,0.000000,1618.47,0.081678,-121.13,-0.074840,0.010224 +smart,0.2000,0.2500,300,6533,4675,1858,0.064901,1527.54,2880.98,628,424,204,0,0.715598,0.675159,0.000000,0.000000,1618.47,0.064901,-90.92,-0.056179,0.001766 +smart,0.2000,0.3000,30,6714,5388,1326,0.377420,1056.28,2792.28,4546,3121,1425,587,0.802502,0.686538,0.129125,0.000000,1618.47,0.377420,-562.18,-0.347356,0.088671 +smart,0.2000,0.3000,60,6581,4920,1661,0.143747,1425.28,2871.72,1436,975,461,29,0.747607,0.678969,0.020195,0.000000,1618.47,0.143747,-193.19,-0.119366,0.033776 +smart,0.2000,0.3000,90,6725,4970,1755,0.147955,1420.07,2962.14,1487,1034,453,39,0.739033,0.695360,0.026227,0.000000,1618.47,0.147955,-198.39,-0.122580,0.025202 +smart,0.2000,0.3000,120,6649,4964,1685,0.138818,1420.88,2862.83,1350,940,410,17,0.746578,0.696296,0.012593,0.000000,1618.47,0.138818,-197.58,-0.122080,0.032747 +smart,0.2000,0.3000,180,6752,4948,1804,0.101600,1465.51,2876.71,1010,690,320,4,0.732820,0.683168,0.003960,0.000000,1618.47,0.101600,-152.96,-0.094509,0.018989 +smart,0.2000,0.3000,240,6683,4890,1793,0.070627,1528.00,2915.26,691,474,217,2,0.731707,0.685962,0.002894,0.000000,1618.47,0.070627,-90.47,-0.055897,0.017876 +smart,0.2000,0.3000,300,6694,4847,1847,0.064535,1530.78,2929.32,624,432,192,0,0.724081,0.692308,0.000000,0.000000,1618.47,0.064535,-87.68,-0.054176,0.010250 +smart,0.2000,0.3500,30,6537,5082,1455,0.231146,1309.70,2887.15,2427,1633,794,122,0.777421,0.672847,0.050268,0.000000,1618.47,0.231146,-308.77,-0.190780,0.063590 +smart,0.2000,0.3500,60,6621,4834,1787,0.138801,1431.34,2885.18,1386,931,455,12,0.730101,0.671717,0.008658,0.000000,1618.47,0.138801,-187.13,-0.115619,0.016270 +smart,0.2000,0.3500,90,6626,4820,1806,0.100211,1503.86,2946.73,976,665,311,1,0.727437,0.681352,0.001025,0.000000,1618.47,0.100211,-114.61,-0.070814,0.013606 +smart,0.2000,0.3500,120,6676,4885,1791,0.074146,1514.32,2866.60,746,495,251,0,0.731726,0.663539,0.000000,0.000000,1618.47,0.074146,-104.15,-0.064351,0.017894 +smart,0.2000,0.3500,180,6505,4682,1823,0.054881,1556.04,2945.59,512,357,155,0,0.719754,0.697266,0.000000,0.000000,1618.47,0.054881,-62.43,-0.038571,0.005923 +smart,0.2000,0.3500,240,6633,4740,1893,0.040253,1574.70,2901.01,393,267,126,0,0.714609,0.679389,0.000000,0.000000,1618.47,0.040253,-43.77,-0.027043,0.000778 +smart,0.2000,0.3500,300,6437,4581,1856,0.032935,1590.13,2889.35,312,212,100,0,0.711667,0.679487,0.000000,0.000000,1618.47,0.032935,-28.33,-0.017507,-0.002164 +smart,0.2000,0.4000,30,6641,5107,1534,0.219545,1338.07,2901.91,2424,1573,851,115,0.769011,0.648927,0.047442,0.000000,1618.47,0.219545,-280.39,-0.173247,0.055179 +smart,0.2000,0.4000,60,6616,4850,1766,0.140871,1421.57,2857.77,1379,942,437,10,0.733071,0.683104,0.007252,0.000000,1618.47,0.140871,-196.90,-0.121656,0.019240 +smart,0.2000,0.4000,90,6576,4793,1783,0.100061,1505.05,2966.81,964,660,304,2,0.728863,0.684647,0.002075,0.000000,1618.47,0.100061,-113.42,-0.070077,0.015031 +smart,0.2000,0.4000,120,6647,4854,1793,0.074319,1531.49,2880.07,745,495,250,1,0.730254,0.664430,0.001342,0.000000,1618.47,0.074319,-86.98,-0.053742,0.016423 +smart,0.2000,0.4000,180,6631,4746,1885,0.049766,1562.13,2935.57,508,330,178,0,0.715729,0.649606,0.000000,0.000000,1618.47,0.049766,-56.34,-0.034808,0.001898 +smart,0.2000,0.4000,240,6582,4706,1876,0.040261,1563.57,2905.38,389,265,124,0,0.714980,0.681234,0.000000,0.000000,1618.47,0.040261,-54.89,-0.033916,0.001149 +smart,0.2000,0.4000,300,6660,4700,1960,0.030030,1586.41,2899.70,314,200,114,0,0.705706,0.636943,0.000000,0.000000,1618.47,0.030030,-32.06,-0.019808,-0.008126 +smart,0.2000,0.4500,30,6693,5179,1514,0.225011,1329.09,2889.32,2446,1642,804,136,0.773794,0.671300,0.055601,0.000000,1618.47,0.225011,-289.38,-0.178796,0.059962 +smart,0.2000,0.4500,60,6608,4968,1640,0.142857,1438.75,2867.40,1383,963,420,19,0.751816,0.696312,0.013738,0.000000,1618.47,0.142857,-179.72,-0.111041,0.037985 +smart,0.2000,0.4500,90,6647,4820,1827,0.097638,1493.43,2859.51,967,650,317,1,0.725139,0.672182,0.001034,0.000000,1618.47,0.097638,-125.04,-0.077259,0.011308 +smart,0.2000,0.4500,120,6627,4856,1771,0.078467,1530.41,2893.35,748,520,228,0,0.732760,0.695187,0.000000,0.000000,1618.47,0.078467,-88.06,-0.054408,0.018929 +smart,0.2000,0.4500,180,6744,4873,1871,0.055012,1564.53,2962.17,514,371,143,0,0.722568,0.721790,0.000000,0.000000,1618.47,0.055012,-53.93,-0.033324,0.008737 +smart,0.2000,0.4500,240,6742,4826,1916,0.039158,1560.57,2865.35,393,264,129,0,0.715811,0.671756,0.000000,0.000000,1618.47,0.039158,-57.90,-0.035772,0.001980 +smart,0.2000,0.4500,300,6706,4729,1977,0.032956,1578.91,2881.60,317,221,96,0,0.705189,0.697161,0.000000,0.000000,1618.47,0.032956,-39.56,-0.024441,-0.008642 +smart,0.2000,0.5000,30,6697,5172,1525,0.226519,1319.21,2846.99,2416,1639,777,122,0.772286,0.678394,0.050497,0.000000,1618.47,0.226519,-299.26,-0.184904,0.058455 +smart,0.2000,0.5000,60,6594,4934,1660,0.139521,1439.46,2929.21,1366,935,431,15,0.748256,0.684480,0.010981,0.000000,1618.47,0.139521,-179.01,-0.110604,0.034425 +smart,0.2000,0.5000,90,6629,4873,1756,0.097752,1493.22,2914.64,970,648,322,0,0.735103,0.668041,0.000000,0.000000,1618.47,0.097752,-125.24,-0.077384,0.021272 +smart,0.2000,0.5000,120,6689,4818,1871,0.072059,1525.73,2878.33,747,483,264,1,0.720287,0.646586,0.001339,0.000000,1618.47,0.072059,-92.74,-0.057300,0.006456 +smart,0.2000,0.5000,180,6706,4794,1912,0.052341,1566.07,2979.63,512,351,161,0,0.714882,0.685547,0.000000,0.000000,1618.47,0.052341,-52.39,-0.032372,0.001051 +smart,0.2000,0.5000,240,6673,4751,1922,0.039862,1575.31,2914.34,390,266,124,0,0.711974,0.682051,0.000000,0.000000,1618.47,0.039862,-43.16,-0.026666,-0.001858 +smart,0.2000,0.5000,300,6617,4736,1881,0.033550,1584.49,2908.52,317,222,95,0,0.715732,0.700315,0.000000,0.000000,1618.47,0.033550,-33.97,-0.020991,0.001901 +smart,0.2000,0.5500,30,6655,5148,1507,0.227047,1316.35,2856.83,2405,1648,757,137,0.773554,0.685239,0.056965,0.000000,1618.47,0.227047,-302.12,-0.186669,0.059722 +smart,0.2000,0.5500,60,6489,4897,1592,0.137463,1438.51,2854.39,1358,907,451,15,0.754662,0.667894,0.011046,0.000000,1618.47,0.137463,-179.96,-0.111189,0.040830 +smart,0.2000,0.5500,90,6731,4906,1825,0.095825,1509.80,2916.44,971,650,321,5,0.728866,0.669413,0.005149,0.000000,1618.47,0.095825,-108.67,-0.067143,0.015035 +smart,0.2000,0.5500,120,6639,4836,1803,0.075463,1525.54,2913.25,739,501,238,0,0.728423,0.677943,0.000000,0.000000,1618.47,0.075463,-92.92,-0.057415,0.014592 +smart,0.2000,0.5500,180,6581,4693,1888,0.052576,1557.06,2929.86,506,346,160,0,0.713114,0.683794,0.000000,0.000000,1618.47,0.052576,-61.41,-0.037944,-0.000718 +smart,0.2000,0.5500,240,6799,4876,1923,0.037947,1580.10,2964.63,391,258,133,0,0.717164,0.659847,0.000000,0.000000,1618.47,0.037947,-38.37,-0.023708,0.003333 +smart,0.2000,0.5500,300,6628,4707,1921,0.032740,1586.52,2905.60,317,217,100,0,0.710169,0.684543,0.000000,0.000000,1618.47,0.032740,-31.95,-0.019741,-0.003662 +smart,0.2000,0.6000,30,6513,5053,1460,0.230462,1316.30,2917.69,2393,1645,748,144,0.775833,0.687422,0.060176,0.000000,1618.47,0.230462,-302.17,-0.186701,0.062002 +smart,0.2000,0.6000,60,6636,4942,1694,0.140597,1439.54,2906.59,1371,950,421,17,0.744726,0.692925,0.012400,0.000000,1618.47,0.140597,-178.93,-0.110553,0.030895 +smart,0.2000,0.6000,90,6748,4887,1861,0.094695,1497.07,2917.43,974,642,332,3,0.724215,0.659138,0.003080,0.000000,1618.47,0.094695,-121.40,-0.075008,0.010383 +smart,0.2000,0.6000,120,6581,4821,1760,0.078559,1527.68,2919.15,743,517,226,0,0.732563,0.695828,0.000000,0.000000,1618.47,0.078559,-90.79,-0.056096,0.018732 +smart,0.2000,0.6000,180,6611,4743,1868,0.051581,1552.93,2871.56,515,341,174,0,0.717441,0.662136,0.000000,0.000000,1618.47,0.051581,-65.53,-0.040490,0.003609 +smart,0.2000,0.6000,240,6747,4776,1971,0.041203,1586.96,2940.61,392,278,114,0,0.707870,0.709184,0.000000,0.000000,1618.47,0.041203,-31.51,-0.019469,-0.005961 +smart,0.2000,0.6000,300,6462,4630,1832,0.033736,1574.97,2897.29,313,218,95,0,0.716496,0.696486,0.000000,0.000000,1618.47,0.033736,-43.49,-0.026872,0.002665 +smart,0.2000,0.6500,30,6696,4772,1924,0.010305,1616.05,2890.62,110,79,31,10,0.712664,0.718182,0.090909,0.000000,1618.47,0.010305,-2.42,-0.001494,-0.001167 +smart,0.2000,0.6500,60,6686,4632,2054,0.007329,1635.96,2942.68,74,49,25,0,0.692791,0.662162,0.000000,0.000000,1618.47,0.007329,17.49,0.010806,-0.021040 +smart,0.2000,0.6500,90,6718,4750,1968,0.011313,1619.29,2928.69,105,76,29,0,0.707056,0.723810,0.000000,0.000000,1618.47,0.011313,0.83,0.000512,-0.006776 +smart,0.2000,0.6500,120,6542,4623,1919,0.000611,1615.97,2864.44,7,4,3,0,0.706665,0.571429,0.000000,0.000000,1618.47,0.000611,-2.50,-0.001545,-0.007167 +smart,0.2000,0.6500,180,6686,4643,2043,0.004637,1625.52,2922.71,43,31,12,0,0.694436,0.720930,0.000000,0.000000,1618.47,0.004637,7.05,0.004356,-0.019395 +smart,0.2000,0.6500,240,6559,4568,1991,0.003202,1620.35,2899.71,30,21,9,0,0.696448,0.700000,0.000000,0.000000,1618.47,0.003202,1.89,0.001165,-0.017384 +smart,0.2000,0.6500,300,6833,4815,2018,0.000293,1627.10,2940.75,3,2,1,0,0.704669,0.666667,0.000000,0.000000,1618.47,0.000293,8.63,0.005332,-0.009163 +smart,0.2000,0.7000,30,6729,4692,2037,0.000000,1647.01,2968.14,0,0,0,0,0.697280,0.000000,0.000000,0.000000,1618.47,0.000000,28.54,0.017635,-0.016551 +smart,0.2000,0.7000,60,6683,4704,1979,0.000000,1633.18,2875.70,0,0,0,0,0.703876,0.000000,0.000000,0.000000,1618.47,0.000000,14.71,0.009088,-0.009956 +smart,0.2000,0.7000,90,6639,4693,1946,0.000151,1610.83,2869.66,2,1,1,0,0.706884,0.500000,0.000000,0.000000,1618.47,0.000151,-7.64,-0.004719,-0.006948 +smart,0.2000,0.7000,120,6729,4726,2003,0.000446,1615.26,2871.44,3,3,0,0,0.702333,1.000000,0.000000,0.000000,1618.47,0.000446,-3.20,-0.001980,-0.011498 +smart,0.2000,0.7000,180,6652,4693,1959,0.000451,1627.93,2912.13,6,3,3,0,0.705502,0.500000,0.000000,0.000000,1618.47,0.000451,9.46,0.005844,-0.008329 +smart,0.2000,0.7000,240,6760,4715,2045,0.000148,1628.04,2921.78,3,1,2,0,0.697485,0.333333,0.000000,0.000000,1618.47,0.000148,9.57,0.005914,-0.016346 +smart,0.2000,0.7000,300,6716,4708,2008,0.000000,1636.98,2936.09,0,0,0,0,0.701013,0.000000,0.000000,0.000000,1618.47,0.000000,18.52,0.011441,-0.012819 +smart,0.2000,0.7500,30,6628,4631,1997,0.000000,1619.65,2885.03,0,0,0,0,0.698702,0.000000,0.000000,0.000000,1618.47,0.000000,1.19,0.000734,-0.015129 +smart,0.2000,0.7500,60,6640,4710,1930,0.000000,1623.33,2903.25,0,0,0,0,0.709337,0.000000,0.000000,0.000000,1618.47,0.000000,4.86,0.003004,-0.004494 +smart,0.2000,0.7500,90,6724,4730,1994,0.000000,1626.01,2895.56,2,0,2,0,0.703450,0.000000,0.000000,0.000000,1618.47,0.000000,7.54,0.004661,-0.010381 +smart,0.2000,0.7500,120,6628,4665,1963,0.000151,1631.51,2908.73,1,1,0,0,0.703832,1.000000,0.000000,0.000000,1618.47,0.000151,13.04,0.008058,-0.009999 +smart,0.2000,0.7500,180,6688,4726,1962,0.000000,1633.95,2943.46,1,0,1,0,0.706639,0.000000,0.000000,0.000000,1618.47,0.000000,15.49,0.009569,-0.007192 +smart,0.2000,0.7500,240,6655,4772,1883,0.000000,1618.82,2903.04,0,0,0,0,0.717055,0.000000,0.000000,0.000000,1618.47,0.000000,0.35,0.000217,0.003224 +smart,0.2000,0.7500,300,6721,4721,2000,0.000149,1633.04,2940.41,1,1,0,0,0.702425,1.000000,0.000000,0.000000,1618.47,0.000149,14.57,0.009002,-0.011406 +smart,0.2000,0.8000,30,6635,4591,2044,0.000000,1641.25,2960.59,0,0,0,0,0.691937,0.000000,0.000000,0.000000,1618.47,0.000000,22.79,0.014078,-0.021895 +smart,0.2000,0.8000,60,6597,4648,1949,0.000000,1624.48,2924.08,0,0,0,0,0.704563,0.000000,0.000000,0.000000,1618.47,0.000000,6.01,0.003715,-0.009269 +smart,0.2000,0.8000,90,6616,4612,2004,0.000000,1639.40,2944.29,0,0,0,0,0.697098,0.000000,0.000000,0.000000,1618.47,0.000000,20.93,0.012933,-0.016733 +smart,0.2000,0.8000,120,6604,4605,1999,0.000000,1640.71,2965.63,0,0,0,0,0.697305,0.000000,0.000000,0.000000,1618.47,0.000000,22.24,0.013742,-0.016527 +smart,0.2000,0.8000,180,6607,4645,1962,0.000000,1633.44,2913.78,0,0,0,0,0.703042,0.000000,0.000000,0.000000,1618.47,0.000000,14.97,0.009250,-0.010789 +smart,0.2000,0.8000,240,6745,4699,2046,0.000000,1640.23,2949.07,0,0,0,0,0.696664,0.000000,0.000000,0.000000,1618.47,0.000000,21.76,0.013446,-0.017167 +smart,0.2000,0.8000,300,6621,4656,1965,0.000000,1626.79,2905.61,0,0,0,0,0.703217,0.000000,0.000000,0.000000,1618.47,0.000000,8.32,0.005142,-0.010614 +smart,0.2000,0.8500,30,6627,4650,1977,0.000000,1636.33,2951.55,0,0,0,0,0.701675,0.000000,0.000000,0.000000,1618.47,0.000000,17.87,0.011040,-0.012156 +smart,0.2000,0.8500,60,6602,4686,1916,0.000151,1618.51,2848.06,1,1,0,0,0.709785,1.000000,0.000000,0.000000,1618.47,0.000151,0.04,0.000027,-0.004046 +smart,0.2000,0.8500,90,6610,4650,1960,0.000000,1626.01,2908.40,0,0,0,0,0.703480,0.000000,0.000000,0.000000,1618.47,0.000000,7.54,0.004660,-0.010352 +smart,0.2000,0.8500,120,6731,4647,2084,0.000000,1645.14,2985.68,0,0,0,0,0.690388,0.000000,0.000000,0.000000,1618.47,0.000000,26.67,0.016479,-0.023443 +smart,0.2000,0.8500,180,6611,4660,1951,0.000000,1627.77,2934.60,0,0,0,0,0.704886,0.000000,0.000000,0.000000,1618.47,0.000000,9.30,0.005747,-0.008945 +smart,0.2000,0.8500,240,6535,4601,1934,0.000000,1624.68,2890.16,0,0,0,0,0.704055,0.000000,0.000000,0.000000,1618.47,0.000000,6.21,0.003839,-0.009776 +smart,0.2000,0.8500,300,6744,4661,2083,0.000000,1627.69,2922.72,0,0,0,0,0.691133,0.000000,0.000000,0.000000,1618.47,0.000000,9.22,0.005699,-0.022698 +smart,0.2000,0.9000,30,6666,4672,1994,0.000000,1637.83,2878.58,0,0,0,0,0.700870,0.000000,0.000000,0.000000,1618.47,0.000000,19.36,0.011961,-0.012961 +smart,0.2000,0.9000,60,6628,4674,1954,0.000000,1636.57,2961.98,0,0,0,0,0.705190,0.000000,0.000000,0.000000,1618.47,0.000000,18.11,0.011188,-0.008641 +smart,0.2000,0.9000,90,6651,4582,2069,0.000000,1627.89,2896.98,0,0,0,0,0.688919,0.000000,0.000000,0.000000,1618.47,0.000000,9.42,0.005823,-0.024912 +smart,0.2000,0.9000,120,6488,4574,1914,0.000000,1624.00,2925.63,0,0,0,0,0.704994,0.000000,0.000000,0.000000,1618.47,0.000000,5.53,0.003416,-0.008837 +smart,0.2000,0.9000,180,6712,4696,2016,0.000000,1635.51,2959.63,0,0,0,0,0.699642,0.000000,0.000000,0.000000,1618.47,0.000000,17.04,0.010529,-0.014189 +smart,0.2000,0.9000,240,6613,4679,1934,0.000000,1605.62,2866.19,0,0,0,0,0.707546,0.000000,0.000000,0.000000,1618.47,0.000000,-12.85,-0.007940,-0.006285 +smart,0.2000,0.9000,300,6642,4668,1974,0.000000,1628.08,2913.23,0,0,0,0,0.702800,0.000000,0.000000,0.000000,1618.47,0.000000,9.61,0.005941,-0.011031 +smart,0.2500,0.2000,30,7081,5751,1330,0.375229,1065.33,2818.07,4789,3335,1454,678,0.812173,0.696388,0.141574,0.000000,1640.73,0.375229,-575.40,-0.350696,0.120904 +smart,0.2500,0.2000,60,7076,5425,1651,0.243923,1259.45,2818.97,2783,1903,880,177,0.766676,0.683794,0.063600,0.000000,1640.73,0.243923,-381.28,-0.232385,0.075407 +smart,0.2500,0.2000,90,6973,5258,1715,0.182131,1335.59,2820.68,1973,1345,628,75,0.754051,0.681703,0.038013,0.000000,1640.73,0.182131,-305.14,-0.185977,0.062782 +smart,0.2500,0.2000,120,7136,5335,1801,0.148402,1409.10,2844.64,1578,1102,476,43,0.747618,0.698352,0.027250,0.000000,1640.73,0.148402,-231.63,-0.141172,0.056348 +smart,0.2500,0.2000,180,7081,5203,1878,0.105635,1458.15,2863.72,1080,751,329,3,0.734783,0.695370,0.002778,0.000000,1640.73,0.105635,-182.58,-0.111278,0.043514 +smart,0.2500,0.2000,240,7088,5174,1914,0.082393,1503.57,2930.81,832,587,245,3,0.729966,0.705529,0.003606,0.000000,1640.73,0.082393,-137.15,-0.083594,0.038697 +smart,0.2500,0.2000,300,7087,5125,1962,0.065754,1522.98,2864.81,664,466,198,0,0.723155,0.701807,0.000000,0.000000,1640.73,0.065754,-117.75,-0.071766,0.031886 +smart,0.2500,0.2500,30,7190,5816,1374,0.372601,1057.80,2779.18,4838,3356,1482,677,0.808901,0.693675,0.139934,0.000000,1640.73,0.372601,-582.93,-0.355285,0.117632 +smart,0.2500,0.2500,60,6944,5380,1564,0.257056,1236.18,2797.18,2799,1974,825,189,0.774770,0.705252,0.067524,0.000000,1640.73,0.257056,-404.55,-0.246570,0.083500 +smart,0.2500,0.2500,90,6909,5260,1649,0.188884,1330.39,2833.10,1956,1358,598,53,0.761326,0.694274,0.027096,0.000000,1640.73,0.188884,-310.34,-0.189149,0.070056 +smart,0.2500,0.2500,120,7139,5278,1861,0.147920,1387.80,2862.16,1554,1079,475,23,0.739319,0.694337,0.014801,0.000000,1640.73,0.147920,-252.93,-0.154155,0.048050 +smart,0.2500,0.2500,180,7041,5154,1887,0.100554,1471.51,2882.90,1068,710,358,2,0.731998,0.664794,0.001873,0.000000,1640.73,0.100554,-169.22,-0.103135,0.040729 +smart,0.2500,0.2500,240,7030,5142,1888,0.082930,1492.78,2879.42,817,584,233,1,0.731437,0.714810,0.001224,0.000000,1640.73,0.082930,-147.94,-0.090170,0.040167 +smart,0.2500,0.2500,300,7063,5081,1982,0.063854,1523.82,2868.07,661,451,210,0,0.719383,0.682300,0.000000,0.000000,1640.73,0.063854,-116.91,-0.071254,0.028113 +smart,0.2500,0.3000,30,7096,5598,1498,0.309470,1165.46,2799.23,3814,2609,1205,412,0.788895,0.684059,0.108023,0.000000,1640.73,0.309470,-475.27,-0.289673,0.097626 +smart,0.2500,0.3000,60,7176,5585,1591,0.245262,1236.19,2799.59,2807,1927,880,167,0.778289,0.686498,0.059494,0.000000,1640.73,0.245262,-404.54,-0.246563,0.087019 +smart,0.2500,0.3000,90,7163,5426,1737,0.178556,1356.80,2850.42,1934,1332,602,52,0.757504,0.688728,0.026887,0.000000,1640.73,0.178556,-283.93,-0.173050,0.066234 +smart,0.2500,0.3000,120,7089,5165,1924,0.098321,1482.39,2868.06,970,704,266,7,0.728594,0.725773,0.007216,0.000000,1640.73,0.098321,-158.34,-0.096504,0.037324 +smart,0.2500,0.3000,180,6927,4965,1962,0.055291,1534.41,2868.02,561,383,178,0,0.716761,0.682709,0.000000,0.000000,1640.73,0.055291,-106.32,-0.064799,0.025491 +smart,0.2500,0.3000,240,7105,5143,1962,0.078255,1521.14,2930.05,821,558,263,2,0.723856,0.679659,0.002436,0.000000,1640.73,0.078255,-119.59,-0.072891,0.032587 +smart,0.2500,0.3000,300,7012,5029,1983,0.049772,1544.71,2837.40,507,349,158,0,0.717199,0.688363,0.000000,0.000000,1640.73,0.049772,-96.02,-0.058524,0.025930 +smart,0.2500,0.3500,30,7181,5605,1576,0.227406,1318.16,2846.16,2599,1779,820,146,0.780532,0.684494,0.056175,0.000000,1640.73,0.227406,-322.57,-0.196601,0.089262 +smart,0.2500,0.3500,60,7034,5257,1777,0.138328,1427.89,2908.35,1459,988,471,15,0.747370,0.677176,0.010281,0.000000,1640.73,0.138328,-212.84,-0.129721,0.056100 +smart,0.2500,0.3500,90,7105,5168,1937,0.097537,1513.41,2960.87,1019,696,323,3,0.727375,0.683023,0.002944,0.000000,1640.73,0.097537,-127.32,-0.077601,0.036106 +smart,0.2500,0.3500,120,7177,5256,1921,0.078863,1518.16,2926.78,814,566,248,0,0.732339,0.695332,0.000000,0.000000,1640.73,0.078863,-122.57,-0.074705,0.041070 +smart,0.2500,0.3500,180,7005,5035,1970,0.052677,1551.18,2882.87,546,369,177,0,0.718772,0.675824,0.000000,0.000000,1640.73,0.052677,-89.55,-0.054577,0.027503 +smart,0.2500,0.3500,240,7070,4986,2084,0.039321,1582.42,2916.29,415,278,137,0,0.705233,0.669880,0.000000,0.000000,1640.73,0.039321,-58.31,-0.035542,0.013964 +smart,0.2500,0.3500,300,7053,4999,2054,0.032185,1583.35,2874.51,339,227,112,0,0.708776,0.669617,0.000000,0.000000,1640.73,0.032185,-57.38,-0.034975,0.017507 +smart,0.2500,0.4000,30,7181,5570,1611,0.222532,1325.13,2881.07,2619,1737,882,139,0.775658,0.663230,0.053074,0.000000,1640.73,0.222532,-315.60,-0.192353,0.084388 +smart,0.2500,0.4000,60,7007,5232,1775,0.139860,1438.19,2901.19,1472,1005,467,25,0.746682,0.682745,0.016984,0.000000,1640.73,0.139860,-202.54,-0.123443,0.055412 +smart,0.2500,0.4000,90,7144,5267,1877,0.101204,1483.78,2884.64,1037,723,314,0,0.737262,0.697203,0.000000,0.000000,1640.73,0.101204,-156.95,-0.095656,0.045993 +smart,0.2500,0.4000,120,7274,5295,1979,0.074649,1535.48,2927.14,816,543,273,0,0.727935,0.665441,0.000000,0.000000,1640.73,0.074649,-105.25,-0.064147,0.036666 +smart,0.2500,0.4000,180,7032,5036,1996,0.051621,1549.12,2929.08,544,363,181,0,0.716155,0.667279,0.000000,0.000000,1640.73,0.051621,-91.61,-0.055833,0.024885 +smart,0.2500,0.4000,240,7091,5128,1963,0.040192,1563.61,2879.17,416,285,131,0,0.723170,0.685096,0.000000,0.000000,1640.73,0.040192,-77.12,-0.047004,0.031901 +smart,0.2500,0.4000,300,7141,5211,1930,0.030108,1589.38,2932.90,335,215,120,0,0.729730,0.641791,0.000000,0.000000,1640.73,0.030108,-51.35,-0.031294,0.038460 +smart,0.2500,0.4500,30,7045,5397,1648,0.227395,1317.95,2910.56,2549,1741,808,139,0.766075,0.683013,0.054531,0.000000,1640.73,0.227395,-322.78,-0.196730,0.074806 +smart,0.2500,0.4500,60,7077,5268,1809,0.136216,1445.61,2926.46,1458,976,482,12,0.744383,0.669410,0.008230,0.000000,1640.73,0.136216,-195.12,-0.118921,0.053114 +smart,0.2500,0.4500,90,7196,5336,1860,0.094914,1498.73,2888.90,1034,686,348,3,0.741523,0.663443,0.002901,0.000000,1640.73,0.094914,-142.00,-0.086545,0.050254 +smart,0.2500,0.4500,120,7064,5111,1953,0.076869,1525.98,2917.37,788,544,244,1,0.723528,0.690355,0.001269,0.000000,1640.73,0.076869,-114.75,-0.069941,0.032258 +smart,0.2500,0.4500,180,6998,5018,1980,0.051872,1554.75,2942.61,543,363,180,0,0.717062,0.668508,0.000000,0.000000,1640.73,0.051872,-85.98,-0.052406,0.025793 +smart,0.2500,0.4500,240,6859,4910,1949,0.040968,1573.54,2923.33,407,281,126,0,0.715848,0.690418,0.000000,0.000000,1640.73,0.040968,-67.19,-0.040951,0.024578 +smart,0.2500,0.4500,300,7073,4999,2074,0.032942,1590.64,2948.35,337,233,104,0,0.706772,0.691395,0.000000,0.000000,1640.73,0.032942,-50.09,-0.030527,0.015503 +smart,0.2500,0.5000,30,7100,5402,1698,0.219859,1333.18,2926.50,2571,1686,885,125,0.760845,0.655776,0.048619,0.000000,1640.73,0.219859,-307.55,-0.187447,0.069576 +smart,0.2500,0.5000,60,7037,5204,1833,0.141680,1440.11,2868.24,1456,1013,443,16,0.739520,0.695742,0.010989,0.000000,1640.73,0.141680,-200.62,-0.122276,0.048250 +smart,0.2500,0.5000,90,7070,5231,1839,0.102263,1486.35,2911.59,1030,724,306,1,0.739887,0.702913,0.000971,0.000000,1640.73,0.102263,-154.38,-0.094095,0.048617 +smart,0.2500,0.5000,120,6989,5092,1897,0.073544,1527.07,2900.47,779,514,265,0,0.728573,0.659820,0.000000,0.000000,1640.73,0.073544,-113.66,-0.069276,0.037304 +smart,0.2500,0.5000,180,7074,5087,1987,0.050325,1560.60,2905.42,542,356,186,0,0.719112,0.656827,0.000000,0.000000,1640.73,0.050325,-80.13,-0.048837,0.027843 +smart,0.2500,0.5000,240,7007,5026,1981,0.040103,1577.52,2876.63,413,281,132,0,0.717283,0.680387,0.000000,0.000000,1640.73,0.040103,-63.21,-0.038524,0.026013 +smart,0.2500,0.5000,300,7003,4971,2032,0.031986,1591.39,2905.23,334,224,110,0,0.709839,0.670659,0.000000,0.000000,1640.73,0.031986,-49.34,-0.030074,0.018569 +smart,0.2500,0.5500,30,7023,5401,1622,0.226399,1335.88,2930.49,2567,1730,837,140,0.769045,0.673938,0.054538,0.000000,1640.73,0.226399,-304.85,-0.185799,0.077775 +smart,0.2500,0.5500,60,7139,5368,1771,0.137134,1435.29,2905.27,1477,997,480,18,0.751926,0.675017,0.012187,0.000000,1640.73,0.137134,-205.44,-0.125215,0.060657 +smart,0.2500,0.5500,90,6959,5074,1885,0.102745,1491.72,2866.67,1019,716,303,1,0.729128,0.702650,0.000981,0.000000,1640.73,0.102745,-149.01,-0.090817,0.037858 +smart,0.2500,0.5500,120,6959,5054,1905,0.076017,1532.88,2947.04,785,530,255,1,0.726254,0.675159,0.001274,0.000000,1640.73,0.076017,-107.85,-0.065734,0.034984 +smart,0.2500,0.5500,180,7287,5280,2007,0.051873,1568.11,2931.15,551,378,173,0,0.724578,0.686025,0.000000,0.000000,1640.73,0.051873,-72.62,-0.044259,0.033309 +smart,0.2500,0.5500,240,7154,5142,2012,0.038999,1584.03,2882.58,419,279,140,0,0.718759,0.665871,0.000000,0.000000,1640.73,0.038999,-56.70,-0.034558,0.027489 +smart,0.2500,0.5500,300,7065,5089,1976,0.032838,1573.42,2864.77,336,232,104,0,0.720311,0.690476,0.000000,0.000000,1640.73,0.032838,-67.31,-0.041027,0.029042 +smart,0.2500,0.6000,30,7029,5415,1614,0.228624,1336.45,2942.49,2571,1769,802,162,0.770380,0.688059,0.063011,0.000000,1640.73,0.228624,-304.28,-0.185456,0.079110 +smart,0.2500,0.6000,60,7021,5217,1804,0.133457,1441.32,2874.94,1458,948,510,11,0.743057,0.650206,0.007545,0.000000,1640.73,0.133457,-199.41,-0.121534,0.051787 +smart,0.2500,0.6000,90,7185,5217,1968,0.097982,1499.69,2921.96,1036,709,327,5,0.726096,0.684363,0.004826,0.000000,1640.73,0.097982,-141.04,-0.085959,0.034827 +smart,0.2500,0.6000,120,7144,5215,1929,0.075728,1519.94,2863.30,795,542,253,1,0.729983,0.681761,0.001258,0.000000,1640.73,0.075728,-120.79,-0.073618,0.038714 +smart,0.2500,0.6000,180,7103,5058,2045,0.049275,1582.12,2971.17,524,350,174,0,0.712093,0.667939,0.000000,0.000000,1640.73,0.049275,-58.61,-0.035721,0.020824 +smart,0.2500,0.6000,240,7145,5063,2082,0.037929,1574.68,2909.03,414,271,143,0,0.708607,0.654589,0.000000,0.000000,1640.73,0.037929,-66.05,-0.040256,0.017338 +smart,0.2500,0.6000,300,7146,5143,2003,0.030087,1575.38,2874.12,337,215,122,0,0.719703,0.637982,0.000000,0.000000,1640.73,0.030087,-65.35,-0.039832,0.028434 +smart,0.2500,0.6500,30,7014,4924,2090,0.011121,1627.07,2930.23,127,87,40,9,0.702025,0.685039,0.070866,0.000000,1640.73,0.011121,-13.66,-0.008327,0.010755 +smart,0.2500,0.6500,60,7069,5031,2038,0.011034,1615.23,2909.79,111,78,33,0,0.711699,0.702703,0.000000,0.000000,1640.73,0.011034,-25.50,-0.015541,0.020429 +smart,0.2500,0.6500,90,6995,4902,2093,0.004718,1618.01,2875.09,55,33,22,0,0.700786,0.600000,0.000000,0.000000,1640.73,0.004718,-22.72,-0.013845,0.009517 +smart,0.2500,0.6500,120,7098,4971,2127,0.006199,1623.76,2924.54,65,44,21,0,0.700338,0.676923,0.000000,0.000000,1640.73,0.006199,-16.97,-0.010343,0.009069 +smart,0.2500,0.6500,180,7039,4952,2087,0.000426,1635.82,2967.96,3,3,0,0,0.703509,1.000000,0.000000,0.000000,1640.73,0.000426,-4.91,-0.002992,0.012240 +smart,0.2500,0.6500,240,7140,4994,2146,0.000980,1635.29,2904.06,12,7,5,0,0.699440,0.583333,0.000000,0.000000,1640.73,0.000980,-5.44,-0.003317,0.008170 +smart,0.2500,0.6500,300,7056,4968,2088,0.000000,1628.96,2896.01,0,0,0,0,0.704082,0.000000,0.000000,0.000000,1640.73,0.000000,-11.77,-0.007173,0.012812 +smart,0.2500,0.7000,30,7150,5081,2069,0.002657,1624.21,2927.24,33,20,13,1,0.710629,0.606061,0.030303,0.000000,1640.73,0.002657,-16.52,-0.010067,0.019360 +smart,0.2500,0.7000,60,7010,4905,2105,0.000000,1648.61,2995.24,0,0,0,0,0.699715,0.000000,0.000000,0.000000,1640.73,0.000000,7.88,0.004801,0.008445 +smart,0.2500,0.7000,90,7106,5011,2095,0.000000,1630.43,2908.04,0,0,0,0,0.705179,0.000000,0.000000,0.000000,1640.73,0.000000,-10.30,-0.006275,0.013909 +smart,0.2500,0.7000,120,6903,4880,2023,0.000145,1637.97,2926.57,2,1,1,0,0.706939,0.500000,0.000000,0.000000,1640.73,0.000145,-2.76,-0.001682,0.015670 +smart,0.2500,0.7000,180,7070,4946,2124,0.000000,1625.29,2895.68,0,0,0,0,0.699576,0.000000,0.000000,0.000000,1640.73,0.000000,-15.44,-0.009413,0.008306 +smart,0.2500,0.7000,240,6995,4921,2074,0.000000,1626.88,2891.84,1,0,1,0,0.703503,0.000000,0.000000,0.000000,1640.73,0.000000,-13.85,-0.008443,0.012233 +smart,0.2500,0.7000,300,7118,5003,2115,0.000000,1621.49,2952.00,0,0,0,0,0.702866,0.000000,0.000000,0.000000,1640.73,0.000000,-19.24,-0.011729,0.011596 +smart,0.2500,0.7500,30,7135,5033,2102,0.000000,1629.23,2873.35,0,0,0,0,0.705396,0.000000,0.000000,0.000000,1640.73,0.000000,-11.50,-0.007012,0.014126 +smart,0.2500,0.7500,60,7153,5030,2123,0.000280,1622.60,2932.76,2,2,0,0,0.703201,1.000000,0.000000,0.000000,1640.73,0.000280,-18.13,-0.011048,0.011932 +smart,0.2500,0.7500,90,7178,5018,2160,0.000000,1642.43,2896.72,0,0,0,0,0.699081,0.000000,0.000000,0.000000,1640.73,0.000000,1.70,0.001039,0.007811 +smart,0.2500,0.7500,120,7060,5003,2057,0.000142,1632.84,2934.45,1,1,0,0,0.708640,1.000000,0.000000,0.000000,1640.73,0.000142,-7.89,-0.004808,0.017371 +smart,0.2500,0.7500,180,7153,5093,2060,0.000000,1629.70,2927.91,0,0,0,0,0.712009,0.000000,0.000000,0.000000,1640.73,0.000000,-11.03,-0.006723,0.020739 +smart,0.2500,0.7500,240,6942,4873,2069,0.000000,1624.20,2888.35,0,0,0,0,0.701959,0.000000,0.000000,0.000000,1640.73,0.000000,-16.53,-0.010078,0.010690 +smart,0.2500,0.7500,300,7053,4985,2068,0.000000,1623.40,2869.91,0,0,0,0,0.706791,0.000000,0.000000,0.000000,1640.73,0.000000,-17.33,-0.010562,0.015522 +smart,0.2500,0.8000,30,7133,5060,2073,0.000000,1643.04,2944.97,0,0,0,0,0.709379,0.000000,0.000000,0.000000,1640.73,0.000000,2.31,0.001405,0.018109 +smart,0.2500,0.8000,60,7106,4999,2107,0.000000,1636.05,2938.78,0,0,0,0,0.703490,0.000000,0.000000,0.000000,1640.73,0.000000,-4.68,-0.002853,0.012221 +smart,0.2500,0.8000,90,6903,4836,2067,0.000000,1624.22,2915.19,0,0,0,0,0.700565,0.000000,0.000000,0.000000,1640.73,0.000000,-16.51,-0.010061,0.009295 +smart,0.2500,0.8000,120,7252,5037,2215,0.000000,1640.36,2898.92,0,0,0,0,0.694567,0.000000,0.000000,0.000000,1640.73,0.000000,-0.37,-0.000225,0.003298 +smart,0.2500,0.8000,180,7053,4987,2066,0.000000,1620.50,2899.92,0,0,0,0,0.707075,0.000000,0.000000,0.000000,1640.73,0.000000,-20.23,-0.012329,0.015805 +smart,0.2500,0.8000,240,7055,4974,2081,0.000142,1624.77,2910.68,1,1,0,0,0.705032,1.000000,0.000000,0.000000,1640.73,0.000142,-15.96,-0.009726,0.013762 +smart,0.2500,0.8000,300,6902,4842,2060,0.000000,1633.13,2960.06,0,0,0,0,0.701536,0.000000,0.000000,0.000000,1640.73,0.000000,-7.60,-0.004633,0.010266 +smart,0.2500,0.8500,30,7004,4888,2116,0.000000,1631.02,2913.13,0,0,0,0,0.697887,0.000000,0.000000,0.000000,1640.73,0.000000,-9.71,-0.005918,0.006617 +smart,0.2500,0.8500,60,7132,5023,2109,0.000000,1633.02,2919.05,0,0,0,0,0.704291,0.000000,0.000000,0.000000,1640.73,0.000000,-7.71,-0.004702,0.013021 +smart,0.2500,0.8500,90,7127,4979,2148,0.000000,1625.60,2944.20,0,0,0,0,0.698611,0.000000,0.000000,0.000000,1640.73,0.000000,-15.13,-0.009224,0.007341 +smart,0.2500,0.8500,120,7095,4993,2102,0.000141,1640.30,2969.90,1,1,0,0,0.703735,1.000000,0.000000,0.000000,1640.73,0.000141,-0.43,-0.000260,0.012466 +smart,0.2500,0.8500,180,6978,4974,2004,0.000000,1637.09,2966.49,0,0,0,0,0.712812,0.000000,0.000000,0.000000,1640.73,0.000000,-3.64,-0.002221,0.021542 +smart,0.2500,0.8500,240,6984,5005,1979,0.000000,1627.91,2881.28,0,0,0,0,0.716638,0.000000,0.000000,0.000000,1640.73,0.000000,-12.82,-0.007816,0.025369 +smart,0.2500,0.8500,300,7144,5038,2106,0.000000,1617.12,2933.27,0,0,0,0,0.705207,0.000000,0.000000,0.000000,1640.73,0.000000,-23.61,-0.014392,0.013938 +smart,0.2500,0.9000,30,6985,4914,2071,0.000000,1630.74,2924.30,0,0,0,0,0.703508,0.000000,0.000000,0.000000,1640.73,0.000000,-9.99,-0.006091,0.012238 +smart,0.2500,0.9000,60,7056,4983,2073,0.000000,1614.47,2904.71,0,0,0,0,0.706207,0.000000,0.000000,0.000000,1640.73,0.000000,-26.26,-0.016002,0.014938 +smart,0.2500,0.9000,90,7137,4988,2149,0.000000,1641.38,2964.93,0,0,0,0,0.698893,0.000000,0.000000,0.000000,1640.73,0.000000,0.65,0.000396,0.007624 +smart,0.2500,0.9000,120,7149,5073,2076,0.000000,1633.08,2922.26,0,0,0,0,0.709610,0.000000,0.000000,0.000000,1640.73,0.000000,-7.65,-0.004662,0.018340 +smart,0.2500,0.9000,180,7017,4903,2114,0.000000,1631.15,2900.79,0,0,0,0,0.698732,0.000000,0.000000,0.000000,1640.73,0.000000,-9.58,-0.005838,0.007462 +smart,0.2500,0.9000,240,7082,5018,2064,0.000000,1624.18,2935.15,0,0,0,0,0.708557,0.000000,0.000000,0.000000,1640.73,0.000000,-16.55,-0.010087,0.017287 +smart,0.2500,0.9000,300,7011,4943,2068,0.000000,1627.45,2910.53,0,0,0,0,0.705035,0.000000,0.000000,0.000000,1640.73,0.000000,-13.28,-0.008093,0.013765 +smart,0.3000,0.2000,30,7675,6212,1463,0.374202,1060.82,2796.79,5155,3559,1596,687,0.809381,0.690398,0.133269,0.000000,1629.38,0.374202,-568.56,-0.348945,0.104175 +smart,0.3000,0.2000,60,7404,5745,1659,0.250405,1249.26,2824.59,2944,2050,894,196,0.775932,0.696332,0.066576,0.000000,1629.38,0.250405,-380.12,-0.233291,0.070726 +smart,0.3000,0.2000,90,7659,5846,1813,0.186708,1325.02,2820.23,2140,1497,643,67,0.763285,0.699533,0.031308,0.000000,1629.38,0.186708,-304.36,-0.186793,0.058079 +smart,0.3000,0.2000,120,7573,5594,1979,0.148818,1405.10,2818.39,1662,1151,511,24,0.738677,0.692539,0.014440,0.000000,1629.38,0.148818,-224.28,-0.137648,0.033471 +smart,0.3000,0.2000,180,7630,5517,2113,0.103408,1471.45,2885.89,1177,794,383,5,0.723067,0.674596,0.004248,0.000000,1629.38,0.103408,-157.93,-0.096926,0.017861 +smart,0.3000,0.2000,240,7588,5520,2068,0.080785,1507.92,2879.84,882,614,268,1,0.727464,0.696145,0.001134,0.000000,1629.38,0.080785,-121.46,-0.074544,0.022258 +smart,0.3000,0.2000,300,7557,5461,2096,0.063914,1531.44,2922.36,706,483,223,0,0.722641,0.684136,0.000000,0.000000,1629.38,0.063914,-97.94,-0.060110,0.017435 +smart,0.3000,0.2500,30,7605,6103,1502,0.372650,1066.09,2795.94,5090,3500,1590,666,0.802498,0.687623,0.130845,0.000000,1629.38,0.372650,-563.29,-0.345711,0.097292 +smart,0.3000,0.2500,60,7663,5935,1728,0.255905,1227.72,2777.57,3029,2141,888,180,0.774501,0.706834,0.059426,0.000000,1629.38,0.255905,-401.66,-0.246512,0.069295 +smart,0.3000,0.2500,90,7664,5843,1821,0.184760,1331.41,2832.58,2148,1493,655,77,0.762396,0.695065,0.035847,0.000000,1629.38,0.184760,-297.97,-0.182876,0.057189 +smart,0.3000,0.2500,120,7497,5532,1965,0.145925,1409.54,2896.94,1648,1127,521,33,0.737895,0.683859,0.020024,0.000000,1629.38,0.145925,-219.84,-0.134925,0.032689 +smart,0.3000,0.2500,180,7641,5573,2068,0.101819,1480.33,2913.86,1144,782,362,3,0.729355,0.683566,0.002622,0.000000,1629.38,0.101819,-149.05,-0.091477,0.024149 +smart,0.3000,0.2500,240,7335,5363,1972,0.077846,1505.68,2862.81,872,575,297,4,0.731152,0.659404,0.004587,0.000000,1629.38,0.077846,-123.70,-0.075918,0.025946 +smart,0.3000,0.2500,300,7643,5501,2142,0.064242,1518.47,2865.32,714,491,223,0,0.719744,0.687675,0.000000,0.000000,1629.38,0.064242,-110.91,-0.068069,0.014537 +smart,0.3000,0.3000,30,7505,5917,1588,0.296203,1194.42,2831.84,3807,2629,1178,406,0.788408,0.690570,0.106646,0.000000,1629.38,0.296203,-434.96,-0.266951,0.083202 +smart,0.3000,0.3000,60,7449,5719,1730,0.237347,1262.43,2832.83,2673,1918,755,150,0.767754,0.717546,0.056117,0.000000,1629.38,0.237347,-366.95,-0.225211,0.062548 +smart,0.3000,0.3000,90,7671,5602,2069,0.114327,1483.92,2951.68,1320,891,429,14,0.730283,0.675000,0.010606,0.000000,1629.38,0.114327,-145.46,-0.089272,0.025077 +smart,0.3000,0.3000,120,7693,5696,1997,0.124659,1425.47,2849.52,1413,971,442,12,0.740413,0.687190,0.008493,0.000000,1629.38,0.124659,-203.91,-0.125147,0.035207 +smart,0.3000,0.3000,180,7690,5587,2103,0.106242,1459.21,2855.03,1150,821,329,4,0.726528,0.713913,0.003478,0.000000,1629.38,0.106242,-170.17,-0.104441,0.021322 +smart,0.3000,0.3000,240,7512,5427,2085,0.070021,1529.80,2902.38,780,529,251,3,0.722444,0.678205,0.003846,0.000000,1629.38,0.070021,-99.58,-0.061113,0.017238 +smart,0.3000,0.3000,300,7559,5444,2115,0.059003,1542.66,2887.82,653,446,207,0,0.720201,0.683002,0.000000,0.000000,1629.38,0.059003,-86.72,-0.053225,0.014995 +smart,0.3000,0.3500,30,7480,5769,1711,0.227005,1328.52,2870.66,2815,1892,923,193,0.771257,0.672114,0.068561,0.000000,1629.38,0.227005,-300.86,-0.184644,0.066051 +smart,0.3000,0.3500,60,7500,5575,1925,0.140933,1422.49,2843.57,1583,1073,510,16,0.743333,0.677827,0.010107,0.000000,1629.38,0.140933,-206.89,-0.126977,0.038127 +smart,0.3000,0.3500,90,7453,5532,1921,0.099826,1499.49,2882.80,1095,745,350,1,0.742251,0.680365,0.000913,0.000000,1629.38,0.099826,-129.89,-0.079717,0.037045 +smart,0.3000,0.3500,120,7499,5474,2025,0.076410,1521.67,2911.89,844,573,271,0,0.729964,0.678910,0.000000,0.000000,1629.38,0.076410,-107.71,-0.066102,0.024758 +smart,0.3000,0.3500,180,7386,5374,2012,0.053480,1551.99,2934.23,579,395,184,0,0.727593,0.682211,0.000000,0.000000,1629.38,0.053480,-77.39,-0.047495,0.022387 +smart,0.3000,0.3500,240,7324,5260,2064,0.041098,1567.18,2891.25,451,301,150,0,0.718187,0.667406,0.000000,0.000000,1629.38,0.041098,-62.20,-0.038176,0.012981 +smart,0.3000,0.3500,300,7383,5259,2124,0.029798,1579.10,2881.32,355,220,135,0,0.712312,0.619718,0.000000,0.000000,1629.38,0.029798,-50.28,-0.030858,0.007106 +smart,0.3000,0.4000,30,7430,5703,1727,0.223688,1324.83,2859.22,2702,1833,869,171,0.767564,0.678386,0.063286,0.000000,1629.38,0.223688,-304.55,-0.186911,0.062358 +smart,0.3000,0.4000,60,7540,5567,1973,0.140053,1445.74,2906.29,1573,1076,497,20,0.738329,0.684043,0.012715,0.000000,1629.38,0.140053,-183.64,-0.112708,0.033123 +smart,0.3000,0.4000,90,7549,5547,2002,0.096039,1486.92,2890.65,1086,731,355,6,0.734799,0.673112,0.005525,0.000000,1629.38,0.096039,-142.46,-0.087431,0.029593 +smart,0.3000,0.4000,120,7459,5471,1988,0.075479,1509.30,2864.84,840,564,276,1,0.733476,0.671429,0.001190,0.000000,1629.38,0.075479,-120.08,-0.073695,0.028270 +smart,0.3000,0.4000,180,7593,5427,2166,0.048861,1549.65,2877.14,585,371,214,0,0.714737,0.634188,0.000000,0.000000,1629.38,0.048861,-79.73,-0.048931,0.009531 +smart,0.3000,0.4000,240,7502,5368,2134,0.041322,1562.97,2865.20,442,310,132,0,0.715543,0.701357,0.000000,0.000000,1629.38,0.041322,-66.41,-0.040760,0.010336 +smart,0.3000,0.4000,300,7612,5415,2197,0.034551,1582.90,2866.11,358,263,95,0,0.711377,0.734637,0.000000,0.000000,1629.38,0.034551,-46.48,-0.028527,0.006171 +smart,0.3000,0.4500,30,7683,5935,1748,0.226474,1318.87,2860.11,2771,1932,839,192,0.772485,0.697221,0.069289,0.000000,1629.38,0.226474,-310.51,-0.190567,0.067279 +smart,0.3000,0.4500,60,7540,5641,1899,0.138594,1438.86,2895.28,1542,1057,485,12,0.748143,0.685473,0.007782,0.000000,1629.38,0.138594,-190.52,-0.116927,0.042937 +smart,0.3000,0.4500,90,7657,5582,2075,0.093640,1503.37,2924.28,1099,723,376,6,0.729006,0.657871,0.005460,0.000000,1629.38,0.093640,-126.01,-0.077338,0.023800 +smart,0.3000,0.4500,120,7462,5346,2116,0.076655,1524.74,2906.47,848,572,276,0,0.716430,0.674528,0.000000,0.000000,1629.38,0.076655,-104.64,-0.064222,0.011224 +smart,0.3000,0.4500,180,7516,5396,2120,0.052821,1556.78,2933.06,578,397,181,0,0.717935,0.686851,0.000000,0.000000,1629.38,0.052821,-72.60,-0.044554,0.012729 +smart,0.3000,0.4500,240,7512,5408,2104,0.042465,1565.58,2898.62,443,319,124,0,0.719915,0.720090,0.000000,0.000000,1629.38,0.042465,-63.80,-0.039157,0.014709 +smart,0.3000,0.4500,300,7660,5458,2202,0.030548,1581.73,2895.10,363,234,129,0,0.712533,0.644628,0.000000,0.000000,1629.38,0.030548,-47.65,-0.029241,0.007327 +smart,0.3000,0.5000,30,7520,5865,1655,0.229122,1326.13,2916.61,2714,1869,845,146,0.779920,0.688651,0.053795,0.000000,1629.38,0.229122,-303.25,-0.186114,0.074714 +smart,0.3000,0.5000,60,7471,5542,1929,0.140276,1445.22,2932.92,1543,1067,476,19,0.741802,0.691510,0.012314,0.000000,1629.38,0.140276,-184.16,-0.113025,0.036596 +smart,0.3000,0.5000,90,7493,5524,1969,0.095422,1506.01,2900.17,1082,717,365,2,0.737221,0.662662,0.001848,0.000000,1629.38,0.095422,-123.37,-0.075716,0.032015 +smart,0.3000,0.5000,120,7577,5472,2105,0.077735,1513.45,2877.04,858,590,268,1,0.722186,0.687646,0.001166,0.000000,1629.38,0.077735,-115.93,-0.071148,0.016979 +smart,0.3000,0.5000,180,7476,5345,2131,0.054040,1560.75,2931.63,577,404,173,0,0.714955,0.700173,0.000000,0.000000,1629.38,0.054040,-68.63,-0.042123,0.009748 +smart,0.3000,0.5000,240,7660,5540,2120,0.040992,1589.95,2964.08,446,314,132,0,0.723238,0.704036,0.000000,0.000000,1629.38,0.040992,-39.43,-0.024201,0.018031 +smart,0.3000,0.5000,300,7680,5543,2137,0.032943,1585.39,2937.61,360,253,107,0,0.721745,0.702778,0.000000,0.000000,1629.38,0.032943,-43.99,-0.026997,0.016539 +smart,0.3000,0.5500,30,7625,5907,1718,0.228066,1320.34,2892.52,2783,1916,867,177,0.774689,0.688466,0.063600,0.000000,1629.38,0.228066,-309.04,-0.189666,0.069482 +smart,0.3000,0.5500,60,7470,5648,1822,0.141633,1425.50,2872.57,1552,1074,478,16,0.756091,0.692010,0.010309,0.000000,1629.38,0.141633,-203.88,-0.125125,0.050885 +smart,0.3000,0.5500,90,7591,5564,2027,0.096035,1500.89,2909.57,1091,730,361,1,0.732973,0.669111,0.000917,0.000000,1629.38,0.096035,-128.49,-0.078856,0.027767 +smart,0.3000,0.5500,120,7506,5516,1990,0.080069,1515.26,2902.98,856,603,253,2,0.734879,0.704439,0.002336,0.000000,1629.38,0.080069,-114.12,-0.070042,0.029673 +smart,0.3000,0.5500,180,7306,5220,2086,0.054339,1547.13,2913.04,569,397,172,0,0.714481,0.697715,0.000000,0.000000,1629.38,0.054339,-82.25,-0.050477,0.009275 +smart,0.3000,0.5500,240,7540,5440,2100,0.041114,1570.81,2897.95,439,310,129,0,0.721485,0.706150,0.000000,0.000000,1629.38,0.041114,-58.57,-0.035949,0.016279 +smart,0.3000,0.5500,300,7459,5369,2090,0.033651,1569.40,2876.39,354,251,103,0,0.719802,0.709040,0.000000,0.000000,1629.38,0.033651,-59.98,-0.036814,0.014595 +smart,0.3000,0.6000,30,7503,5822,1681,0.223910,1334.58,2927.78,2686,1816,870,136,0.775956,0.676098,0.050633,0.000000,1629.38,0.223910,-294.80,-0.180927,0.070750 +smart,0.3000,0.6000,60,7553,5570,1983,0.126969,1459.79,2937.88,1451,976,475,17,0.737455,0.672640,0.011716,0.000000,1629.38,0.126969,-169.59,-0.104083,0.032249 +smart,0.3000,0.6000,90,7345,5391,1954,0.098162,1483.27,2858.05,1068,724,344,3,0.733969,0.677903,0.002809,0.000000,1629.38,0.098162,-146.11,-0.089674,0.028763 +smart,0.3000,0.6000,120,7543,5435,2108,0.073711,1513.85,2836.93,828,557,271,1,0.720536,0.672705,0.001208,0.000000,1629.38,0.073711,-115.53,-0.070906,0.015329 +smart,0.3000,0.6000,180,7518,5384,2134,0.049880,1564.21,2909.17,563,375,188,0,0.716148,0.666075,0.000000,0.000000,1629.38,0.049880,-65.17,-0.039998,0.010942 +smart,0.3000,0.6000,240,7599,5413,2186,0.040663,1585.56,2930.14,441,309,132,0,0.712331,0.700680,0.000000,0.000000,1629.38,0.040663,-43.82,-0.026896,0.007124 +smart,0.3000,0.6000,300,7529,5405,2124,0.033603,1570.58,2878.58,355,253,102,0,0.717891,0.712676,0.000000,0.000000,1629.38,0.033603,-58.80,-0.036088,0.012685 +smart,0.3000,0.6500,30,7618,5396,2222,0.001444,1603.08,2837.32,19,14,5,3,0.708322,0.736842,0.157895,0.000000,1629.38,0.001444,-26.30,-0.016139,0.003116 +smart,0.3000,0.6500,60,7643,5427,2216,0.012822,1605.72,2865.94,146,100,46,2,0.710061,0.684932,0.013699,0.000000,1629.38,0.012822,-23.66,-0.014521,0.004855 +smart,0.3000,0.6500,90,7519,5282,2237,0.019816,1595.53,2895.66,206,150,56,1,0.702487,0.728155,0.004854,0.000000,1629.38,0.019816,-33.85,-0.020778,-0.002719 +smart,0.3000,0.6500,120,7486,5266,2220,0.000935,1624.90,2905.35,11,7,4,0,0.703446,0.636364,0.000000,0.000000,1629.38,0.000935,-4.48,-0.002748,-0.001760 +smart,0.3000,0.6500,180,7364,5148,2216,0.002716,1616.49,2913.70,29,20,9,0,0.699077,0.689655,0.000000,0.000000,1629.38,0.002716,-12.89,-0.007913,-0.006130 +smart,0.3000,0.6500,240,7596,5381,2215,0.006451,1629.88,2982.05,68,49,19,0,0.708399,0.720588,0.000000,0.000000,1629.38,0.006451,0.50,0.000306,0.003193 +smart,0.3000,0.6500,300,7442,5231,2211,0.004837,1623.55,2913.00,50,36,14,0,0.702902,0.720000,0.000000,0.000000,1629.38,0.004837,-5.83,-0.003579,-0.002304 +smart,0.3000,0.7000,30,7646,5340,2306,0.000000,1629.18,2944.62,0,0,0,0,0.698404,0.000000,0.000000,0.000000,1629.38,0.000000,-0.20,-0.000121,-0.006802 +smart,0.3000,0.7000,60,7722,5522,2200,0.000389,1627.19,2917.33,5,3,2,0,0.715100,0.600000,0.000000,0.000000,1629.38,0.000389,-2.19,-0.001342,0.009894 +smart,0.3000,0.7000,90,7549,5319,2230,0.000000,1623.62,2904.54,1,0,1,0,0.704597,0.000000,0.000000,0.000000,1629.38,0.000000,-5.76,-0.003533,-0.000609 +smart,0.3000,0.7000,120,7606,5353,2253,0.000000,1628.79,2895.65,1,0,1,0,0.703786,0.000000,0.000000,0.000000,1629.38,0.000000,-0.59,-0.000360,-0.001420 +smart,0.3000,0.7000,180,7735,5407,2328,0.000000,1639.34,2957.29,0,0,0,0,0.699030,0.000000,0.000000,0.000000,1629.38,0.000000,9.96,0.006111,-0.006176 +smart,0.3000,0.7000,240,7507,5210,2297,0.000266,1629.09,2881.65,3,2,1,0,0.694019,0.666667,0.000000,0.000000,1629.38,0.000266,-0.29,-0.000176,-0.011187 +smart,0.3000,0.7000,300,7481,5275,2206,0.000000,1627.51,2882.65,0,0,0,0,0.705120,0.000000,0.000000,0.000000,1629.38,0.000000,-1.87,-0.001145,-0.000086 +smart,0.3000,0.7500,30,7514,5341,2173,0.000133,1622.62,2886.96,2,1,1,0,0.710806,0.500000,0.000000,0.000000,1629.38,0.000133,-6.76,-0.004147,0.005600 +smart,0.3000,0.7500,60,7650,5333,2317,0.000000,1632.82,2928.38,0,0,0,0,0.697124,0.000000,0.000000,0.000000,1629.38,0.000000,3.44,0.002109,-0.008082 +smart,0.3000,0.7500,90,7525,5299,2226,0.000000,1614.06,2872.61,1,0,1,0,0.704186,0.000000,0.000000,0.000000,1629.38,0.000000,-15.32,-0.009400,-0.001020 +smart,0.3000,0.7500,120,7550,5304,2246,0.000000,1623.51,2887.80,1,0,1,0,0.702517,0.000000,0.000000,0.000000,1629.38,0.000000,-5.87,-0.003601,-0.002690 +smart,0.3000,0.7500,180,7704,5450,2254,0.000000,1611.97,2826.43,1,0,1,0,0.707425,0.000000,0.000000,0.000000,1629.38,0.000000,-17.41,-0.010683,0.002219 +smart,0.3000,0.7500,240,7481,5279,2202,0.000134,1631.36,2950.09,1,1,0,0,0.705654,1.000000,0.000000,0.000000,1629.38,0.000134,1.98,0.001217,0.000448 +smart,0.3000,0.7500,300,7549,5370,2179,0.000000,1634.07,2918.78,0,0,0,0,0.711352,0.000000,0.000000,0.000000,1629.38,0.000000,4.69,0.002880,0.006146 +smart,0.3000,0.8000,30,7475,5240,2235,0.000000,1610.04,2873.72,0,0,0,0,0.701003,0.000000,0.000000,0.000000,1629.38,0.000000,-19.34,-0.011869,-0.004203 +smart,0.3000,0.8000,60,7569,5280,2289,0.000132,1623.01,2891.57,1,1,0,0,0.697582,1.000000,0.000000,0.000000,1629.38,0.000132,-6.37,-0.003909,-0.007624 +smart,0.3000,0.8000,90,7461,5232,2229,0.000000,1645.93,2933.85,0,0,0,0,0.701246,0.000000,0.000000,0.000000,1629.38,0.000000,16.55,0.010159,-0.003960 +smart,0.3000,0.8000,120,7510,5288,2222,0.000266,1614.17,2882.98,2,2,0,0,0.704128,1.000000,0.000000,0.000000,1629.38,0.000266,-15.21,-0.009333,-0.001078 +smart,0.3000,0.8000,180,7472,5189,2283,0.000000,1630.22,2874.71,0,0,0,0,0.694459,0.000000,0.000000,0.000000,1629.38,0.000000,0.84,0.000518,-0.010747 +smart,0.3000,0.8000,240,7672,5366,2306,0.000000,1627.42,2916.36,0,0,0,0,0.699426,0.000000,0.000000,0.000000,1629.38,0.000000,-1.96,-0.001200,-0.005780 +smart,0.3000,0.8000,300,7530,5407,2123,0.000000,1614.38,2862.51,0,0,0,0,0.718061,0.000000,0.000000,0.000000,1629.38,0.000000,-15.00,-0.009207,0.012855 +smart,0.3000,0.8500,30,7628,5329,2299,0.000131,1615.07,2856.12,1,1,0,0,0.698610,1.000000,0.000000,0.000000,1629.38,0.000131,-14.31,-0.008783,-0.006596 +smart,0.3000,0.8500,60,7597,5385,2212,0.000000,1630.66,2932.93,0,0,0,0,0.708832,0.000000,0.000000,0.000000,1629.38,0.000000,1.28,0.000787,0.003626 +smart,0.3000,0.8500,90,7609,5382,2227,0.000000,1623.71,2869.96,0,0,0,0,0.707320,0.000000,0.000000,0.000000,1629.38,0.000000,-5.67,-0.003477,0.002114 +smart,0.3000,0.8500,120,7609,5389,2220,0.000000,1629.19,2908.08,0,0,0,0,0.708240,0.000000,0.000000,0.000000,1629.38,0.000000,-0.19,-0.000115,0.003034 +smart,0.3000,0.8500,180,7590,5392,2198,0.000000,1631.58,2919.63,0,0,0,0,0.710408,0.000000,0.000000,0.000000,1629.38,0.000000,2.20,0.001352,0.005202 +smart,0.3000,0.8500,240,7617,5339,2278,0.000000,1621.77,2921.56,0,0,0,0,0.700932,0.000000,0.000000,0.000000,1629.38,0.000000,-7.61,-0.004668,-0.004274 +smart,0.3000,0.8500,300,7449,5282,2167,0.000000,1625.44,2890.29,0,0,0,0,0.709088,0.000000,0.000000,0.000000,1629.38,0.000000,-3.94,-0.002417,0.003882 +smart,0.3000,0.9000,30,7543,5239,2304,0.000000,1620.74,2874.49,0,0,0,0,0.694551,0.000000,0.000000,0.000000,1629.38,0.000000,-8.64,-0.005305,-0.010655 +smart,0.3000,0.9000,60,7539,5230,2309,0.000000,1632.06,2903.31,0,0,0,0,0.693726,0.000000,0.000000,0.000000,1629.38,0.000000,2.68,0.001646,-0.011480 +smart,0.3000,0.9000,90,7568,5329,2239,0.000000,1625.18,2872.17,0,0,0,0,0.704149,0.000000,0.000000,0.000000,1629.38,0.000000,-4.20,-0.002575,-0.001057 +smart,0.3000,0.9000,120,7705,5430,2275,0.000000,1624.81,2921.52,0,0,0,0,0.704737,0.000000,0.000000,0.000000,1629.38,0.000000,-4.57,-0.002802,-0.000469 +smart,0.3000,0.9000,180,7562,5292,2270,0.000000,1613.55,2887.02,0,0,0,0,0.699815,0.000000,0.000000,0.000000,1629.38,0.000000,-15.83,-0.009717,-0.005391 +smart,0.3000,0.9000,240,7562,5301,2261,0.000000,1653.27,3011.55,0,0,0,0,0.701005,0.000000,0.000000,0.000000,1629.38,0.000000,23.89,0.014663,-0.004201 +smart,0.3000,0.9000,300,7726,5443,2283,0.000000,1624.54,2882.85,0,0,0,0,0.704504,0.000000,0.000000,0.000000,1629.38,0.000000,-4.84,-0.002969,-0.000702 +smart,0.3500,0.2000,30,8066,6562,1504,0.366477,1072.91,2789.91,5493,3724,1769,767,0.813538,0.677954,0.139632,0.000000,1615.17,0.366477,-542.26,-0.335732,0.111563 +smart,0.3500,0.2000,60,7951,6158,1793,0.248145,1241.86,2829.56,3202,2190,1012,216,0.774494,0.683948,0.067458,0.000000,1615.17,0.248145,-373.31,-0.231128,0.072518 +smart,0.3500,0.2000,90,8017,6090,1927,0.194088,1307.92,2794.20,2273,1627,646,70,0.759636,0.715794,0.030796,0.000000,1615.17,0.194088,-307.25,-0.190228,0.057660 +smart,0.3500,0.2000,120,8141,5993,2148,0.150596,1384.94,2856.73,1787,1250,537,24,0.736150,0.699496,0.013430,0.000000,1615.17,0.150596,-230.23,-0.142541,0.034175 +smart,0.3500,0.2000,180,8028,5915,2113,0.108122,1454.14,2830.02,1214,871,343,3,0.736796,0.717463,0.002471,0.000000,1615.17,0.108122,-161.03,-0.099697,0.034821 +smart,0.3500,0.2000,240,8140,5910,2230,0.077641,1507.63,2907.24,933,635,298,3,0.726044,0.680600,0.003215,0.000000,1615.17,0.077641,-107.54,-0.066584,0.024069 +smart,0.3500,0.2000,300,7907,5634,2273,0.065132,1523.77,2913.92,747,515,232,0,0.712533,0.689424,0.000000,0.000000,1615.17,0.065132,-91.40,-0.056588,0.010558 +smart,0.3500,0.2500,30,8050,6549,1501,0.380870,1049.72,2786.73,5451,3831,1620,765,0.813540,0.702807,0.140341,0.000000,1615.17,0.380870,-565.45,-0.350087,0.111565 +smart,0.3500,0.2500,60,8068,6290,1778,0.251239,1233.92,2774.25,3198,2183,1015,156,0.779623,0.682614,0.048780,0.000000,1615.17,0.251239,-381.25,-0.236043,0.077648 +smart,0.3500,0.2500,90,7961,6037,1924,0.183017,1342.52,2869.43,2254,1533,721,75,0.758322,0.680124,0.033274,0.000000,1615.17,0.183017,-272.65,-0.168804,0.056347 +smart,0.3500,0.2500,120,7978,5967,2011,0.153673,1380.77,2831.37,1764,1266,498,40,0.747932,0.717687,0.022676,0.000000,1615.17,0.153673,-234.40,-0.145125,0.045957 +smart,0.3500,0.2500,180,8080,5904,2176,0.105693,1455.47,2862.56,1229,857,372,3,0.730693,0.697315,0.002441,0.000000,1615.17,0.105693,-159.70,-0.098875,0.028718 +smart,0.3500,0.2500,240,8112,5934,2178,0.076800,1503.86,2876.72,926,624,302,1,0.731509,0.673866,0.001080,0.000000,1615.17,0.076800,-111.31,-0.068914,0.029534 +smart,0.3500,0.2500,300,8033,5837,2196,0.066974,1515.62,2861.44,753,538,215,0,0.726628,0.714475,0.000000,0.000000,1615.17,0.066974,-99.55,-0.061635,0.024652 +smart,0.3500,0.3000,30,8023,6241,1782,0.246541,1285.14,2894.03,3245,2229,1016,251,0.777889,0.686903,0.077350,0.000000,1615.17,0.246541,-330.03,-0.204328,0.075913 +smart,0.3500,0.3000,60,8106,6291,1815,0.245621,1239.22,2812.19,3176,2175,1001,183,0.776092,0.684824,0.057620,0.000000,1615.17,0.245621,-375.95,-0.232760,0.074116 +smart,0.3500,0.3000,90,8064,6081,1983,0.164931,1364.22,2809.85,2045,1372,673,42,0.754092,0.670905,0.020538,0.000000,1615.17,0.164931,-250.95,-0.155369,0.052117 +smart,0.3500,0.3000,120,8217,6138,2079,0.138980,1412.07,2855.76,1687,1163,524,21,0.746988,0.689389,0.012448,0.000000,1615.17,0.138980,-203.10,-0.125746,0.045013 +smart,0.3500,0.3000,180,8093,5923,2170,0.098233,1476.49,2869.04,1120,798,322,3,0.731867,0.712500,0.002679,0.000000,1615.17,0.098233,-138.68,-0.085863,0.029892 +smart,0.3500,0.3000,240,8052,5759,2293,0.044958,1558.72,2899.24,515,362,153,0,0.715226,0.702913,0.000000,0.000000,1615.17,0.044958,-56.45,-0.034947,0.013251 +smart,0.3500,0.3000,300,8117,5797,2320,0.033756,1578.58,2914.41,389,275,114,0,0.714180,0.706941,0.000000,0.000000,1615.17,0.033756,-36.59,-0.022657,0.012205 +smart,0.3500,0.3500,30,8114,6295,1819,0.230466,1318.12,2895.48,2962,2031,931,161,0.775820,0.685685,0.054355,0.000000,1615.17,0.230466,-297.05,-0.183913,0.073844 +smart,0.3500,0.3500,60,8175,6035,2140,0.137859,1445.06,2915.81,1684,1156,528,29,0.738226,0.686461,0.017221,0.000000,1615.17,0.137859,-170.11,-0.105319,0.036251 +smart,0.3500,0.3500,90,8115,5944,2171,0.098213,1487.88,2889.61,1168,798,370,1,0.732471,0.683219,0.000856,0.000000,1615.17,0.098213,-127.29,-0.078812,0.030495 +smart,0.3500,0.3500,120,8153,5857,2296,0.076536,1525.24,2899.44,903,625,278,1,0.718386,0.692137,0.001107,0.000000,1615.17,0.076536,-89.93,-0.055680,0.016411 +smart,0.3500,0.3500,180,8104,5869,2235,0.057379,1556.19,2939.35,625,465,160,0,0.724210,0.744000,0.000000,0.000000,1615.17,0.057379,-58.98,-0.036517,0.022235 +smart,0.3500,0.3500,240,8018,5621,2397,0.039411,1582.27,2923.60,474,316,158,0,0.701048,0.666667,0.000000,0.000000,1615.17,0.039411,-32.90,-0.020372,-0.000928 +smart,0.3500,0.3500,300,8091,5798,2293,0.032505,1591.51,2940.63,383,263,120,0,0.716599,0.686684,0.000000,0.000000,1615.17,0.032505,-23.66,-0.014652,0.014623 +smart,0.3500,0.4000,30,8213,6370,1843,0.228662,1315.60,2898.17,3023,2062,961,184,0.775600,0.682104,0.060867,0.000000,1615.17,0.228662,-299.57,-0.185475,0.073624 +smart,0.3500,0.4000,60,7927,5891,2036,0.136622,1445.37,2884.93,1665,1116,549,33,0.743156,0.670270,0.019820,0.000000,1615.17,0.136622,-169.80,-0.105129,0.041181 +smart,0.3500,0.4000,90,8238,6083,2155,0.100631,1499.35,2936.97,1184,831,353,2,0.738407,0.701858,0.001689,0.000000,1615.17,0.100631,-115.82,-0.071706,0.036432 +smart,0.3500,0.4000,120,7993,5857,2136,0.074690,1525.44,2912.23,900,597,303,0,0.732766,0.663333,0.000000,0.000000,1615.17,0.074690,-89.73,-0.055554,0.030791 +smart,0.3500,0.4000,180,8077,5756,2321,0.053733,1555.22,2903.52,619,435,184,0,0.712641,0.702746,0.000000,0.000000,1615.17,0.053733,-59.95,-0.037116,0.010666 +smart,0.3500,0.4000,240,8174,5797,2377,0.039516,1574.66,2911.52,480,323,157,0,0.709200,0.672917,0.000000,0.000000,1615.17,0.039516,-40.51,-0.025079,0.007225 +smart,0.3500,0.4000,300,8041,5721,2320,0.030220,1585.27,2885.62,378,243,135,0,0.711479,0.642857,0.000000,0.000000,1615.17,0.030220,-29.90,-0.018514,0.009503 +smart,0.3500,0.4500,30,8078,6218,1860,0.221961,1333.34,2948.08,2926,1935,991,142,0.769745,0.661312,0.048530,0.000000,1615.17,0.221961,-281.83,-0.174492,0.067770 +smart,0.3500,0.4500,60,8068,5957,2111,0.137333,1444.40,2879.45,1651,1130,521,22,0.738349,0.684434,0.013325,0.000000,1615.17,0.137333,-170.77,-0.105730,0.036374 +smart,0.3500,0.4500,90,8143,6007,2136,0.094191,1497.49,2926.58,1156,769,387,2,0.737689,0.665225,0.001730,0.000000,1615.17,0.094191,-117.68,-0.072860,0.035714 +smart,0.3500,0.4500,120,8258,6004,2254,0.071083,1518.93,2903.69,908,588,320,1,0.727053,0.647577,0.001101,0.000000,1615.17,0.071083,-96.24,-0.059588,0.025077 +smart,0.3500,0.4500,180,8132,5817,2315,0.052755,1551.07,2945.53,616,429,187,0,0.715322,0.696429,0.000000,0.000000,1615.17,0.052755,-64.10,-0.039689,0.013347 +smart,0.3500,0.4500,240,8210,5857,2353,0.038490,1572.54,2876.25,479,316,163,0,0.713398,0.659708,0.000000,0.000000,1615.17,0.038490,-42.63,-0.026392,0.011423 +smart,0.3500,0.4500,300,7873,5681,2192,0.033405,1576.81,2880.86,383,263,120,0,0.721580,0.686684,0.000000,0.000000,1615.17,0.033405,-38.36,-0.023748,0.019605 +smart,0.3500,0.5000,30,8085,6269,1816,0.229561,1319.72,2892.97,2948,2003,945,147,0.775387,0.679444,0.049864,0.000000,1615.17,0.229561,-295.45,-0.182923,0.073411 +smart,0.3500,0.5000,60,8091,6002,2089,0.138178,1425.28,2835.71,1672,1135,537,17,0.741812,0.678828,0.010167,0.000000,1615.17,0.138178,-189.89,-0.117565,0.039837 +smart,0.3500,0.5000,90,8100,5936,2164,0.098148,1488.30,2901.01,1172,799,373,4,0.732840,0.681741,0.003413,0.000000,1615.17,0.098148,-126.87,-0.078549,0.030864 +smart,0.3500,0.5000,120,8170,5951,2219,0.076132,1511.99,2904.49,891,622,269,0,0.728397,0.698092,0.000000,0.000000,1615.17,0.076132,-103.18,-0.063881,0.026421 +smart,0.3500,0.5000,180,8207,5952,2255,0.051298,1544.04,2835.37,621,421,200,0,0.725235,0.677939,0.000000,0.000000,1615.17,0.051298,-71.13,-0.044040,0.023259 +smart,0.3500,0.5000,240,8112,5747,2365,0.041543,1557.75,2860.44,478,337,141,0,0.708457,0.705021,0.000000,0.000000,1615.17,0.041543,-57.42,-0.035548,0.006481 +smart,0.3500,0.5000,300,8135,5873,2262,0.033436,1593.36,2939.76,382,272,110,0,0.721942,0.712042,0.000000,0.000000,1615.17,0.033436,-21.81,-0.013501,0.019967 +smart,0.3500,0.5500,30,8145,6301,1844,0.222468,1335.08,2890.70,2947,1991,956,179,0.773603,0.675602,0.060740,0.000000,1615.17,0.222468,-280.09,-0.173411,0.071628 +smart,0.3500,0.5500,60,8252,6127,2125,0.136088,1438.22,2893.06,1698,1147,551,24,0.742487,0.675501,0.014134,0.000000,1615.17,0.136088,-176.95,-0.109554,0.040511 +smart,0.3500,0.5500,90,7986,5819,2167,0.100927,1486.78,2901.41,1159,811,348,5,0.728650,0.699741,0.004314,0.000000,1615.17,0.100927,-128.39,-0.079487,0.026675 +smart,0.3500,0.5500,120,8109,5908,2201,0.076458,1534.01,2953.60,906,621,285,1,0.728573,0.685430,0.001104,0.000000,1615.17,0.076458,-81.16,-0.050248,0.026598 +smart,0.3500,0.5500,180,8162,5830,2332,0.054889,1554.41,2917.10,625,448,177,0,0.714286,0.716800,0.000000,0.000000,1615.17,0.054889,-60.76,-0.037621,0.012310 +smart,0.3500,0.5500,240,8151,5865,2286,0.039995,1558.90,2856.21,475,326,149,0,0.719544,0.686316,0.000000,0.000000,1615.17,0.039995,-56.27,-0.034840,0.017568 +smart,0.3500,0.5500,300,8189,5838,2351,0.030773,1599.07,2961.75,385,252,133,0,0.712908,0.654545,0.000000,0.000000,1615.17,0.030773,-16.10,-0.009969,0.010932 +smart,0.3500,0.6000,30,8134,6286,1848,0.222769,1312.67,2874.73,2952,1995,957,183,0.772806,0.675813,0.061992,0.000000,1615.17,0.222769,-302.50,-0.187286,0.070830 +smart,0.3500,0.6000,60,7966,5943,2023,0.139342,1429.78,2896.77,1649,1130,519,20,0.746046,0.685264,0.012129,0.000000,1615.17,0.139342,-185.39,-0.114781,0.044070 +smart,0.3500,0.6000,90,7986,5905,2081,0.098798,1492.16,2911.49,1160,793,367,4,0.739419,0.683621,0.003448,0.000000,1615.17,0.098798,-123.01,-0.076158,0.037444 +smart,0.3500,0.6000,120,8068,5815,2253,0.069782,1546.51,2935.77,864,563,301,0,0.720749,0.651620,0.000000,0.000000,1615.17,0.069782,-68.66,-0.042507,0.018773 +smart,0.3500,0.6000,180,7961,5737,2224,0.049742,1555.51,2887.47,621,396,225,0,0.720638,0.637681,0.000000,0.000000,1615.17,0.049742,-59.66,-0.036938,0.018663 +smart,0.3500,0.6000,240,8113,5821,2292,0.040306,1564.85,2878.56,472,327,145,0,0.717490,0.692797,0.000000,0.000000,1615.17,0.040306,-50.32,-0.031152,0.015515 +smart,0.3500,0.6000,300,8132,5794,2338,0.030497,1591.05,2900.26,381,248,133,0,0.712494,0.650919,0.000000,0.000000,1615.17,0.030497,-24.12,-0.014936,0.010519 +smart,0.3500,0.6500,30,8160,5713,2447,0.014338,1592.89,2851.09,178,123,55,6,0.700123,0.691011,0.033708,0.000000,1615.17,0.014338,-22.28,-0.013793,-0.001853 +smart,0.3500,0.6500,60,8174,5786,2388,0.002202,1631.81,2894.16,26,18,8,0,0.707854,0.692308,0.000000,0.000000,1615.17,0.002202,16.64,0.010301,0.005879 +smart,0.3500,0.6500,90,8112,5783,2329,0.002589,1611.34,2902.73,30,21,9,0,0.712894,0.700000,0.000000,0.000000,1615.17,0.002589,-3.83,-0.002373,0.010919 +smart,0.3500,0.6500,120,7962,5650,2312,0.008289,1621.87,2920.94,105,66,39,0,0.709621,0.628571,0.000000,0.000000,1615.17,0.008289,6.70,0.004147,0.007645 +smart,0.3500,0.6500,180,8110,5756,2354,0.003329,1608.54,2862.40,44,27,17,0,0.709741,0.613636,0.000000,0.000000,1615.17,0.003329,-6.63,-0.004103,0.007766 +smart,0.3500,0.6500,240,8141,5754,2387,0.002948,1617.67,2941.15,39,24,15,0,0.706793,0.615385,0.000000,0.000000,1615.17,0.002948,2.50,0.001549,0.004817 +smart,0.3500,0.6500,300,8139,5714,2425,0.000614,1621.53,2947.45,7,5,2,0,0.702052,0.714286,0.000000,0.000000,1615.17,0.000614,6.36,0.003940,0.000077 +smart,0.3500,0.7000,30,8143,5789,2354,0.000368,1638.64,2923.49,5,3,2,0,0.710917,0.600000,0.000000,0.000000,1615.17,0.000368,23.47,0.014532,0.008942 +smart,0.3500,0.7000,60,8154,5675,2479,0.000000,1644.98,2978.41,1,0,1,0,0.695977,0.000000,0.000000,0.000000,1615.17,0.000000,29.81,0.018457,-0.005998 +smart,0.3500,0.7000,90,8156,5768,2388,0.000000,1638.86,2964.00,2,0,2,0,0.707209,0.000000,0.000000,0.000000,1615.17,0.000000,23.69,0.014670,0.005234 +smart,0.3500,0.7000,120,7910,5588,2322,0.000253,1626.45,2904.85,4,2,2,0,0.706448,0.500000,0.000000,0.000000,1615.17,0.000253,11.28,0.006984,0.004472 +smart,0.3500,0.7000,180,8116,5730,2386,0.000000,1626.73,2873.16,0,0,0,0,0.706013,0.000000,0.000000,0.000000,1615.17,0.000000,11.56,0.007159,0.004038 +smart,0.3500,0.7000,240,8135,5705,2430,0.000123,1629.60,2905.80,2,1,1,0,0.701291,0.500000,0.000000,0.000000,1615.17,0.000123,14.43,0.008932,-0.000685 +smart,0.3500,0.7000,300,8277,5842,2435,0.000483,1632.70,2897.61,4,4,0,0,0.705811,1.000000,0.000000,0.000000,1615.17,0.000483,17.53,0.010856,0.003836 +smart,0.3500,0.7500,30,8286,5869,2417,0.000483,1634.15,2908.16,13,5,8,1,0.708303,0.384615,0.076923,0.000000,1615.17,0.000483,18.98,0.011753,0.006328 +smart,0.3500,0.7500,60,8049,5647,2402,0.000248,1627.27,2920.37,4,2,2,0,0.701578,0.500000,0.000000,0.000000,1615.17,0.000248,12.10,0.007493,-0.000397 +smart,0.3500,0.7500,90,8188,5835,2353,0.000244,1615.57,2875.38,2,2,0,0,0.712628,1.000000,0.000000,0.000000,1615.17,0.000244,0.40,0.000248,0.010653 +smart,0.3500,0.7500,120,8146,5775,2371,0.000000,1627.12,2893.23,0,0,0,0,0.708937,0.000000,0.000000,0.000000,1615.17,0.000000,11.95,0.007400,0.006962 +smart,0.3500,0.7500,180,8149,5707,2442,0.000000,1625.95,2917.36,1,0,1,0,0.700331,0.000000,0.000000,0.000000,1615.17,0.000000,10.78,0.006674,-0.001644 +smart,0.3500,0.7500,240,8188,5778,2410,0.000122,1614.40,2862.26,1,1,0,0,0.705667,1.000000,0.000000,0.000000,1615.17,0.000122,-0.77,-0.000476,0.003692 +smart,0.3500,0.7500,300,8032,5609,2423,0.000125,1622.62,2864.12,3,1,2,0,0.698332,0.333333,0.000000,0.000000,1615.17,0.000125,7.45,0.004610,-0.003644 +smart,0.3500,0.8000,30,8117,5704,2413,0.000000,1620.98,2903.51,0,0,0,0,0.702723,0.000000,0.000000,0.000000,1615.17,0.000000,5.81,0.003594,0.000747 +smart,0.3500,0.8000,60,8126,5706,2420,0.000000,1623.91,2863.14,1,0,1,0,0.702190,0.000000,0.000000,0.000000,1615.17,0.000000,8.74,0.005413,0.000215 +smart,0.3500,0.8000,90,7886,5528,2358,0.000000,1628.11,2901.69,0,0,0,0,0.700989,0.000000,0.000000,0.000000,1615.17,0.000000,12.94,0.008011,-0.000986 +smart,0.3500,0.8000,120,7964,5621,2343,0.000126,1637.97,2923.12,2,1,1,0,0.705801,0.500000,0.000000,0.000000,1615.17,0.000126,22.80,0.014116,0.003826 +smart,0.3500,0.8000,180,8053,5675,2378,0.000000,1622.98,2902.67,0,0,0,0,0.704706,0.000000,0.000000,0.000000,1615.17,0.000000,7.81,0.004832,0.002731 +smart,0.3500,0.8000,240,8060,5729,2331,0.000124,1632.58,2924.90,1,1,0,0,0.710794,1.000000,0.000000,0.000000,1615.17,0.000124,17.41,0.010780,0.008819 +smart,0.3500,0.8000,300,8025,5602,2423,0.000000,1627.43,2900.47,0,0,0,0,0.698069,0.000000,0.000000,0.000000,1615.17,0.000000,12.26,0.007593,-0.003907 +smart,0.3500,0.8500,30,8042,5715,2327,0.000124,1613.27,2867.92,3,2,1,1,0.710644,0.666667,0.333333,0.000000,1615.17,0.000124,-1.90,-0.001179,0.008669 +smart,0.3500,0.8500,60,8016,5664,2352,0.000000,1623.88,2921.57,0,0,0,0,0.706587,0.000000,0.000000,0.000000,1615.17,0.000000,8.71,0.005391,0.004612 +smart,0.3500,0.8500,90,8112,5702,2410,0.000000,1628.26,2917.46,0,0,0,0,0.702909,0.000000,0.000000,0.000000,1615.17,0.000000,13.09,0.008106,0.000934 +smart,0.3500,0.8500,120,7881,5547,2334,0.000000,1631.19,2937.42,0,0,0,0,0.703845,0.000000,0.000000,0.000000,1615.17,0.000000,16.02,0.009919,0.001869 +smart,0.3500,0.8500,180,8175,5758,2417,0.000000,1630.56,2901.82,0,0,0,0,0.704343,0.000000,0.000000,0.000000,1615.17,0.000000,15.39,0.009531,0.002367 +smart,0.3500,0.8500,240,8144,5718,2426,0.000000,1628.57,2919.09,0,0,0,0,0.702112,0.000000,0.000000,0.000000,1615.17,0.000000,13.40,0.008293,0.000137 +smart,0.3500,0.8500,300,8213,5806,2407,0.000000,1622.58,2910.40,0,0,0,0,0.706928,0.000000,0.000000,0.000000,1615.17,0.000000,7.41,0.004586,0.004953 +smart,0.3500,0.9000,30,8209,5707,2502,0.000000,1626.97,2932.72,0,0,0,0,0.695213,0.000000,0.000000,0.000000,1615.17,0.000000,11.80,0.007308,-0.006763 +smart,0.3500,0.9000,60,8145,5760,2385,0.000000,1627.87,2863.26,2,0,2,0,0.707182,0.000000,0.000000,0.000000,1615.17,0.000000,12.70,0.007864,0.005207 +smart,0.3500,0.9000,90,7957,5637,2320,0.000000,1637.22,2962.80,0,0,0,0,0.708433,0.000000,0.000000,0.000000,1615.17,0.000000,22.05,0.013650,0.006458 +smart,0.3500,0.9000,120,8032,5663,2369,0.000000,1632.67,2943.38,0,0,0,0,0.705055,0.000000,0.000000,0.000000,1615.17,0.000000,17.50,0.010834,0.003079 +smart,0.3500,0.9000,180,8035,5673,2362,0.000000,1622.13,2907.06,0,0,0,0,0.706036,0.000000,0.000000,0.000000,1615.17,0.000000,6.96,0.004310,0.004061 +smart,0.3500,0.9000,240,7984,5596,2388,0.000000,1630.29,2898.51,0,0,0,0,0.700902,0.000000,0.000000,0.000000,1615.17,0.000000,15.12,0.009360,-0.001074 +smart,0.3500,0.9000,300,8122,5730,2392,0.000000,1628.82,2924.32,0,0,0,0,0.705491,0.000000,0.000000,0.000000,1615.17,0.000000,13.65,0.008450,0.003516 +smart,0.4000,0.2000,30,8791,7141,1650,0.380503,1046.23,2770.61,5864,4145,1719,800,0.812308,0.706855,0.136426,0.000000,1617.46,0.380503,-571.24,-0.353167,0.105812 +smart,0.4000,0.2000,60,8890,6872,2018,0.253881,1242.78,2831.60,3474,2469,1005,212,0.773003,0.710708,0.061025,0.000000,1617.46,0.253881,-374.69,-0.231652,0.066507 +smart,0.4000,0.2000,90,8789,6738,2051,0.182273,1334.04,2792.08,2440,1674,766,72,0.766640,0.686066,0.029508,0.000000,1617.46,0.182273,-283.43,-0.175228,0.060144 +smart,0.4000,0.2000,120,8591,6443,2148,0.148877,1384.40,2843.49,1890,1305,585,26,0.749971,0.690476,0.013757,0.000000,1617.46,0.148877,-233.06,-0.144091,0.043475 +smart,0.4000,0.2000,180,8596,6280,2316,0.101675,1465.04,2919.72,1303,885,418,11,0.730572,0.679202,0.008442,0.000000,1617.46,0.101675,-152.42,-0.094236,0.024076 +smart,0.4000,0.2000,240,8857,6489,2368,0.077340,1493.86,2843.67,1029,686,343,1,0.732641,0.666667,0.000972,0.000000,1617.46,0.077340,-123.60,-0.076416,0.026145 +smart,0.4000,0.2000,300,8609,6219,2390,0.063538,1525.27,2868.03,810,547,263,0,0.722384,0.675309,0.000000,0.000000,1617.46,0.063538,-92.19,-0.056996,0.015887 +smart,0.4000,0.2500,30,8571,6975,1596,0.374752,1040.88,2722.77,5779,4001,1778,789,0.813791,0.692334,0.136529,0.000000,1617.46,0.374752,-576.59,-0.356477,0.107295 +smart,0.4000,0.2500,60,8823,6845,1978,0.252975,1234.31,2839.81,3456,2446,1010,214,0.775813,0.707755,0.061921,0.000000,1617.46,0.252975,-383.16,-0.236888,0.069317 +smart,0.4000,0.2500,90,8729,6633,2096,0.188109,1321.30,2788.15,2449,1732,717,90,0.759881,0.707227,0.036750,0.000000,1617.46,0.188109,-296.16,-0.183103,0.053385 +smart,0.4000,0.2500,120,9001,6718,2283,0.145762,1407.49,2871.20,1922,1336,586,24,0.746362,0.695109,0.012487,0.000000,1617.46,0.145762,-209.98,-0.129819,0.039865 +smart,0.4000,0.2500,180,8671,6357,2314,0.101834,1454.65,2828.65,1306,891,415,8,0.733133,0.682236,0.006126,0.000000,1617.46,0.101834,-162.82,-0.100661,0.026637 +smart,0.4000,0.2500,240,8773,6356,2417,0.079106,1505.32,2917.08,1007,694,313,0,0.724496,0.689176,0.000000,0.000000,1617.46,0.079106,-112.15,-0.069335,0.017999 +smart,0.4000,0.2500,300,8707,6318,2389,0.065579,1524.76,2883.02,797,571,226,0,0.725623,0.716437,0.000000,0.000000,1617.46,0.065579,-92.70,-0.057313,0.019127 +smart,0.4000,0.3000,30,8809,7061,1748,0.350096,1096.03,2779.77,5451,3774,1677,690,0.801567,0.692350,0.126582,0.000000,1617.46,0.350096,-521.43,-0.322375,0.095070 +smart,0.4000,0.3000,60,8728,6657,2071,0.201650,1327.55,2867.99,2749,1894,855,134,0.762718,0.688978,0.048745,0.000000,1617.46,0.201650,-289.92,-0.179242,0.056222 +smart,0.4000,0.3000,90,8770,6482,2288,0.143216,1419.45,2893.19,1885,1297,588,40,0.739111,0.688064,0.021220,0.000000,1617.46,0.143216,-198.01,-0.122423,0.032614 +smart,0.4000,0.3000,120,8683,6466,2217,0.127721,1426.95,2832.28,1630,1129,501,20,0.744673,0.692638,0.012270,0.000000,1617.46,0.127721,-190.51,-0.117784,0.038177 +smart,0.4000,0.3000,180,8803,6450,2353,0.105305,1449.85,2859.71,1327,931,396,3,0.732705,0.701583,0.002261,0.000000,1617.46,0.105305,-167.62,-0.103629,0.026209 +smart,0.4000,0.3000,240,8648,6290,2358,0.075624,1500.74,2852.94,928,654,274,0,0.727336,0.704741,0.000000,0.000000,1617.46,0.075624,-116.72,-0.072165,0.020840 +smart,0.4000,0.3000,300,8739,6263,2476,0.056986,1535.09,2906.09,734,498,236,0,0.716672,0.678474,0.000000,0.000000,1617.46,0.056986,-82.37,-0.050925,0.010176 +smart,0.4000,0.3500,30,8828,6856,1972,0.227005,1316.45,2891.75,3204,2155,1049,151,0.776620,0.672597,0.047129,0.000000,1617.46,0.227005,-301.01,-0.186103,0.070124 +smart,0.4000,0.3500,60,8772,6507,2265,0.137255,1438.56,2902.04,1805,1237,568,33,0.741792,0.685319,0.018283,0.000000,1617.46,0.137255,-178.90,-0.110607,0.035296 +smart,0.4000,0.3500,90,8569,6268,2301,0.098845,1480.66,2867.39,1252,848,404,1,0.731474,0.677316,0.000799,0.000000,1617.46,0.098845,-136.80,-0.084579,0.024978 +smart,0.4000,0.3500,120,8910,6486,2424,0.077329,1510.88,2880.09,990,691,299,2,0.727946,0.697980,0.002020,0.000000,1617.46,0.077329,-106.59,-0.065897,0.021450 +smart,0.4000,0.3500,180,8808,6339,2469,0.052793,1550.18,2909.02,680,465,215,0,0.719687,0.683824,0.000000,0.000000,1617.46,0.052793,-67.29,-0.041601,0.013191 +smart,0.4000,0.3500,240,8761,6162,2599,0.040749,1564.07,2881.31,520,357,163,0,0.703344,0.686538,0.000000,0.000000,1617.46,0.040749,-53.39,-0.033011,-0.003152 +smart,0.4000,0.3500,300,8997,6435,2562,0.032900,1573.19,2909.40,417,296,121,0,0.715238,0.709832,0.000000,0.000000,1617.46,0.032900,-44.27,-0.027372,0.008742 +smart,0.4000,0.4000,30,8759,6732,2027,0.225368,1327.37,2879.69,3186,2166,1020,192,0.768581,0.679849,0.060264,0.000000,1617.46,0.225368,-290.09,-0.179349,0.062085 +smart,0.4000,0.4000,60,8608,6460,2148,0.141961,1441.07,2912.50,1780,1246,534,24,0.750465,0.700000,0.013483,0.000000,1617.46,0.141961,-176.39,-0.109056,0.043969 +smart,0.4000,0.4000,90,8727,6378,2349,0.098659,1485.27,2857.34,1251,866,385,5,0.730835,0.692246,0.003997,0.000000,1617.46,0.098659,-132.19,-0.081728,0.024339 +smart,0.4000,0.4000,120,8680,6350,2330,0.074539,1527.18,2937.73,970,647,323,0,0.731567,0.667010,0.000000,0.000000,1617.46,0.074539,-90.28,-0.055818,0.025071 +smart,0.4000,0.4000,180,8589,6220,2369,0.051694,1558.68,2958.58,669,444,225,0,0.724182,0.663677,0.000000,0.000000,1617.46,0.051694,-58.79,-0.036346,0.017686 +smart,0.4000,0.4000,240,8751,6238,2513,0.039881,1569.66,2904.03,515,349,166,0,0.712833,0.677670,0.000000,0.000000,1617.46,0.039881,-47.80,-0.029555,0.006337 +smart,0.4000,0.4000,300,8789,6299,2490,0.032313,1585.29,2944.05,413,284,129,0,0.716691,0.687651,0.000000,0.000000,1617.46,0.032313,-32.17,-0.019890,0.010195 +smart,0.4000,0.4500,30,8789,6770,2019,0.229264,1318.32,2890.39,3173,2188,985,173,0.770281,0.689568,0.054523,0.000000,1617.46,0.229264,-299.14,-0.184946,0.063785 +smart,0.4000,0.4500,60,8711,6520,2191,0.138331,1429.58,2902.28,1801,1228,573,23,0.748479,0.681843,0.012771,0.000000,1617.46,0.138331,-187.88,-0.116158,0.041983 +smart,0.4000,0.4500,90,8858,6564,2294,0.095281,1485.19,2864.05,1267,850,417,6,0.741025,0.670876,0.004736,0.000000,1617.46,0.095281,-132.28,-0.081779,0.034529 +smart,0.4000,0.4500,120,8757,6339,2418,0.075825,1521.31,2896.99,977,664,313,0,0.723878,0.679632,0.000000,0.000000,1617.46,0.075825,-96.16,-0.059450,0.017382 +smart,0.4000,0.4500,180,8563,6156,2407,0.052085,1545.41,2867.04,662,446,216,0,0.718907,0.673716,0.000000,0.000000,1617.46,0.052085,-72.06,-0.044548,0.012411 +smart,0.4000,0.4500,240,9020,6406,2614,0.038359,1571.91,2883.54,520,346,174,0,0.710200,0.665385,0.000000,0.000000,1617.46,0.038359,-45.55,-0.028164,0.003703 +smart,0.4000,0.4500,300,8785,6248,2537,0.032328,1592.76,2949.08,414,284,130,0,0.711212,0.685990,0.000000,0.000000,1617.46,0.032328,-24.71,-0.015276,0.004716 +smart,0.4000,0.5000,30,8811,6809,2002,0.225514,1321.58,2883.81,3202,2166,1036,179,0.772784,0.676452,0.055903,0.000000,1617.46,0.225514,-295.88,-0.182930,0.066288 +smart,0.4000,0.5000,60,8665,6411,2254,0.136642,1435.01,2911.49,1793,1208,585,24,0.739873,0.673731,0.013385,0.000000,1617.46,0.136642,-182.45,-0.112802,0.033377 +smart,0.4000,0.5000,90,8569,6289,2280,0.100712,1492.22,2889.86,1238,865,373,2,0.733925,0.698708,0.001616,0.000000,1617.46,0.100712,-125.24,-0.077431,0.027428 +smart,0.4000,0.5000,120,8642,6278,2364,0.077413,1521.99,2910.07,972,669,303,0,0.726452,0.688272,0.000000,0.000000,1617.46,0.077413,-95.48,-0.059030,0.019956 +smart,0.4000,0.5000,180,8712,6228,2484,0.053489,1548.98,2883.74,671,466,205,0,0.714876,0.694486,0.000000,0.000000,1617.46,0.053489,-68.49,-0.042343,0.008380 +smart,0.4000,0.5000,240,8699,6253,2446,0.041154,1571.18,2914.36,507,358,149,0,0.718818,0.706114,0.000000,0.000000,1617.46,0.041154,-46.28,-0.028615,0.012322 +smart,0.4000,0.5000,300,8728,6209,2519,0.031622,1585.12,2889.64,411,276,135,0,0.711389,0.671533,0.000000,0.000000,1617.46,0.031622,-32.35,-0.019999,0.004893 +smart,0.4000,0.5500,30,8717,6780,1937,0.225651,1321.05,2916.19,3199,2163,1036,196,0.777791,0.676149,0.061269,0.000000,1617.46,0.225651,-296.41,-0.183256,0.071294 +smart,0.4000,0.5500,60,8716,6426,2290,0.135842,1452.59,2961.41,1790,1208,582,24,0.737265,0.674860,0.013408,0.000000,1617.46,0.135842,-164.87,-0.101933,0.030769 +smart,0.4000,0.5500,90,8553,6267,2286,0.096925,1485.42,2887.29,1245,833,412,4,0.732725,0.669076,0.003213,0.000000,1617.46,0.096925,-132.04,-0.081635,0.026229 +smart,0.4000,0.5500,120,8694,6340,2354,0.073384,1511.30,2911.63,973,639,334,1,0.729239,0.656732,0.001028,0.000000,1617.46,0.073384,-106.16,-0.065634,0.022742 +smart,0.4000,0.5500,180,8789,6327,2462,0.051542,1558.95,2889.21,665,453,212,0,0.719877,0.681203,0.000000,0.000000,1617.46,0.051542,-58.51,-0.036175,0.013381 +smart,0.4000,0.5500,240,8824,6250,2574,0.041251,1573.41,2880.76,512,364,148,0,0.708296,0.710938,0.000000,0.000000,1617.46,0.041251,-44.05,-0.027234,0.001799 +smart,0.4000,0.5500,300,8634,6102,2532,0.030577,1580.60,2880.21,407,264,143,0,0.706741,0.648649,0.000000,0.000000,1617.46,0.030577,-36.86,-0.022789,0.000245 +smart,0.4000,0.6000,30,8706,6779,1927,0.222490,1332.95,2885.93,3090,2123,967,186,0.778658,0.687055,0.060194,0.000000,1617.46,0.222490,-284.51,-0.175900,0.072162 +smart,0.4000,0.6000,60,8758,6594,2164,0.134506,1453.79,2944.85,1817,1198,619,20,0.752912,0.659329,0.011007,0.000000,1617.46,0.134506,-163.67,-0.101192,0.046415 +smart,0.4000,0.6000,90,8988,6578,2410,0.095016,1481.50,2843.57,1273,857,416,3,0.731865,0.673213,0.002357,0.000000,1617.46,0.095016,-135.97,-0.084061,0.025369 +smart,0.4000,0.6000,120,8858,6419,2439,0.075073,1512.79,2910.68,971,665,306,0,0.724656,0.684861,0.000000,0.000000,1617.46,0.075073,-104.68,-0.064717,0.018160 +smart,0.4000,0.6000,180,8597,6159,2438,0.051181,1555.28,2919.94,663,440,223,0,0.716413,0.663650,0.000000,0.000000,1617.46,0.051181,-62.18,-0.038445,0.009917 +smart,0.4000,0.6000,240,8627,6128,2499,0.039643,1567.62,2910.73,489,342,147,0,0.710328,0.699387,0.000000,0.000000,1617.46,0.039643,-49.84,-0.030816,0.003832 +smart,0.4000,0.6000,300,8604,6205,2399,0.032659,1576.39,2882.49,411,281,130,0,0.721176,0.683698,0.000000,0.000000,1617.46,0.032659,-41.07,-0.025393,0.014680 +smart,0.4000,0.6500,30,8640,6102,2538,0.003009,1626.55,2946.21,37,29,8,3,0.706250,0.783784,0.081081,0.000000,1617.46,0.003009,9.09,0.005619,-0.000246 +smart,0.4000,0.6500,60,8587,6086,2501,0.011296,1602.76,2908.20,143,97,46,0,0.708746,0.678322,0.000000,0.000000,1617.46,0.011296,-14.70,-0.009090,0.002250 +smart,0.4000,0.6500,90,8693,6081,2612,0.002071,1614.03,2915.88,28,18,10,0,0.699528,0.642857,0.000000,0.000000,1617.46,0.002071,-3.43,-0.002120,-0.006968 +smart,0.4000,0.6500,120,8584,6057,2527,0.002679,1625.41,2922.00,36,23,13,0,0.705615,0.638889,0.000000,0.000000,1617.46,0.002679,7.95,0.004914,-0.000881 +smart,0.4000,0.6500,180,8705,6113,2592,0.001034,1614.39,2878.76,16,9,7,0,0.702240,0.562500,0.000000,0.000000,1617.46,0.001034,-3.08,-0.001901,-0.004256 +smart,0.4000,0.6500,240,8783,6180,2603,0.003188,1625.60,2880.73,41,28,13,0,0.703632,0.682927,0.000000,0.000000,1617.46,0.003188,8.13,0.005029,-0.002864 +smart,0.4000,0.6500,300,8715,6144,2571,0.001836,1619.81,2942.62,32,16,16,0,0.704991,0.500000,0.000000,0.000000,1617.46,0.001836,2.35,0.001452,-0.001505 +smart,0.4000,0.7000,30,8608,6016,2592,0.005112,1619.66,2852.54,65,47,18,3,0.698885,0.723077,0.046154,0.000000,1617.46,0.005112,2.20,0.001361,-0.007611 +smart,0.4000,0.7000,60,8639,6063,2576,0.003125,1629.49,2939.05,40,27,13,0,0.701817,0.675000,0.000000,0.000000,1617.46,0.003125,12.03,0.007435,-0.004679 +smart,0.4000,0.7000,90,8798,6271,2527,0.000796,1602.06,2855.71,10,7,3,0,0.712776,0.700000,0.000000,0.000000,1617.46,0.000796,-15.40,-0.009520,0.006280 +smart,0.4000,0.7000,120,8752,6199,2553,0.001371,1626.71,2917.27,23,12,11,0,0.708295,0.521739,0.000000,0.000000,1617.46,0.001371,9.24,0.005713,0.001799 +smart,0.4000,0.7000,180,8795,6186,2609,0.000114,1636.66,2937.64,2,1,1,0,0.703354,0.500000,0.000000,0.000000,1617.46,0.000114,19.20,0.011869,-0.003142 +smart,0.4000,0.7000,240,8657,6131,2526,0.000924,1617.84,2886.71,14,8,6,0,0.708213,0.571429,0.000000,0.000000,1617.46,0.000924,0.37,0.000229,0.001717 +smart,0.4000,0.7000,300,8720,6069,2651,0.001032,1621.43,2893.64,12,9,3,0,0.695986,0.750000,0.000000,0.000000,1617.46,0.001032,3.97,0.002452,-0.010510 +smart,0.4000,0.7500,30,8613,6069,2544,0.000116,1608.12,2872.64,2,1,1,0,0.704633,0.500000,0.000000,0.000000,1617.46,0.000116,-9.34,-0.005774,-0.001864 +smart,0.4000,0.7500,60,8706,6085,2621,0.000000,1615.49,2865.20,0,0,0,0,0.698943,0.000000,0.000000,0.000000,1617.46,0.000000,-1.97,-0.001219,-0.007553 +smart,0.4000,0.7500,90,8604,6049,2555,0.000000,1626.19,2935.98,0,0,0,0,0.703045,0.000000,0.000000,0.000000,1617.46,0.000000,8.73,0.005396,-0.003451 +smart,0.4000,0.7500,120,8872,6246,2626,0.000000,1632.22,2901.65,1,0,1,0,0.704013,0.000000,0.000000,0.000000,1617.46,0.000000,14.75,0.009122,-0.002484 +smart,0.4000,0.7500,180,8829,6221,2608,0.000000,1615.90,2857.57,0,0,0,0,0.704610,0.000000,0.000000,0.000000,1617.46,0.000000,-1.56,-0.000965,-0.001886 +smart,0.4000,0.7500,240,8478,5945,2533,0.000000,1639.74,2919.49,0,0,0,0,0.701227,0.000000,0.000000,0.000000,1617.46,0.000000,22.28,0.013775,-0.005269 +smart,0.4000,0.7500,300,8537,5994,2543,0.000117,1618.33,2869.43,1,1,0,0,0.702120,1.000000,0.000000,0.000000,1617.46,0.000117,0.87,0.000536,-0.004376 +smart,0.4000,0.8000,30,8598,6060,2538,0.000000,1631.06,2922.54,0,0,0,0,0.704815,0.000000,0.000000,0.000000,1617.46,0.000000,13.60,0.008408,-0.001681 +smart,0.4000,0.8000,60,8796,6173,2623,0.000000,1630.15,2955.88,0,0,0,0,0.701796,0.000000,0.000000,0.000000,1617.46,0.000000,12.69,0.007845,-0.004700 +smart,0.4000,0.8000,90,8700,6116,2584,0.000000,1622.06,2909.94,0,0,0,0,0.702989,0.000000,0.000000,0.000000,1617.46,0.000000,4.60,0.002841,-0.003508 +smart,0.4000,0.8000,120,8767,6286,2481,0.000000,1617.62,2886.42,0,0,0,0,0.717007,0.000000,0.000000,0.000000,1617.46,0.000000,0.16,0.000097,0.010511 +smart,0.4000,0.8000,180,8837,6222,2615,0.000000,1606.05,2858.58,0,0,0,0,0.704085,0.000000,0.000000,0.000000,1617.46,0.000000,-11.41,-0.007056,-0.002411 +smart,0.4000,0.8000,240,8772,6171,2601,0.000000,1623.33,2858.85,1,0,1,0,0.703488,0.000000,0.000000,0.000000,1617.46,0.000000,5.87,0.003630,-0.003008 +smart,0.4000,0.8000,300,8916,6233,2683,0.000000,1626.96,2909.82,0,0,0,0,0.699080,0.000000,0.000000,0.000000,1617.46,0.000000,9.50,0.005874,-0.007416 +smart,0.4000,0.8500,30,8828,6225,2603,0.000000,1622.44,2881.20,1,0,1,0,0.705143,0.000000,0.000000,0.000000,1617.46,0.000000,4.97,0.003075,-0.001353 +smart,0.4000,0.8500,60,8816,6224,2592,0.000000,1607.84,2822.75,0,0,0,0,0.705989,0.000000,0.000000,0.000000,1617.46,0.000000,-9.62,-0.005947,-0.000507 +smart,0.4000,0.8500,90,8783,6223,2560,0.000114,1617.85,2840.60,1,1,0,0,0.708528,1.000000,0.000000,0.000000,1617.46,0.000114,0.39,0.000240,0.002032 +smart,0.4000,0.8500,120,8713,6129,2584,0.000000,1629.30,2927.83,0,0,0,0,0.703432,0.000000,0.000000,0.000000,1617.46,0.000000,11.83,0.007316,-0.003064 +smart,0.4000,0.8500,180,8727,6126,2601,0.000000,1637.60,2969.43,0,0,0,0,0.701959,0.000000,0.000000,0.000000,1617.46,0.000000,20.13,0.012447,-0.004537 +smart,0.4000,0.8500,240,8898,6234,2664,0.000000,1637.96,2937.74,0,0,0,0,0.700607,0.000000,0.000000,0.000000,1617.46,0.000000,20.49,0.012671,-0.005889 +smart,0.4000,0.8500,300,8715,6079,2636,0.000000,1619.81,2896.54,0,0,0,0,0.697533,0.000000,0.000000,0.000000,1617.46,0.000000,2.35,0.001452,-0.008963 +smart,0.4000,0.9000,30,8793,6255,2538,0.000114,1616.76,2925.58,1,1,0,0,0.711361,1.000000,0.000000,0.000000,1617.46,0.000114,-0.70,-0.000435,0.004865 +smart,0.4000,0.9000,60,8640,6144,2496,0.000000,1635.12,2956.75,0,0,0,0,0.711111,0.000000,0.000000,0.000000,1617.46,0.000000,17.65,0.010915,0.004615 +smart,0.4000,0.9000,90,8843,6199,2644,0.000113,1639.24,2951.60,1,1,0,0,0.701006,1.000000,0.000000,0.000000,1617.46,0.000113,21.77,0.013462,-0.005490 +smart,0.4000,0.9000,120,8693,6186,2507,0.000000,1634.18,2938.17,0,0,0,0,0.711607,0.000000,0.000000,0.000000,1617.46,0.000000,16.71,0.010332,0.005111 +smart,0.4000,0.9000,180,8683,6109,2574,0.000000,1632.19,2914.66,0,0,0,0,0.703559,0.000000,0.000000,0.000000,1617.46,0.000000,14.73,0.009106,-0.002937 +smart,0.4000,0.9000,240,8840,6295,2545,0.000000,1627.46,2884.36,0,0,0,0,0.712104,0.000000,0.000000,0.000000,1617.46,0.000000,10.00,0.006183,0.005608 +smart,0.4000,0.9000,300,8652,5978,2674,0.000000,1629.69,2894.30,0,0,0,0,0.690939,0.000000,0.000000,0.000000,1617.46,0.000000,12.22,0.007557,-0.015558 +smart,0.5000,0.2000,30,10538,8595,1943,0.369520,1055.08,2772.01,7083,4838,2245,944,0.815620,0.683044,0.133277,0.000000,1617.67,0.369520,-562.59,-0.347778,0.110957 +smart,0.5000,0.2000,60,10072,7818,2254,0.251787,1241.17,2842.09,3985,2798,1187,262,0.776211,0.702133,0.065747,0.000000,1617.67,0.251787,-376.50,-0.232739,0.071549 +smart,0.5000,0.2000,90,10296,7765,2531,0.190074,1329.84,2838.17,2888,2034,854,77,0.754176,0.704294,0.026662,0.000000,1617.67,0.190074,-287.83,-0.177929,0.049514 +smart,0.5000,0.2000,120,10230,7643,2587,0.150831,1385.39,2863.40,2254,1581,673,38,0.747116,0.701420,0.016859,0.000000,1617.67,0.150831,-232.28,-0.143589,0.042454 +smart,0.5000,0.2000,180,10224,7443,2781,0.102210,1461.11,2843.41,1529,1048,481,3,0.727993,0.685415,0.001962,0.000000,1617.67,0.102210,-156.56,-0.096783,0.023331 +smart,0.5000,0.2000,240,10284,7449,2835,0.080319,1489.11,2856.49,1185,826,359,0,0.724329,0.697046,0.000000,0.000000,1617.67,0.080319,-128.56,-0.079474,0.019667 +smart,0.5000,0.2000,300,10412,7601,2811,0.065982,1524.77,2880.87,976,687,289,0,0.730023,0.703893,0.000000,0.000000,1617.67,0.065982,-92.90,-0.057428,0.025361 +smart,0.5000,0.2500,30,10328,8430,1898,0.380229,1046.52,2775.72,6975,4909,2066,981,0.816228,0.703799,0.140645,0.000000,1617.67,0.380229,-571.15,-0.353072,0.111566 +smart,0.5000,0.2500,60,10400,8077,2323,0.247596,1237.31,2796.24,4051,2834,1217,259,0.776635,0.699580,0.063935,0.000000,1617.67,0.247596,-380.36,-0.235127,0.071972 +smart,0.5000,0.2500,90,10153,7717,2436,0.187235,1332.63,2802.30,2825,1974,851,73,0.760071,0.698761,0.025841,0.000000,1617.67,0.187235,-285.04,-0.176206,0.055409 +smart,0.5000,0.2500,120,10521,7816,2705,0.146564,1395.04,2826.56,2261,1582,679,40,0.742895,0.699690,0.017691,0.000000,1617.67,0.146564,-222.63,-0.137624,0.038233 +smart,0.5000,0.2500,180,10030,7350,2680,0.099003,1456.37,2826.95,1508,1003,505,10,0.732802,0.665119,0.006631,0.000000,1617.67,0.099003,-161.30,-0.099714,0.028139 +smart,0.5000,0.2500,240,10250,7490,2760,0.079902,1497.34,2881.73,1176,821,355,2,0.730732,0.698129,0.001701,0.000000,1617.67,0.079902,-120.33,-0.074383,0.026069 +smart,0.5000,0.2500,300,10491,7559,2932,0.064246,1510.66,2848.68,975,675,300,0,0.720522,0.692308,0.000000,0.000000,1617.67,0.064246,-107.01,-0.066150,0.015860 +smart,0.5000,0.3000,30,10415,8383,2032,0.355257,1085.63,2755.28,6590,4619,1971,918,0.804897,0.700910,0.139302,0.000000,1617.67,0.355257,-532.05,-0.328896,0.100235 +smart,0.5000,0.3000,60,10190,7886,2304,0.242296,1249.36,2853.60,3913,2698,1215,229,0.773896,0.689497,0.058523,0.000000,1617.67,0.242296,-368.31,-0.227678,0.069234 +smart,0.5000,0.3000,90,10278,7572,2706,0.110430,1466.44,2874.13,1776,1157,619,22,0.736719,0.651464,0.012387,0.000000,1617.67,0.110430,-151.23,-0.093489,0.032057 +smart,0.5000,0.3000,120,10218,7641,2577,0.106674,1451.15,2845.42,1574,1108,466,18,0.747798,0.703939,0.011436,0.000000,1617.67,0.106674,-166.52,-0.102935,0.043136 +smart,0.5000,0.3000,180,10610,7792,2818,0.101602,1463.17,2824.71,1581,1084,497,6,0.734402,0.685642,0.003795,0.000000,1617.67,0.101602,-154.50,-0.095506,0.029739 +smart,0.5000,0.3000,240,10355,7573,2782,0.076099,1503.88,2867.28,1100,790,310,2,0.731338,0.718182,0.001818,0.000000,1617.67,0.076099,-113.79,-0.070345,0.026675 +smart,0.5000,0.3000,300,10094,7243,2851,0.040519,1564.47,2866.89,581,409,172,0,0.717555,0.703959,0.000000,0.000000,1617.67,0.040519,-53.20,-0.032886,0.012893 +smart,0.5000,0.3500,30,10266,7953,2313,0.220729,1326.74,2876.86,3718,2515,1203,249,0.774693,0.676439,0.066971,0.000000,1617.67,0.220729,-290.93,-0.179845,0.070031 +smart,0.5000,0.3500,60,10343,7666,2677,0.134777,1439.78,2894.86,2107,1429,678,35,0.741178,0.678215,0.016611,0.000000,1617.67,0.134777,-177.89,-0.109970,0.036515 +smart,0.5000,0.3500,90,10408,7601,2807,0.096560,1487.48,2904.10,1492,1010,482,5,0.730304,0.676944,0.003351,0.000000,1617.67,0.096560,-130.19,-0.080477,0.025641 +smart,0.5000,0.3500,120,10266,7475,2791,0.075784,1512.64,2882.55,1143,778,365,0,0.728132,0.680665,0.000000,0.000000,1617.67,0.075784,-105.03,-0.064929,0.023469 +smart,0.5000,0.3500,180,10558,7672,2886,0.051335,1554.99,2922.47,801,542,259,0,0.726653,0.676654,0.000000,0.000000,1617.67,0.051335,-62.68,-0.038746,0.021991 +smart,0.5000,0.3500,240,10451,7451,3000,0.038848,1552.45,2850.99,603,406,197,0,0.712946,0.673300,0.000000,0.000000,1617.67,0.038848,-65.22,-0.040319,0.008284 +smart,0.5000,0.3500,300,10144,7292,2852,0.035489,1572.57,2885.22,487,360,127,0,0.718849,0.739220,0.000000,0.000000,1617.67,0.035489,-45.10,-0.027881,0.014186 +smart,0.5000,0.4000,30,10447,8090,2357,0.220733,1316.80,2864.50,3757,2537,1220,231,0.774385,0.675273,0.061485,0.000000,1617.67,0.220733,-300.87,-0.185991,0.069723 +smart,0.5000,0.4000,60,10412,7826,2586,0.139551,1431.02,2869.06,2127,1476,651,23,0.751633,0.693935,0.010813,0.000000,1617.67,0.139551,-186.65,-0.115383,0.046971 +smart,0.5000,0.4000,90,10291,7617,2674,0.094937,1497.69,2884.67,1465,981,484,4,0.740161,0.669625,0.002730,0.000000,1617.67,0.094937,-119.98,-0.074170,0.035499 +smart,0.5000,0.4000,120,10153,7394,2759,0.076234,1515.52,2887.60,1129,776,353,2,0.728258,0.687334,0.001771,0.000000,1617.67,0.076234,-102.15,-0.063149,0.023595 +smart,0.5000,0.4000,180,10270,7468,2802,0.053165,1546.16,2883.19,790,546,244,0,0.727167,0.691139,0.000000,0.000000,1617.67,0.053165,-71.51,-0.044209,0.022504 +smart,0.5000,0.4000,240,10339,7452,2887,0.040333,1572.37,2920.64,600,417,183,0,0.720766,0.695000,0.000000,0.000000,1617.67,0.040333,-45.30,-0.028005,0.016104 +smart,0.5000,0.4000,300,10428,7483,2945,0.031646,1586.51,2894.44,489,330,159,0,0.717587,0.674847,0.000000,0.000000,1617.67,0.031646,-31.16,-0.019261,0.012925 +smart,0.5000,0.4500,30,10191,7961,2230,0.225297,1316.76,2862.78,3673,2512,1161,216,0.781179,0.683910,0.058808,0.000000,1617.67,0.225297,-300.91,-0.186015,0.076517 +smart,0.5000,0.4500,60,10315,7713,2602,0.137470,1426.51,2832.60,2118,1446,672,28,0.747746,0.682720,0.013220,0.000000,1617.67,0.137470,-191.16,-0.118167,0.043084 +smart,0.5000,0.4500,90,10240,7540,2700,0.098730,1486.65,2878.09,1472,1018,454,7,0.736328,0.691576,0.004755,0.000000,1617.67,0.098730,-131.02,-0.080991,0.031666 +smart,0.5000,0.4500,120,10506,7568,2938,0.072911,1524.64,2859.03,1155,767,388,1,0.720350,0.664069,0.000866,0.000000,1617.67,0.072911,-93.03,-0.057508,0.015688 +smart,0.5000,0.4500,180,10313,7413,2900,0.051294,1548.27,2870.08,796,529,267,0,0.718802,0.664573,0.000000,0.000000,1617.67,0.051294,-69.40,-0.042902,0.014139 +smart,0.5000,0.4500,240,10409,7456,2953,0.040254,1562.79,2863.85,609,419,190,0,0.716303,0.688013,0.000000,0.000000,1617.67,0.040254,-54.88,-0.033924,0.011641 +smart,0.5000,0.4500,300,10271,7371,2900,0.032908,1575.56,2865.57,485,338,147,0,0.717652,0.696907,0.000000,0.000000,1617.67,0.032908,-42.11,-0.026033,0.012989 +smart,0.5000,0.5000,30,10341,7942,2399,0.221545,1326.82,2902.54,3732,2530,1202,239,0.768011,0.677921,0.064041,0.000000,1617.67,0.221545,-290.85,-0.179798,0.063349 +smart,0.5000,0.5000,60,10148,7597,2551,0.139732,1440.11,2903.71,2108,1440,668,22,0.748620,0.683112,0.010436,0.000000,1617.67,0.139732,-177.56,-0.109765,0.043958 +smart,0.5000,0.5000,90,10196,7511,2685,0.096312,1480.37,2853.85,1480,985,495,3,0.736661,0.665541,0.002027,0.000000,1617.67,0.096312,-137.30,-0.084877,0.031999 +smart,0.5000,0.5000,120,10356,7607,2749,0.075801,1515.18,2903.33,1141,786,355,1,0.734550,0.688869,0.000876,0.000000,1617.67,0.075801,-102.49,-0.063359,0.029888 +smart,0.5000,0.5000,180,10434,7480,2954,0.051850,1555.09,2883.20,784,541,243,0,0.716887,0.690051,0.000000,0.000000,1617.67,0.051850,-62.58,-0.038684,0.012225 +smart,0.5000,0.5000,240,10269,7327,2942,0.039050,1571.76,2891.66,597,401,196,0,0.713507,0.671692,0.000000,0.000000,1617.67,0.039050,-45.91,-0.028379,0.008844 +smart,0.5000,0.5000,300,10409,7519,2890,0.031127,1574.21,2828.36,484,324,160,0,0.722356,0.669421,0.000000,0.000000,1617.67,0.031127,-43.46,-0.026866,0.017693 +smart,0.5000,0.5500,30,10313,7945,2368,0.217008,1328.49,2843.41,3666,2458,1208,220,0.770387,0.670486,0.060011,0.000000,1617.67,0.217008,-289.18,-0.178763,0.065725 +smart,0.5000,0.5500,60,10272,7718,2554,0.139603,1423.66,2856.35,2109,1465,644,31,0.751363,0.694642,0.014699,0.000000,1617.67,0.139603,-194.01,-0.119934,0.046701 +smart,0.5000,0.5500,90,10368,7652,2716,0.097126,1484.17,2821.58,1494,1008,486,1,0.738040,0.674699,0.000669,0.000000,1617.67,0.097126,-133.50,-0.082527,0.033378 +smart,0.5000,0.5500,120,10443,7587,2856,0.073446,1523.39,2888.78,1152,770,382,3,0.726515,0.668403,0.002604,0.000000,1617.67,0.073446,-94.28,-0.058284,0.021853 +smart,0.5000,0.5500,180,10218,7301,2917,0.050793,1562.63,2916.33,782,519,263,0,0.714523,0.663683,0.000000,0.000000,1617.67,0.050793,-55.04,-0.034022,0.009861 +smart,0.5000,0.5500,240,10283,7331,2952,0.039483,1564.34,2886.15,601,406,195,0,0.712924,0.675541,0.000000,0.000000,1617.67,0.039483,-53.33,-0.032965,0.008262 +smart,0.5000,0.5500,300,10220,7312,2908,0.032681,1580.72,2907.12,485,334,151,0,0.715460,0.688660,0.000000,0.000000,1617.67,0.032681,-36.95,-0.022839,0.010798 +smart,0.5000,0.6000,30,10487,8091,2396,0.223133,1317.15,2851.54,3725,2564,1161,224,0.771527,0.688322,0.060134,0.000000,1617.67,0.223133,-300.52,-0.185773,0.066864 +smart,0.5000,0.6000,60,10129,7547,2582,0.138711,1437.87,2900.28,2099,1438,661,33,0.745088,0.685088,0.015722,0.000000,1617.67,0.138711,-179.80,-0.111146,0.040426 +smart,0.5000,0.6000,90,10367,7602,2765,0.096556,1500.40,2910.45,1497,1002,495,1,0.733288,0.669339,0.000668,0.000000,1617.67,0.096556,-117.27,-0.072492,0.028626 +smart,0.5000,0.6000,120,10336,7465,2871,0.075658,1525.18,2892.60,1160,782,378,0,0.722233,0.674138,0.000000,0.000000,1617.67,0.075658,-92.49,-0.057173,0.017571 +smart,0.5000,0.6000,180,10260,7413,2847,0.051365,1560.30,2929.34,782,527,255,0,0.722515,0.673913,0.000000,0.000000,1617.67,0.051365,-57.37,-0.035465,0.017852 +smart,0.5000,0.6000,240,10502,7435,3067,0.039897,1571.27,2906.90,608,419,189,0,0.707960,0.689145,0.000000,0.000000,1617.67,0.039897,-46.40,-0.028684,0.003298 +smart,0.5000,0.6000,300,10208,7321,2887,0.031740,1566.62,2879.79,481,324,157,0,0.717183,0.673597,0.000000,0.000000,1617.67,0.031740,-51.05,-0.031558,0.012520 +smart,0.5000,0.6500,30,10311,7311,3000,0.003976,1617.32,2867.45,70,46,24,5,0.709049,0.657143,0.071429,0.000000,1617.67,0.003976,-0.35,-0.000219,0.004386 +smart,0.5000,0.6500,60,10516,7451,3065,0.000380,1615.89,2869.55,4,4,0,0,0.708539,1.000000,0.000000,0.000000,1617.67,0.000380,-1.78,-0.001100,0.003877 +smart,0.5000,0.6500,90,10078,7070,3008,0.002381,1627.32,2940.35,37,24,13,0,0.701528,0.648649,0.000000,0.000000,1617.67,0.002381,9.65,0.005965,-0.003134 +smart,0.5000,0.6500,120,10491,7519,2972,0.028691,1579.74,2847.63,451,302,149,1,0.716710,0.669623,0.002217,0.000000,1617.67,0.028691,-37.93,-0.023449,0.012047 +smart,0.5000,0.6500,180,10282,7343,2939,0.002042,1622.51,2876.29,32,21,11,0,0.714161,0.656250,0.000000,0.000000,1617.67,0.002042,4.84,0.002993,0.009498 +smart,0.5000,0.6500,240,10426,7413,3013,0.000288,1618.57,2902.61,3,3,0,0,0.711011,1.000000,0.000000,0.000000,1617.67,0.000288,0.90,0.000555,0.006349 +smart,0.5000,0.6500,300,10486,7420,3066,0.001907,1607.10,2851.93,31,20,11,0,0.707610,0.645161,0.000000,0.000000,1617.67,0.001907,-10.57,-0.006537,0.002948 +smart,0.5000,0.7000,30,10182,7204,2978,0.000884,1619.76,2887.50,18,11,7,2,0.707523,0.611111,0.111111,0.000000,1617.67,0.000884,2.09,0.001291,0.002861 +smart,0.5000,0.7000,60,10234,7226,3008,0.000293,1620.87,2922.66,4,4,0,1,0.706078,1.000000,0.250000,0.000000,1617.67,0.000293,3.20,0.001981,0.001416 +smart,0.5000,0.7000,90,10296,7263,3033,0.000583,1619.38,2882.38,8,6,2,0,0.705420,0.750000,0.000000,0.000000,1617.67,0.000583,1.71,0.001059,0.000757 +smart,0.5000,0.7000,120,10532,7447,3085,0.000475,1617.03,2875.35,8,5,3,0,0.707083,0.625000,0.000000,0.000000,1617.67,0.000475,-0.64,-0.000397,0.002421 +smart,0.5000,0.7000,180,10237,7233,3004,0.000195,1615.01,2837.66,5,2,3,0,0.706555,0.400000,0.000000,0.000000,1617.67,0.000195,-2.66,-0.001642,0.001892 +smart,0.5000,0.7000,240,10368,7421,2947,0.000193,1619.07,2885.93,3,2,1,0,0.715760,0.666667,0.000000,0.000000,1617.67,0.000193,1.40,0.000865,0.011098 +smart,0.5000,0.7000,300,10132,7156,2976,0.000099,1630.62,2900.21,3,1,2,0,0.706277,0.333333,0.000000,0.000000,1617.67,0.000099,12.95,0.008003,0.001615 +smart,0.5000,0.7500,30,10355,7293,3062,0.000097,1629.47,2911.31,1,1,0,0,0.704297,1.000000,0.000000,0.000000,1617.67,0.000097,11.80,0.007294,-0.000365 +smart,0.5000,0.7500,60,10260,7209,3051,0.000000,1630.49,2932.52,0,0,0,0,0.702632,0.000000,0.000000,0.000000,1617.67,0.000000,12.82,0.007927,-0.002031 +smart,0.5000,0.7500,90,10181,7180,3001,0.000098,1624.71,2910.93,1,1,0,0,0.705235,1.000000,0.000000,0.000000,1617.67,0.000098,7.04,0.004355,0.000573 +smart,0.5000,0.7500,120,10335,7207,3128,0.000000,1615.51,2889.12,0,0,0,0,0.697339,0.000000,0.000000,0.000000,1617.67,0.000000,-2.16,-0.001336,-0.007323 +smart,0.5000,0.7500,180,10262,7185,3077,0.000000,1635.06,2903.23,1,0,1,0,0.700156,0.000000,0.000000,0.000000,1617.67,0.000000,17.39,0.010748,-0.004506 +smart,0.5000,0.7500,240,10325,7359,2966,0.000000,1624.06,2899.01,0,0,0,0,0.712736,0.000000,0.000000,0.000000,1617.67,0.000000,6.39,0.003949,0.008074 +smart,0.5000,0.7500,300,10253,7251,3002,0.000000,1625.22,2943.36,0,0,0,0,0.707208,0.000000,0.000000,0.000000,1617.67,0.000000,7.55,0.004666,0.002545 +smart,0.5000,0.8000,30,10180,7149,3031,0.000098,1626.37,2878.95,1,1,0,0,0.702259,1.000000,0.000000,0.000000,1617.67,0.000098,8.70,0.005375,-0.002403 +smart,0.5000,0.8000,60,10397,7364,3033,0.000289,1629.55,2918.18,3,3,0,0,0.708281,1.000000,0.000000,0.000000,1617.67,0.000289,11.88,0.007347,0.003619 +smart,0.5000,0.8000,90,10088,7166,2922,0.000099,1627.97,2888.85,1,1,0,0,0.710349,1.000000,0.000000,0.000000,1617.67,0.000099,10.30,0.006367,0.005687 +smart,0.5000,0.8000,120,10187,7163,3024,0.000098,1614.58,2891.62,2,1,1,0,0.703151,0.500000,0.000000,0.000000,1617.67,0.000098,-3.09,-0.001908,-0.001511 +smart,0.5000,0.8000,180,10368,7382,2986,0.000000,1619.61,2889.72,0,0,0,0,0.711998,0.000000,0.000000,0.000000,1617.67,0.000000,1.94,0.001201,0.007336 +smart,0.5000,0.8000,240,10147,7052,3095,0.000000,1615.79,2868.66,0,0,0,0,0.694984,0.000000,0.000000,0.000000,1617.67,0.000000,-1.88,-0.001161,-0.009678 +smart,0.5000,0.8000,300,10323,7269,3054,0.000097,1614.28,2894.85,1,1,0,0,0.704156,1.000000,0.000000,0.000000,1617.67,0.000097,-3.39,-0.002097,-0.000506 +smart,0.5000,0.8500,30,10487,7349,3138,0.000000,1621.74,2864.67,0,0,0,0,0.700772,0.000000,0.000000,0.000000,1617.67,0.000000,4.07,0.002517,-0.003890 +smart,0.5000,0.8500,60,10406,7303,3103,0.000000,1624.52,2882.25,0,0,0,0,0.701807,0.000000,0.000000,0.000000,1617.67,0.000000,6.85,0.004234,-0.002856 +smart,0.5000,0.8500,90,10358,7233,3125,0.000000,1633.79,2928.67,1,0,1,0,0.698301,0.000000,0.000000,0.000000,1617.67,0.000000,16.12,0.009967,-0.006361 +smart,0.5000,0.8500,120,10448,7393,3055,0.000191,1610.16,2851.69,2,2,0,0,0.707600,1.000000,0.000000,0.000000,1617.67,0.000191,-7.51,-0.004645,0.002937 +smart,0.5000,0.8500,180,10269,7299,2970,0.000097,1611.01,2886.53,1,1,0,0,0.710780,1.000000,0.000000,0.000000,1617.67,0.000097,-6.66,-0.004117,0.006118 +smart,0.5000,0.8500,240,10588,7396,3192,0.000000,1613.74,2873.25,0,0,0,0,0.698527,0.000000,0.000000,0.000000,1617.67,0.000000,-3.93,-0.002432,-0.006136 +smart,0.5000,0.8500,300,10297,7203,3094,0.000000,1620.49,2909.20,0,0,0,0,0.699524,0.000000,0.000000,0.000000,1617.67,0.000000,2.82,0.001746,-0.005138 +smart,0.5000,0.9000,30,10423,7291,3132,0.000096,1621.65,2874.52,1,1,0,0,0.699511,1.000000,0.000000,0.000000,1617.67,0.000096,3.98,0.002463,-0.005152 +smart,0.5000,0.9000,60,10024,6972,3052,0.000000,1621.15,2912.24,0,0,0,0,0.695531,0.000000,0.000000,0.000000,1617.67,0.000000,3.48,0.002153,-0.009131 +smart,0.5000,0.9000,90,10445,7438,3007,0.000000,1629.24,2887.80,0,0,0,0,0.712111,0.000000,0.000000,0.000000,1617.67,0.000000,11.57,0.007150,0.007449 +smart,0.5000,0.9000,120,10225,7237,2988,0.000000,1624.60,2894.33,0,0,0,0,0.707775,0.000000,0.000000,0.000000,1617.67,0.000000,6.93,0.004286,0.003113 +smart,0.5000,0.9000,180,10537,7479,3058,0.000000,1630.13,2912.77,0,0,0,0,0.709785,0.000000,0.000000,0.000000,1617.67,0.000000,12.46,0.007701,0.005122 +smart,0.5000,0.9000,240,10052,7049,3003,0.000000,1631.30,2893.02,0,0,0,0,0.701253,0.000000,0.000000,0.000000,1617.67,0.000000,13.63,0.008425,-0.003409 +smart,0.5000,0.9000,300,10312,7188,3124,0.000000,1623.36,2901.22,0,0,0,0,0.697052,0.000000,0.000000,0.000000,1617.67,0.000000,5.69,0.003517,-0.007610 +smart,0.6000,0.2000,30,13023,10578,2445,0.369116,1069.56,2794.69,8705,6025,2680,1218,0.812255,0.692131,0.139920,0.000000,1618.80,0.369116,-549.25,-0.339292,0.107311 +smart,0.6000,0.2000,60,12474,9731,2743,0.252445,1222.03,2750.04,4909,3464,1445,315,0.780103,0.705643,0.064168,0.000000,1618.80,0.252445,-396.77,-0.245103,0.075158 +smart,0.6000,0.2000,90,12694,9660,3034,0.185284,1335.99,2806.59,3531,2447,1084,95,0.760989,0.693005,0.026905,0.000000,1618.80,0.185284,-282.82,-0.174707,0.056045 +smart,0.6000,0.2000,120,12539,9338,3201,0.146503,1396.94,2886.23,2707,1882,825,45,0.744716,0.695235,0.016624,0.000000,1618.80,0.146503,-221.87,-0.137055,0.039772 +smart,0.6000,0.2000,180,12612,9264,3348,0.106327,1437.65,2808.27,1888,1352,536,11,0.734539,0.716102,0.005826,0.000000,1618.80,0.106327,-181.15,-0.111905,0.029594 +smart,0.6000,0.2000,240,12777,9303,3474,0.078813,1493.18,2832.82,1456,1010,446,2,0.728105,0.693681,0.001374,0.000000,1618.80,0.078813,-125.62,-0.077601,0.023161 +smart,0.6000,0.2000,300,12733,9300,3433,0.062986,1516.88,2861.63,1161,802,359,0,0.730386,0.690784,0.000000,0.000000,1618.80,0.062986,-101.93,-0.062965,0.025441 +smart,0.6000,0.2500,30,12893,10534,2359,0.380129,1034.76,2725.84,8716,6199,2517,1297,0.817032,0.711221,0.148807,0.000000,1618.80,0.380129,-584.05,-0.360788,0.112088 +smart,0.6000,0.2500,60,12528,9713,2815,0.250399,1227.37,2777.01,4919,3463,1456,326,0.775303,0.704005,0.066274,0.000000,1618.80,0.250399,-391.43,-0.241804,0.070359 +smart,0.6000,0.2500,90,12487,9446,3041,0.184192,1342.48,2833.16,3472,2389,1083,89,0.756467,0.688076,0.025634,0.000000,1618.80,0.184192,-276.33,-0.170698,0.051522 +smart,0.6000,0.2500,120,12681,9508,3173,0.146913,1383.69,2820.34,2709,1909,800,46,0.749783,0.704688,0.016980,0.000000,1618.80,0.146913,-235.12,-0.145241,0.044839 +smart,0.6000,0.2500,180,12600,9288,3312,0.103810,1450.22,2820.16,1880,1317,563,9,0.737143,0.700532,0.004787,0.000000,1618.80,0.103810,-168.59,-0.104143,0.032199 +smart,0.6000,0.2500,240,12912,9429,3483,0.075976,1505.28,2872.61,1472,981,491,0,0.730251,0.666440,0.000000,0.000000,1618.80,0.075976,-113.52,-0.070127,0.025307 +smart,0.6000,0.2500,300,12400,8888,3512,0.064516,1513.58,2869.68,1154,800,354,0,0.716774,0.693241,0.000000,0.000000,1618.80,0.064516,-105.23,-0.065004,0.011830 +smart,0.6000,0.3000,30,12607,9963,2644,0.293170,1193.96,2794.69,6460,4439,2021,743,0.790275,0.687152,0.115015,0.000000,1618.80,0.293170,-424.84,-0.262443,0.085331 +smart,0.6000,0.3000,60,12647,9880,2767,0.247806,1235.08,2780.57,4939,3441,1498,307,0.781213,0.696700,0.062158,0.000000,1618.80,0.247806,-383.72,-0.237039,0.076269 +smart,0.6000,0.3000,90,12335,9401,2934,0.183137,1336.37,2813.70,3396,2371,1025,112,0.762140,0.698174,0.032980,0.000000,1618.80,0.183137,-282.43,-0.174471,0.057196 +smart,0.6000,0.3000,120,13092,9827,3265,0.136572,1405.22,2822.83,2600,1826,774,38,0.750611,0.702308,0.014615,0.000000,1618.80,0.136572,-213.58,-0.131940,0.045667 +smart,0.6000,0.3000,180,12673,9186,3487,0.057366,1542.01,2889.30,1068,728,340,1,0.724848,0.681648,0.000936,0.000000,1618.80,0.057366,-76.80,-0.047442,0.019904 +smart,0.6000,0.3000,240,12797,9301,3496,0.072751,1501.04,2849.79,1332,932,400,1,0.726811,0.699700,0.000751,0.000000,1618.80,0.072751,-117.76,-0.072748,0.021867 +smart,0.6000,0.3000,300,12581,9141,3440,0.061919,1521.46,2853.22,1125,779,346,0,0.726572,0.692444,0.000000,0.000000,1618.80,0.061919,-97.35,-0.060136,0.021628 +smart,0.6000,0.3500,30,12710,9865,2845,0.229111,1307.61,2857.78,4692,3205,1487,293,0.776161,0.683078,0.062447,0.000000,1618.80,0.229111,-311.20,-0.192239,0.071216 +smart,0.6000,0.3500,60,12544,9406,3138,0.137915,1430.35,2842.70,2565,1763,802,33,0.749841,0.687329,0.012865,0.000000,1618.80,0.137915,-188.45,-0.116414,0.044896 +smart,0.6000,0.3500,90,12507,9204,3303,0.098265,1476.48,2844.55,1844,1239,605,10,0.735908,0.671909,0.005423,0.000000,1618.80,0.098265,-142.32,-0.087919,0.030964 +smart,0.6000,0.3500,120,12609,9236,3373,0.071774,1520.14,2881.49,1386,908,478,3,0.732493,0.655123,0.002165,0.000000,1618.80,0.071774,-98.67,-0.060952,0.027548 +smart,0.6000,0.3500,180,12627,9107,3520,0.052982,1550.58,2891.64,966,669,297,0,0.721232,0.692547,0.000000,0.000000,1618.80,0.052982,-68.22,-0.042145,0.016288 +smart,0.6000,0.3500,240,12707,9158,3549,0.037224,1565.25,2868.14,731,473,258,0,0.720705,0.647059,0.000000,0.000000,1618.80,0.037224,-53.55,-0.033082,0.015761 +smart,0.6000,0.3500,300,12767,9160,3607,0.031879,1577.06,2873.70,600,407,193,0,0.717475,0.678333,0.000000,0.000000,1618.80,0.031879,-41.75,-0.025789,0.012530 +smart,0.6000,0.4000,30,12637,9782,2855,0.222363,1314.30,2849.69,4563,3072,1491,262,0.774076,0.673241,0.057418,0.000000,1618.80,0.222363,-304.50,-0.188104,0.069132 +smart,0.6000,0.4000,60,12758,9510,3248,0.131682,1436.73,2837.15,2597,1721,876,41,0.745415,0.662688,0.015787,0.000000,1618.80,0.131682,-182.08,-0.112477,0.040470 +smart,0.6000,0.4000,90,13234,9806,3428,0.096192,1486.98,2895.16,1858,1283,575,10,0.740970,0.690527,0.005382,0.000000,1618.80,0.096192,-131.82,-0.081431,0.036026 +smart,0.6000,0.4000,120,12565,9138,3427,0.073458,1512.06,2859.10,1389,924,465,1,0.727258,0.665227,0.000720,0.000000,1618.80,0.073458,-106.74,-0.065940,0.022314 +smart,0.6000,0.4000,180,12774,9275,3499,0.050180,1555.72,2872.12,964,641,323,0,0.726084,0.664938,0.000000,0.000000,1618.80,0.050180,-63.08,-0.038969,0.021140 +smart,0.6000,0.4000,240,12357,8903,3454,0.040301,1570.28,2923.00,712,498,214,0,0.720482,0.699438,0.000000,0.000000,1618.80,0.040301,-48.53,-0.029978,0.015538 +smart,0.6000,0.4000,300,12943,9369,3574,0.033532,1567.86,2829.89,598,434,164,0,0.723866,0.725753,0.000000,0.000000,1618.80,0.033532,-50.95,-0.031472,0.018922 +smart,0.6000,0.4500,30,12607,9756,2851,0.224003,1320.05,2871.77,4561,3128,1433,304,0.773856,0.685815,0.066652,0.000000,1618.80,0.224003,-298.75,-0.184553,0.068911 +smart,0.6000,0.4500,60,12824,9606,3218,0.136619,1431.77,2886.34,2633,1793,840,41,0.749064,0.680972,0.015572,0.000000,1618.80,0.136619,-187.03,-0.115538,0.044120 +smart,0.6000,0.4500,90,12678,9375,3303,0.095125,1490.73,2872.65,1805,1211,594,5,0.739470,0.670914,0.002770,0.000000,1618.80,0.095125,-128.08,-0.079118,0.034526 +smart,0.6000,0.4500,120,12537,9188,3349,0.077211,1516.67,2903.40,1385,969,416,1,0.732871,0.699639,0.000722,0.000000,1618.80,0.077211,-102.14,-0.063095,0.027926 +smart,0.6000,0.4500,180,12563,9180,3383,0.052615,1541.96,2856.82,960,661,299,0,0.730717,0.688542,0.000000,0.000000,1618.80,0.052615,-76.85,-0.047470,0.025773 +smart,0.6000,0.4500,240,12493,8985,3508,0.038181,1563.61,2856.26,720,477,243,0,0.719203,0.662500,0.000000,0.000000,1618.80,0.038181,-55.19,-0.034096,0.014258 +smart,0.6000,0.4500,300,12694,9149,3545,0.031275,1579.01,2864.71,592,397,195,0,0.720734,0.670608,0.000000,0.000000,1618.80,0.031275,-39.80,-0.024584,0.015790 +smart,0.6000,0.5000,30,12406,9646,2760,0.224005,1310.94,2816.05,4465,3061,1404,282,0.777527,0.685554,0.063158,0.000000,1618.80,0.224005,-307.86,-0.190180,0.072583 +smart,0.6000,0.5000,60,12736,9555,3181,0.135286,1442.98,2886.71,2596,1769,827,46,0.750236,0.681433,0.017720,0.000000,1618.80,0.135286,-175.82,-0.108611,0.045291 +smart,0.6000,0.5000,90,12620,9310,3310,0.097623,1482.45,2853.00,1793,1241,552,9,0.737718,0.692136,0.005020,0.000000,1618.80,0.097623,-136.35,-0.084232,0.032774 +smart,0.6000,0.5000,120,12590,9225,3365,0.073233,1514.15,2862.11,1400,924,476,2,0.732724,0.660000,0.001429,0.000000,1618.80,0.073233,-104.65,-0.064647,0.027780 +smart,0.6000,0.5000,180,12801,9134,3667,0.051558,1551.00,2889.59,975,660,315,0,0.713538,0.676923,0.000000,0.000000,1618.80,0.051558,-67.81,-0.041886,0.008594 +smart,0.6000,0.5000,240,12757,9095,3662,0.039821,1565.05,2886.19,734,508,226,0,0.712942,0.692098,0.000000,0.000000,1618.80,0.039821,-53.75,-0.033207,0.007998 +smart,0.6000,0.5000,300,12609,8983,3626,0.031565,1581.71,2863.79,594,398,196,0,0.712428,0.670034,0.000000,0.000000,1618.80,0.031565,-37.10,-0.022915,0.007483 +smart,0.6000,0.5500,30,13041,10102,2939,0.223066,1322.17,2847.68,4654,3194,1460,285,0.774634,0.686291,0.061238,0.000000,1618.80,0.223066,-296.63,-0.183240,0.069690 +smart,0.6000,0.5500,60,12777,9523,3254,0.135634,1443.81,2876.02,2604,1782,822,49,0.745324,0.684332,0.018817,0.000000,1618.80,0.135634,-175.00,-0.108104,0.040379 +smart,0.6000,0.5500,90,12547,9199,3348,0.097234,1488.64,2888.31,1784,1228,556,8,0.733163,0.688341,0.004484,0.000000,1618.80,0.097234,-130.17,-0.080408,0.028219 +smart,0.6000,0.5500,120,12517,9045,3472,0.077015,1513.13,2861.32,1390,965,425,1,0.722617,0.694245,0.000719,0.000000,1618.80,0.077015,-105.67,-0.065277,0.017673 +smart,0.6000,0.5500,180,12461,8987,3474,0.050959,1543.16,2893.52,937,635,302,0,0.721210,0.677695,0.000000,0.000000,1618.80,0.050959,-75.65,-0.046730,0.016266 +smart,0.6000,0.5500,240,12854,9274,3580,0.039599,1564.39,2852.20,736,509,227,0,0.721487,0.691576,0.000000,0.000000,1618.80,0.039599,-54.41,-0.033612,0.016543 +smart,0.6000,0.5500,300,12487,9104,3383,0.032354,1570.04,2876.69,584,404,180,0,0.729078,0.691781,0.000000,0.000000,1618.80,0.032354,-48.77,-0.030125,0.024134 +smart,0.6000,0.6000,30,12533,9757,2776,0.225485,1301.93,2803.40,4513,3107,1406,281,0.778505,0.688456,0.062265,0.000000,1618.80,0.225485,-316.87,-0.195745,0.073560 +smart,0.6000,0.6000,60,12667,9469,3198,0.136102,1430.04,2864.46,2563,1765,798,41,0.747533,0.688646,0.015997,0.000000,1618.80,0.136102,-188.77,-0.116610,0.042589 +smart,0.6000,0.6000,90,12517,9268,3249,0.096189,1483.75,2852.95,1779,1205,574,1,0.740433,0.677347,0.000562,0.000000,1618.80,0.096189,-135.05,-0.083427,0.035489 +smart,0.6000,0.6000,120,12582,9175,3407,0.075187,1515.54,2902.55,1374,947,427,1,0.729216,0.689229,0.000728,0.000000,1618.80,0.075187,-103.26,-0.063790,0.024272 +smart,0.6000,0.6000,180,12299,8908,3391,0.053988,1540.30,2852.55,934,664,270,0,0.724287,0.710921,0.000000,0.000000,1618.80,0.053988,-78.51,-0.048498,0.019342 +smart,0.6000,0.6000,240,12696,9147,3549,0.040643,1562.66,2886.18,731,516,215,0,0.720463,0.705882,0.000000,0.000000,1618.80,0.040643,-56.14,-0.034681,0.015519 +smart,0.6000,0.6000,300,12504,8913,3591,0.032230,1569.22,2828.57,587,403,184,0,0.712812,0.686542,0.000000,0.000000,1618.80,0.032230,-49.58,-0.030631,0.007868 +smart,0.6000,0.6500,30,12641,9103,3538,0.019856,1587.70,2882.04,398,269,129,18,0.720117,0.675879,0.045226,0.000000,1618.80,0.019856,-31.11,-0.019216,0.015173 +smart,0.6000,0.6500,60,12703,9049,3654,0.012044,1601.22,2912.32,232,155,77,2,0.712351,0.668103,0.008621,0.000000,1618.80,0.012044,-17.59,-0.010865,0.007407 +smart,0.6000,0.6500,90,12660,8961,3699,0.003239,1619.22,2905.84,56,41,15,0,0.707820,0.732143,0.000000,0.000000,1618.80,0.003239,0.42,0.000259,0.002876 +smart,0.6000,0.6500,120,12561,8846,3715,0.007882,1604.99,2846.72,149,99,50,0,0.704243,0.664430,0.000000,0.000000,1618.80,0.007882,-13.81,-0.008531,-0.000701 +smart,0.6000,0.6500,180,12629,8854,3775,0.000554,1624.18,2919.17,16,7,9,0,0.701085,0.437500,0.000000,0.000000,1618.80,0.000554,5.37,0.003318,-0.003860 +smart,0.6000,0.6500,240,12379,8862,3517,0.000565,1620.58,2891.00,9,7,2,0,0.715890,0.777778,0.000000,0.000000,1618.80,0.000565,1.78,0.001098,0.010946 +smart,0.6000,0.6500,300,12627,9015,3612,0.002772,1605.28,2843.01,50,35,15,0,0.713946,0.700000,0.000000,0.000000,1618.80,0.002772,-13.52,-0.008354,0.009002 +smart,0.6000,0.7000,30,12582,8965,3617,0.008743,1601.86,2855.33,180,124,56,14,0.712526,0.688889,0.077778,0.000000,1618.80,0.008743,-16.95,-0.010468,0.007582 +smart,0.6000,0.7000,60,12695,8998,3697,0.000709,1615.90,2867.83,13,9,4,0,0.708783,0.692308,0.000000,0.000000,1618.80,0.000709,-2.91,-0.001795,0.003839 +smart,0.6000,0.7000,90,12829,9129,3700,0.000234,1615.12,2882.76,5,3,2,0,0.711591,0.600000,0.000000,0.000000,1618.80,0.000234,-3.68,-0.002275,0.006647 +smart,0.6000,0.7000,120,12667,8907,3760,0.001026,1616.94,2887.19,14,13,1,0,0.703166,0.928571,0.000000,0.000000,1618.80,0.001026,-1.87,-0.001154,-0.001779 +smart,0.6000,0.7000,180,12958,9185,3773,0.000000,1614.09,2888.75,0,0,0,0,0.708829,0.000000,0.000000,0.000000,1618.80,0.000000,-4.72,-0.002913,0.003884 +smart,0.6000,0.7000,240,12793,9133,3660,0.000000,1621.94,2898.26,1,0,1,0,0.713906,0.000000,0.000000,0.000000,1618.80,0.000000,3.13,0.001934,0.008962 +smart,0.6000,0.7000,300,12534,8856,3678,0.001037,1612.69,2872.18,21,13,8,0,0.706558,0.619048,0.000000,0.000000,1618.80,0.001037,-6.12,-0.003780,0.001614 +smart,0.6000,0.7500,30,12578,8862,3716,0.000239,1624.86,2879.02,6,3,3,0,0.704564,0.500000,0.000000,0.000000,1618.80,0.000239,6.05,0.003738,-0.000381 +smart,0.6000,0.7500,60,13099,9371,3728,0.000840,1607.19,2843.74,24,11,13,0,0.715398,0.458333,0.000000,0.000000,1618.80,0.000840,-11.62,-0.007175,0.010454 +smart,0.6000,0.7500,90,12630,8920,3710,0.000158,1618.49,2888.85,3,2,1,0,0.706255,0.666667,0.000000,0.000000,1618.80,0.000158,-0.32,-0.000197,0.001311 +smart,0.6000,0.7500,120,12800,9012,3788,0.000156,1618.98,2889.38,3,2,1,0,0.704063,0.666667,0.000000,0.000000,1618.80,0.000156,0.18,0.000111,-0.000882 +smart,0.6000,0.7500,180,12621,8883,3738,0.000000,1616.09,2898.95,1,0,1,0,0.703827,0.000000,0.000000,0.000000,1618.80,0.000000,-2.71,-0.001677,-0.001117 +smart,0.6000,0.7500,240,12882,9016,3866,0.000155,1628.27,2894.49,2,2,0,0,0.699891,1.000000,0.000000,0.000000,1618.80,0.000155,9.47,0.005848,-0.005053 +smart,0.6000,0.7500,300,12620,8969,3651,0.000000,1616.00,2867.28,0,0,0,0,0.710697,0.000000,0.000000,0.000000,1618.80,0.000000,-2.80,-0.001731,0.005753 +smart,0.6000,0.8000,30,12604,8946,3658,0.000159,1618.24,2912.50,6,3,3,1,0.709775,0.500000,0.166667,0.000000,1618.80,0.000159,-0.56,-0.000346,0.004830 +smart,0.6000,0.8000,60,12983,9183,3800,0.000308,1631.74,2918.21,5,4,1,0,0.707310,0.800000,0.000000,0.000000,1618.80,0.000308,12.93,0.007989,0.002365 +smart,0.6000,0.8000,90,12642,8951,3691,0.000079,1611.36,2850.06,1,1,0,0,0.708037,1.000000,0.000000,0.000000,1618.80,0.000079,-7.45,-0.004602,0.003092 +smart,0.6000,0.8000,120,12598,8968,3630,0.000159,1612.56,2904.72,2,2,0,0,0.711859,1.000000,0.000000,0.000000,1618.80,0.000159,-6.24,-0.003855,0.006915 +smart,0.6000,0.8000,180,12955,9093,3862,0.000000,1622.15,2877.33,0,0,0,0,0.701891,0.000000,0.000000,0.000000,1618.80,0.000000,3.34,0.002066,-0.003053 +smart,0.6000,0.8000,240,12484,8901,3583,0.000000,1626.20,2897.23,0,0,0,0,0.712993,0.000000,0.000000,0.000000,1618.80,0.000000,7.40,0.004570,0.008048 +smart,0.6000,0.8000,300,12453,8907,3546,0.000000,1624.02,2908.89,0,0,0,0,0.715249,0.000000,0.000000,0.000000,1618.80,0.000000,5.21,0.003220,0.010305 +smart,0.6000,0.8500,30,12870,9133,3737,0.000078,1617.69,2891.94,1,1,0,0,0.709635,1.000000,0.000000,0.000000,1618.80,0.000078,-1.11,-0.000688,0.004691 +smart,0.6000,0.8500,60,12644,8969,3675,0.000000,1615.63,2879.29,1,0,1,0,0.709348,0.000000,0.000000,0.000000,1618.80,0.000000,-3.18,-0.001962,0.004404 +smart,0.6000,0.8500,90,12476,8983,3493,0.000000,1603.20,2831.82,0,0,0,0,0.720022,0.000000,0.000000,0.000000,1618.80,0.000000,-15.61,-0.009641,0.015078 +smart,0.6000,0.8500,120,12699,8956,3743,0.000079,1610.34,2863.01,2,1,1,0,0.705252,0.500000,0.000000,0.000000,1618.80,0.000079,-8.47,-0.005229,0.000308 +smart,0.6000,0.8500,180,12508,8810,3698,0.000000,1611.24,2879.79,0,0,0,0,0.704349,0.000000,0.000000,0.000000,1618.80,0.000000,-7.56,-0.004673,-0.000595 +smart,0.6000,0.8500,240,12302,8671,3631,0.000000,1611.67,2861.18,0,0,0,0,0.704845,0.000000,0.000000,0.000000,1618.80,0.000000,-7.14,-0.004410,-0.000100 +smart,0.6000,0.8500,300,12532,8872,3660,0.000000,1626.70,2890.82,0,0,0,0,0.707948,0.000000,0.000000,0.000000,1618.80,0.000000,7.89,0.004874,0.003003 +smart,0.6000,0.9000,30,12760,9005,3755,0.000235,1609.60,2879.77,4,3,1,0,0.705721,0.750000,0.000000,0.000000,1618.80,0.000235,-9.21,-0.005687,0.000777 +smart,0.6000,0.9000,60,12763,9016,3747,0.000000,1610.94,2860.96,0,0,0,0,0.706417,0.000000,0.000000,0.000000,1618.80,0.000000,-7.86,-0.004858,0.001473 +smart,0.6000,0.9000,90,12545,8834,3711,0.000000,1615.31,2839.73,0,0,0,0,0.704185,0.000000,0.000000,0.000000,1618.80,0.000000,-3.50,-0.002161,-0.000759 +smart,0.6000,0.9000,120,12942,9186,3756,0.000000,1623.46,2892.57,0,0,0,0,0.709782,0.000000,0.000000,0.000000,1618.80,0.000000,4.66,0.002878,0.004838 +smart,0.6000,0.9000,180,12447,8753,3694,0.000000,1606.55,2855.32,0,0,0,0,0.703222,0.000000,0.000000,0.000000,1618.80,0.000000,-12.25,-0.007570,-0.001723 +smart,0.6000,0.9000,240,13004,9241,3763,0.000000,1619.67,2913.01,0,0,0,0,0.710627,0.000000,0.000000,0.000000,1618.80,0.000000,0.87,0.000537,0.005683 +smart,0.6000,0.9000,300,12705,8934,3771,0.000000,1610.77,2865.62,0,0,0,0,0.703188,0.000000,0.000000,0.000000,1618.80,0.000000,-8.03,-0.004963,-0.001757 diff --git a/Tools/SmartLoadSensitivity/smartload_sensitivity_simulation.py b/Tools/SmartLoadSensitivity/smartload_sensitivity_simulation.py new file mode 100644 index 0000000..b043f6b --- /dev/null +++ b/Tools/SmartLoadSensitivity/smartload_sensitivity_simulation.py @@ -0,0 +1,1439 @@ +import argparse +import csv +import json +import random +from collections import Counter, defaultdict +from dataclasses import dataclass +from pathlib import Path +from typing import Dict, List, Tuple + +import matplotlib +import matplotlib.pyplot as plt +from matplotlib import font_manager + + +def configure_fonts() -> None: + candidates = ["Microsoft YaHei", "SimHei", "PingFang SC", "Noto Sans CJK SC", "Noto Sans CJK TC"] + all_fonts = {f.name for f in font_manager.fontManager.ttflist} + for font in candidates: + if font in all_fonts: + matplotlib.rcParams["font.sans-serif"] = [font] + matplotlib.rcParams["axes.unicode_minus"] = False + break + + +configure_fonts() + + +def safe_ratio(numerator: float, denominator: float) -> float: + return numerator / denominator if denominator > 0 else 0.0 + + +def clamp01(value: float) -> float: + return max(0.0, min(1.0, value)) + + +def lerp(a: float, b: float, t: float) -> float: + return a + (b - a) * clamp01(t) + + +def clamp_float(value: float, min_v: float, max_v: float) -> float: + return max(min_v, min(max_v, value)) + + +NETWORK_LABELS = ("wifi", "4g", "3g", "2g") +NETWORK_COUNT = len(NETWORK_LABELS) + + +def percentile_95(values: List[float]) -> float: + if not values: + return 0.0 + sorted_values = sorted(values) + idx = max(0, int(len(sorted_values) * 0.95) - 1) + return float(sorted_values[idx]) + + +@dataclass +class Policy: + ad_type: int + scene: str + base_probability: float + preload_threshold: float + cooldown_seconds: int + min_samples_for_confidence: int + decay_half_life_hours: float + + +@dataclass +class SceneProfile: + ad_type: int + scene: str + true_request_probability: float + fill_success_probability: float + mean_load_ms: float + per_session_enter_probability: float + + +@dataclass +class NetworkCondition: + name: str + request_factor: float + fill_success_factor: float + load_ms_factor: float + + +@dataclass +class RobotProfile: + robot_id: str + archetype: str + enter_multipliers: Tuple[float, float, float] + request_multipliers: Tuple[float, float, float] + fill_affinity: float + latency_affinity: float + retention_affinity: float + network_weights: Tuple[float, float, float, float] + + +@dataclass +class SceneState: + ad_type: int + scene: str + policy: Policy + enter_count: int = 0 + play_request_count: int = 0 + preload_request_count: int = 0 + preload_success_count: int = 0 + preload_failure_count: int = 0 + show_request_count: int = 0 + show_start_count: int = 0 + show_failure_count: int = 0 + last_updated_ts: float = 0.0 + last_preload_ts: float = 0.0 + preload_expire_ts: float = -1.0 + preload_ready: bool = False + preload_origin_network: int = -1 + + +@dataclass +class RunResult: + mode: str + retention: float + threshold: float + cooldown_seconds: int + total_users: int + total_sessions: int + total_scene_entries: int + total_show_requests: int + total_preload_requests: int + total_preload_success: int + total_preload_failure: int + total_show_success: int + total_show_fail: int + total_preload_waste: int + immediate_play_count: int + avg_wait_ms: float + p95_wait_ms: float + wasted_ratio: float + preload_success_rate: float + show_success_rate: float + network_show_requests: Tuple[int, int, int, int] + network_immediate_show: Tuple[int, int, int, int] + network_preload_requests: Tuple[int, int, int, int] + network_preload_success: Tuple[int, int, int, int] + network_preload_waste: Tuple[int, int, int, int] + network_avg_wait_ms: Tuple[float, float, float, float] + network_p95_wait_ms: Tuple[float, float, float, float] + + +def default_policy_by_ad_type() -> Dict[Tuple[int, str], Policy]: + return { + (0, "__default__"): Policy(0, "__default__", 0.08, 0.75, 120, 8, 72.0), # Reward + (1, "__default__"): Policy(1, "__default__", 0.08, 0.75, 120, 8, 72.0), # Splash + (2, "__default__"): Policy(2, "__default__", 0.08, 0.75, 120, 8, 72.0), # Interaction + } + + +def parse_policy_config(path: Path) -> Dict[Tuple[int, str], Policy]: + if not path.exists(): + return default_policy_by_ad_type() + + with path.open("r", encoding="utf-8") as f: + payload = json.loads(f.read()) + + result: Dict[Tuple[int, str], Policy] = {} + scene_items = payload.get("ScenePolicies", []) or [] + for item in scene_items: + ad_type = int(item.get("AdType", -1)) + scene = str(item.get("Scene", "")).strip() + if ad_type < 0 or not scene: + continue + + result[(ad_type, scene)] = Policy( + ad_type=ad_type, + scene=scene, + base_probability=float(item.get("BaseProbability", 0.08)), + preload_threshold=float(item.get("PreloadThreshold", 0.75)), + cooldown_seconds=int(item.get("CooldownSeconds", 120)), + min_samples_for_confidence=max(1, int(item.get("MinSamplesForConfidence", 8))), + decay_half_life_hours=max(1.0, float(item.get("DecayHalfLifeHours", 72.0))), + ) + + default = payload.get("GlobalDefault", {}) if isinstance(payload, dict) else {} + for ad_type in (0, 1, 2): + result[(ad_type, "__default__")] = Policy( + ad_type=ad_type, + scene="__default__", + base_probability=float(default.get("BaseProbability", 0.08)), + preload_threshold=float(default.get("PreloadThreshold", 0.75)), + cooldown_seconds=int(default.get("CooldownSeconds", 120)), + min_samples_for_confidence=max(1, int(default.get("MinSamplesForConfidence", 8))), + decay_half_life_hours=max(1.0, float(default.get("DecayHalfLifeHours", 72.0))), + ) + + return result + + +def estimate_probability(state: SceneState, now: float, policy: Policy) -> float: + if state.enter_count <= 0: + return policy.base_probability + + observed = safe_ratio(state.play_request_count, state.enter_count) + trust = min(1.0, state.enter_count / max(1.0, policy.min_samples_for_confidence)) + age_hours = max(0.0, (now - state.last_updated_ts) / 3600.0) + decay = 0.5 ** (age_hours / max(1e-6, policy.decay_half_life_hours)) + trust *= decay + return lerp(policy.base_probability, observed, trust) + + +def should_preload(state: SceneState, now: float, threshold: float, cooldown_seconds: int) -> bool: + policy = state.policy + if now - state.last_preload_ts < cooldown_seconds: + return False + if state.preload_ready and state.preload_expire_ts >= now: + return False + return estimate_probability(state, now, policy) >= threshold + + +def apply_waste_decay(state: SceneState, now: float) -> Tuple[int, int]: + if state.preload_ready and state.preload_expire_ts > 0 and now >= state.preload_expire_ts: + state.preload_ready = False + state.preload_expire_ts = -1 + return 1, max(0, min(NETWORK_COUNT - 1, state.preload_origin_network)) + return 0, -1 + + +def policy_for_scene(policy_map: Dict[Tuple[int, str], Policy], ad_type: int, scene: str) -> Policy: + return policy_map.get((ad_type, scene)) or policy_map.get((ad_type, "__default__")) or next( + iter(default_policy_by_ad_type().values()) + ) + + +def pick_network( + conditions: List[NetworkCondition], + weights: Tuple[float, float, float, float], + rng: random.Random, +) -> Tuple[int, NetworkCondition]: + roll = rng.random() + cum = 0.0 + for idx, w in enumerate(weights): + cum += max(0.0, w) + if roll <= cum: + i = min(idx, len(conditions) - 1) + return i, conditions[i] + return len(conditions) - 1, conditions[-1] + + +def normalize_weights(values: Tuple[float, float, float, float], epsilon: float = 1e-6) -> Tuple[float, float, float, float]: + total = sum(max(0.0, v) for v in values) + if total <= epsilon: + return (0.25, 0.25, 0.25, 0.25) + return tuple(v / total for v in values) + + +def generate_robot_profiles(users: int, seed: int) -> List[RobotProfile]: + rng = random.Random(seed) + + # 4 类广告网络环境偏好:Wi-Fi, 4G, 3G, 2G + archetypes = [ + { + "name": "reward_heavy", + "weight": 0.25, + "enter": (1.45, 0.82, 0.80), + "request": (1.55, 0.76, 0.62), + "fill_aff": 1.04, + "latency_aff": 0.88, + "retention_aff": 1.18, + "network": (0.60, 0.28, 0.10, 0.02), + }, + { + "name": "interstitial_focus", + "weight": 0.22, + "enter": (0.72, 1.48, 0.83), + "request": (0.78, 1.57, 0.70), + "fill_aff": 0.96, + "latency_aff": 1.02, + "retention_aff": 1.05, + "network": (0.32, 0.42, 0.20, 0.06), + }, + { + "name": "splash_driven", + "weight": 0.22, + "enter": (0.88, 0.92, 1.52), + "request": (1.02, 1.03, 1.40), + "fill_aff": 0.91, + "latency_aff": 1.01, + "retention_aff": 0.96, + "network": (0.75, 0.18, 0.05, 0.02), + }, + { + "name": "balanced", + "weight": 0.20, + "enter": (1.05, 1.12, 1.10), + "request": (1.05, 1.00, 1.00), + "fill_aff": 1.00, + "latency_aff": 1.00, + "retention_aff": 1.00, + "network": (0.40, 0.32, 0.22, 0.06), + }, + { + "name": "churn_sensitive", + "weight": 0.11, + "enter": (0.55, 0.64, 0.45), + "request": (0.60, 0.55, 0.46), + "fill_aff": 0.72, + "latency_aff": 1.18, + "retention_aff": 0.58, + "network": (0.24, 0.26, 0.30, 0.20), + }, + { + "name": "network_bound", + "weight": 0.10, + "enter": (0.85, 0.85, 0.80), + "request": (0.88, 0.78, 0.72), + "fill_aff": 0.68, + "latency_aff": 1.22, + "retention_aff": 0.82, + "network": (0.12, 0.18, 0.30, 0.40), + }, + ] + + total_weight = sum(a["weight"] for a in archetypes) + running = [] + cur = 0.0 + for a in archetypes: + cur += a["weight"] / total_weight + running.append((cur, a)) + + robots = [] + for idx in range(users): + roll = rng.random() + picked = archetypes[-1] + for threshold, arche in running: + if roll <= threshold: + picked = arche + break + + def jitter(v: float, span: float) -> float: + return clamp01(v + rng.uniform(-span, span)) + + enters = tuple(clamp_float(jitter(base, 0.24), 0.2, 1.9) for base in picked["enter"]) + requests = tuple(clamp_float(jitter(base, 0.22), 0.15, 1.9) for base in picked["request"]) + + nw = [ + max(0.01, jitter(weight, 0.15)) + for weight in picked["network"] + ] + robots.append( + RobotProfile( + robot_id=f"bot_{idx:05d}", + archetype=picked["name"], + enter_multipliers=enters, + request_multipliers=requests, + fill_affinity=clamp_float(jitter(picked["fill_aff"], 0.16), 0.45, 1.55), + latency_affinity=clamp_float(jitter(picked["latency_aff"], 0.2), 0.6, 1.8), + retention_affinity=clamp_float(jitter(picked["retention_aff"], 0.12), 0.35, 1.45), + network_weights=normalize_weights(tuple(nw)), + ) + ) + + return robots + + +def simulate_once( + profiles: List[SceneProfile], + policy_map: Dict[Tuple[int, str], Policy], + robots: List[RobotProfile], + threshold: float, + cooldown_seconds: int, + retention_next_day: float, + seed: int, + smart_enabled: bool, + mode: str, +) -> RunResult: + behavior_rng = random.Random(seed) + outcome_rng = random.Random(seed + 998244353) + states: Dict[str, SceneState] = {} + + network_conditions = [ + NetworkCondition("wifi", request_factor=1.0, fill_success_factor=1.0, load_ms_factor=0.85), + NetworkCondition("4g", request_factor=0.96, fill_success_factor=0.98, load_ms_factor=1.08), + NetworkCondition("3g", request_factor=0.90, fill_success_factor=0.86, load_ms_factor=1.45), + NetworkCondition("2g", request_factor=0.78, fill_success_factor=0.73, load_ms_factor=2.00), + ] + + def state_of(profile: SceneProfile, profile_index: int) -> SceneState: + key = f"{profile.ad_type}|{profile.scene}" + if key not in states: + states[key] = SceneState( + ad_type=profile.ad_type, + scene=profile.scene, + policy=policy_for_scene(policy_map, profile.ad_type, profile.scene), + ) + return states[key] + + total_wait_times: List[float] = [] + network_wait_times: List[List[float]] = [[] for _ in range(NETWORK_COUNT)] + total_preload_waste = 0 + total_scene_entries = 0 + total_show_requests = 0 + total_show_success = 0 + total_show_fail = 0 + total_preload_requests = 0 + total_preload_success = 0 + total_preload_failure = 0 + total_sessions = 0 + immediate_play_count = 0 + network_show_requests = [0, 0, 0, 0] + network_immediate_show = [0, 0, 0, 0] + network_preload_requests = [0, 0, 0, 0] + network_preload_success = [0, 0, 0, 0] + network_preload_waste = [0, 0, 0, 0] + now = 0.0 + + for robot in robots: + sessions = 1 + retention_prob = clamp01(retention_next_day * robot.retention_affinity) + while behavior_rng.random() < retention_prob: + sessions += 1 + total_sessions += sessions + + for session_index in range(sessions): + now += 0.3 + behavior_rng.random() * 0.7 + network_idx, network = pick_network(network_conditions, robot.network_weights, behavior_rng) + + for idx, profile in enumerate(profiles): + state = state_of(profile, idx) + now += behavior_rng.uniform(0.3, 2.0) + total_scene_entries += 1 + state.enter_count += 1 + state.last_updated_ts = now + + waste, waste_network = apply_waste_decay(state, now) + total_preload_waste += waste + if waste > 0 and 0 <= waste_network < NETWORK_COUNT: + network_preload_waste[waste_network] += waste + + enter_prob = clamp01( + profile.per_session_enter_probability + * robot.enter_multipliers[idx] + * network.request_factor + ) + + if behavior_rng.random() > enter_prob: + continue + + if smart_enabled and should_preload(state, now, threshold, cooldown_seconds): + total_preload_requests += 1 + state.preload_request_count += 1 + state.last_preload_ts = now + state.last_updated_ts = now + network_preload_requests[network_idx] += 1 + + fill_success = clamp01(profile.fill_success_probability * robot.fill_affinity * network.fill_success_factor) + if outcome_rng.random() < fill_success: + state.preload_success_count += 1 + total_preload_success += 1 + network_preload_success[network_idx] += 1 + state.preload_ready = True + state.preload_expire_ts = now + cooldown_seconds + state.preload_origin_network = network_idx + else: + state.preload_failure_count += 1 + total_preload_failure += 1 + + request_prob = clamp01(profile.true_request_probability * robot.request_multipliers[idx]) + if behavior_rng.random() < request_prob: + state.play_request_count += 1 + state.show_request_count += 1 + total_show_requests += 1 + network_show_requests[network_idx] += 1 + fill_success = clamp01(profile.fill_success_probability * robot.fill_affinity * network.fill_success_factor) + + if state.preload_ready and state.preload_expire_ts >= now: + state.preload_ready = False + state.show_start_count += 1 + total_show_success += 1 + immediate_play_count += 1 + network_immediate_show[network_idx] += 1 + total_wait_times.append(0.0) + network_wait_times[network_idx].append(0.0) + state.last_updated_ts = now + else: + load_ms = max( + 250.0, + outcome_rng.gauss( + profile.mean_load_ms * robot.latency_affinity * network.load_ms_factor, + 220.0, + ), + ) + if outcome_rng.random() < fill_success: + state.show_start_count += 1 + total_show_success += 1 + else: + state.show_failure_count += 1 + total_show_fail += 1 + total_wait_times.append(load_ms) + network_wait_times[network_idx].append(load_ms) + state.last_updated_ts = now + + # 每个 session 间停留(含加载、浏览等) + now += behavior_rng.uniform(8.0, 16.0) + + # 网络状态抖动:同一用户跨会话可变更 + if session_index % 2 == 1 and outcome_rng.random() < 0.08: + now += 0.0 + + avg_wait = safe_ratio(sum(total_wait_times), len(total_wait_times)) + p95_wait = percentile_95(total_wait_times) + + total_requests = max(1, total_show_requests) + total_preloads = max(1, total_preload_requests) + network_avg_wait = [] + network_p95_wait = [] + for nw_idx in range(NETWORK_COUNT): + network_avg_wait.append(safe_ratio(sum(network_wait_times[nw_idx]), max(1, len(network_wait_times[nw_idx])))) + network_p95_wait.append(percentile_95(network_wait_times[nw_idx])) + + return RunResult( + mode=mode, + retention=retention_next_day, + threshold=threshold, + cooldown_seconds=cooldown_seconds, + total_users=len(robots), + total_sessions=total_sessions, + total_scene_entries=total_scene_entries, + total_show_requests=total_show_requests, + total_preload_requests=total_preload_requests, + total_preload_success=total_preload_success, + total_preload_failure=total_preload_failure, + total_show_success=total_show_success, + total_show_fail=total_show_fail, + total_preload_waste=total_preload_waste, + immediate_play_count=immediate_play_count, + avg_wait_ms=avg_wait, + p95_wait_ms=p95_wait, + wasted_ratio=safe_ratio(total_preload_waste, total_preloads), + preload_success_rate=safe_ratio(total_preload_success, total_preloads), + show_success_rate=safe_ratio(total_show_success, total_requests), + network_show_requests=tuple(network_show_requests), + network_immediate_show=tuple(network_immediate_show), + network_preload_requests=tuple(network_preload_requests), + network_preload_success=tuple(network_preload_success), + network_preload_waste=tuple(network_preload_waste), + network_avg_wait_ms=(network_avg_wait[0], network_avg_wait[1], network_avg_wait[2], network_avg_wait[3]), + network_p95_wait_ms=(network_p95_wait[0], network_p95_wait[1], network_p95_wait[2], network_p95_wait[3]), + ) + + +def run_sensitivity( + profiles: List[SceneProfile], + policy_map: Dict[Tuple[int, str], Policy], + robots: List[RobotProfile], + threshold_grid: List[float], + cooldown_grid: List[int], + retention_rates: List[float], + out_dir: Path, + mode_manual_seed: int, +) -> Tuple[List[RunResult], Dict[float, RunResult]]: + baseline_by_retention: Dict[float, RunResult] = {} + smart_results: List[RunResult] = [] + + for ridx, retention in enumerate(retention_rates): + baseline_by_retention[retention] = simulate_once( + profiles=profiles, + policy_map=policy_map, + robots=robots, + threshold=1.0, + cooldown_seconds=max(cooldown_grid), + retention_next_day=retention, + seed=mode_manual_seed + ridx * 1000, + smart_enabled=False, + mode="manual", + ) + + for ridx, retention in enumerate(retention_rates): + for tidx, threshold in enumerate(threshold_grid): + for cidx, cooldown in enumerate(cooldown_grid): + smart_results.append( + simulate_once( + profiles=profiles, + policy_map=policy_map, + robots=robots, + threshold=threshold, + cooldown_seconds=cooldown, + retention_next_day=retention, + seed=mode_manual_seed + 8000 + ridx * 1000 + tidx * 37 + cidx, + smart_enabled=True, + mode="smart", + ) + ) + + out_dir.mkdir(parents=True, exist_ok=True) + summary_csv = out_dir / "smartload_sensitivity_summary.csv" + with summary_csv.open("w", encoding="utf-8", newline="") as f: + w = csv.writer(f) + w.writerow( + [ + "mode", + "retention", + "threshold", + "cooldown", + "total_show_requests", + "total_show_success", + "total_show_fail", + "immediate_show", + "avg_wait_ms", + "p95_wait_ms", + "total_preload_requests", + "preload_success", + "preload_fail", + "preload_waste", + "show_success_rate", + "preload_success_rate", + "wasted_ratio", + "baseline_immediate_show", + "baseline_avg_wait_ms", + "delta_immediate_show", + "delta_wait_ms", + "delta_wait_pct", + "delta_show_success", + ] + ) + + for retention in retention_rates: + manual = baseline_by_retention[retention] + m_immediate = safe_ratio(manual.immediate_play_count, manual.total_show_requests) + w.writerow( + [ + "manual", + f"{retention:.4f}", + "1.00", + max(cooldown_grid), + manual.total_show_requests, + manual.total_show_success, + manual.total_show_fail, + f"{m_immediate:.6f}", + f"{manual.avg_wait_ms:.2f}", + f"{manual.p95_wait_ms:.2f}", + manual.total_preload_requests, + manual.total_preload_success, + manual.total_preload_failure, + f"{manual.total_preload_waste}", + f"{manual.show_success_rate:.6f}", + f"{manual.preload_success_rate:.6f}", + f"{manual.wasted_ratio:.6f}", + f"{m_immediate:.6f}", + f"{manual.avg_wait_ms:.2f}", + f"{0:.6f}", + f"{0:.2f}", + f"{0:.6f}", + f"{0:.6f}", + ] + ) + + for r in smart_results: + b = baseline_by_retention[r.retention] + immediate = safe_ratio(r.immediate_play_count, r.total_show_requests) + baseline_immediate = safe_ratio(b.immediate_play_count, b.total_show_requests) + delta_immediate = immediate - baseline_immediate + delta_wait = r.avg_wait_ms - b.avg_wait_ms + delta_wait_pct = safe_ratio(delta_wait, b.avg_wait_ms) if b.avg_wait_ms > 0 else 0.0 + w.writerow( + [ + r.mode, + f"{r.retention:.4f}", + f"{r.threshold:.4f}", + r.cooldown_seconds, + r.total_show_requests, + r.total_show_success, + r.total_show_fail, + f"{immediate:.6f}", + f"{r.avg_wait_ms:.2f}", + f"{r.p95_wait_ms:.2f}", + r.total_preload_requests, + r.total_preload_success, + r.total_preload_failure, + r.total_preload_waste, + f"{r.show_success_rate:.6f}", + f"{r.preload_success_rate:.6f}", + f"{r.wasted_ratio:.6f}", + f"{baseline_immediate:.6f}", + f"{b.avg_wait_ms:.2f}", + f"{delta_immediate:.6f}", + f"{delta_wait:.2f}", + f"{delta_wait_pct:.6f}", + f"{(r.show_success_rate - b.show_success_rate):.6f}", + ] + ) + + rank_csv = write_rank_csv(smart_results, baseline_by_retention, out_dir) + write_mode_comparison_csv(baseline_by_retention, smart_results, out_dir) + write_robot_summary_csv(robots, out_dir) + write_mode_lines(baseline_by_retention, smart_results, out_dir) + write_network_mode_comparison_csv(baseline_by_retention, smart_results, out_dir) + draw_network_mode_lines(baseline_by_retention, smart_results, out_dir) + + return smart_results, baseline_by_retention + + +def write_rank_csv(results: List[RunResult], baseline_by_retention: Dict[float, RunResult], out_dir: Path) -> Path: + rank_csv = out_dir / "smartload_retention_rank.csv" + with rank_csv.open("w", encoding="utf-8", newline="") as f: + w = csv.writer(f) + w.writerow( + [ + "retention", + "rank", + "threshold", + "cooldown", + "immediate_show", + "avg_wait_ms", + "p95_wait_ms", + "waste_ratio", + "show_success_rate", + "delta_immediate", + "delta_wait_ms", + "delta_wait_pct", + "objective_score", + ] + ) + for retention in sorted(baseline_by_retention.keys()): + rows = [] + for r in [x for x in results if x.retention == retention]: + b = baseline_by_retention[retention] + immediate = safe_ratio(r.immediate_play_count, r.total_show_requests) + baseline_immediate = safe_ratio(b.immediate_play_count, b.total_show_requests) + delta_immediate = immediate - baseline_immediate + delta_wait = r.avg_wait_ms - b.avg_wait_ms + score = 0.7 * delta_immediate + 0.2 * safe_ratio((1 - r.wasted_ratio), 1.0) - 0.001 * r.avg_wait_ms / 10.0 + rows.append((score, r)) + rows.sort(key=lambda x: x[0], reverse=True) + for idx, (_, r) in enumerate(rows, start=1): + immediate = safe_ratio(r.immediate_play_count, r.total_show_requests) + b = baseline_by_retention[retention] + delta_immediate = immediate - safe_ratio(b.immediate_play_count, b.total_show_requests) + delta_wait = r.avg_wait_ms - b.avg_wait_ms + delta_wait_pct = safe_ratio(delta_wait, b.avg_wait_ms) if b.avg_wait_ms > 0 else 0.0 + score = 0.7 * delta_immediate + 0.2 * (1 - r.wasted_ratio) - 0.001 * r.avg_wait_ms / 10.0 + w.writerow( + [ + f"{retention:.2f}", + idx, + f"{r.threshold:.2f}", + r.cooldown_seconds, + f"{immediate:.6f}", + f"{r.avg_wait_ms:.2f}", + f"{r.p95_wait_ms:.2f}", + f"{r.wasted_ratio:.6f}", + f"{r.show_success_rate:.6f}", + f"{delta_immediate:.6f}", + f"{delta_wait:.2f}", + f"{delta_wait_pct:.6f}", + f"{score:.6f}", + ] + ) + return rank_csv + + +def write_mode_comparison_csv( + baseline_by_retention: Dict[float, RunResult], + smart_results: List[RunResult], + out_dir: Path, +) -> Path: + by_retention = defaultdict(list) + for result in smart_results: + by_retention[result.retention].append(result) + + out = out_dir / "smartload_mode_comparison.csv" + with out.open("w", encoding="utf-8", newline="") as f: + w = csv.writer(f) + w.writerow( + [ + "retention", + "manual_immediate", + "manual_avg_wait_ms", + "manual_waste_ratio", + "manual_show_success_rate", + "smart_threshold", + "smart_cooldown", + "smart_immediate", + "smart_avg_wait_ms", + "smart_waste_ratio", + "smart_show_success_rate", + "delta_immediate", + "delta_wait_ms", + ] + ) + for retention, b in sorted(baseline_by_retention.items()): + manual_immediate = safe_ratio(b.immediate_play_count, b.total_show_requests) + candidates = by_retention[retention] + if not candidates: + continue + best = max(candidates, key=lambda item: safe_ratio(item.immediate_play_count, item.total_show_requests)) + smart_immediate = safe_ratio(best.immediate_play_count, best.total_show_requests) + w.writerow( + [ + f"{retention:.2f}", + f"{manual_immediate:.6f}", + f"{b.avg_wait_ms:.2f}", + f"{b.wasted_ratio:.6f}", + f"{b.show_success_rate:.6f}", + f"{best.threshold:.2f}", + best.cooldown_seconds, + f"{smart_immediate:.6f}", + f"{best.avg_wait_ms:.2f}", + f"{best.wasted_ratio:.6f}", + f"{best.show_success_rate:.6f}", + f"{smart_immediate - manual_immediate:.6f}", + f"{best.avg_wait_ms - b.avg_wait_ms:.2f}", + ] + ) + + return out + + +def write_network_mode_comparison_csv( + baseline_by_retention: Dict[float, RunResult], + smart_results: List[RunResult], + out_dir: Path, +) -> Path: + by_retention = defaultdict(list) + for result in smart_results: + by_retention[result.retention].append(result) + + out = out_dir / "smartload_network_mode_comparison.csv" + with out.open("w", encoding="utf-8", newline="") as f: + w = csv.writer(f) + w.writerow( + [ + "retention", + "network", + "manual_show_requests", + "manual_immediate", + "manual_avg_wait_ms", + "manual_p95_wait_ms", + "manual_waste_ratio", + "manual_preload_success", + "smart_threshold", + "smart_cooldown", + "smart_show_requests", + "smart_immediate", + "smart_avg_wait_ms", + "smart_p95_wait_ms", + "smart_waste_ratio", + "smart_preload_success", + "delta_immediate", + "delta_wait_ms", + ] + ) + for retention, b in sorted(baseline_by_retention.items()): + candidates = by_retention[retention] + for idx, network_name in enumerate(NETWORK_LABELS): + manual_immediate = safe_ratio(b.network_immediate_show[idx], b.network_show_requests[idx]) + manual_wait = b.network_avg_wait_ms[idx] + manual_p95 = b.network_p95_wait_ms[idx] + manual_waste = safe_ratio(b.network_preload_waste[idx], max(1, b.network_preload_requests[idx])) + manual_preload_success = safe_ratio(b.network_preload_success[idx], max(1, b.network_preload_requests[idx])) + + best = None + if candidates: + best = max(candidates, key=lambda item: safe_ratio(item.network_immediate_show[idx], item.network_show_requests[idx])) + + if best is None: + w.writerow( + [ + f"{retention:.2f}", + network_name, + b.network_show_requests[idx], + f"{manual_immediate:.6f}", + f"{manual_wait:.2f}", + f"{manual_p95:.2f}", + f"{manual_waste:.6f}", + f"{manual_preload_success:.6f}", + "N/A", + "N/A", + 0, + f"{0:.6f}", + f"{0:.2f}", + f"{0:.2f}", + f"{0:.6f}", + f"{0:.6f}", + f"{0:.6f}", + f"{0:.2f}", + ] + ) + continue + + smart_immediate = safe_ratio(best.network_immediate_show[idx], best.network_show_requests[idx]) + smart_wait = best.network_avg_wait_ms[idx] + smart_p95 = best.network_p95_wait_ms[idx] + smart_waste = safe_ratio(best.network_preload_waste[idx], max(1, best.network_preload_requests[idx])) + smart_preload_success = safe_ratio(best.network_preload_success[idx], max(1, best.network_preload_requests[idx])) + + w.writerow( + [ + f"{retention:.2f}", + network_name, + b.network_show_requests[idx], + f"{manual_immediate:.6f}", + f"{manual_wait:.2f}", + f"{manual_p95:.2f}", + f"{manual_waste:.6f}", + f"{manual_preload_success:.6f}", + f"{best.threshold:.2f}", + best.cooldown_seconds, + best.network_show_requests[idx], + f"{smart_immediate:.6f}", + f"{smart_wait:.2f}", + f"{smart_p95:.2f}", + f"{smart_waste:.6f}", + f"{smart_preload_success:.6f}", + f"{smart_immediate - manual_immediate:.6f}", + f"{smart_wait - manual_wait:.2f}", + ] + ) + return out + + +def write_robot_summary_csv(robots: List[RobotProfile], out_dir: Path) -> Path: + summary_csv = out_dir / "smartload_robot_cohorts.csv" + with summary_csv.open("w", encoding="utf-8", newline="") as f: + w = csv.writer(f) + w.writerow( + [ + "robot_id", + "archetype", + "enter_reward", + "enter_interstitial", + "enter_splash", + "request_reward", + "request_interstitial", + "request_splash", + "fill_affinity", + "latency_affinity", + "retention_affinity", + "network_wifi", + "network_4g", + "network_3g", + "network_2g", + ] + ) + for robot in robots: + w.writerow( + [ + robot.robot_id, + robot.archetype, + f"{robot.enter_multipliers[0]:.4f}", + f"{robot.enter_multipliers[1]:.4f}", + f"{robot.enter_multipliers[2]:.4f}", + f"{robot.request_multipliers[0]:.4f}", + f"{robot.request_multipliers[1]:.4f}", + f"{robot.request_multipliers[2]:.4f}", + f"{robot.fill_affinity:.4f}", + f"{robot.latency_affinity:.4f}", + f"{robot.retention_affinity:.4f}", + f"{robot.network_weights[0]:.6f}", + f"{robot.network_weights[1]:.6f}", + f"{robot.network_weights[2]:.6f}", + f"{robot.network_weights[3]:.6f}", + ] + ) + + # 一页式摘要也可用于报告快速读取。 + summary_text = out_dir / "smartload_robot_cohort_summary.txt" + counter = Counter(robot.archetype for robot in robots) + with summary_text.open("w", encoding="utf-8") as out: + out.write("Robot Cohort Summary\n") + out.write("===================\n") + for name, count in counter.most_common(): + out.write(f"{name}: {count}\n") + + return summary_csv + + +def draw_heatmaps(results: List[RunResult], retention: float, out_dir: Path): + filtered = [r for r in results if abs(r.retention - retention) < 1e-6] + if not filtered: + return + + thresholds = sorted({r.threshold for r in filtered}) + cooldowns = sorted({r.cooldown_seconds for r in filtered}) + index = {(r.threshold, r.cooldown_seconds): r for r in filtered} + + def matrix(metric): + data = [[0.0 for _ in cooldowns] for _ in thresholds] + for ti, t in enumerate(thresholds): + for ci, c in enumerate(cooldowns): + r = index[(t, c)] + if metric == "immediate": + data[ti][ci] = safe_ratio(r.immediate_play_count, r.total_show_requests) + elif metric == "wait": + data[ti][ci] = r.avg_wait_ms + elif metric == "waste": + data[ti][ci] = r.wasted_ratio + elif metric == "preload": + data[ti][ci] = r.preload_success_rate + return data + + def plot(title, data, fname, label): + plt.figure(figsize=(8, 6)) + im = plt.imshow(data, origin="lower", aspect="auto", cmap="viridis") + plt.yticks(range(len(thresholds)), [f"{t:.2f}" for t in thresholds]) + plt.xticks(range(len(cooldowns)), [str(c) for c in cooldowns]) + plt.xlabel("冷却时间(秒)") + plt.ylabel("预加载阈值") + plt.title(title) + cbar = plt.colorbar(im) + cbar.set_label(label) + plt.tight_layout() + plt.savefig(out_dir / fname, dpi=150) + plt.close() + + plot(f"智能预加载即时命中率(次留={retention:.0%})", matrix("immediate"), f"heatmap_immediate_r_{retention:.2f}.png", "即时命中率") + plot(f"智能预加载平均等待(次留={retention:.0%})", matrix("wait"), f"heatmap_wait_ms_r_{retention:.2f}.png", "平均等待(ms)") + plot(f"智能预加载浪费比例(次留={retention:.0%})", matrix("waste"), f"heatmap_waste_ratio_r_{retention:.2f}.png", "浪费比例") + plot(f"智能预加载预加载成功率(次留={retention:.0%})", matrix("preload"), f"heatmap_preload_success_r_{retention:.2f}.png", "预加载成功率") + + +def draw_retention_lines(results: List[RunResult], out_dir: Path): + thresholds = sorted({r.threshold for r in results}) + cooldowns = sorted({r.cooldown_seconds for r in results}) + retentions = sorted({r.retention for r in results}) + baseline_threshold = thresholds[len(thresholds) // 2] + + plt.figure(figsize=(10, 6)) + for c in cooldowns: + xs = [] + ys = [] + for r in sorted([x for x in results if x.cooldown_seconds == c and x.threshold == baseline_threshold], key=lambda x: x.retention): + xs.append(r.retention) + ys.append(safe_ratio(r.immediate_play_count, r.total_show_requests)) + plt.plot(xs, ys, marker="o", label=f"cd={c}s") + plt.title("敏感度:次留与即时命中率") + plt.xlabel("次留(D2)") + plt.ylabel("即时命中率") + plt.grid(True) + plt.legend(fontsize=8) + plt.tight_layout() + plt.savefig(out_dir / "line_immediate_vs_retention.png", dpi=150) + plt.close() + + plt.figure(figsize=(10, 6)) + for c in cooldowns: + xs = [] + ys = [] + for r in sorted([x for x in results if x.cooldown_seconds == c and x.threshold == baseline_threshold], key=lambda x: x.retention): + xs.append(r.retention) + ys.append(r.avg_wait_ms) + plt.plot(xs, ys, marker="s", label=f"cd={c}s") + plt.title("敏感度:次留与平均等待") + plt.xlabel("次留(D2)") + plt.ylabel("平均等待(ms)") + plt.grid(True) + plt.legend(fontsize=8) + plt.tight_layout() + plt.savefig(out_dir / "line_wait_vs_retention.png", dpi=150) + plt.close() + + for retention in retentions: + same_r = sorted([x for x in results if abs(x.retention - retention) < 1e-6 and x.threshold == baseline_threshold], key=lambda x: x.cooldown_seconds) + if not same_r: + continue + fig, ax1 = plt.subplots(figsize=(10, 6)) + ax2 = ax1.twinx() + cooldown_values = [x.cooldown_seconds for x in same_r] + immediate = [safe_ratio(x.immediate_play_count, x.total_show_requests) for x in same_r] + waste = [x.wasted_ratio for x in same_r] + ax1.plot(cooldown_values, immediate, marker="o", label="即时命中率") + ax1.set_xlabel("冷却时间(秒)") + ax1.set_ylabel("即时命中率", color="#1f77b4") + ax2.plot(cooldown_values, waste, marker="x", color="#F28D35", label="浪费比例") + ax2.set_ylabel("浪费比例", color="#F28D35") + ax1.set_title(f"次留={retention:.0%},阈值={baseline_threshold:.2f}") + ax1.grid(True) + ax1.set_xlim(left=min(cooldown_values), right=max(cooldown_values)) + fig.tight_layout() + fig.savefig(out_dir / f"line_threshold_{baseline_threshold:.2f}_retention_{retention:.2f}.png", dpi=150) + plt.close(fig) + + +def write_mode_lines( + baseline_by_retention: Dict[float, RunResult], + smart_results: List[RunResult], + out_dir: Path, +) -> None: + best_by_retention: Dict[float, RunResult] = {} + for retention, baseline in baseline_by_retention.items(): + candidates = [r for r in smart_results if r.retention == retention] + if not candidates: + continue + best = max(candidates, key=lambda x: safe_ratio(x.immediate_play_count, x.total_show_requests)) + best_by_retention[retention] = best + + retentions = sorted(baseline_by_retention.keys()) + + plt.figure(figsize=(10, 6)) + xs = [r for r in retentions] + ys_manual = [safe_ratio(baseline_by_retention[r].immediate_play_count, baseline_by_retention[r].total_show_requests) for r in retentions] + ys_smart = [safe_ratio(best_by_retention[r].immediate_play_count, best_by_retention[r].total_show_requests) for r in retentions] + plt.plot(xs, ys_manual, marker="o", label="手动(无智能)") + plt.plot(xs, ys_smart, marker="o", label="智能(最优配置)") + plt.title("模式对比:次留与即时播放率") + plt.xlabel("次留(D2)") + plt.ylabel("即时播放率") + plt.grid(True) + plt.legend() + plt.tight_layout() + plt.savefig(out_dir / "line_mode_immediate_vs_retention.png", dpi=150) + plt.close() + + plt.figure(figsize=(10, 6)) + ys_manual_wait = [baseline_by_retention[r].avg_wait_ms for r in retentions] + ys_smart_wait = [best_by_retention[r].avg_wait_ms for r in retentions] + plt.plot(xs, ys_manual_wait, marker="s", label="手动(无智能)") + plt.plot(xs, ys_smart_wait, marker="s", label="智能(最优配置)") + plt.title("模式对比:次留与平均等待") + plt.xlabel("次留(D2)") + plt.ylabel("平均等待(ms)") + plt.grid(True) + plt.legend() + plt.tight_layout() + plt.savefig(out_dir / "line_mode_wait_vs_retention.png", dpi=150) + plt.close() + + +def draw_network_mode_lines( + baseline_by_retention: Dict[float, RunResult], + smart_results: List[RunResult], + out_dir: Path, +) -> None: + by_retention = defaultdict(list) + for result in smart_results: + by_retention[result.retention].append(result) + + retentions = sorted(baseline_by_retention.keys()) + + plt.figure(figsize=(11, 7)) + for idx, network_name in enumerate(NETWORK_LABELS): + xs = [] + ys_manual = [] + ys_smart = [] + for retention in retentions: + b = baseline_by_retention[retention] + xs.append(retention) + ys_manual.append( + safe_ratio( + b.network_immediate_show[idx], + b.network_show_requests[idx], + ) + ) + + candidates = by_retention[retention] + if candidates: + best = max( + candidates, + key=lambda item: safe_ratio(item.network_immediate_show[idx], item.network_show_requests[idx]), + ) + ys_smart.append( + safe_ratio( + best.network_immediate_show[idx], + best.network_show_requests[idx], + ) + ) + else: + ys_smart.append(0.0) + + plt.plot(xs, ys_manual, marker="o", label=f"{network_name.upper()} - 手动") + plt.plot(xs, ys_smart, marker="s", linestyle="--", label=f"{network_name.upper()} - 智能") + + plt.title("网络分层即时命中率:次留对比(D2)") + plt.xlabel("次留(D2)") + plt.ylabel("即时命中率") + plt.grid(True) + plt.legend(fontsize=8) + plt.tight_layout() + plt.savefig(out_dir / "line_network_immediate_vs_retention.png", dpi=150) + plt.close() + + plt.figure(figsize=(11, 7)) + for idx, network_name in enumerate(NETWORK_LABELS): + xs = [] + ys_manual = [] + ys_smart = [] + for retention in retentions: + b = baseline_by_retention[retention] + xs.append(retention) + ys_manual.append(b.network_avg_wait_ms[idx]) + + candidates = by_retention[retention] + if candidates: + best = max( + candidates, + key=lambda item: safe_ratio(item.network_immediate_show[idx], item.network_show_requests[idx]), + ) + ys_smart.append(best.network_avg_wait_ms[idx]) + else: + ys_smart.append(0.0) + + plt.plot(xs, ys_manual, marker="o", label=f"{network_name.upper()} - 手动") + plt.plot(xs, ys_smart, marker="s", linestyle="--", label=f"{network_name.upper()} - 智能") + + plt.title("网络分层平均等待:次留对比(D2)") + plt.xlabel("次留(D2)") + plt.ylabel("平均等待(ms)") + plt.grid(True) + plt.legend(fontsize=8) + plt.tight_layout() + plt.savefig(out_dir / "line_network_wait_vs_retention.png", dpi=150) + plt.close() + + +def build_report( + results: List[RunResult], + baseline_by_retention: Dict[float, RunResult], + out_dir: Path, + robot_count: int, + baseline_retention_default: float = 0.35, +) -> Path: + report = out_dir / "TapADN_智能预加载_敏感度验收报告.md" + ranked: Dict[float, List[RunResult]] = defaultdict(list) + for r in results: + ranked[r.retention].append(r) + + ranked_sorted: Dict[float, List[RunResult]] = {} + for retention, rows in ranked.items(): + ranked_sorted[retention] = sorted(rows, key=lambda item: safe_ratio(item.immediate_play_count, item.total_show_requests), reverse=True) + + def pick_balanced(rows: List[RunResult], waste_cap: float = 0.12) -> RunResult | None: + filtered = [r for r in rows if r.wasted_ratio <= waste_cap] + if not filtered: + return None + return max(filtered, key=lambda item: safe_ratio(item.immediate_play_count, item.total_show_requests)) + + def format_table_rows(rows: List[RunResult], count: int = 8) -> List[str]: + lines = [] + for idx, r in enumerate(rows[:count], 1): + immediate = safe_ratio(r.immediate_play_count, r.total_show_requests) + lines.append( + f"| {idx} | {r.threshold:.2f} | {r.cooldown_seconds} | {immediate:.2%} | {r.avg_wait_ms:.0f} | {r.p95_wait_ms:.0f} | {r.wasted_ratio:.2%} | {r.show_success_rate:.2%} |" + ) + return lines + + best_retention_map: Dict[float, RunResult] = {} + for retention, rows in ranked_sorted.items(): + best_retention_map[retention] = rows[0] + + default_baseline = baseline_by_retention[baseline_retention_default] + default_rows = ranked_sorted[baseline_retention_default] + best_default = default_rows[0] + balanced_default = pick_balanced(default_rows, waste_cap=0.12) + + b_immediate = safe_ratio(default_baseline.immediate_play_count, default_baseline.total_show_requests) + + with report.open("w", encoding="utf-8") as f: + f.write("# TapADN 智能预加载策略验收报告(含随机偏好机器人 + 网络环境)\n\n") + f.write("## 仿真前提\n") + f.write("- 模型定位:IAA 场景中 3 类广告位(激励/开屏/插屏)统一参与策略决策。\n") + f.write("- 次留默认验收基线:35%\n") + f.write(f"- 随机机器人数量:{robot_count}\n") + f.write("- 场景进入->展示请求->预加载决策->展示时延为核心链路。\n") + f.write("- 每次样本运行前先生成一批“偏好机器人”,再在其上分别运行:纯手动(无 smart)与智能预加载两种模式。\n") + f.write("- 预加载触发后在 cooldown 内有效一次,不命中将视作普通 load。\n") + f.write("- `Immediate`:请求时已命中可直接播放的占比(值越高越好)\n") + f.write("- `Waste`:预加载后在 cooldown 内未被消费即失效的比例(值越低越好)\n") + f.write("- 网络环境:Wi-Fi / 4G / 3G / 2G 按机器人偏好加权采样,逐回合独立变化。\n\n") + + f.write("## 机器人与网络设置\n") + f.write("- 机器人类型:随机采样以下偏好族(reward_heavy、interstitial_focus、splash_driven、balanced、churn_sensitive、network_bound)。\n") + f.write("- 每类机器人具有独立的场景进入偏好、请求偏好、fill 成功倍率、加载时延倍率和留存倍率。\n") + f.write("- 网络环境以会话粒度采样,低网速会同步影响网络请求率、fill 成功率和加载耗时。\n\n") + + f.write("## 参数扫描范围\n") + f.write("- Threshold: `0.20~0.90` 步长 0.05\n") + f.write("- Cooldown: `30,60,90,120,180,240,300`\n") + f.write("- 次留:`20%,25%,30%,35%,40%,50%,60%`\n\n") + + f.write("## 基线对照\n") + f.write(f"- 次留 35% 基线(纯手动,无 smart)即时命中率:{b_immediate:.2%}\n") + f.write(f"- 次留 35% 基线平均时延:{default_baseline.avg_wait_ms:.0f} ms(p95 {default_baseline.p95_wait_ms:.0f})\n") + f.write(f"- 次留 35% 建议起点(当前模型):`threshold={best_default.threshold:.2f}, cooldown={best_default.cooldown_seconds}s`\n") + f.write( + f" - 对比基线即时命中提升:`{safe_ratio(best_default.immediate_play_count, best_default.total_show_requests)-b_immediate:.2%}`\n" + ) + f.write(f" - 对比基线时延变化:`{best_default.avg_wait_ms - default_baseline.avg_wait_ms:.0f} ms`\n") + if balanced_default is not None: + f.write("- 平衡候选(Waste<=12%):\n") + f.write( + f" - threshold={balanced_default.threshold:.2f}, cd={balanced_default.cooldown_seconds}s," + f"Immediate {safe_ratio(balanced_default.immediate_play_count, balanced_default.total_show_requests):.2%}," + f"Waste {balanced_default.wasted_ratio:.2%}\n" + ) + + f.write("\n## 最优/最差(次留=35%)\n") + f.write("| 排名 | Threshold | Cooldown | 即时命中率 | 平均等待 | P95等待 | 浪费率 | 播放成功率 |\n") + f.write("|---|---:|---:|---:|---:|---:|---:|---:|\n") + f.writelines([line + "\n" for line in format_table_rows(default_rows)]) + f.write("\n### 最差 8 组\n") + f.write("| 排名 | Threshold | Cooldown | 即时命中率 | 平均等待 | P95等待 | 浪费率 | 播放成功率 |\n") + f.write("|---|---:|---:|---:|---:|---:|---:|---:|\n") + f.writelines([line + "\n" for line in format_table_rows(list(reversed(default_rows)), count=8)]) + + f.write("\n## 与纯手动模式对比(次留35%)\n") + best_35 = best_retention_map[0.35] + f.write("- 纯手动:") + f.write(f"Immediate `{safe_ratio(default_baseline.immediate_play_count, default_baseline.total_show_requests):.2%}`,") + f.write(f"AvgWait `{default_baseline.avg_wait_ms:.0f}`ms,Waste `{default_baseline.wasted_ratio:.2%}`。\n") + f.write("- smart 最优:") + f.write(f"阈值 `{best_35.threshold:.2f}`,cd `{best_35.cooldown_seconds}`,") + f.write(f"Immediate `{safe_ratio(best_35.immediate_play_count, best_35.total_show_requests):.2%}`,") + f.write(f"AvgWait `{best_35.avg_wait_ms:.0f}`ms,Waste `{best_35.wasted_ratio:.2%}`。\n") + f.write(f"- 增益:`{safe_ratio(best_35.immediate_play_count, best_35.total_show_requests)-b_immediate:.2%}`。 \n\n") + + f.write("### 网络分层对比(次留35%)\n") + for idx, network_name in enumerate(NETWORK_LABELS): + candidates = [r for r in results if r.retention == baseline_retention_default] + best_net = max( + candidates, + key=lambda item: safe_ratio(item.network_immediate_show[idx], item.network_show_requests[idx]), + ) + manual_immediate = safe_ratio(default_baseline.network_immediate_show[idx], default_baseline.network_show_requests[idx]) + manual_wait = default_baseline.network_avg_wait_ms[idx] + smart_immediate = safe_ratio(best_net.network_immediate_show[idx], best_net.network_show_requests[idx]) + smart_wait = best_net.network_avg_wait_ms[idx] + f.write( + f"- {network_name.upper()}:手动即时 `{manual_immediate:.2%}` / 等待 `{manual_wait:.0f}ms`;" + ) + f.write( + f"智能(`threshold={best_net.threshold:.2f}, cd={best_net.cooldown_seconds}s`)即时 `{smart_immediate:.2%}` / 等待 `{smart_wait:.0f}ms`;" + ) + f.write(f"提升 `{smart_immediate-manual_immediate:.2%}`。\n") + + f.write("## 次留敏感度(35%基线)\n") + for retention in sorted(ranked_sorted.keys()): + best = ranked_sorted[retention][0] + worst = ranked_sorted[retention][-1] + b = baseline_by_retention[retention] + f.write( + f"- 次留 {retention:.0%}:手动基线时延 {b.avg_wait_ms:.0f}ms,智能最佳 `threshold={best.threshold:.2f}, cd={best.cooldown_seconds}s`," + ) + f.write( + f"最佳 Immediate {safe_ratio(best.immediate_play_count, best.total_show_requests):.2%},Waste {best.wasted_ratio:.2%};" + ) + f.write( + f"最差 `threshold={worst.threshold:.2f}, cd={worst.cooldown_seconds}s`," + f"Immediate {safe_ratio(worst.immediate_play_count, worst.total_show_requests):.2%},Waste {worst.wasted_ratio:.2%}。\n" + ) + + f.write("\n## 交叉参数观察\n") + f.write("- 在同一保留率下,阈值下调能显著提高 `Immediate`,但通常也抬高 `Waste`。\n") + f.write("- cooldown 拉长可降低 waste(减少重复预加载/空耗),但可能提高用户等待。\n") + f.write("- 在弱网(尤其低分配机器人更多时)场景,建议提高 waste 上限约束后再考虑 lower threshold。\n\n") + + f.write("## 图表示例(输出文件)\n") + for p in sorted(out_dir.glob("*.png")): + f.write(f"- `{p.name}`\n") + f.write(f" ![]({p.name})\n\n") + + f.write("## 验收结论\n") + if balanced_default is not None: + f.write( + f"- 建议首轮灰度点:`threshold={balanced_default.threshold:.2f}`, `cooldown={balanced_default.cooldown_seconds}s`(兼顾即时性与 waste)。\n" + ) + else: + f.write(f"- 建议首轮灰度点:`threshold={best_default.threshold:.2f}`, `cooldown={best_default.cooldown_seconds}s`(当前样本未出现满足 12% Waste 约束的点)。\n") + f.write(f"- 次留 35% 下智能策略最佳立即命中来自 `threshold={best_default.threshold:.2f}, cd={best_default.cooldown_seconds}s`,即时率 `{safe_ratio(best_default.immediate_play_count, best_default.total_show_requests):.2%}`,Waste `{best_default.wasted_ratio:.2%}`。\n") + f.write("- 建议将 `smart_preload` 配置作为实验变量:先以纯手动为对照,再按次留分层和网络监控逐步放量。\n") + + return report + + +def main() -> None: + parser = argparse.ArgumentParser(description="TapADN SmartLoad sensitivity simulation") + parser.add_argument("--users", type=int, default=3000) + parser.add_argument("--policy-json", default=str(Path("Assets/Tapadn_Adapter/Runtime/Resources/TapadnSmartLoadPolicy_Default.json"))) + parser.add_argument("--out-dir", default="Tools/SmartLoadSensitivity/output") + parser.add_argument("--robot-seed", type=int, default=20260604) + parser.add_argument("--base-seed", type=int, default=1000) + parser.add_argument("--include-line-mode", action="store_true") + args = parser.parse_args() + + policy_path = Path(args.policy_json) + out_dir = Path(args.out_dir) + out_dir.mkdir(parents=True, exist_ok=True) + + profiles = [ + SceneProfile( + ad_type=0, + scene="reward", + true_request_probability=0.42, + fill_success_probability=0.86, + mean_load_ms=2100.0, + per_session_enter_probability=0.55, + ), + SceneProfile( + ad_type=2, + scene="interstitial", + true_request_probability=0.56, + fill_success_probability=0.82, + mean_load_ms=1750.0, + per_session_enter_probability=0.72, + ), + SceneProfile( + ad_type=1, + scene="splash", + true_request_probability=0.96, + fill_success_probability=0.78, + mean_load_ms=1350.0, + per_session_enter_probability=1.0, + ), + ] + + robots = generate_robot_profiles(args.users, args.robot_seed) + policy_map = parse_policy_config(policy_path) + threshold_grid = [round(0.20 + i * 0.05, 2) for i in range(0, 15)] + cooldown_grid = [30, 60, 90, 120, 180, 240, 300] + retention_rates = [0.20, 0.25, 0.30, 0.35, 0.40, 0.50, 0.60] + + results, baseline = run_sensitivity( + profiles=profiles, + policy_map=policy_map, + robots=robots, + threshold_grid=threshold_grid, + cooldown_grid=cooldown_grid, + retention_rates=retention_rates, + out_dir=out_dir, + mode_manual_seed=args.base_seed, + ) + + draw_heatmaps(results, 0.35, out_dir) + draw_heatmaps(results, 0.20, out_dir) + draw_heatmaps(results, 0.60, out_dir) + draw_retention_lines(results, out_dir) + report = build_report(results, baseline, out_dir, robot_count=len(robots)) + + print(f"[SmartLoadSimulation] generated outputs in: {out_dir}") + print(f"[SmartLoadSimulation] report: {report}") + + +if __name__ == "__main__": + main()