CoolFace
Modelpublic

bobox/DeBERTa3-s-CustomPoolin-toytest2-step1

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes21downloads
Model Card

SentenceTransformer based on microsoft/deberta-v3-small

This is a sentence-transformers model finetuned from microsoft/deberta-v3-small. It maps sentences & paragraphs to a 768-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.

Model Details

Model Description

  • Model Type: Sentence Transformer
  • Base model: microsoft/deberta-v3-small <!-- at revision a36c739020e01763fe789b4b85e2df55d6180012 -->
  • Maximum Sequence Length: 512 tokens
  • Output Dimensionality: 768 tokens
  • Similarity Function: Cosine Similarity <!-- - Training Dataset: Unknown --> <!-- - Language: Unknown --> <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: DebertaV2Model 
  (1): AdvancedWeightedPooling(
    (alpha_dropout_layer): Dropout(p=0.01, inplace=False)
    (gate_dropout_layer): Dropout(p=0.05, inplace=False)
    (linear_cls_pj): Linear(in_features=768, out_features=768, bias=True)
    (linear_cls_Qpj): Linear(in_features=768, out_features=768, bias=True)
    (linear_mean_pj): Linear(in_features=768, out_features=768, bias=True)
    (linear_attnOut): Linear(in_features=768, out_features=768, bias=True)
    (mha): MultiheadAttention(
      (out_proj): NonDynamicallyQuantizableLinear(in_features=768, out_features=768, bias=True)
    )
    (layernorm_output): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
    (layernorm_weightedPooing): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
    (layernorm_pjCls): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
    (layernorm_pjMean): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
    (layernorm_attnOut): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
  )
)

Usage

Direct Usage (Sentence Transformers)

First install the Sentence Transformers library:

bash
pip install -U sentence-transformers

Then you can load this model and run inference.

python
from sentence_transformers import SentenceTransformer

# Download from the 🤗 Hub
model = SentenceTransformer("bobox/DeBERTa3-s-CustomPoolin-toytest2-step1")
# Run inference
sentences = [
    'What do outdoor plants require to survive?',
    'a plants require water for survival. If no rain or watering, the plant dies. \n Outdoor plants require rain to survive.',
    "(Vegan) soups are nutritious. In addition to them being easy to digest, most the time, soups are made from nutrient-dense ingredients like herbs, spices, vegetables, and beans. Because the soup is full of those nutrients AND that it's easy to digest, your body is able to absorb more of those nutrients into your system.",
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]

<!--

Direct Usage (Transformers)

<details><summary>Click to see the direct usage in Transformers</summary>

</details> -->

<!--

Downstream Usage (Sentence Transformers)

You can finetune this model on your own dataset.

<details><summary>Click to expand</summary>

</details> -->

<!--

Out-of-Scope Use

List how the model may foreseeably be misused and address what users ought not to do with the model. -->

Evaluation

Metrics

Semantic Similarity
MetricValue
pearson_cosine0.6714
spearman_cosine0.6764
pearson_manhattan0.6861
spearman_manhattan0.6797
pearson_euclidean0.6827
spearman_euclidean0.6765
pearson_dot0.6697
spearman_dot0.673
pearson_max0.6861
spearman_max0.6797
Binary Classification
MetricValue
cosine_accuracy0.6934
cosineaccuracythreshold0.9158
cosine_f10.5541
cosinef1threshold0.8233
cosine_precision0.4429
cosine_recall0.7399
cosine_ap0.5145
dot_accuracy0.6914
dotaccuracythreshold702.5236
dot_f10.5553
dotf1threshold628.9829
dot_precision0.4444
dot_recall0.7399
dot_ap0.5124
manhattan_accuracy0.6895
manhattanaccuracythreshold229.2917
manhattan_f10.5632
manhattanf1threshold344.488
manhattan_precision0.4568
manhattan_recall0.7341
manhattan_ap0.5121
euclidean_accuracy0.6973
euclideanaccuracythreshold11.3543
euclidean_f10.5541
euclideanf1threshold16.4212
euclidean_precision0.4429
euclidean_recall0.7399
euclidean_ap0.5143
max_accuracy0.6973
maxaccuracythreshold702.5236
max_f10.5632
maxf1threshold628.9829
max_precision0.4568
max_recall0.7399
max_ap0.5145
Binary Classification
MetricValue
cosine_accuracy0.6797
cosineaccuracythreshold0.7822
cosine_f10.6888
cosinef1threshold0.7401
cosine_precision0.5863
cosine_recall0.8347
cosine_ap0.7034
dot_accuracy0.6719
dotaccuracythreshold591.129
dot_f10.6866
dotf1threshold550.0814
dot_precision0.564
dot_recall0.8771
dot_ap0.7007
manhattan_accuracy0.6895
manhattanaccuracythreshold382.2354
manhattan_f10.6897
manhattanf1threshold423.2154
manhattan_precision0.5814
manhattan_recall0.8475
manhattan_ap0.71
euclidean_accuracy0.6816
euclideanaccuracythreshold18.1543
euclidean_f10.6888
euclideanf1threshold19.9148
euclidean_precision0.5863
euclidean_recall0.8347
euclidean_ap0.7041
max_accuracy0.6895
maxaccuracythreshold591.129
max_f10.6897
maxf1threshold550.0814
max_precision0.5863
max_recall0.8771
max_ap0.71

<!--

Bias, Risks and Limitations

What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model. -->

<!--

Recommendations

What are recommendations with respect to the foreseeable issues? For example, filtering explicit content. -->

Training Details

Training Dataset

Unnamed Dataset
  • Size: 32,500 training samples
  • Columns: <code>sentence1</code> and <code>sentence2</code>
  • Approximate statistics based on the first 1000 samples: | | sentence1 | sentence2 | |:--------|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------| | type | string | string | | details | <ul><li>min: 4 tokens</li><li>mean: 29.43 tokens</li><li>max: 400 tokens</li></ul> | <ul><li>min: 2 tokens</li><li>mean: 57.02 tokens</li><li>max: 389 tokens</li></ul> |
  • Samples: | sentence1 | sentence2 | |:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | <code>What is the chemical symbol for Silver?</code> | <code>Chemical Elements.com - Silver (Ag) Bentor, Yinon. Chemical Element.com - Silver. <http://www.chemicalelements.com/elements/ag.html>. For more information about citing online sources, please visit the MLA's Website . This page was created by Yinon Bentor. Use of this web site is restricted by this site's license agreement . Copyright © 1996-2012 Yinon Bentor. All Rights Reserved.</code> | | <code>e.&#9;in solids the atoms are closely locked in position and can only vibrate, in liquids the atoms and molecules are more loosely connected and can collide with and move past one another, while in gases the atoms or molecules are free to move independently, colliding frequently.</code> | <code>Within a substance, atoms that collide frequently and move independently of one another are most likely in a gas</code> | | <code>Keanu Neal was born in 1995 .</code> | <code>Keanu Neal ( born July 26 , 1995 ) is an American football safety for the Atlanta Falcons of the National Football League ( NFL ) .</code> |
  • Loss: <code>GISTEmbedLoss</code> with these parameters:
json
  {'guide': SentenceTransformer(
    (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: BertModel 
    (1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
    (2): Normalize()
  ), 'temperature': 0.025}

Evaluation Dataset

Unnamed Dataset
  • Size: 1,664 evaluation samples
  • Columns: <code>sentence1</code> and <code>sentence2</code>
  • Approximate statistics based on the first 1000 samples: | | sentence1 | sentence2 | |:--------|:----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------| | type | string | string | | details | <ul><li>min: 4 tokens</li><li>mean: 28.9 tokens</li><li>max: 348 tokens</li></ul> | <ul><li>min: 2 tokens</li><li>mean: 57.31 tokens</li><li>max: 450 tokens</li></ul> |
  • Samples: | sentence1 | sentence2 | |:--------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | <code>Gene expression is regulated primarily at the what level?</code> | <code>Gene expression is regulated primarily at the transcriptional level.</code> | | <code>Diffusion Diffusion is a process where atoms or molecules move from areas of high concentration to areas of low concentration.</code> | <code>Diffusion is the process in which a substance naturally moves from an area of higher to lower concentration.</code> | | <code>In which James Bond film did Sean Connery wear the Bell Rocket Belt (Jet Pack)?</code> | <code>Jet Pack - James Bond Gadgets 125lbs Summary James Bond used the Jetpack in 1965's Thunderball, to escape from gunmen after killing a SPECTRE agent. The Jetpack In the 1965 movie Thunderball, James Bond (Sean Connery) uses Q's Jetpack to escape from two gunmen after killing Jacques Bouvar, SPECTRE Agent No. 6. It was also used in the Thunderball movie posters, being the "Look Up" part of the "Look Up! Look Down! Look Out!" tagline. The Jetpack returned in the 2002 movie Die Another Day, in the Q scene that showcased many other classic gadgets. The Jetpack is a very popular Bond gadget and is a favorite among many fans due to its originality and uniqueness. The Bell Rocket Belt The Jetpack is actually a Bell Rocket Belt, a fully functional rocket pack device. It was designed for use in the army, but was rejected because of its short flying time of 21-22 seconds. Powered by hydrogen peroxide, it could fly about 250m and reach a maximum altitude of 18m, going 55km/h. Despite its impracticality in the real world, the Jetpack made a spectacular debut in Thunderball. Although Sean Connery is seen in the takeoff and landings, the main flight was piloted by Gordon Yeager and Bill Suitor.</code> |
  • Loss: <code>GISTEmbedLoss</code> with these parameters:
json
  {'guide': SentenceTransformer(
    (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: BertModel 
    (1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
    (2): Normalize()
  ), 'temperature': 0.025}

Training Hyperparameters

Non-Default Hyperparameters
  • eval_strategy: steps
  • per_device_train_batch_size: 32
  • per_device_eval_batch_size: 256
  • lr_scheduler_type: cosinewithmin_lr
  • lr_scheduler_kwargs: {'numcycles': 0.5, 'minlr': 3.3333333333333337e-06}
  • warmup_ratio: 0.33
  • save_safetensors: False
  • fp16: True
  • push_to_hub: True
  • hub_model_id: bobox/DeBERTa3-s-CustomPoolin-toytest2-step1-checkpoints-tmp
  • hub_strategy: all_checkpoints
  • batch_sampler: no_duplicates
All Hyperparameters

<details><summary>Click to expand</summary>

  • overwrite_output_dir: False
  • do_predict: False
  • eval_strategy: steps
  • prediction_loss_only: True
  • per_device_train_batch_size: 32
  • per_device_eval_batch_size: 256
  • per_gpu_train_batch_size: None
  • per_gpu_eval_batch_size: None
  • gradient_accumulation_steps: 1
  • eval_accumulation_steps: None
  • torch_empty_cache_steps: None
  • learning_rate: 5e-05
  • weight_decay: 0.0
  • adam_beta1: 0.9
  • adam_beta2: 0.999
  • adam_epsilon: 1e-08
  • max_grad_norm: 1.0
  • num_train_epochs: 3
  • max_steps: -1
  • lr_scheduler_type: cosinewithmin_lr
  • lr_scheduler_kwargs: {'numcycles': 0.5, 'minlr': 3.3333333333333337e-06}
  • warmup_ratio: 0.33
  • warmup_steps: 0
  • log_level: passive
  • log_level_replica: warning
  • log_on_each_node: True
  • logging_nan_inf_filter: True
  • save_safetensors: False
  • save_on_each_node: False
  • save_only_model: False
  • restore_callback_states_from_checkpoint: False
  • no_cuda: False
  • use_cpu: False
  • use_mps_device: False
  • seed: 42
  • data_seed: None
  • jit_mode_eval: False
  • use_ipex: False
  • bf16: False
  • fp16: True
  • fp16_opt_level: O1
  • half_precision_backend: auto
  • bf16_full_eval: False
  • fp16_full_eval: False
  • tf32: None
  • local_rank: 0
  • ddp_backend: None
  • tpu_num_cores: None
  • tpu_metrics_debug: False
  • debug: []
  • dataloader_drop_last: False
  • dataloader_num_workers: 0
  • dataloader_prefetch_factor: None
  • past_index: -1
  • disable_tqdm: False
  • remove_unused_columns: True
  • label_names: None
  • load_best_model_at_end: False
  • ignore_data_skip: False
  • fsdp: []
  • fsdp_min_num_params: 0
  • fsdp_config: {'minnumparams': 0, 'xla': False, 'xlafsdpv2': False, 'xlafsdpgrad_ckpt': False}
  • fsdp_transformer_layer_cls_to_wrap: None
  • accelerator_config: {'splitbatches': False, 'dispatchbatches': None, 'evenbatches': True, 'useseedablesampler': True, 'nonblocking': False, 'gradientaccumulationkwargs': None}
  • deepspeed: None
  • label_smoothing_factor: 0.0
  • optim: adamw_torch
  • optim_args: None
  • adafactor: False
  • group_by_length: False
  • length_column_name: length
  • ddp_find_unused_parameters: None
  • ddp_bucket_cap_mb: None
  • ddp_broadcast_buffers: False
  • dataloader_pin_memory: True
  • dataloader_persistent_workers: False
  • skip_memory_metrics: True
  • use_legacy_prediction_loop: False
  • push_to_hub: True
  • resume_from_checkpoint: None
  • hub_model_id: bobox/DeBERTa3-s-CustomPoolin-toytest2-step1-checkpoints-tmp
  • hub_strategy: all_checkpoints
  • hub_private_repo: False
  • hub_always_push: False
  • gradient_checkpointing: False
  • gradient_checkpointing_kwargs: None
  • include_inputs_for_metrics: False
  • eval_do_concat_batches: True
  • fp16_backend: auto
  • push_to_hub_model_id: None
  • push_to_hub_organization: None
  • mp_parameters:
  • auto_find_batch_size: False
  • full_determinism: False
  • torchdynamo: None
  • ray_scope: last
  • ddp_timeout: 1800
  • torch_compile: False
  • torch_compile_backend: None
  • torch_compile_mode: None
  • dispatch_batches: None
  • split_batches: None
  • include_tokens_per_second: False
  • include_num_input_tokens_seen: False
  • neftune_noise_alpha: None
  • optim_target_modules: None
  • batch_eval_metrics: False
  • eval_on_start: False
  • eval_use_gather_object: False
  • batch_sampler: no_duplicates
  • multi_dataset_batch_sampler: proportional

</details>

Training Logs

<details><summary>Click to expand</summary>

EpochStepTraining LossValidation Losssts-test_spearman_cosineallNLI-dev_max_apQnli-dev_max_ap
0.0010118.7427----
0.0020211.6434----
0.003037.4859----
0.003947.3779----
0.0049517.5878----
0.005968.4984----
0.006978.375----
0.007987.3241----
0.0089910.3081----
0.0098108.5363----
0.01081117.2241----
0.0118127.575----
0.0128139.1905----
0.01381411.7727----
0.0148159.5827----
0.0157167.4432----
0.0167177.1573----
0.01771819.8016----
0.01871919.5118----
0.0197207.9062----
0.0207218.6791----
0.0217227.7318----
0.0226237.9319----
0.0236247.192----
0.02462515.5799----
0.0256269.7859----
0.0266279.9259----
0.0276286.3076----
0.0285297.4471----
0.0295307.1246----
0.0305316.5505----
0.03153218.5194----
0.0325337.0747----
0.03353414.9456----
0.0344356.608----
0.0354368.4672----
0.0364376.8853----
0.03743813.6063----
0.0384397.2625----
0.0394406.2234----
0.04044114.9675----
0.0413426.6038----
0.04234313.1173----
0.04334416.6992----
0.0443456.4828----
0.0453465.9815----
0.0463476.1738----
0.0472487.134----
0.0482499.3933----
0.04925010.8085----
0.05025111.4172----
0.0512527.3397----
0.0522535.8851----
0.0531546.8105----
0.0541555.3637----
0.0551566.2628----
0.0561576.0039----
0.0571587.5859----
0.0581596.0802----
0.0591605.5822----
0.0600615.8773----
0.0610626.0814----
0.0620635.4483----
0.06306410.2506----
0.06406510.5976----
0.0650666.9942----
0.0659675.4813----
0.0669687.045----
0.0679695.8549----
0.0689708.8514----
0.0699715.2557----
0.0709725.1181----
0.0719735.5331----
0.0728745.5944----
0.0738754.6332----
0.0748764.9532----
0.0758775.055----
0.0768784.5005----
0.0778795.1997----
0.0787805.1479----
0.0797815.1777----
0.0807825.5565----
0.0817834.6999----
0.0827845.0681----
0.0837855.2208----
0.0846864.56----
0.0856874.6793----
0.0866884.4611----
0.0876899.623----
0.0886905.0316----
0.0896914.1771----
0.0906924.9652----
0.0915938.7432----
0.0925944.6234----
0.0935954.4016----
0.0945964.9903----
0.0955974.5606----
0.0965984.9534----
0.0974998.1838----
0.09841004.9736----
0.09941014.4733----
0.10041024.9725----
0.10141034.5861----
0.10241047.7634----
0.10331054.9915----
0.10431065.1391----
0.10531075.0157----
0.10631084.0982----
0.10731094.2178----
0.10831104.6193----
0.10931114.7638----
0.11021124.1207----
0.11121135.2034----
0.11221145.0693----
0.11321154.7895----
0.11421164.9486----
0.11521174.6552----
0.11611184.4555----
0.11711194.8977----
0.11811207.6836----
0.11911214.8106----
0.12011224.9958----
0.12111234.4585----
0.12201247.5559----
0.12301254.2636----
0.12401264.0436----
0.1251274.7416----
0.12601284.2215----
0.12701296.3561----
0.12801306.2299----
0.12891314.3492----
0.12991324.0216----
0.13091336.963----
0.13191343.9474----
0.13291354.3437----
0.13391363.6267----
0.13481373.9896----
0.13581384.8156----
0.13681394.9751----
0.13781404.4144----
0.13881414.7213----
0.13981426.6081----
0.14071434.2929----
0.14171444.2537----
0.14271454.0647----
0.14371463.937----
0.14471475.6582----
0.14571484.2648----
0.14671494.4429----
0.14761503.6197----
0.14861513.7953----
0.14961523.8175----
0.15061534.51373.32100.18060.39190.5750
0.15161544.3528----
0.15261553.6573----
0.15351563.5248----
0.15451573.9275----
0.15551587.1868----
0.15651593.6294----
0.15751603.6886----
0.15851613.1873----
0.15941626.1951----
0.16041633.9747----
0.16141647.004----
0.16241654.3221----
0.16341663.5963----
0.16441673.1988----
0.16541683.8236----
0.16631693.5063----
0.16731705.9843----
0.16831715.884----
0.16931724.1317----
0.17031733.9255----
0.17131744.1121----
0.17221753.7748----
0.17321765.1602----
0.17421774.8807----
0.17521783.4643----
0.17621793.4937----
0.17721805.2731----
0.17811814.6416----
0.17911823.5226----
0.18011834.7794----
0.18111843.8504----
0.18211853.5391----
0.18311864.0291----
0.18411873.5606----
0.18501883.8957----
0.18601894.3657----
0.18701905.0173----
0.18801914.3915----
0.18901923.4613----
0.19001933.2005----
0.19091943.3986----
0.19191953.7937----
0.19291963.8981----
0.19391973.7051----
0.19491983.8028----
0.19591993.3294----
0.19692004.1252----
0.19782014.2564----
0.19882023.8258----
0.19982033.1025----
0.20082043.5038----
0.20182053.6021----
0.20282063.7637----
0.20372073.2563----
0.20472083.9323----
0.20572093.489----
0.20672103.6549----
0.20772113.1609----
0.20872123.2467----
0.20962133.4514----
0.21062143.4945----
0.21162153.5932----
0.21262163.2289----
0.21362173.3279----
0.21462183.8141----
0.21562193.1171----
0.21652203.6287----
0.21752213.8517----
0.21852223.3836----
0.21952233.425----
0.22052243.6246----
0.22152253.5682----
0.22242263.3034----
0.22342273.9251----
0.22442283.146----
0.22542293.8859----
0.22642303.2977----
0.22742313.2664----
0.22832323.1275----
0.22932333.2408----
0.23032342.907----
0.23132352.9178----
0.23232363.324----
0.23332372.9172----
0.23432383.4324----
0.23522394.0563----
0.23622402.8736----
0.23722414.7174----
0.23822423.2025----
0.23922432.7835----
0.24022444.3158----
0.24112452.8619----
0.24212462.5156----
0.24312473.2144----
0.24412483.5927----
0.24512492.6059----
0.24612502.9758----
0.24702513.9214----
0.24802523.2892----
0.24902532.9503----
0.252542.5969----
0.25102552.9908----
0.25202562.8995----
0.25302573.124----
0.25392583.1197----
0.25492592.3073----
0.25592602.8441----
0.25692611.9788----
0.25792622.1442----
0.25892634.9015----
0.25982642.7866----
0.26082652.4588----
0.26182662.3909----
0.26282674.7394----
0.26382683.1581----
0.26482693.973----
0.26572704.1565----
0.26672712.5183----
0.26772723.614----
0.26872732.6858----
0.26972743.1182----
0.27072752.9628----
0.27172762.8376----
0.27262772.7858----
0.27362782.1037----
0.27462793.0436----
0.27562803.4125----
0.27662812.5027----
0.27762822.7922----
0.27852832.9762----
0.27952842.6458----
0.28052852.962----
0.28152862.5439----
0.28252872.8437----
0.28352883.2134----
0.28442892.5655----
0.28542902.9465----
0.28642912.4653----
0.28742923.1467----
0.28842932.6551----
0.28942942.5098----
0.29042952.5988----
0.29132963.778----
0.29232972.6257----
0.29332982.5142----
0.29432992.3182----
0.29533003.3505----
0.29633012.9615----
0.29723022.9136----
0.29823032.6192----
0.29923042.3255----
0.30023052.7168----
0.30123062.91372.42800.25070.41030.5948
0.30223072.6681----
0.30313082.7219----
0.30413092.4057----
0.30513102.7402----
0.30613112.5512----
0.30713122.8553----
0.30813132.598----
0.30913142.6186----
0.31003152.3678----
0.31103162.886----
0.31203172.1738----
0.31303182.6619----
0.31403192.1818----
0.31503203.0407----
0.31593212.464----
0.31693222.7415----
0.31793232.7455----
0.31893242.4061----
0.31993252.0491----
0.32093263.3097----
0.32193272.3587----
0.32283281.9493----
0.32383292.5399----
0.32483302.3569----
0.32583311.9024----
0.32683322.3513----
0.32783332.2488----
0.32873341.9141----
0.32973352.7065----
0.33073362.139----
0.33173372.2345----
0.33273382.3612----
0.33373392.1413----
0.33463402.2214----
0.33563412.9006----
0.33663422.417----
0.33763432.2348----
0.33863442.4369----
0.33963452.7623----
0.34063462.6741----
0.34153473.0515----
0.34253482.4952----
0.34353492.1265----
0.34453502.0359----
0.34553513.107----
0.34653522.116----
0.34743532.1996----
0.34843542.9312----
0.34943552.2885----
0.35043563.0302----
0.35143572.2163----
0.35243582.8304----
0.35333592.2715----
0.35433602.3388----
0.35533612.2098----
0.35633622.0911----
0.35733632.3582----
0.35833641.8605----
0.35933652.2252----
0.36023662.2018----
0.36123672.1099----
0.36223682.1323----
0.36323692.4203----
0.36423702.7768----
0.36523712.3359----
0.36613722.3773----
0.36713732.4424----
0.36813741.9478----
0.36913751.6047----
0.37013761.7384----
0.37113772.1147----
0.37203781.8449----
0.37303792.6009----
0.37403802.4051----
0.3753812.3035----
0.37603821.8955----
0.37703832.287----
0.37803841.9123----
0.37893851.9369----
0.37993862.1367----
0.38093871.9437----
0.38193882.3873----
0.38293891.7463----
0.38393902.8438----
0.38483912.4875----
0.38583922.0798----
0.38683932.2242----
0.38783941.8714----
0.38883951.5893----
0.38983961.5633----
0.39073971.8645----
0.39173981.8928----
0.39273991.3352----
0.39374003.3052----
0.39474011.6256----
0.39574021.8856----
0.39674031.8355----
0.39764041.8944----
0.39864051.7636----
0.39964062.8097----
0.40064071.9121----
0.40164081.9233----
0.40264091.543----
0.40354101.7207----
0.40454111.6344----
0.40554122.4177----
0.40654132.2995----
0.40754141.7681----
0.40854151.6562----
0.40944161.8896----
0.41044172.0671----
0.41144181.6097----
0.41244192.8126----
0.41344201.7028----
0.41444211.526----
0.41544222.5029----
0.41634231.7668----
0.41734241.9065----
0.41834251.6645----
0.41934261.8075----
0.42034271.872----
0.42134282.0487----
0.42224291.535----
0.42324301.8046----
0.42424312.2561----
0.42524322.0306----
0.42624332.1311----
0.42724342.3013----
0.42814351.6402----
0.42914361.9572----
0.43014371.6364----
0.43114381.446----
0.43214391.6009----
0.43314401.9469----
0.43414412.1951----
0.43504421.675----
0.43604431.4182----
0.43704442.2317----
0.43804452.1076----
0.43904461.6691----
0.44004471.6909----
0.44094483.1056----
0.44194491.4069----
0.44294502.1639----
0.44394511.5531----
0.44494522.1895----
0.44594531.9384----
0.44694541.7761----
0.44784552.8286----
0.44884562.4877----
0.44984571.7636----
0.45084581.1849----
0.45184591.83311.98540.32610.43270.6511
0.45284602.0416----
0.45374612.1907----
0.45474621.7478----
0.45574631.9----
0.45674641.6876----
0.45774652.0035----
0.45874661.4127----
0.45964671.5593----
0.46064681.7----
0.46164691.5157----
0.46264701.6554----
0.46364711.7404----
0.46464722.1432----
0.46564731.7322----
0.46654741.7281----
0.46754751.5107----
0.46854761.779----
0.46954771.325----
0.47054781.073----
0.47154791.864----
0.47244802.3645----
0.47344811.181----
0.47444821.4562----
0.47544831.3105----
0.47644842.8012----
0.47744852.0114----
0.47834861.6307----
0.47934872.7733----
0.48034881.8211----
0.48134891.574----
0.48234901.9713----
0.48334911.2774----
0.48434922.58----
0.48524932.0594----
0.48624941.5857----
0.48724952.0028----
0.48824961.8863----
0.48924971.5171----
0.49024981.9355----
0.49114992.0675----
0.49215001.6017----
0.49315011.4089----
0.49415021.3836----
0.49515031.6033----
0.49615041.0891----
0.49705051.7119----
0.49805061.3685----
0.49905071.4252----
0.55081.5538----
0.50105091.7513----
0.50205101.1831----
0.50305111.7767----
0.50395121.4324----
0.50495132.1672----
0.50595141.6348----
0.50695151.7285----
0.50795162.0186----
0.50895171.382----
0.50985181.4509----
0.51085191.1043----
0.51185201.3322----
0.51285211.3267----
0.51385221.3639----
0.51485231.203----
0.51575241.8583----
0.51675252.267----
0.51775261.2935----
0.51875271.7431----
0.51975281.8484----
0.52075291.5626----
0.52175302.2645----
0.52265311.4313----
0.52365321.8204----
0.52465331.5659----
0.52565341.2689----
0.52665351.8193----
0.52765362.2902----
0.52855371.6936----
0.52955381.7305----
0.53055391.4449----
0.53155401.5594----
0.53255411.9678----
0.53355422.0327----
0.53445432.0456----
0.53545442.0452----
0.53645451.9435----
0.53745461.8963----
0.53845471.9536----
0.53945481.0665----
0.54045491.8067----
0.54135501.6227----
0.54235511.687----
0.54335521.5937----
0.54435530.9216----
0.54535541.3895----
0.54635551.7863----
0.54725561.2574----
0.54825572.108----
0.54925581.2782----
0.55025591.4959----
0.55125601.9191----
0.55225612.0049----
0.55315621.2511----
0.55415631.3912----
0.55515641.371----
0.55615651.6155----
0.55715661.4625----
0.55815670.86----
0.55915681.5753----
0.56005691.6126----
0.56105701.3171----
0.56205711.9378----
0.56305721.2736----
0.56405731.2368----
0.56505741.1005----
0.56595751.1765----
0.56695761.3557----
0.56795771.3224----
0.56895781.7914----
0.56995791.0633----
0.57095801.3624----
0.57195810.9804----
0.57285821.8246----
0.57385831.1806----
0.57485841.6243----
0.57585851.739----
0.57685861.2502----
0.57785871.6328----
0.57875881.3618----
0.57975891.1535----
0.58075901.2214----
0.58175911.4884----
0.58275921.4029----
0.58375931.0542----
0.58465941.5848----
0.58565951.405----
0.58665961.6281----
0.58765971.5228----
0.58865981.8192----
0.58965991.2403----
0.59066001.9368----
0.59156011.6623----
0.59256021.495----
0.59356031.7079----
0.59456041.0651----
0.59556051.2121----
0.59656061.5385----
0.59746071.1015----
0.59846081.7596----
0.59946091.5597----
0.60046101.3254----
0.60146111.3595----
0.60246121.03261.63150.35970.44780.6598
0.60336131.4822----
0.60436140.9997----
0.60536151.4946----
0.60636161.3491----
0.60736171.2118----
0.60836181.6948----
0.60936192.0457----
0.61026201.2724----
0.61126211.2677----
0.61226221.6639----
0.61326231.139----
0.61426241.2424----
0.61526250.8214----
0.61616261.4398----
0.61716271.6008----
0.61816281.3225----
0.61916291.4452----
0.62016301.7723----
0.62116311.035----
0.62206321.6132----
0.62306331.4167----
0.62406341.1764----
0.6256351.0702----
0.62606361.3096----
0.62706371.4174----
0.62806381.8742----
0.62896391.3372----
0.62996401.4453----
0.63096410.6792----
0.63196421.2363----
0.63296431.2037----
0.63396441.105----
0.63486451.8319----
0.63586461.4261----
0.63686471.0431----
0.63786481.2132----
0.63886491.1464----
0.63986501.3076----
0.64076510.9162----
0.64176521.6739----
0.64276531.3627----
0.64376541.084----
0.64476550.8349----
0.64576561.5575----
0.64676570.7503----
0.64766581.5593----
0.64866591.1788----
0.64966601.5119----
0.65066611.1793----
0.65166621.1577----
0.65266631.4391----
0.65356641.2291----
0.65456651.3118----
0.65556661.1358----
0.65656671.814----
0.65756681.038----
0.65856691.2344----
0.65946701.1064----
0.66046711.8745----
0.66146721.8775----
0.66246731.2582----
0.66346741.3454----
0.66446751.2374----
0.66546760.7227----
0.66636771.2036----
0.66736781.5248----
0.66836791.0584----
0.66936800.7455----
0.67036811.0616----
0.67136821.1377----
0.67226831.7022----
0.67326841.4008----
0.67426851.4894----
0.67526861.5464----
0.67626871.5018----
0.67726881.5803----
0.67816891.5654----
0.67916901.2537----
0.68016911.4901----
0.68116920.9597----
0.68216931.5515----
0.68316941.1314----
0.68416951.2442----
0.68506961.5542----
0.68606970.7617----
0.68706981.4626----
0.68806990.6546----
0.68907001.1726----
0.69007010.7522----
0.69097021.6203----
0.69197031.0822----
0.69297040.9652----
0.69397050.9884----
0.69497061.3876----
0.69597071.1726----
0.69697081.1426----
0.69787091.2303----
0.69887101.3438----
0.69987111.3823----
0.70087121.5166----
0.70187131.4148----
0.70287140.9564----
0.70377151.1031----
0.70477161.6628----
0.70577171.3693----
0.70677181.0247----
0.70777190.7778----
0.70877201.3158----
0.70967211.5329----
0.71067221.2845----
0.71167230.7895----
0.71267240.9098----
0.71367250.7648----
0.71467261.0951----
0.71567271.1351----
0.71657281.0514----
0.71757291.2328----
0.71857301.0664----
0.71957311.1058----
0.72057320.6698----
0.72157331.1438----
0.72247341.0473----
0.72347351.5307----
0.72447361.2537----
0.72547370.7006----
0.72647380.8487----
0.72747391.193----
0.72837400.9711----
0.72937410.5139----
0.73037421.1185----
0.73137430.9982----
0.73237440.7987----
0.73337451.161----
0.73437460.9832----
0.73527471.6041----
0.73627481.1084----
0.73727491.1264----
0.73827500.6759----
0.73927511.5241----
0.74027521.6181----
0.74117531.1862----
0.74217541.0147----
0.74317551.0435----
0.74417560.9175----
0.74517571.5608----
0.74617581.7027----
0.74707590.9282----
0.74807600.8072----
0.74907611.13----
0.757621.153----
0.75107631.7723----
0.75207640.9833----
0.75307651.17661.38210.45830.47130.6741
0.75397661.2351----
0.75497670.9521----
0.75597681.1981----
0.75697690.8031----
0.75797701.2502----
0.75897710.9313----
0.75987720.8738----
0.76087731.0316----
0.76187741.0679----
0.76287751.0308----
0.76387761.0663----
0.76487771.3565----
0.76577780.9103----
0.76677791.477----
0.76777801.2526----
0.76877810.8647----
0.76977820.8498----
0.77077831.5257----
0.77177840.5493----
0.77267851.2321----
0.77367861.4306----
0.77467871.0428----
0.77567881.3553----
0.77667891.1102----
0.77767900.9225----
0.77857911.2585----
0.77957921.1335----
0.78057931.2781----
0.78157941.0265----
0.78257951.1846----
0.78357961.2123----
0.78447971.0861----
0.78547981.1929----
0.78647990.8202----
0.78748001.0745----
0.78848010.9162----
0.78948021.2077----
0.79048031.432----
0.79138040.9384----
0.79238051.4686----
0.79338060.8565----
0.79438071.1208----
0.79538081.006----
0.79638090.71----
0.79728101.0219----
0.79828111.0836----
0.79928121.1318----
0.80028131.5411----
0.80128141.0063----
0.80228151.277----
0.80318161.0547----
0.80418170.7084----
0.80518181.2581----
0.80618190.7857----
0.80718200.7219----
0.80818211.2658----
0.80918221.4563----
0.81008230.9098----
0.81108240.8606----
0.81208251.1116----
0.81308260.952----
0.81408270.6831----
0.81508280.8267----
0.81598290.934----
0.81698301.7555----
0.81798311.0109----
0.81898321.4509----
0.81998330.6548----
0.82098340.7777----
0.82198350.8929----
0.82288361.282----
0.82388370.6726----
0.82488381.0643----
0.82588391.01----
0.82688401.0631----
0.82788411.092----
0.82878421.0219----
0.82978431.0437----
0.83078440.8789----
0.83178451.5409----
0.83278461.365----
0.83378471.0567----
0.83468480.59----
0.83568490.839----
0.83668500.727----
0.83768510.8681----
0.83868521.5186----
0.83968530.8923----
0.84068540.8248----
0.84158550.9884----
0.84258561.257----
0.84358570.8841----
0.84458581.232----
0.84558591.2214----
0.84658601.3332----
0.84748610.8272----
0.84848621.0901----
0.84948631.2892----
0.85048640.8817----
0.85148650.944----
0.85248660.6212----
0.85338671.4346----
0.85438680.7204----
0.85538691.4009----
0.85638701.1522----
0.85738710.9558----
0.85838720.8871----
0.85938731.0025----
0.86028740.8617----
0.86128751.1982----
0.86228761.2484----
0.86328771.0181----
0.86428780.8535----
0.86528791.144----
0.86618801.1927----
0.86718810.7245----
0.86818821.0118----
0.86918831.4399----
0.87018841.0666----
0.87118851.1947----
0.87208860.8908----
0.87308871.394----
0.87408880.802----
0.8758890.9879----
0.87608900.9895----
0.87708911.0927----
0.87808921.4376----
0.87898931.1509----
0.87998940.7944----
0.88098951.4574----
0.88198961.2278----
0.88298971.1974----
0.88398981.0711----
0.88488991.3942----
0.88589001.1718----
0.88689011.1274----
0.88789020.9954----
0.88889031.0155----
0.88989041.4032----
0.89079051.4135----
0.89179061.1893----
0.89279070.7243----
0.89379081.1674----
0.89479091.3777----
0.89579101.0281----
0.89679111.2869----
0.89769121.0125----
0.89869131.0047----
0.89969140.8839----
0.90069151.4279----
0.90169161.053----
0.90269170.7841----
0.90359180.77381.24640.52490.48600.6758
0.90459190.8998----
0.90559201.7733----
0.90659210.8032----
0.90759220.6311----
0.90859230.9534----
0.90949241.2538----
0.91049250.5411----
0.91149260.797----
0.91249271.2115----
0.91349280.8412----
0.91449290.7325----
0.91549301.6631----
0.91639310.8573----
0.91739320.8194----
0.91839331.1627----
0.91939341.3729----
0.92039351.0679----
0.92139361.2123----
0.92229370.9217----
0.92329380.6959----
0.92429390.9306----
0.92529401.2815----
0.92629411.1188----
0.92729420.8454----
0.92819430.7369----
0.92919441.2244----
0.93019451.1402----
0.93119460.4213----
0.93219471.0047----
0.93319481.1353----
0.93419491.2862----
0.93509500.6358----
0.93609510.676----
0.93709521.1628----
0.93809530.861----
0.93909540.7121----
0.94009550.6625----
0.94099560.9343----
0.94199570.8103----
0.94299581.047----
0.94399590.6455----
0.94499601.0978----
0.94599610.9522----
0.94699620.9151----
0.94789631.2515----
0.94889641.0809----
0.94989650.6971----
0.95089661.4086----
0.95189671.3102----
0.95289681.5008----
0.95379690.9449----
0.95479701.0705----
0.95579710.7788----
0.95679721.0007----
0.95779730.9345----
0.95879741.4525----
0.95969750.5892----
0.96069760.927----
0.96169770.7473----
0.96269780.8173----
0.96369790.6888----
0.96469800.8059----
0.96569810.9087----
0.96659821.5197----
0.96759830.6625----
0.96859841.0372----
0.96959850.91----
0.97059860.7797----
0.97159870.838----
0.97249880.9568----
0.97349891.4704----
0.97449900.8209----
0.97549910.86----
0.97649920.7749----
0.97749930.7225----
0.97839940.8488----
0.97939951.4838----
0.98039961.3282----
0.98139970.9905----
0.98239981.7902----
0.98339990.7411----
0.984310001.2985----
0.985210010.9858----
0.986210020.8951----
0.987210030.5526----
0.988210041.466----
0.989210050.5767----
0.990210060.8946----
0.991110071.0825----
0.992110081.0152----
0.993110090.7586----
0.994110101.3353----
0.995110110.9555----
0.996110121.0585----
0.997010130.6774----
0.998010141.5326----
0.999010151.0034----
1.010160.8925----
1.001010171.1286----
1.002010180.9836----
1.003010190.6727----
1.003910200.8101----
1.004910210.7747----
1.005910220.6931----
1.006910231.2261----
1.007910240.7315----
1.008910250.61----
1.009810260.5402----
1.010810271.3353----
1.011810280.9483----
1.012810290.9226----
1.013810300.6536----
1.014810310.7343----
1.015710320.7647----
1.016710330.7541----
1.017710341.1746----
1.018710351.3935----
1.019710361.5224----
1.020710370.9067----
1.021710380.7184----
1.022610390.5991----
1.023610400.8841----
1.024610410.7474----
1.025610420.7444----
1.026610431.4098----
1.027610440.6033----
1.028510450.93----
1.029510460.7308----
1.030510470.7339----
1.031510481.3459----
1.032510490.6866----
1.033510500.8323----
1.034410510.5301----
1.035410521.1091----
1.036410530.7301----
1.037410541.1041----
1.038410550.433----
1.039410560.8808----
1.040410570.5836----
1.041310580.6459----
1.042310590.4647----
1.043310601.4988----
1.044310611.2506----
1.045310620.5674----
1.046310630.8192----
1.047210641.443----
1.048210650.4771----
1.049210660.5886----
1.050210670.9119----
1.051210680.7875----
1.052210690.7041----
1.053110700.5232----
1.054110710.571.15710.53730.49250.6962
1.055110720.8948----
1.056110731.0059----
1.057110740.9796----
1.058110750.9632----
1.059110761.1254----
1.060010770.8915----
1.061010780.5213----
1.062010790.6755----
1.063010800.6665----
1.064010810.729----
1.065010820.9047----
1.065910831.0514----
1.066910841.6729----
1.067910850.8698----
1.068910861.1209----
1.069910870.9425----
1.070910880.7151----
1.071910890.7336----
1.072810901.0971----
1.073810910.5334----
1.074810921.0171----
1.075810931.0153----
1.076810940.6662----
1.077810950.5451----
1.078710960.7743----
1.079710970.9187----
1.080710981.1919----
1.081710990.9405----
1.082711000.5361----
1.083711011.233----
1.084611020.8222----
1.085611030.906----
1.086611040.62----
1.087611050.887----
1.088611060.6135----
1.089611070.2279----
1.090611081.0091----
1.091511091.2457----
1.092511100.6233----
1.093511110.6004----
1.094511121.0716----
1.095511130.5854----
1.096511140.5708----
1.097411151.0223----
1.098411160.6434----
1.099411170.363----
1.100411181.2779----
1.101411190.8207----
1.102411200.6738----
1.103311211.0475----
1.104311220.9189----
1.105311231.0991----
1.106311240.7348----
1.107311250.7178----
1.108311260.893----
1.109311270.7549----
1.110211281.4074----
1.111211290.8321----
1.112211301.0289----
1.113211310.8296----
1.114211320.7587----
1.115211330.6198----
1.116111340.7474----
1.117111350.719----
1.118111360.517----
1.119111370.4452----
1.120111381.1683----
1.121111390.7705----
1.122011400.7873----
1.123011410.7939----
1.124011420.6513----
1.12511431.4787----
1.126011440.7314----
1.127011450.4927----
1.128011460.9718----
1.128911470.6738----
1.129911481.2356----
1.130911490.902----
1.131911500.5957----
1.132911511.1595----
1.133911520.9146----
1.134811530.5402----
1.135811540.6177----
1.136811550.6705----
1.137811560.603----
1.138811570.733----
1.139811581.1947----
1.140711590.6454----
1.141711601.0318----
1.142711611.0791----
1.143711620.928----
1.144711630.5488----
1.145711640.7937----
1.146711650.6262----
1.147611660.6925----
1.148611670.6949----
1.149611680.2552----
1.150611690.7877----
1.151611700.7581----
1.152611710.4293----
1.153511720.3826----
1.154511730.9302----
1.155511740.9708----
1.156511750.4477----
1.157511760.7183----
1.158511770.6087----
1.159411780.8324----
1.160411790.3906----
1.161411801.5957----
1.162411811.2033----
1.163411820.473----
1.164411830.6048----
1.165411840.861----
1.166311850.9065----
1.167311860.6253----
1.168311871.227----
1.169311880.7943----
1.170311890.6892----
1.171311901.0856----
1.172211910.7547----
1.173211920.4079----
1.174211930.6927----
1.175211941.0321----
1.176211951.1502----
1.177211960.9344----
1.178111971.0466----
1.179111980.6004----
1.180111990.7064----
1.181112000.659----
1.182112010.6445----
1.183112021.1254----
1.184112030.7727----
1.185012040.8912----
1.186012051.3996----
1.187012060.6232----
1.188012071.2074----
1.189012080.7199----
1.190012090.5826----
1.190912100.7618----
1.191912111.1995----
1.192912120.6375----
1.193912130.5623----
1.194912140.7756----
1.195912150.8011----
1.196912160.4404----
1.197812170.8401----
1.198812180.8971----
1.199812191.0111----
1.200812200.8536----
1.201812211.1102----
1.202812220.581----
1.203712230.8276----
1.204712241.11311.08110.58970.49750.6998
1.205712250.7577----
1.206712260.7671----
1.207712271.0486----
1.208712280.5076----
1.209612290.7368----
1.210612300.8573----
1.211612310.4998----
1.212612320.9818----
1.213612330.5621----
1.214612340.8134----
1.215612350.7607----
1.216512361.0499----
1.217512370.594----
1.218512380.9004----
1.219512390.9055----
1.220512401.2924----
1.221512410.9998----
1.222412420.8414----
1.223412430.8105----
1.224412440.862----
1.225412451.1903----
1.226412460.5475----
1.227412470.4714----
1.228312480.582----
1.229312490.8019----
1.230312500.46----
1.231312510.4769----
1.232312520.727----
1.233312530.3343----
1.234312541.0573----
1.235212550.7796----
1.236212560.7146----
1.237212570.6668----
1.238212580.7252----
1.239212590.4865----
1.240212600.479----
1.241112611.0787----
1.242112620.619----
1.243112630.6382----
1.244112640.333----
1.245112650.6462----
1.246112660.8646----
1.247012671.1484----
1.248012680.8422----
1.249012690.7198----
1.2512700.524----
1.251012710.7523----
1.252012720.7618----
1.253012730.9805----
1.253912740.8194----
1.254912750.3379----
1.255912760.925----
1.256912770.2099----
1.257912780.4021----
1.258912791.002----
1.259812800.5184----
1.260812810.9787----
1.261812821.0499----
1.262812830.7918----
1.263812840.8564----
1.264812850.7226----
1.265712860.7506----
1.266712870.7241----
1.267712880.3387----
1.268712891.0883----
1.269712901.0991----
1.270712910.7014----
1.271712920.4188----
1.272612930.5075----
1.273612940.9734----
1.274612950.9324----
1.275612960.6765----
1.276612970.4597----
1.277612980.8729----
1.278512990.4972----
1.279513000.6675----
1.280513010.7899----
1.281513020.4958----
1.282513030.6902----
1.283513040.9887----
1.284413050.9335----
1.285413061.4299----
1.286413070.7355----
1.287413080.6879----
1.288413090.8728----
1.289413101.3413----
1.290413110.4279----
1.291313121.1984----
1.292313130.5541----
1.293313140.6735----
1.294313150.6738----
1.295313160.9851----
1.296313170.8041----
1.297213180.9031----
1.298213190.7003----
1.299213200.4731----
1.300213210.863----
1.301213221.4337----
1.302213230.7687----
1.303113240.5768----
1.304113250.6752----
1.305113260.4609----
1.306113270.5695----
1.307113281.0559----
1.308113290.5529----
1.309113300.8975----
1.310013310.4789----
1.311013321.0715----
1.312013330.6386----
1.313013340.7176----
1.314013350.4927----
1.315013361.1553----
1.315913371.0901----
1.316913380.7623----
1.317913390.5397----
1.318913400.6808----
1.319913410.4346----
1.320913420.8217----
1.321913430.9094----
1.322813440.4829----
1.323813450.706----
1.324813460.7423----
1.325813470.864----
1.326813480.3376----
1.327813490.6119----
1.328713500.5668----
1.329713510.702----
1.330713520.5933----
1.331713530.4192----
1.332713541.047----
1.333713550.7922----
1.334613561.0565----
1.335613570.6672----
1.336613580.993----
1.337613590.6533----
1.338613601.1159----
1.339613610.6079----
1.340613620.6253----
1.341513630.9925----
1.342513640.4941----
1.343513650.2237----
1.344513660.5003----
1.345513670.8567----
1.346513680.5952----
1.347413690.785----
1.348413701.0094----
1.349413710.8874----
1.350413720.7712----
1.351413730.8822----
1.352413741.0364----
1.353313750.5006----
1.354313761.1828----
1.355313770.44881.00920.62510.50000.6859
1.356313780.4031----
1.357313791.1215----
1.358313800.685----
1.359313810.9461----
1.360213820.6278----
1.361213830.6777----
1.362213840.9092----
1.363213851.107----
1.364213860.8068----
1.365213870.7613----
1.366113880.6967----
1.367113890.9097----
1.368113900.8659----
1.369113910.5029----
1.370113920.3766----
1.371113930.7413----
1.372013940.6002----
1.373013951.002----
1.374013960.8959----
1.37513971.0575----
1.376013980.746----
1.377013990.9076----
1.378014000.8383----
1.378914010.6814----
1.379914020.5709----
1.380914030.5641----
1.381914041.0729----
1.382914050.3779----
1.383914061.0705----
1.384814070.8394----
1.385814081.0838----
1.386814091.4442----
1.387814100.8921----
1.388814110.3109----
1.389814120.6138----
1.390714130.7296----
1.391714140.6515----
1.392714150.323----
1.393714161.2172----
1.394714170.6128----
1.395714180.7743----
1.396714190.5889----
1.397614200.9509----
1.398614210.358----
1.399614220.8089----
1.400614230.4282----
1.401614240.7527----
1.402614250.3626----
1.403514260.7605----
1.404514270.8407----
1.405514280.6551----
1.406514290.6433----
1.407514300.6133----
1.408514310.4582----
1.409414320.8696----
1.410414330.6652----
1.411414340.5286----
1.412414350.5371----
1.413414360.5219----
1.414414370.593----
1.415414380.8033----
1.416314390.7256----
1.417314400.5703----
1.418314410.8677----
1.419314420.6869----
1.420314430.4755----
1.421314440.7355----
1.422214450.2593----
1.423214460.6159----
1.424214470.6839----
1.425214480.9492----
1.426214491.066----
1.427214500.7793----
1.428114510.4892----
1.429114521.1506----
1.430114530.6908----
1.431114540.4107----
1.432114550.7537----
1.433114561.0748----
1.434114570.8493----
1.435014580.5319----
1.436014590.3999----
1.437014600.679----
1.438014611.1676----
1.439014620.7234----
1.440014630.5784----
1.440914640.8432----
1.441914650.5748----
1.442914660.7716----
1.443914670.6102----
1.444914681.3959----
1.445914691.1255----
1.446914700.5782----
1.447814710.9801----
1.448814720.446----
1.449814730.4698----
1.450814740.1574----
1.451814750.5371----
1.452814760.8717----
1.453714770.6271----
1.454714780.4344----
1.455714790.3845----
1.456714800.7941----
1.457714810.824----
1.458714820.439----
1.459614830.29----
1.460614840.7063----
1.461614850.5149----
1.462614860.6015----
1.463614870.4672----
1.464614880.5126----
1.465614890.5502----
1.466514900.368----
1.467514910.8213----
1.468514920.7298----
1.469514930.4096----
1.470514940.483----
1.471514950.6826----
1.472414960.7304----
1.473414970.3569----
1.474414980.5318----
1.475414990.2428----
1.476415001.1592----
1.477415010.957----
1.478315020.7483----
1.479315030.739----
1.480315040.6278----
1.481315050.752----
1.482315060.6608----
1.483315070.2598----
1.484315081.664----
1.485215090.9461----
1.486215100.3373----
1.487215110.9237----
1.488215120.359----
1.489215130.7701----
1.490215140.5773----
1.491115150.8257----
1.492115160.7083----
1.493115170.6284----
1.494115180.6834----
1.495115190.574----
1.496115200.3719----
1.497015210.7524----
1.498015220.374----
1.499015230.6744----
1.515240.4346----
1.501015250.4382----
1.502015260.5753----
1.503015270.981----
1.503915280.7227----
1.504915290.8546----
1.505915300.5770.97390.64200.50740.6956
1.506915310.6163----
1.507915320.852----
1.508915330.3445----
1.509815340.437----
1.510815350.4558----
1.511815360.3667----
1.512815370.1558----
1.513815380.4603----
1.514815390.416----
1.515715400.8853----
1.516715410.7362----
1.517715420.569----
1.518715430.5174----
1.519715440.797----
1.520715450.7091----
1.521715460.512----
1.522615470.5039----
1.523615480.9192----
1.524615491.0385----
1.525615500.4519----
1.526615510.8472----
1.527615520.8557----
1.528515530.652----
1.529515540.8557----
1.530515550.5835----
1.531515560.5346----
1.532515570.5621----
1.533515580.6299----
1.534415591.0536----
1.535415600.676----
1.536415611.15----
1.537415620.7588----
1.538415630.8398----
1.539415640.5209----
1.540415650.8099----
1.541315660.6272----
1.542315670.8252----
1.543315680.9155----
1.544315690.2462----
1.545315700.3308----
1.546315710.3919----
1.547215720.5583----
1.548215730.6686----
1.549215740.4003----
1.550215750.7001----
1.551215760.9504----
1.552215770.453----
1.553115780.5156----
1.554115790.363----
1.555115800.9124----
1.556115810.5979----
1.557115820.7076----
1.558115830.272----
1.559115840.7369----
1.560015850.66----
1.561015860.4354----
1.562015870.8265----
1.563015880.4936----
1.564015890.4236----
1.565015900.5496----
1.565915910.545----
1.566915920.804----
1.567915930.6017----
1.568915940.5229----
1.569915950.3998----
1.570915960.6741----
1.571915970.4781----
1.572815980.4971----
1.573815990.6007----
1.574816000.8647----
1.575816011.0286----
1.576816020.4067----
1.577816030.731----
1.578716040.2758----
1.579716050.3977----
1.580716060.6459----
1.581716070.9274----
1.582716080.74----
1.583716090.3715----
1.584616100.6587----
1.585616110.5264----
1.586616120.8698----
1.587616130.6965----
1.588616140.8431----
1.589616150.5191----
1.590616161.1508----
1.591516171.2072----
1.592516180.5955----
1.593516190.9112----
1.594516200.2759----
1.595516210.3118----
1.596516221.0573----
1.597416230.9392----
1.598416240.6772----
1.599416250.6695----
1.600416260.6276----
1.601416270.527----
1.602416280.4637----
1.603316290.4799----
1.604316300.5972----
1.605316310.667----
1.606316320.5926----
1.607316330.6911----
1.608316340.8098----
1.609316350.8524----
1.610216360.3731----
1.611216370.6751----
1.612216380.9858----
1.613216390.439----
1.614216400.2996----
1.615216410.2333----
1.616116420.4415----
1.617116430.7798----
1.618116440.4089----
1.619116450.9624----
1.620116460.6725----
1.621116470.4314----
1.622016480.9129----
1.623016490.8468----
1.624016500.6209----
1.62516510.5043----
1.626016520.4109----
1.627016530.7351----
1.628016540.8728----
1.628916550.4225----
1.629916560.8833----
1.630916570.2562----
1.631916580.6762----
1.632916590.2752----
1.633916600.426----
1.634816610.95----
1.635816620.9488----
1.636816630.3755----
1.637816640.3523----
1.638816650.6591----
1.639816660.5441----
1.640716670.7484----
1.641716680.8561----
1.642716690.4679----
1.643716700.5952----
1.644716710.4511----
1.645716720.7256----
1.646716730.4359----
1.647616740.71----
1.648616750.5335----
1.649616760.6162----
1.650616770.4306----
1.651616780.3156----
1.652616790.5425----
1.653516800.5371----
1.654516810.5377----
1.655516820.3161----
1.656516831.18680.91770.64300.51320.6967
1.657516840.2412----
1.658516850.3353----
1.659416860.5455----
1.660416870.7836----
1.661416880.8547----
1.662416890.3242----
1.663416900.5512----
1.664416910.3552----
1.665416920.1621----
1.666316930.6054----
1.667316940.8546----
1.668316950.5073----
1.669316960.4197----
1.670316970.5708----
1.671316980.6482----
1.672216991.2711----
1.673217000.6077----
1.674217010.9495----
1.675217021.2484----
1.676217030.9573----
1.677217040.4614----
1.678117050.7239----
1.679117060.5873----
1.680117070.6671----
1.681117080.3904----
1.682117091.0458----
1.683117100.4296----
1.684117110.847----
1.685017120.6004----
1.686017130.2714----
1.687017140.5642----
1.688017150.1839----
1.689017160.5378----
1.690017170.4204----
1.690917180.7513----
1.691917190.3122----
1.692917200.4128----
1.693917210.3942----
1.694917221.0144----
1.695917230.3428----
1.696917240.535----
1.697817250.4357----
1.698817260.6145----
1.699817270.5191----
1.700817280.9029----
1.701817290.8404----
1.702817300.4985----
1.703717310.5642----
1.704717320.4307----
1.705717330.5458----
1.706717340.6761----
1.707717350.4366----
1.708717360.7759----
1.709617370.6839----
1.710617380.5315----
1.711617390.3093----
1.712617400.3635----
1.713617410.1818----
1.714617420.6372----
1.715617430.5375----
1.716517440.5094----
1.717517450.8326----
1.718517460.2582----
1.719517470.3566----
1.720517480.4642----
1.721517490.5632----
1.722417500.4932----
1.723417510.2973----
1.724417520.4152----
1.725417530.3536----
1.726417540.4387----
1.727417550.8308----
1.728317560.6075----
1.729317570.323----
1.730317580.6818----
1.731317590.3929----
1.732317600.4531----
1.733317610.4499----
1.734317620.5292----
1.735217630.57----
1.736217640.3814----
1.737217650.5125----
1.738217660.4302----
1.739217670.7763----
1.740217680.6339----
1.741117690.5771----
1.742117700.4903----
1.743117710.3864----
1.744117720.4726----
1.745117730.9534----
1.746117740.886----
1.747017750.7257----
1.748017760.4611----
1.749017770.422----
1.7517780.5538----
1.751017790.6973----
1.752017800.5833----
1.753017810.7693----
1.753917820.4957----
1.754917830.3354----
1.755917840.6255----
1.756917850.2834----
1.757917860.4637----
1.758917870.8133----
1.759817880.2364----
1.760817890.8109----
1.761817900.4795----
1.762817910.3508----
1.763817920.5447----
1.764817930.7391----
1.765717940.3975----
1.766717950.7205----
1.767717960.7735----
1.768717970.4532----
1.769717980.331----
1.770717990.8354----
1.771718000.0976----
1.772618010.6051----
1.773618020.707----
1.774618030.419----
1.775618040.9268----
1.776618050.639----
1.777618060.427----
1.778518070.6253----
1.779518080.6166----
1.780518090.6593----
1.781518100.3922----
1.782518110.7626----
1.783518120.6866----
1.784418130.4619----
1.785418140.8688----
1.786418150.5084----
1.787418160.7005----
1.788418170.2802----
1.789418180.6338----
1.790418190.4616----
1.791318200.1921----
1.792318210.9873----
1.793318220.2347----
1.794318230.4585----
1.795318240.7981----
1.796318250.3834----
1.797218260.3476----
1.798218270.6374----
1.799218280.2443----
1.800218290.8733----
1.801218300.6572----
1.802218310.5134----
1.803118320.3629----
1.804118330.2229----
1.805118340.4706----
1.806118350.4832----
1.807118360.37650.90670.65110.51950.6940
1.808118370.6207----
1.809118380.6119----
1.810018390.6193----
1.811018400.5251----
1.812018410.5778----
1.813018420.457----
1.814018430.2371----
1.815018440.4343----
1.815918450.3065----
1.816918461.0271----
1.817918470.618----
1.818918480.7867----
1.819918490.3885----
1.820918500.3757----
1.821918510.7492----
1.822818520.7607----
1.823818530.287----
1.824818540.4212----
1.825818550.5182----
1.826818560.3489----
1.827818570.535----
1.828718580.5276----
1.829718590.9417----
1.830718600.4258----
1.831718610.3864----
1.832718620.6552----
1.833718630.4263----
1.834618640.2489----
1.835618650.5805----
1.836618660.3668----
1.837618670.3874----
1.838618681.1184----
1.839618690.2684----
1.840618700.3389----
1.841518710.3668----
1.842518720.9874----
1.843518730.4333----
1.844518740.6744----
1.845518750.5133----
1.846518760.7328----
1.847418770.2997----
1.848418780.6519----
1.849418790.5825----
1.850418800.7681----
1.851418810.3848----
1.852418820.2117----
1.853318831.0945----
1.854318840.5184----
1.855318850.4794----
1.856318860.8211----
1.857318870.495----
1.858318880.4292----
1.859318890.7122----
1.860218900.4032----
1.861218910.5003----
1.862218920.5014----
1.863218930.3998----
1.864218940.3397----
1.865218950.4174----
1.866118960.5333----
1.867118970.575----
1.868118980.5142----
1.869118990.6661----
1.870119000.5965----
1.871119010.3209----
1.872019020.3278----
1.873019030.6277----
1.874019040.7779----
1.87519050.3863----
1.876019060.4736----
1.877019070.3502----
1.878019080.8825----
1.878919090.8411----
1.879919100.1829----
1.880919111.0817----
1.881919120.6255----
1.882919130.4679----
1.883919140.7575----
1.884819151.062----
1.885819160.6546----
1.886819170.5099----
1.887819180.5189----
1.888819190.3031----
1.889819200.6165----
1.890719210.8606----
1.891719220.4711----
1.892719230.6318----
1.893719240.4974----
1.894719250.7208----
1.895719260.5613----
1.896719270.4673----
1.897619280.4062----
1.898619290.4713----
1.899619300.4277----
1.900619310.9161----
1.901619320.4953----
1.902619330.393----
1.903519340.4689----
1.904519350.9634----
1.905519360.9026----
1.906519370.3855----
1.907519380.3751----
1.908519390.7743----
1.909419400.5837----
1.910419410.0811----
1.911419420.3471----
1.912419430.6189----
1.913419440.35----
1.914419450.4165----
1.915419460.9556----
1.916319470.4205----
1.917319480.4595----
1.918319490.4687----
1.919319500.3396----
1.920319510.689----
1.921319520.43----
1.922219530.1506----
1.923219540.5124----
1.924219550.5966----
1.925219560.9889----
1.926219570.7009----
1.927219580.5476----
1.928119590.4462----
1.929119600.465----
1.930119610.6114----
1.931119620.1944----
1.932119630.4095----
1.933119640.5479----
1.934119650.5858----
1.935019660.2531----
1.936019670.4321----
1.937019680.5694----
1.938019690.2313----
1.939019700.4807----
1.940019710.2989----
1.940919720.6416----
1.941919730.4995----
1.942919740.8427----
1.943919750.281----
1.944919760.2401----
1.945919770.347----
1.946919780.6268----
1.947819790.7361----
1.948819800.676----
1.949819810.4061----
1.950819820.8464----
1.951819830.8171----
1.952819840.796----
1.953719850.4251----
1.954719860.5535----
1.955719870.3494----
1.956719880.5363----
1.957719890.55410.84070.65760.51360.7072
1.958719900.9368----
1.959619910.2367----
1.960619920.7361----
1.961619930.5095----
1.962619940.3207----
1.963619950.4538----
1.964619960.2839----
1.965619970.3786----
1.966519980.7311----
1.967519990.199----
1.968520000.5929----
1.969520010.4542----
1.970520020.4191----
1.971520030.4298----
1.972420040.3283----
1.973420050.9176----
1.974420060.6424----
1.975420070.4727----
1.976420080.3531----
1.977420090.3506----
1.978320100.5331----
1.979320110.7927----
1.980320120.6007----
1.981320130.4699----
1.982320140.757----
1.983320150.3937----
1.984320160.9555----
1.985220170.3785----
1.986220180.5992----
1.987220190.2856----
1.988220200.8852----
1.989220210.2864----
1.990220220.4794----
1.991120230.5617----
1.992120240.5764----
1.993120250.5486----
1.994120260.4615----
1.995120270.4842----
1.996120280.4858----
1.997020290.3759----
1.998020300.8044----
1.999020310.4664----
2.020320.5267----
2.001020330.7186----
2.002020340.5132----
2.003020350.3771----
2.003920360.3564----
2.004920370.199----
2.005920380.2808----
2.006920390.5424----
2.007920400.4058----
2.008920410.2607----
2.009820420.592----
2.010820430.5805----
2.011820440.253----
2.012820450.252----
2.013820460.2473----
2.014820470.386----
2.015720480.4424----
2.016720490.5241----
2.017720500.5726----
2.018720510.8175----
2.019720521.3487----
2.020720530.5315----
2.021720540.2093----
2.022620550.3055----
2.023620560.6388----
2.024620570.5827----
2.025620580.4087----
2.026620590.7724----
2.027620600.2678----
2.028520610.5643----
2.029520620.3502----
2.030520630.2656----
2.031520640.8536----
2.032520650.278----
2.033520660.5795----
2.034420670.228----
2.035420680.3636----
2.036420690.4357----
2.037420700.8257----
2.038420710.1714----
2.039420720.7014----
2.040420730.264----
2.041320740.3574----
2.042320750.2038----
2.043320761.1227----
2.044320770.6045----
2.045320780.1255----
2.046320790.2404----
2.047220800.9607----
2.048220810.2796----
2.049220820.307----
2.050220830.6566----
2.051220840.5244----
2.052220850.5113----
2.053120860.18----
2.054120870.2831----
2.055120880.4851----
2.056120890.4294----
2.057120900.3259----
2.058120910.6698----
2.059120920.637----
2.060020930.5197----
2.061020940.3809----
2.062020950.451----
2.063020960.1733----
2.064020970.4961----
2.065020980.4755----
2.065920990.3887----
2.066921000.9013----
2.067921010.5693----
2.068921020.8441----
2.069921030.5542----
2.070921040.3462----
2.071921050.2953----
2.072821060.5272----
2.073821070.2177----
2.074821080.4521----
2.075821090.8877----
2.076821100.3271----
2.077821110.3271----
2.078721120.2575----
2.079721130.4542----
2.080721140.4742----
2.081721150.4831----
2.082721160.5033----
2.083721170.7284----
2.084621180.9458----
2.085621190.5841----
2.086621200.3642----
2.087621210.2957----
2.088621220.2844----
2.089621230.0965----
2.090621240.3975----
2.091521250.7468----
2.092521260.4677----
2.093521270.4633----
2.094521280.6358----
2.095521290.2283----
2.096521300.5378----
2.097421310.7019----
2.098421320.5093----
2.099421330.2462----
2.100421340.4929----
2.101421350.4297----
2.102421360.3427----
2.103321370.7622----
2.104321380.6178----
2.105321390.478----
2.106321400.4509----
2.107321410.3435----
2.108321420.33460.84030.66510.51200.7047
2.109321430.4465----
2.110221440.8581----
2.111221450.4412----
2.112221460.4847----
2.113221470.3782----
2.114221480.4406----
2.115221490.4634----
2.116121500.4512----
2.117121510.3702----
2.118121520.1144----
2.119121530.3481----
2.120121540.4423----
2.121121550.7575----
2.122021560.3417----
2.123021570.4928----
2.124021580.4311----
2.12521590.4382----
2.126021600.3946----
2.127021610.2044----
2.128021620.6667----
2.128921630.2457----
2.129921640.9209----
2.130921650.5682----
2.131921660.5466----
2.132921670.3111----
2.133921680.6332----
2.134821690.3745----
2.135821700.2525----
2.136821710.3447----
2.137821720.3985----
2.138821730.402----
2.139821740.7393----
2.140721750.2344----
2.141721760.4252----
2.142721770.3969----
2.143721780.547----
2.144721790.3339----
2.145721800.2952----
2.146721810.2556----
2.147621820.5002----
2.148621830.5223----
2.149621840.0491----
2.150621850.4989----
2.151621860.6368----
2.152621870.1781----
2.153521880.2386----
2.154521890.424----
2.155521900.4195----
2.156521910.13----
2.157521920.2525----
2.158521930.1913----
2.159421940.4215----
2.160421950.3393----
2.161421961.3127----
2.162421970.6814----
2.163421980.263----
2.164421990.3647----
2.165422000.5629----
2.166322010.6589----
2.167322020.3113----
2.168322030.6811----
2.169322040.5942----
2.170322050.2195----
2.171322060.9414----
2.172222070.2976----
2.173222080.3168----
2.174222090.3567----
2.175222100.7402----
2.176222110.617----
2.177222120.5497----
2.178122130.5301----
2.179122140.2226----
2.180122150.2863----
2.181122160.2799----
2.182122170.2728----
2.183122180.4322----
2.184122190.6777----
2.185022200.6416----
2.186022210.6656----
2.187022220.3136----
2.188022230.7484----
2.189022240.6143----
2.190022250.3557----
2.190922260.4548----
2.191922270.4907----
2.192922280.2768----
2.193922290.57----
2.194922300.86----
2.195922310.6951----
2.196922320.2213----
2.197822330.3834----
2.198822340.5838----
2.199822350.6818----
2.200822360.7577----
2.201822370.4476----
2.202822380.2899----
2.203722390.4989----
2.204722400.7162----
2.205722410.4761----
2.206722420.4957----
2.207722430.7497----
2.208722440.3968----
2.209622450.7304----
2.210622460.3713----
2.211622470.3308----
2.212622480.581----
2.213622490.1899----
2.214622500.4058----
2.215622510.686----
2.216522520.348----
2.217522530.3332----
2.218522540.5503----
2.219522550.2385----
2.220522560.8728----
2.221522570.7366----
2.222422580.3359----
2.223422590.6247----
2.224422600.501----
2.225422610.6602----
2.226422620.4829----
2.227422630.1947----
2.228322640.2411----
2.229322650.362----
2.230322660.3329----
2.231322670.2588----
2.232322680.4144----
2.233322690.0592----
2.234322700.5764----
2.235222710.4594----
2.236222720.3137----
2.237222730.2659----
2.238222740.4802----
2.239222750.5744----
2.240222760.5319----
2.241122770.5163----
2.242122780.5062----
2.243122790.4614----
2.244122800.0751----
2.245122810.3802----
2.246122820.6284----
2.247022830.6046----
2.248022840.4421----
2.249022850.4261----
2.2522860.0917----
2.251022870.5027----
2.252022880.3014----
2.253022890.9846----
2.253922900.3314----
2.254922910.2861----
2.255922921.0061----
2.256922930.0463----
2.257922940.1619----
2.258922950.65350.81670.66950.50290.7083
2.259822960.2378----
2.260822970.4016----
2.261822980.7567----
2.262822990.4916----
2.263823000.6291----
2.264823010.4626----
2.265723020.6925----
2.266723030.2438----
2.267723040.3313----
2.268723050.7253----
2.269723060.7217----
2.270723070.258----
2.271723080.4069----
2.272623090.4181----
2.273623100.5408----
2.274623110.426----
2.275623120.5295----
2.276623130.2723----
2.277623140.5554----
2.278523150.3267----
2.279523160.6567----
2.280523170.44----
2.281523180.1803----
2.282523190.3852----
2.283523200.6622----
2.284423210.6441----
2.285423220.7071----
2.286423230.3546----
2.287423240.2224----
2.288423250.4985----
2.289423260.6903----
2.290423270.2445----
2.291323280.5646----
2.292323290.4209----
2.293323300.4754----
2.294323310.2935----
2.295323320.6359----
2.296323330.3648----
2.297223340.5006----
2.298223350.2887----
2.299223360.2313----
2.300223370.5629----
2.301223380.8398----
2.302223390.3545----
2.303123400.3029----
2.304123410.5024----
2.305123420.322----
2.306123430.3881----
2.307123440.5629----
2.308123450.1312----
2.309123460.5804----
2.310023470.2675----
2.311023480.5829----
2.312023490.5274----
2.313023500.5471----
2.314023510.1937----
2.315023521.4522----
2.315923530.8113----
2.316923540.6974----
2.317923550.3138----
2.318923560.8778----
2.319923570.4305----
2.320923580.6552----
2.321923590.5439----
2.322823600.1782----
2.323823610.4607----
2.324823620.5819----
2.325823630.3315----
2.326823640.147----
2.327823650.6971----
2.328723660.2906----
2.329723670.4248----
2.330723680.2883----
2.331723690.564----
2.332723700.7244----
2.333723710.3938----
2.334623720.7018----
2.335623730.316----
2.336623740.4577----
2.337623750.3306----
2.338623761.0778----
2.339623770.3178----
2.340623780.396----
2.341523790.4328----
2.342523800.5537----
2.343523810.244----
2.344523820.2966----
2.345523830.5565----
2.346523840.1748----
2.347423850.5972----
2.348423860.5639----
2.349423870.7857----
2.350423880.4016----
2.351423890.4808----
2.352423900.4922----
2.353323910.4503----
2.354323920.9119----
2.355323930.405----
2.356323940.1421----
2.357323950.5206----
2.358323960.3862----
2.359323970.397----
2.360223980.3575----
2.361223990.2154----
2.362224000.5393----
2.363224010.77----
2.364224020.5329----
2.365224030.6572----
2.366124040.3386----
2.367124050.417----
2.368124060.5592----
2.369124070.3127----
2.370124080.1558----
2.371124090.3328----
2.372024100.3298----
2.373024110.7329----
2.374024120.4631----
2.37524130.7865----
2.376024140.4219----
2.377024150.3302----
2.378024160.4047----
2.378924170.2258----
2.379924180.2736----
2.380924190.5218----
2.381924200.6613----
2.382924210.2613----
2.383924220.7631----
2.384824230.3823----
2.385824240.456----
2.386824251.1117----
2.387824260.4854----
2.388824270.1749----
2.389824280.2807----
2.390724290.8104----
2.391724300.2549----
2.392724310.3055----
2.393724320.7992----
2.394724330.4635----
2.395724340.2588----
2.396724350.329----
2.397624360.5157----
2.398624370.1639----
2.399624380.2695----
2.400624390.2459----
2.401624400.4676----
2.402624410.1643----
2.403524420.2919----
2.404524430.4056----
2.405524440.3375----
2.406524450.3404----
2.407524460.4788----
2.408524470.3727----
2.409424480.52210.80900.67100.50310.7100
2.410424490.5299----
2.411424500.1552----
2.412424510.446----
2.413424520.2375----
2.414424530.2357----
2.415424540.3831----
2.416324550.6244----
2.417324560.544----
2.418324570.458----
2.419324580.2782----
2.420324590.2767----
2.421324600.4177----
2.422224610.2191----
2.423224620.2996----
2.424224630.3109----
2.425224640.7066----
2.426224650.6101----
2.427224660.6249----
2.428124670.2996----
2.429124680.4268----
2.430124690.5168----
2.431124700.1912----
2.432124710.3655----
2.433124720.5847----
2.434124730.5454----
2.435024740.2352----
2.436024750.2123----
2.437024760.6476----
2.438024770.6335----
2.439024780.2991----
2.440024790.3649----
2.440924800.5475----
2.441924810.3319----
2.442924820.4839----
2.443924830.649----
2.444924841.0672----
2.445924850.7989----
2.446924860.1751----
2.447824870.8791----
2.448824880.2708----
2.449824890.1751----
2.450824900.0918----
2.451824910.2444----
2.452824920.5802----
2.453724930.5564----
2.454724940.1286----
2.455724950.2139----
2.456724960.6699----
2.457724970.4542----
2.458724980.1878----
2.459624990.1191----
2.460625000.3498----
2.461625010.2625----
2.462625020.4147----
2.463625030.5618----
2.464625040.2314----
2.465625050.4154----
2.466525060.2686----
2.467525070.385----
2.468525080.3911----
2.469525090.1549----
2.470525100.2425----
2.471525110.402----
2.472425120.5896----
2.473425130.5268----
2.474425140.3167----
2.475425150.1611----
2.476425160.6922----
2.477425170.5503----
2.478325180.4106----
2.479325190.4554----
2.480325200.3079----
2.481325210.3354----
2.482325220.288----
2.483325230.1446----
2.484325240.8988----
2.485225250.7265----
2.486225260.1949----
2.487225270.8494----
2.488225280.3557----
2.489225290.4228----
2.490225300.259----
2.491125310.2982----
2.492125320.6837----
2.493125330.4417----
2.494125340.4822----
2.495125350.3461----
2.496125360.2396----
2.497025370.4991----
2.498025380.3198----
2.499025390.3665----
2.525400.176----
2.501025410.2136----
2.502025420.5891----
2.503025430.5309----
2.503925440.3781----
2.504925450.7324----
2.505925460.433----
2.506925470.7656----
2.507925480.6324----
2.508925490.1181----
2.509825500.3459----
2.510825510.1759----
2.511825520.1898----
2.512825530.1363----
2.513825540.1972----
2.514825550.23----
2.515725560.6073----
2.516725570.2138----
2.517725580.3059----
2.518725590.37----
2.519725600.4976----
2.520725610.2644----
2.521725620.3422----
2.522625630.203----
2.523625640.2347----
2.524625650.4776----
2.525625660.3452----
2.526625670.5831----
2.527625680.4885----
2.528525690.1946----
2.529525700.6301----
2.530525710.5759----
2.531525720.352----
2.532525730.3132----
2.533525740.4923----
2.534425750.7069----
2.535425760.3848----
2.536425770.8719----
2.537425780.4992----
2.538425790.4379----
2.539425800.3223----
2.540425810.4615----
2.541325820.2853----
2.542325830.5365----
2.543325840.4741----
2.544325850.1163----
2.545325860.1334----
2.546325870.2915----
2.547225880.3424----
2.548225890.2587----
2.549225900.3412----
2.550225910.7519----
2.551225920.6034----
2.552225930.2687----
2.553125940.2823----
2.554125950.2531----
2.555125960.748----
2.556125970.1596----
2.557125980.7275----
2.558125990.2608----
2.559126000.4607----
2.560026010.73550.80380.66320.51010.7103
2.561026020.2174----
2.562026030.6878----
2.563026040.2113----
2.564026050.4043----
2.565026060.2495----
2.565926070.2753----
2.566926080.3233----
2.567926090.4387----
2.568926100.4123----
2.569926110.2335----
2.570926120.4015----
2.571926130.3037----
2.572826140.3129----
2.573826150.5355----
2.574826160.3987----
2.575826170.7301----
2.576826180.2253----
2.577826190.3705----
2.578726200.1456----
2.579726210.1329----
2.580726220.277----
2.581726230.2787----
2.582726240.5661----
2.583726250.1745----
2.584626260.5826----
2.585626270.3865----
2.586626280.7072----
2.587626290.4822----
2.588626300.5733----
2.589626310.364----
2.590626320.6186----
2.591526330.6711----
2.592526340.4297----
2.593526350.6323----
2.594526360.0794----
2.595526370.1299----
2.596526380.7791----
2.597426390.7766----
2.598426400.4644----
2.599426410.3575----
2.600426420.2899----
2.601426430.3339----
2.602426440.1267----
2.603326450.2784----
2.604326460.3755----
2.605326470.296----
2.606326480.4438----
2.607326490.3387----
2.608326500.3702----
2.609326510.5393----
2.610226520.2475----
2.611226530.366----
2.612226540.557----
2.613226550.2491----
2.614226560.2431----
2.615226570.1967----
2.616126580.3272----
2.617126590.5326----
2.618126600.4241----
2.619126610.381----
2.620126620.5542----
2.621126630.1807----
2.622026640.4598----
2.623026650.37----
2.624026660.388----
2.62526670.4206----
2.626026680.3069----
2.627026690.496----
2.628026700.7739----
2.628926710.527----
2.629926720.8247----
2.630926730.0693----
2.631926740.2947----
2.632926750.1196----
2.633926760.29----
2.634826770.6652----
2.635826780.6153----
2.636826790.1655----
2.637826800.152----
2.638826810.4414----
2.639826820.423----
2.640726830.181----
2.641726840.4381----
2.642726850.309----
2.643726860.3099----
2.644726870.2231----
2.645726880.5459----
2.646726890.1033----
2.647626900.4474----
2.648626910.1934----
2.649626920.356----
2.650626930.2524----
2.651626940.0994----
2.652626950.3365----
2.653526960.3263----
2.654526970.2474----
2.655526980.2176----
2.656526991.0462----
2.657527000.1482----
2.658527010.3416----
2.659427020.2477----
2.660427030.7111----
2.661427040.3614----
2.662427050.1872----
2.663427060.3295----
2.664427070.089----
2.665427080.0955----
2.666327090.2971----
2.667327100.4915----
2.668327110.4308----
2.669327120.1033----
2.670327130.328----
2.671327140.1923----
2.672227151.0202----
2.673227160.5382----
2.674227170.4475----
2.675227180.6444----
2.676227190.4964----
2.677227200.1781----
2.678127210.6226----
2.679127220.4835----
2.680127230.2242----
2.681127240.1288----
2.682127250.5609----
2.683127260.3572----
2.684127270.2987----
2.685027280.4154----
2.686027290.1642----
2.687027300.2572----
2.688027310.0667----
2.689027320.1979----
2.690027330.1383----
2.690927340.6743----
2.691927350.4473----
2.692927360.3028----
2.693927370.1625----
2.694927380.4893----
2.695927390.195----
2.696927400.2517----
2.697827410.3004----
2.698827420.3545----
2.699827430.3757----
2.700827440.6278----
2.701827450.5391----
2.702827460.2004----
2.703727470.3201----
2.704727480.2066----
2.705727490.1971----
2.706727500.662----
2.707727510.2182----
2.708727520.7571----
2.709627530.443----
2.710627540.32810.79400.67300.51210.7101
2.711627550.1828----
2.712627560.2148----
2.713627570.3059----
2.714627580.2714----
2.715627590.1713----
2.716527600.3999----
2.717527610.4077----
2.718527620.3149----
2.719527630.2239----
2.720527640.2417----
2.721527650.1812----
2.722427660.3691----
2.723427670.2731----
2.724427680.1939----
2.725427690.185----
2.726427700.1714----
2.727427710.4337----
2.728327720.2208----
2.729327730.1848----
2.730327740.4455----
2.731327750.1928----
2.732327760.2259----
2.733327770.1529----
2.734327780.4687----
2.735227790.4754----
2.736227800.2371----
2.737227810.4237----
2.738227820.2798----
2.739227830.5882----
2.740227840.5746----
2.741127850.4695----
2.742127860.2319----
2.743127870.129----
2.744127880.365----
2.745127890.9308----
2.746127900.5642----
2.747027910.3723----
2.748027920.1993----
2.749027930.3233----
2.7527940.5217----
2.751027950.6836----
2.752027960.159----
2.753027970.7725----
2.753927980.2326----
2.754927990.1674----
2.755928000.5721----
2.756928010.1241----
2.757928020.3849----
2.758928030.4502----
2.759828040.1952----
2.760828050.2037----
2.761828060.4054----
2.762828070.2229----
2.763828080.1633----
2.764828090.3005----
2.765728100.347----
2.766728110.1762----
2.767728120.3815----
2.768728130.2376----
2.769728140.2882----
2.770728150.6411----
2.771728160.0842----
2.772628170.2796----
2.773628180.4634----
2.774628190.3445----
2.775628200.7675----
2.776628210.5084----
2.777628220.2283----
2.778528230.7626----
2.779528240.4696----
2.780528250.3666----
2.781528260.3069----
2.782528270.5439----
2.783528280.2623----
2.784428290.1852----
2.785428300.6098----
2.786428310.2909----
2.787428320.3049----
2.788428330.1428----
2.789428340.6295----
2.790428350.345----
2.791328360.1657----
2.792328370.903----
2.793328380.2197----
2.794328390.2575----
2.795328400.1947----
2.796328410.2109----
2.797228420.1597----
2.798228430.4367----
2.799228440.169----
2.800228450.4285----
2.801228460.5736----
2.802228470.3591----
2.803128480.2364----
2.804128490.3626----
2.805128500.1216----
2.806128510.3223----
2.807128520.2612----
2.808128530.1934----
2.809128540.3137----
2.810028550.2874----
2.811028560.2845----
2.812028570.4606----
2.813028580.4252----
2.814028590.1587----
2.815028600.2167----
2.815928610.248----
2.816928620.7752----
2.817928630.4594----
2.818928640.6002----
2.819928650.1635----
2.820928660.2643----
2.821928670.4415----
2.822828680.5654----
2.823828690.3358----
2.824828700.3752----
2.825828710.2576----
2.826828720.3116----
2.827828730.2287----
2.828728740.5022----
2.829728750.7434----
2.830728760.3239----
2.831728770.3038----
2.832728780.6397----
2.833728790.262----
2.834628800.0492----
2.835628810.3264----
2.836628820.1855----
2.837628830.1059----
2.838628841.0493----
2.839628850.5651----
2.840628860.246----
2.841528870.3116----
2.842528880.9535----
2.843528890.3018----
2.844528900.477----
2.845528910.4697----
2.846528920.3028----
2.847428930.1494----
2.848428940.3779----
2.849428950.436----
2.850428960.4104----
2.851428970.3295----
2.852428980.128----
2.853328990.9193----
2.854329000.2787----
2.855329010.2746----
2.856329020.5146----
2.857329030.6607----
2.858329040.3297----
2.859329050.2913----
2.860229060.4855----
2.861229070.33150.78880.67590.51410.7093
2.862229080.3065----
2.863229090.1963----
2.864229100.1822----
2.865229110.5729----
2.866129120.4219----
2.867129130.2837----
2.868129140.1562----
2.869129150.4343----
2.870129160.287----
2.871129170.2159----
2.872029180.421----
2.873029190.4408----
2.874029200.4993----
2.87529210.5581----
2.876029220.4127----
2.877029230.2388----
2.878029240.6897----
2.878929250.4772----
2.879929260.14----
2.880929270.5986----
2.881929280.3224----
2.882929290.4514----
2.883929300.4632----
2.884829310.7036----
2.885829320.3824----
2.886829330.335----
2.887829340.2227----
2.888829350.3978----
2.889829360.6791----
2.890729370.6434----
2.891729380.3197----
2.892729390.2692----
2.893729400.4412----
2.894729410.4292----
2.895729420.4835----
2.896729430.3929----
2.897629440.2987----
2.898629450.4143----
2.899629460.1872----
2.900629470.6787----
2.901629480.3208----
2.902629490.2856----
2.903529500.412----
2.904529510.4724----
2.905529520.7545----
2.906529530.2691----
2.907529540.3376----
2.908529550.6738----
2.909429560.4907----
2.910429570.0425----
2.911429580.2025----
2.912429590.5872----
2.913429600.2862----
2.914429610.1192----
2.915429620.7957----
2.916329630.5745----
2.917329640.3342----
2.918329650.5756----
2.919329660.3301----
2.920329670.5396----
2.921329680.248----
2.922229690.2135----
2.923229700.2297----
2.924229710.3205----
2.925229720.4763----
2.926229730.3079----
2.927229740.2189----
2.928129750.3928----
2.929129760.3047----
2.930129770.4384----
2.931129780.2607----
2.932129790.2344----
2.933129800.2591----
2.934129810.2901----
2.935029820.0912----
2.936029830.6679----
2.937029840.4532----
2.938029850.2569----
2.939029860.183----
2.940029870.1677----
2.940929880.2964----
2.941929890.3214----
2.942929900.4345----
2.943929910.2537----
2.944929920.187----
2.945929930.2577----
2.946929940.5357----
2.947829950.6319----
2.948829960.4426----
2.949829970.3953----
2.950829980.6083----
2.951829990.6614----
2.952830000.7353----
2.953730010.3747----
2.954730020.4253----
2.955730030.3911----
2.956730040.2605----
2.957730050.2481----
2.958730060.9352----
2.959630070.0924----
2.960630080.2654----
2.961630090.3855----
2.962630100.2321----
2.963630110.3513----
2.964630120.1755----
2.965630130.231----
2.966530140.7136----
2.967530150.1341----
2.968530160.5539----
2.969530170.498----
2.970530180.2991----
2.971530190.2015----
2.972430200.2851----
2.973430210.5233----
2.974430220.3245----
2.975430230.4117----
2.976430240.1747----
2.977430250.4728----
2.978330260.658----
2.979330270.7424----
2.980330280.5564----
2.981330290.3174----
2.982330300.5552----
2.983330310.1804----
2.984330320.5327----
2.985230330.3662----
2.986230340.452----
2.987230350.105----
2.988230360.6204----
2.989230370.2357----
2.990230380.3682----
2.991130390.3431----
2.992130400.4461----
2.993130410.2229----
2.994130420.369----
2.995130430.2761----
2.996130440.1884----
2.997030450.5279----
2.998030460.5891----
2.999030470.2687----
3.030480.08410.78670.67640.51450.7100

</details>

Framework Versions

  • Python: 3.10.12
  • Sentence Transformers: 3.2.1
  • Transformers: 4.44.2
  • PyTorch: 2.5.0+cu121
  • Accelerate: 0.34.2
  • Datasets: 3.0.2
  • Tokenizers: 0.19.1

Citation

BibTeX

Sentence Transformers
bibtex
@inproceedings{reimers-2019-sentence-bert,
    title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
    author = "Reimers, Nils and Gurevych, Iryna",
    booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
    month = "11",
    year = "2019",
    publisher = "Association for Computational Linguistics",
    url = "https://arxiv.org/abs/1908.10084",
}
GISTEmbedLoss
bibtex
@misc{solatorio2024gistembed,
    title={GISTEmbed: Guided In-sample Selection of Training Negatives for Text Embedding Fine-tuning},
    author={Aivin V. Solatorio},
    year={2024},
    eprint={2402.16829},
    archivePrefix={arXiv},
    primaryClass={cs.LG}
}

<!--

Glossary

Clearly define terms in order to be accessible across audiences. -->

<!--

Model Card Authors

Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction. -->

<!--

Model Card Contact

Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors. -->