SentenceTransformer

This is a sentence-transformers model trained on the EmotionClassification, FEVER, GooAQ, HotpotQA, MAmmoTH2, MIRACL, MSMARCO, NFCorpus, NaturalQuestions, PAQ, SQuAD, SciFact, SyntheticClassificationData and TriviaQA datasets. It maps sentences & paragraphs to a 1536-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, classification, clustering, and more.

Model Details

Model Description

  • Model Type: Sentence Transformer
  • Maximum Sequence Length: 2048 tokens
  • Output Dimensionality: 1536 dimensions
  • Similarity Function: Cosine Similarity
  • Supported Modalities: Text, Image, Audio, Video, Message
  • Training Datasets:
    • EmotionClassification
    • FEVER
    • GooAQ
    • HotpotQA
    • MAmmoTH2
    • MIRACL
    • MSMARCO
    • NFCorpus
    • NaturalQuestions
    • PAQ
    • SQuAD
    • SciFact
    • SyntheticClassificationData
    • TriviaQA

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'transformer_task': 'feature-extraction', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'last_hidden_state'}, 'image': {'method': 'forward', 'method_output_name': 'last_hidden_state'}, 'audio': {'method': 'forward', 'method_output_name': 'last_hidden_state'}, 'video': {'method': 'forward', 'method_output_name': 'last_hidden_state'}, 'message': {'method': 'forward', 'method_output_name': 'last_hidden_state', 'format': 'structured'}}, 'module_output_name': 'token_embeddings', 'architecture': 'Gemma4Model'})
  (1): MultiheadAttentionPooling({'hidden_size': 1536, 'num_attention_heads': 16, 'intermediate_size': 6144, 'layer_norm_eps': 1e-06})
  (2): Normalize({})
)

Usage

Direct Usage (Sentence Transformers)

First install the Sentence Transformers library:

pip install -U sentence-transformers

Then you can load this model and run inference.

from sentence_transformers import SentenceTransformer

# Download from the 🤗 Hub
model = SentenceTransformer("shadowlilac/omniembed")
# Run inference
queries = [
    'query: who is responsible for choosing shows for the theatre',
]
documents = [
    "Theatre director A theatre director or stage director is an instructor in the theatre field who oversees and orchestrates the mounting of a theatre production (a play, an opera, a musical, or a devised piece of work) by unifying various endeavours and aspects of production. The director's function is to ensure the quality and completeness of theatre production and to lead the members of the creative team into realizing their artistic vision for it. The director therefore collaborates with a team of creative individuals and other staff, coordinating research, stagecraft, costume design, props, lighting design, acting, set design, stage combat, and sound design for the production. If the production he or she is mounting is a new piece of writing or a (new) translation of a play, the director may also work with the playwright or translator. In contemporary theatre, after the playwright, the director is generally the primary visionary, making decisions on the artistic concept and interpretation of the play and its staging. Different directors occupy different places of authority and responsibility, depending on the structure and philosophy of individual theatre companies. Directors use a wide variety of techniques, philosophies, and levels of collaboration.",
    "These advantages offset the high stress, physical exertion costs, and other risks of the migration. Predation can be heightened during migration: Eleonora's falcon Falco eleonorae, which breeds on Mediterranean islands, has a very late breeding season, coordinated with the autumn passage of southbound passerine migrants, which it feeds to its young. A similar strategy is adopted by the greater noctule bat, which preys on nocturnal passerine migrants. The higher concentrations of migrating birds at stopover sites make them prone to parasites and pathogens, which require a heightened immune response.",
    'Islam in Europe of Poles have a negative attitude towards Muslims, with only 23% having a positive attitude towards them. Furthermore, a majority agreed with statements like "Muslims are intolerant of customs and values other than their own." (64% agreed, 12% disagreed), "Muslims living in Western European countries generally do not acquire customs and values that are characteristic for the majority of the population of that country." (63% agreed, 14% disagreed), "Islam encourages violence more than other religions." (51% agreed, 24% disagreed). A February 2017 poll of 10 000 people in 10 Eurpean countries by Chatham House found on average a majority were',
]
query_embeddings = model.encode_query(queries)
document_embeddings = model.encode_document(documents)
print(query_embeddings.shape, document_embeddings.shape)
# [1, 1536] [3, 1536]

# Get the similarity scores for the embeddings
similarities = model.similarity(query_embeddings, document_embeddings)
print(similarities)
# tensor([[ 0.5173, -0.0165, -0.0641]])

Evaluation

Metrics

Information Retrieval

Metric Value
cosine_accuracy@1 0.7648
cosine_accuracy@3 0.835
cosine_accuracy@5 0.8474
cosine_accuracy@10 0.8587
cosine_precision@1 0.7648
cosine_precision@3 0.2783
cosine_precision@5 0.1695
cosine_precision@10 0.0859
cosine_recall@1 0.7648
cosine_recall@3 0.835
cosine_recall@5 0.8474
cosine_recall@10 0.8587
cosine_ndcg@10 0.8156
cosine_mrr@10 0.8014
cosine_map@100 0.8038

Training Details

Training Datasets

EmotionClassification

EmotionClassification

  • Dataset: EmotionClassification
  • Size: 8,496 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 12 tokens
    • mean: 29.38 tokens
    • max: 65 tokens
    • min: 7 tokens
    • mean: 7.27 tokens
    • max: 8 tokens
    • min: 7 tokens
    • mean: 7.13 tokens
    • max: 8 tokens
  • Samples:
    question positive negative
    query: i feel like the supportive wife who does whatever he says and sits at home waiting for him to call with a plan of action love joy
    ive worked plenty of them and have yet to find one that leaves me feeling satisfied with the way ive spent another day that i will never get back joy love
    query: i feel uncontrollably agitated and i have no idea why fear surprise
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
FEVER

FEVER

  • Dataset: FEVER
  • Size: 93,190 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 13 tokens
    • mean: 18.63 tokens
    • max: 32 tokens
    • min: 68 tokens
    • mean: 377.32 tokens
    • max: 972 tokens
    • min: 13 tokens
    • mean: 214.43 tokens
    • max: 967 tokens
  • Samples:
    question positive negative
    query: Lady Gaga is an artist. The Fame Monster is a reissue of American singer Lady Gaga 's debut studio album , The Fame ( 2008 ) , and was released on November 18 , 2009 , through Interscope Records . Initially planned solely as a deluxe edition reissue of The Fame , Interscope later decided to release the eight new songs as a standalone EP in some territories . The decision was also due to Gaga believing the re-release was too expensive and that the albums were conceptually different , describing them as yin and yang . A super deluxe edition of The Fame Monster including The Fame and additional merchandise , including a lock of her wig , was released on December 15 , 2009 . Musically , The Fame Monster is a pop album with influences of disco , glam rock , and synthpop music of the 1970s and 1980s , as well as industrial and gothic music . The album was also inspired by fashion shows and runways . According to Gaga , the album deals with the darker side of fame , and are lyrically expressed through a monster me... The Billboard Music Award winners for Top Dance/Electronic Artist : . Notable honorees include Lady Gaga , David Guetta , and Madonna .
    query: Lily James appeared in War & Peace. Lily Chloe Ninette Thomson ( born 5 April 1989 ) , known as Lily James , is an English actress . She played Lady Rose Aldridge in the ITV period drama Downton Abbey and the title role in the 2015 Disney film Cinderella . James began her professional acting career as Ethel Brown in the 2010 BBC production Just William . In 2011 and 2012 , she earned warm reviews in several London theatre productions . She began to appear in Hollywood films in 2012 , with roles in Wrath of the Titans and Fast Girls , and was seen in further television roles , including that of Countess Natasha Rostova in the 2016 BBC historical drama series War & Peace . War & Peace is a British-American historical period drama television serial first broadcast on BBC One on 3 January 2016 . It is a six-part adaptation of the novel War and Peace by the Russian author Leo Tolstoy , written by Andrew Davies and directed by Tom Harper . War & Peace aired on A&E , Lifetime , and History Channel in the United States as four two-hour episodes , beginning on 18 January 2016 . The serial stars Paul Dano , Lily James and James Norton in the leading roles .
    Willie Nelson has written many books with another person. Willie Hugh Nelson ( born April 29 , 1933 ) is an American musician , singer , songwriter , author , poet , actor , and activist . The critical success of the album Shotgun Willie ( 1973 ) , combined with the critical and commercial success of Red Headed Stranger ( 1975 ) and Stardust ( 1978 ) , made Nelson one of the most recognized artists in country music . He was one of the main figures of outlaw country , a subgenre of country music that developed in the late 1960s as a reaction to the conservative restrictions of the Nashville sound . Nelson has acted in over 30 films , co-authored several books , and has been involved in activism for the use of biofuels and the legalization of marijuana . Born during the Great Depression , and raised by his grandparents , Nelson wrote his first song at age seven and joined his first band at ten . During high school , he toured locally with the Bohemian Polka as their lead singer and guitar player . After graduating from high school in 1950 , h... Pretty Paper is a Christmas novel co-written by Willie Nelson and David Ritz . The book presents a fictional account about the life of the street vendor who inspired the song of the same name .
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
GooAQ

GooAQ

  • Dataset: GooAQ
  • Size: 66,466 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 14 tokens
    • mean: 17.21 tokens
    • max: 23 tokens
    • min: 25 tokens
    • mean: 61.4 tokens
    • max: 168 tokens
    • min: 23 tokens
    • mean: 60.27 tokens
    • max: 90 tokens
  • Samples:
    question positive negative
    how long are nts good for? The NTS expiration date is included on the NTS. Your NTS is valid for one testing event or until the expiration date, whichever is first exhausted for each examination section. This includes non-testing months. Excluding certain prescription medicines such as nitroglycerin, insulin, and liquid antibiotics, most medicines stored under reasonable conditions retain at least 70% to 80% of their original potency for at least 1 to 2 years after the expiration date, even after the container has been opened.
    query: are we weightless in space? Earth-orbiting astronauts are weightless for the same reasons that riders of a free-falling amusement park ride or a free-falling elevator are weightless. They are weightless because there is no external contact force pushing or pulling upon their body. In each case, gravity is the only force acting upon their body. Microgravity is sometimes called "zero gravity," but this is misleading. Is There Gravity in Space? Gravity causes every object to pull every other object toward it. Some people think that there is no gravity in space. In fact, a small amount of gravity can be found everywhere in space.
    query: what are the 5 major branches of philosophy explain? Traditionally, the main branches are Metaphysics, Epistemology, Logic, Aesthetics, and Ethics. The reality is less simple. There are four major branches of science; each branch is categorized in different type of subjects that covers different areas of studies such us chemistry, physics, math, astronomy etc. The four major branches of science are, Mathematics and logic, biological science, physical science and social science.
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
HotpotQA

HotpotQA

  • Dataset: HotpotQA
  • Size: 113,132 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 15 tokens
    • mean: 29.81 tokens
    • max: 99 tokens
    • min: 20 tokens
    • mean: 111.06 tokens
    • max: 289 tokens
    • min: 19 tokens
    • mean: 72.63 tokens
    • max: 205 tokens
  • Samples:
    question positive negative
    In which country is the agency that the Titan Mare Explorer was proposed to part of the federal government? Titan Mare Explorer (TiME) is a proposed design for a lander for Saturn's moon Titan. TiME is a relatively low-cost, outer-planet mission designed to measure the organic constituents on Titan and would have performed the first nautical exploration of an extraterrestrial sea, analyze its nature and, possibly, observe its shoreline. As a Discovery-class mission it was designed to be cost-capped at US$425 million, not counting launch vehicle funding. It was proposed to NASA in 2009 by Proxemy Research as a scout-like pioneering mission, originally as part of NASA's Discovery Program. The TiME mission design reached the finalist stage during that Discovery mission selection, but was not selected, and despite attempts in the U.S. Senate failed to get earmark funding in 2013. The Jet Propulsion Laboratory (JPL) is a federally funded research and development center and NASA field center in La Cañada Flintridge, California and Pasadena, California, United States.
    query: In what year was the male co-host of the upcoming series "The Handmade Project" born? Nicholas "Nick" Offerman (born June 26, 1970) is an American actor, voice actor, producer, writer, comedian and carpenter widely known for his breakout role as Ron Swanson in the acclaimed NBC sitcom "Parks and Recreation", for which he received the Television Critics Association Award for Individual Achievement in Comedy. His first major television role since the end of "Parks and Recreation" was his role as Karl Weathers in the FX series "Fargo", for which he received a Critics' Choice Television Award nomination for Best Supporting Actor in a Movie/Miniseries and Gavin in the Ice Age franchise. Milo Anthony Ventimiglia ( ; born July 8, 1977) is an American actor. After a series of roles in television series and parts in independent films, he gained international recognition for his roles as Jess Mariano on the television series "Gilmore Girls" from 2002 to 2006, and as Peter Petrelli on the NBC series "Heroes" from 2006 to 2011.
    query: Siamese Ponds Wilderness Area is a unit of the Forest Preserve in what northeastern US state? The Adirondack Park is a part of New York's Forest Preserve in New York, United States. The park's boundary corresponds to the Adirondack Mountains. Unlike most preserves, about 52 percent of the land is privately owned inholdings heavily regulated by the Adirondack Park Agency. This area contains 102 towns and villages, as well as numerous farms, businesses, and an active timber harvesting industry. The year-round population is 132,000, with 200,000 seasonal residents. The inclusion of human communities makes the park one of the great experiments in conservation in the industrialized world. Albany International Airport (IATA: ALB, ICAO: KALB, FAA LID: ALB) is a public airport seven miles (11 km) northwest of Albany, in Albany County, New York, United States. It is owned by the Albany County Airport Authority.
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
MAmmoTH2

MAmmoTH2

  • Dataset: MAmmoTH2
  • Size: 211,252 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 19 tokens
    • mean: 64.78 tokens
    • max: 296 tokens
    • min: 68 tokens
    • mean: 257.88 tokens
    • max: 730 tokens
    • min: 30 tokens
    • mean: 244.08 tokens
    • max: 620 tokens
  • Samples:
    question positive negative
    query: Why do we use Poincaré invariant Lagrangians in field theories despite the real world not being homogeneous, isotropic, or exhibiting perfect translational and rotational invariance? The use of Poincaré invariant Lagrangians in field theories is based on the assumption that the fundamental laws of physics are invariant under these transformations, not that the universe itself is. For instance, the speed of light is constant in all directions and physical constants like the electron's mass do not vary with position. When constructing a Lagrangian, we are effectively describing the dynamics of the system, not the initial conditions or the specific state of the universe.

    In classical mechanics, an external potential like $V(x)$ does break translational invariance. However, interaction potentials, such as $V(x_1 - x_2)$ between two particles, preserve this invariance. Similarly, in quantum field theory, interaction terms between particles typically have this form, maintaining Poincaré invariance.
    In a Poincare invariant theory, the Lagrangian density should not exhibit explicit dependence on space-time coordinates. This means that the functional form of the Lagrangian density, $\mathcal{L}(\phi, \partial\phi, \partial^2\phi, \ldots, ;x)$, should not change if we perform a space-time translation. It is important to note that $\mathcal{L}$ is indeed a function of fields $\phi$, their derivatives, and the space-time point $x$.

    Yes, this absence of explicit space-time dependence leads to the condition:
    $$\tag{1} \partial_{\mu} \mathcal{L}=0. $$

    However, the fields $\phi$ themselves may depend on space-time, so there is still an implicit dependence. The full derivative considering this is called the total space-time derivative:
    $$ d_{\mu}\mathcal{L}
    =~\partial_{\mu} \mathcal{L}
    + \frac{\partial\mathcal{L}}{\partial\phi}\partial_{\mu}\phi
    + \frac{\partial\mathcal{L}}{\partial(\partial_{\nu}\phi)}
    \partial_{\nu}\partial_{\mu}\phi
    + \ldots .
    $$

    The condition (1), which result...
    query: What is the temperature required for initiating hydrogen fusion, and how does this temperature change after a successful reaction? Please provide a brief explanation of the process. The temperature necessary for hydrogen fusion, specifically the proton-proton chain, which is the dominant process in the Sun, is around 15 million Kelvin (15 MK or 15 x 10^6°C). At this high temperature, protons have enough kinetic energy to overcome their natural electrostatic repulsion and come close enough for the strong nuclear force to take effect, allowing them to fuse.

    The fusion process does not involve all protons融合simultaneously; rather, it consists of a series of reactions with intermediate steps. One of these steps involves the conversion of a proton into a neutron, releasing a positron and a neutrino in the process (through beta-plus decay). The end result is the fusion of four hydrogen nuclei (protons) into a helium nucleus, releasing energy in the form of gamma rays.

    It's important to note that the temperature after the reaction is not a fixed value, as the Sun's core maintains a constant temperature due to the balance between energy production from fusion and energy ...
    The temperatures required for nuclear fusion to occur are exceptionally high, typically in the millions of degrees Celsius. For instance, the International Thermonuclear Experimental Reactor (ITER) aims to achieve a plasma temperature of 150 million degrees Celsius (150.000.000K).

    In magnetic confinement fusion plasmas, temperatures around 15 keV, equivalent to about 170 megakelvins, are sufficient to prevent the plasma from neutralizing and ensure a high probability of fusion reactions between the positively charged nuclei, overcoming their electrostatic repulsion.

    The necessary temperature for various fusion reactions varies. The deuterium-tritium (DT) reaction, which is of interest due to its relatively low temperature requirements, peaks at approximately 70 keV (800 million kelvin). This is lower than other reactions commonly considered for fusion energy production.

    It's important to note that achieving fusion at lower temperatures becomes increasingly challenging, as the fusion...
    query: What is the expected voltage for fully charged AAA Ni-MH batteries in series, and how can overcharging be determined? Additionally, how should the charging rate differ for Ni-MH batteries of different sizes (e.g., AA and AAA)? When AAA Ni-MH batteries are fully charged in series, the total voltage typically reaches around 3.0 to 3.1 volts. Overcharging can be determined by monitoring the battery's capacity after charging. If the capacity is close to the rated capacity or similar to the original capacity, the batteries are likely not overcharged. To ensure accurate charging, use a method based on dV/dt (change in voltage with respect to time) or DT/dt (change in temperature with respect to time) rather than voltage thresholds.

    The charging rate should be chosen according to the battery size. For AAA Ni-MH batteries, a charging rate of 350 to 500mA is appropriate, while for AA batteries, a higher rate of至少 700mA is recommended. Ideally, the charging rate should be at least C/3 (one-third of the rated capacity) to ensure a strong dV/dt signal. If automatic adjustment is not possible, a manual selection mechanism like a switch can be used to cater to different battery sizes.
    It is normal to measure around 4.16 V to 4.18 V per series of three fully charged NiMH batteries. The voltage per cell at full charge is typically around 1.45 V, not 1.2 V.

    NiMH batteries can tolerate some overvoltage, especially at low charge currents, a process known as slow charging. This can cause the cells to heat up during charging. For more precise charging, fast chargers use zero delta V or negative delta V detection to determine when charging is complete.

    Regarding the 9 V charger output, since it is confirmed that the charger connects the two series packs in parallel during charging, creating a 6S1P configuration, the 9 V and 0.2 A output makes sense. The charger might be a "smart charger" using delta V sensing to terminate charging.

    Considering the 0.2 A charge current, it would take at least 1.1 Ah / 0.2 A = 5.5 hours to charge the batteries to 80% SOC (State of Charge). To reach 100% SOC, you may need an additional 50% of charging time, approximately 2.75 hours more. ...
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
MIRACL

MIRACL

  • Dataset: MIRACL
  • Size: 52,898 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 11 tokens
    • mean: 19.6 tokens
    • max: 40 tokens
    • min: 48 tokens
    • mean: 191.38 tokens
    • max: 1009 tokens
    • min: 21 tokens
    • mean: 167.01 tokens
    • max: 1309 tokens
  • Samples:
    question positive negative
    query: শাহ এ এম এস কিবরিয়া কত সালে বাংলাদেশের অর্থমন্ত্রী হয় ? ১৯৫৪ সালে তৎকালীন পাকিস্তানের বৈদেশিক বিভাগে যোগদান করে কিবরিয়া পররাষ্ট্রবিষয়ক মন্ত্রণালয়ের রাজনৈতিক বিষয়ক বিভাগের মহাপরিচালক হয়েছিলেন। ১৯৮১-১৯৯২ সালের মধ্যেকার সময়ে তিনি জাতিসংঘের এশিয়া ও প্রশান্ত মহাসাগরীয় অঞ্চলের অর্থনৈতিক এবং সামাজিক কমিশন (এসকাপ)-এর প্রধান নির্বাহী ছিলেন। এছাড়াও, অর্থমন্ত্রী হিসেবে কিবরিয়া ১৯৯৬-২০০১ মেয়াদে তৎকালীন প্রধানমন্ত্রী শেখ হাসিনা সরকারের অর্থ মন্ত্রণালয়ের দায়িত্বে ছিলেন। ২০০১ সালের সংসদ নির্বাচনে এম.পি বা সংসদ সদস্য হিসেবে নির্বাচিত হয়েছিলেন। বিরোধীদের কণ্ঠস্বররোধে বাংলাদেশ ভয়ানক ঝুঁকিতে অবস্থান করছে। দলগতভাবে সরকারের কার্যক্রমের বিপক্ষে নথিবদ্ধ বা বলার চেষ্টা করার পর তাদেরকে উত্তরোত্তর ভীতিপ্রদর্শন ও আক্রমণ করা হচ্ছে। ২৭ জানুয়ারি, ২০০৫ তারিখে সাবেক অর্থমন্ত্রী ও ধর্মনিরপেক্ষ বাংলাদেশ আওয়ামী লীগের জ্যেষ্ঠ সদস্য শাহ আবু মোহাম্মদ শামসুল কিবরিয়াকে হত্যা করা হয়। এরপর ২০০৪ সালে আওয়ামী লীগের নেতা শেখ হাসিনাকে গ্রেনেড ছুঁড়ে হত্যার চেষ্টা চালানো হয়। তিনি রক্ষা পেলেও তাঁর দলের তেইশ সদস্য নিহত হন। আওয়ামী লীগের অন্যান্য কনিষ্ঠ-জ্যেষ্ঠ সদস্যদেরকে হয়রানি ও ভীতিপ্রদর্শনের কথাও জানা যায়।
    Apa penyebab Pertempuran Pertama Bud Dajo? Meskipun Moro permusuhan mereda selama hari-hari terakhir gubernur Wood (masa jabatan pengganti Wood, Tasker H. Bliss, adalah periode kedamaian relatif), itu dalam suasana tegang ini kemarahan Moro bahwa peristiwa yang mengarah ke Pertempuran Bud Dajo berlangsung. Menurut Hermann Hagedorn, orang-orang Moro yang tinggal di Bud Dajo adalah "sisa-sisa kain-menandai-dan-berbuntut dua atau tiga pemberontakan, kambing hitam dari selusin lipatan, pemberontak melawan pajak pemungutan suara, mati-keras terhadap pendudukan Amerika, penjahat yang tidak mengenal datto (penguasa) dan dikutuk oleh elemen stabil di antara Moro itu sendiri." Vic Hurley, penulis Swish of the Kris, menambahkan bahwa" penyebab yang berkontribusi pada pertempuran Bud Dajo adalah kebencian atas pembatasan perdagangan budak, merampok ternak, dan hak mencuri perempuan dari Moro Sulu." Di sisi lain, Mayor Hugh Scott menggambarkan para penghuni Bud Dajo sebagai penduduk desa yang tidak aman yang mencari perlindungan dari pergo... Wood berpendapat bahwa mengepung (sekitarnya) Bud Dajo tidak akan mungkin, mengingat persediaan yang cukup dari para pemberontak, lingkaran dari gunung, daerah berhutan lebat, dan keberadaan jalan tersembunyi di sisi gunung. Selama Pertempuran Kedua Bud Dajo, pada bulan Desember 1911, Jenderal "Black Jack" Pershing (gubernur militer ketiga dan terakhir Provinsi Moro) berhasil mengepung Bud Dajo, dengan memotong jejak lateral yang mengelilingi gunung, 300 yd ( 270 m) menurun dari bibir kawah. Ini memotong Moro di kawah dari jalur gunung yang tersembunyi. Namun, situasi taktis yang dihadapi Pershing pada tahun 1911 jauh berbeda dengan yang dihadapi Wood pada tahun 1906.
    query: เจ้าฟ้าเพชรรัตนราชสุดา สิริโสภาพัณณวดี คือใคร? ท่านผู้หญิงศรีนาถ สุริยะ เป็นทั้งคุณข้าหลวงในพระนางเจ้าสุวัทนา พระวรราชเทวี และพระอาจารย์ในพระองค์สมเด็จพระเจ้าภคินีเธอ เจ้าฟ้าเพชรรัตนราชสุดา สิริโสภาพัณณวดี พระราชธิดาเพียงพระองค์เดียวใน พระบาทสมเด็จพระมงกุฎเกล้าเจ้าอยู่หัว กับ พระนางเจ้าสุวัทนา พระวรราชเทวี และ สมเด็จพระเจ้าภคินีเธอ เจ้าฟ้าเพชรรัตนราชสุดา สิริโสภาพัณณวดี ซึ่งทรงไว้วางพระทัยมาก ท่านผู้หญิงเคยตามเสด็จ พระนางเจ้าสุวัทนา พระวรราชเทวี และ สมเด็จพระเจ้าภคินีเธอ เจ้าฟ้าเพชรรัตนราชสุดา สิริโสภาพัณณวดี ประพาสสหรัฐอเมริกา แม้ในเวลานี้สมเด็จพระเจ้าภคินีเธอ เจ้าฟ้าเพชรรัตนราชสุดา สิริโสภาพัณณวดีจะเสด็จสวรรคตแล้ว แต่พระองค์ยังคงสถิตย์อยู่ในดวงใจและเป็นดั่งดวงแก้วดวงขวัญแห่งกำลังใจให้แก่คณะผู้บริหาร ข้าราชการครู บุคลากรและนักเรียนโรงเรียนห้องสอนศึกษา ในพระอุปถัมภ์ฯ อยู่เสมอ
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
MSMARCO

MSMARCO

  • Dataset: MSMARCO
  • Size: 333,132 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 10 tokens
    • mean: 13.85 tokens
    • max: 20 tokens
    • min: 27 tokens
    • mean: 88.76 tokens
    • max: 224 tokens
    • min: 33 tokens
    • mean: 85.91 tokens
    • max: 176 tokens
  • Samples:
    question positive negative
    query: symptoms of iron overload Hemochromatosis can affect many parts of the body and cause various signs and symptoms. Many of the signs and symptoms are similar to those of other diseases. Signs and symptoms of hemochromatosis usually don't occur until middle age. Women are more likely to have general symptoms first, such as fatigue (tiredness). In men, complications such as diabetes or cirrhosis (scarring of the liver) often are the first signs of the disease. Signs and symptoms also vary based on the severity of the disease. Common signs and symptoms of hemochromatosis include joint pain, fatigue, general weakness, weight loss, and stomach pain. Not everyone who has hemochromatosis has signs or symptoms of the disease. Estimates of how many people develop signs and symptoms vary greatly. Symptoms of this syndrome include: Frequent nosebleeds in children; Bleeding in the gastrointestinal tract (GI), including loss of blood in the stool, or dark or black stools; Seizures or unexplained, small strokes (from bleeding into the brain) Shortness of breath; Enlarged liver; Heart failure; Anemia caused by low iron
    query: which mountains separate france from italy and switzerland The Alps form a large mountain range dominating Central Europe, including parts of Italy, France, Switzerland, Liechtenstein, Austria, Slovenia, Germany and possibly Hungary (if one includes the Guenser Günser gebirge or Ödenburger Oedenburger ödenburger gebirge In). the alpshe Alps form a large mountain range dominating Central Europe, including parts of Italy, France, Switzerland, Liechtenstein, Austria, Slovenia, Germany and possibly Hungary (if one includes the Guenser Günser gebirge or Ödenburger Oedenburger ödenburger gebirge In). the alps About Switzerland. Switzerland lies in the south west of Europe, entirely land locked by Germany, France, Italy, Austria and Liechtenstein and is home to a climate which varies largely across the small country, a result of the topography which rises and falls across the land.
    symptoms for sty in toddlers Here are a few symptoms of recurring eye stye in children you can watch out for: A small reddish bump near your child’s eyelashes. Swelling in the affected eye lid; Pain in the affected eye lid; Watery eyes [ Read: Papular Urticaria In Children] Treatment For Stye In Children: A sty in your child’s eye may be uncomfortable and painful, but in most cases it will go away on its own. You can do a warm compress on your child’s sty which will help soothe the pain and release the pus. Eyelid Problems. Eyelid Problems. Eyelid problems may be caused by irritation or infection. Common symptoms are redness, swelling, itching, and excess tearing; some drainage may also be present. Common symptoms of a stye (hordeolum) include swelling and tenderness or a tender red lump on the eyelid with occasional discharge from the lump.
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
NFCorpus

NFCorpus

  • Dataset: NFCorpus
  • Size: 2,256 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 7 tokens
    • mean: 11.77 tokens
    • max: 24 tokens
    • min: 62 tokens
    • mean: 323.72 tokens
    • max: 2048 tokens
    • min: 25 tokens
    • mean: 291.27 tokens
    • max: 699 tokens
  • Samples:
    question positive negative
    query: gingerols OBJECTIVE: Watermelon is a rich source of citrulline, an amino acid that can be metabolized to arginine, a conditionally essential amino acid for humans. Arginine is the nitrogenous substrate used in the synthesis of nitric oxide and plays an essential role in cardiovascular and immune functions. No detailed studies have been conducted to evaluate plasma arginine response in humans after long-term feeding of citrulline from natural plant sources. This study investigated if watermelon juice consumption increases fasting concentrations of plasma arginine, ornithine, and citrulline in healthy adult humans. METHODS: Subjects (n = 12-23/treatment) consumed a controlled diet and 0 (control), 780, or 1560 g of watermelon juice per day for 3 wk in a crossover design. The treatments provided 1 and 2 g of citrulline per day. Treatment periods were preceded by washout periods of 2 to 4 wk. RESULTS: Compared with the baseline, fasting plasma arginine concentrations increased 12% after 3 wk of the ... BACKGROUND: Lifestyle choices are associated with cardiovascular disease and mortality. The purpose of this study was to compare adherence to healthy lifestyle habits in adults between 1988 and 2006. METHODS: Analysis of adherence to 5 healthy lifestyle trends (>or=5 fruits and vegetables/day, regular exercise >12 times/month, maintaining healthy weight [body mass index 18.5-29.9 kg/m(2)], moderate alcohol consumption [up to 1 drink/day for women, 2/day for men] and not smoking) in the National Health and Nutrition Examination Survey 1988-1994 were compared with results from the National Health and Nutrition Examination Survey 2001-2006 among adults aged 40-74 years. RESULTS: Over the last 18 years, the percent of adults aged 40-74 years with a body mass index >or=30 kg/m(2) has increased from 28% to 36% (P <.05); physical activity 12 times a month or more has decreased from 53% to 43% (P <.05); smoking rates have not changed (26.9% to 26.1%); eating 5 or more fruits and vegetables a d...
    query: cosmic rays The authors evaluated the possible association between dietary history and plasma clastogenic factors in children who immigrated to Israel between 1989 and 1993 from regions contaminated by the Chernobyl accident. The authors compared questionnaire data about demographic variables, dietary histories before and after immigration occurred, and health status with clastogenic factor scores for 162 immigrants. Logistic regression analysis revealed a negative association between clastogenic factor scores and frequency of consumption of fresh vegetables and fruit among children < or = 7 yr of age during the postimmigration period. Intake of eggs and fish by boys who were < or = 7 yr of age prior to immigration was associated positively with clastogenic factor scores. Consumption of fresh vegetables and fruits afforded protection to the immune systems of children who were < or = 7 yr of age. To assess the physiologic effects of cherry consumption, we measured plasma urate, antioxidant and inflammatory markers in 10 healthy women who consumed Bing sweet cherries. The women, age 22-40 y, consumed two servings (280 g) of cherries after an overnight fast. Blood and urine samples were taken before the cherry dose, and at 1.5, 3 and 5 h postdose. Plasma urate decreased 5 h postdose, mean +/- SEM = 183 +/- 15 micro mol/L compared with predose baseline of 214 +/- 13 micro mol/L (P < 0.05). Urinary urate increased postdose, with peak excretion of 350 +/- 33 micro mol/mmol creatinine 3 h postdose compared with 202 +/- 13 at baseline (P < 0.01). Plasma C-reactive protein (CRP) and nitric oxide (NO) concentrations had decreased marginally 3 h postdose (P < 0.1), whereas plasma albumin and tumor necrosis factor-alpha were unchanged. The vitamin C content of the cherries was solely as dehydroascorbic acid, but postdose increases in plasma ascorbic acid indicated that dehydroascorbic aci...
    Tylenol We report the annual results of patch testing with lavender oil for a 9-year period from 1990 to 1998 in Japan. Using Finn Chambers and Scanpor tape, we performed 2-day closed patch testing with lavender oil 20% pet. on the upper back of each patient suspected of having cosmetic contact dermatitis. We compared the frequency of positive patch tests to lavender oil each year with those to other fragrances. We diagnosed contact allergy when patch test reactions were + or <+ at 1 day after removal. The positivity rate of lavender oil was 3.7% (0-13.9%) during the 9-year period from 1990 to 1998. The positivity rate of lavender oil increased suddenly in 1997. Recently, in Japan, there has been a trend for aromatherapy using lavender oil. With this trend, placing dried lavender flowers in pillows, drawers, cabinets, or rooms has become a new fashion. We asked patients who showed a positive reaction to lavender oil about their use of dried lavender flowers. We confirmed the use of dried laven... In a prospective, randomised, controlled trial to determine whether comprehensive lifestyle changes affect coronary atherosclerosis after 1 year, 28 patients were assigned to an experimental group (low-fat vegetarian diet, stopping smoking, stress management training, and moderate exercise) and 20 to a usual-care control group. 195 coronary artery lesions were analysed by quantitative coronary angiography. The average percentage diameter stenosis regressed from 40.0 (SD 16.9)% to 37.8 (16.5)% in the experimental group yet progressed from 42.7 (15.5)% to 46.1 (18.5)% in the control group. When only lesions greater than 50% stenosed were analysed, the average percentage diameter stenosis regressed from 61.1 (8.8)% to 55.8 (11.0)% in the experimental group and progressed from 61.7 (9.5)% to 64.4 (16.3)% in the control group. Overall, 82% of experimental-group patients had an average change towards regression. Comprehensive lifestyle changes may be able to bring about regression of even se...
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
NaturalQuestions

NaturalQuestions

  • Dataset: NaturalQuestions
  • Size: 66,620 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 14 tokens
    • mean: 17.6 tokens
    • max: 26 tokens
    • min: 22 tokens
    • mean: 144.47 tokens
    • max: 360 tokens
    • min: 53 tokens
    • mean: 182.92 tokens
    • max: 477 tokens
  • Samples:
    question positive negative
    query: the color of visible light can be determined by frequency or Color Electromagnetic radiation is characterized by its wavelength (or frequency) and its intensity. When the wavelength is within the visible spectrum (the range of wavelengths humans can perceive, approximately from 390 nm to 700 nm), it is known as "visible light". Frequency Frequency is the number of occurrences of a repeating event per unit of time.[1] It is also referred to as temporal frequency, which emphasizes the contrast to spatial frequency and angular frequency. The period is the duration of time of one cycle in a repeating event, so the period is the reciprocal of the frequency.[2] For example, if a newborn baby's heart beats at a frequency of 120 times a minute, its period—the time interval between beats—is half a second (that is, 60 seconds divided by 120 beats). Frequency is an important parameter used in science and engineering to specify the rate of oscillatory and vibratory phenomena, such as mechanical vibrations, audio signals (sound), radio waves, and light.
    query: who plays jon snow in the game of thrones Kit Harington Since 2011, Harington has risen to prominence playing the role of Jon Snow in the HBO television series Game of Thrones, which garnered him a nomination for the 2016 Primetime Emmy Award. In 2017, Harington became one of the highest-paid actors on television and earned £2 million per episode of Game of Thrones. Richard Madden Richard Madden (born 18 June 1986) is a Scottish stage, film, and television actor best known for portraying Robb Stark in the HBO series Game of Thrones and Prince Kit in Disney's Cinderella.[1][2]
    query: is there a sequel to batman versus superman Batman v Superman: Dawn of Justice Batman v Superman: Dawn of Justice premiered at the Auditorio Nacional in Mexico City on March 19, 2016, and was released in the United States on March 25, 2016 in 2D, 3D, IMAX 3D, 4DX, premium large formats, and 70 mm prints by Warner Bros. Pictures. Following a strong debut that set new box office records, the film experienced a historic drop in its second weekend and never recovered. Despite turning a profit, it was deemed a box office disappointment and received generally unfavorable reviews from critics for its tone, screenplay, and pacing, though some praised its visual style and acting performances. An extended cut dubbed the "Ultimate Edition", which features 31 minutes of additional footage, was released digitally on June 28, 2016, and on Blu-ray on July 19, 2016. A direct sequel, titled Justice League, was released in November 2017.[3][4] Justice League (film) With the release of Man of Steel in June 2013, Goyer was hired to write a sequel, as well as a new Justice League, with the Beall draft being scrapped.[64] The sequel was later revealed to be Batman v Superman: Dawn of Justice, a team-up film featuring Henry Cavill as Superman, Ben Affleck as Batman, Gal Gadot as Wonder Woman, Ezra Miller as The Flash, Jason Momoa as Aquaman, and Ray Fisher as Victor Stone / Cyborg, the latter three in minor roles that became more significant in the Justice League film. The universe is separate from Nolan and Goyer's work on The Dark Knight trilogy, although Nolan was still involved as an executive producer for Batman v Superman.[65] In April 2014, it was announced that Zack Snyder would also direct Goyer's Justice League script.[66] Warner Bros. was reportedly courting Chris Terrio to rewrite Justice League the following July, after having been impressed with his rewrite of Batman v Superman: Dawn of Justice.[67] On October 15, 2...
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
PAQ

PAQ

  • Dataset: PAQ
  • Size: 333,132 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 13 tokens
    • mean: 18.78 tokens
    • max: 26 tokens
    • min: 116 tokens
    • mean: 145.85 tokens
    • max: 202 tokens
    • min: 118 tokens
    • mean: 147.55 tokens
    • max: 244 tokens
  • Samples:
    question positive negative
    query: who is the distribution partner of ship of theseus Ship of Theseus (film) released in theatres across Bangalore, Mumbai, Pune, Delhi, Kolkata and Hyderabad on 19 July 2013. Through the Vote For Your City Campaign, an initiative which saw audiences vote for the film to be released in specific cities, the film was released in Chennai, Kochi, Baroda and Ahmedabad on 26 July 2013. Film was further released in 17 more cities on 2 August. Kiran Rao, after watching the film at Enlighten Films’ Naya Film Festival, came on board to present it to Indian audiences with UTV Motion Pictures as the distribution partner. On 7 November 2013 the film was released in Sohum Shah (actor) Sohum Shah is an Indian actor, producer, and entrepreneur. He made his first screen appearance in 2010 with movie Baabarr, where he played antagonist and in 2012 with the National Award-winning film "Ship of Theseus" which was produced under his banner, Recyclewala Films. Following his debut, Shah featured in "Talvar" (2015) and "Simran" (2017). Sohum Shah was born in a Sri Ganganagar (Rajasthan) He shifted to Mumbai to make films. He started his own production house, Recyclewala Films, to create content-driven film. His first film was the critically acclaimed "Ship of Theseus", where he played the role
    query: how many residences are there at the university of johannesburg Jacobs), the UJ Drama Company, the UJ Dance Company and the UJ Song and Dance Company. UJ enrolled 43,630 undergraduates and 6,280 graduate students in 2011. Women constituted 55 percent of the total student headcount. Residence life Student Accommodation & Residence Life division is mainly responsible for the accommodation of approximately 19000 students in both university owned and managed residences as well as off-campus accredited privately owned accommodation. This is a vast division with 35 residences spread over 4 campuses at the University of Johannesburg. It should further be noted that, the total number of 35 residences are inclusive of Tshwane University of Technology Tshwane University of Technology (TUT) is a higher education institution in South Africa that came into being through a merger of three technikons — Technikon Northern Gauteng, Technikon North-West and Technikon Pretoria. As the number of students registering annually grows rapidly, records show that Tshwane University of Technology caters for approximately 60,000 students and it has become the largest residential higher education institution in South Africa. It comprises up to six satellite campuses. These campuses include Pretoria, Soshanguve, Ga-Rankuwa, Witbank (eMalahleni), Mbombela and Polokwane campuses. Two faculties, namely the Faculties of Science and The Arts, have
    query: the law of inertia negation states that the inertia of an object must be in in a straight line, unless compelled to change that state by a net force." Inertia is the resistance against changes in the motion of an object. Objects within objects each possess their own inertia, and will collide with each other when the containing object is moved. A device that would be capable of inertia negation is described as being capable of reducing the inertia of both the larger containing object, and of all contained objects within, so as to make changes in motion easier, and to reduce or prevent damage due to internal collisions. The inertia is not absorbed or acted upon by an external net force (resultant force). This law is an extension of Galileo's insight that constant velocity was associated with a lack of net force (see a more detailed description of this below). Newton proposed that every object with mass has an innate inertia that functions as the fundamental equilibrium "natural state" in place of the Aristotelian idea of the "natural state of rest". That is, Newton's empirical First Law contradicts the intuitive Aristotelian belief that a net force is required to keep an object moving with constant velocity. By making "rest" physically indistinguishable from "non-zero constant
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
SQuAD

SQuAD

  • Dataset: SQuAD
  • Size: 58,198 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 14 tokens
    • mean: 19.98 tokens
    • max: 43 tokens
    • min: 44 tokens
    • mean: 164.26 tokens
    • max: 578 tokens
    • min: 43 tokens
    • mean: 178.24 tokens
    • max: 409 tokens
  • Samples:
    question positive negative
    query: In Iranian cuisine, what is habitually used with fruits? Iranian cuisine is diverse due to its variety of ethnic groups and the influence of other cultures. Herbs are frequently used along with fruits such as plums, pomegranates, quince, prunes, apricots, and raisins. Iranians usually eat plain yogurt with lunch and dinner; it is a staple of the diet in Iran. To achieve a balanced taste, characteristic flavourings such as saffron, dried limes, cinnamon, and parsley are mixed delicately and used in some special dishes. Onions and garlic are normally used in the preparation of the accompanying course, but are also served separately during meals, either in raw or pickled form. Iran is also famous for its caviar. Fresh vegetables and fruits are common ingredients. Frequently used vegetables include courgettes, green peppers, okra, green beans, artichokes, carrots, tomatoes, cucumbers, lettuce and grape leaves, and pulses such as beans, broad beans, peas, black-eyed beans, chick-peas and lentils. The most common fruits and nuts are pears, apples, grapes, oranges, mandarines, nectarines, medlar, blackberries, cherry, strawberries, figs, watermelon, melon, avocado, lemon, pistachio, almond, chestnut, walnut, and hazelnut.
    query: What could the prophet Laozi offer in return for the confession of sins? It was believed that immortality could be achieved if one reached the lands of the Queen Mother of the West or Mount Penglai. Han-era Daoists assembled into small groups of hermits who attempted to achieve immortality through breathing exercises, sexual techniques and use of medical elixirs. By the 2nd century AD, Daoists formed large hierarchical religious societies such as the Way of the Five Pecks of Rice. Its followers believed that the sage-philosopher Laozi (fl. 6th century BC) was a holy prophet who would offer salvation and good health if his devout followers would confess their sins, ban the worship of unclean gods who accepted meat sacrifices and chant sections of the Daodejing. In the 6th century BCE, Taoist teacher Lao Tzu espoused a series of naturalistic concepts with some elements of humanistic philosophy. The Silver Rule of Confucianism from Analects XV.24, is an example of ethical philosophy based on human values rather than the supernatural. Humanistic thought is also contained in other Confucian classics, e.g., as recorded in Zuo Zhuan, Ji Liang says, "People is the zhu (master, lord, dominance, owner or origin) of gods. So, to sage kings, people first, gods second"; Neishi Guo says, "Gods, clever, righteous and wholehearted, comply with human." Taoist and Confucian secularism contain elements of moral thought devoid of religious authority or deism however they only partly resembled our modern concept of secularism.
    query: What was the range of the mitrailleuse? The French breech-loading rifle, the Chassepot, had a far longer range than the German needle gun; 1,500 yards (1,400 m) compared to 600 yd (550 m). The French also had an early machine-gun type weapon, the mitrailleuse, which could fire its thirty-seven barrels at a range of around 1,200 yd (1,100 m). It was developed in such secrecy, that little training with the weapon had occurred, leaving French gunners with no experience; the gun was treated like artillery and in this role it was ineffective. Worse still, once the small number of soldiers who had been trained how to use the new weapon became casualties, there were no replacements who knew how to operate the mitrailleuse. The army was still equipped with the Dreyse needle gun of Battle of Königgrätz fame, which was by this time showing the age of its 25-year-old design. The rifle had a range of only 600 m (2,000 ft) and lacked the rubber breech seal that permitted aimed shots. The deficiencies of the needle gun were more than compensated for by the famous Krupp 6-pounder (3 kg) steel breech-loading cannons being issued to Prussian artillery batteries. Firing a contact-detonated shell, the Krupp gun had a longer range and a higher rate of fire than the French bronze muzzle loading cannon, which relied on faulty time fuses.
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
SciFact

SciFact

  • Dataset: SciFact
  • Size: 551 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 15 tokens
    • mean: 25.05 tokens
    • max: 45 tokens
    • min: 133 tokens
    • mean: 329.54 tokens
    • max: 993 tokens
    • min: 122 tokens
    • mean: 297.14 tokens
    • max: 685 tokens
  • Samples:
    question positive negative
    A diminished ovarian reserve is a very strong indicator of infertility, even in an a priori non-infertile population. Importance Despite lack of evidence of their utility, biomarkers of ovarian reserve are being promoted as potential markers of reproductive potential. Objective To determine the associations between biomarkers of ovarian reserve and reproductive potential among women of late reproductive age. Design, Setting, and Participants Prospective time-to-pregnancy cohort study (2008 to date of last follow-up in March 2016) of women (N = 981) aged 30 to 44 years without a history of infertility who had been trying to conceive for 3 months or less, recruited from the community in the Raleigh-Durham, North Carolina, area. Exposures Early-follicular-phase serum level of antimüllerian hormone (AMH), follicle-stimulating hormone (FSH), and inhibin B and urinary level of FSH. Main Outcomes and Measures The primary outcomes were the cumulative probability of conception by 6 and 12 cycles of attempt and relative fecundability (probability of conception in a given menstrual cycle). Conception was defined... CONTEXT Anti-müllerian hormone (AMH) is an ovarian reserve marker that is increasingly applied in clinical practice as a prognostic and diagnostic tool. Despite increased use of AMH in clinical practice, large-scale studies addressing the influence of possible determinants on AMH levels are scarce. OBJECTIVE We aimed to address the role of reproductive and lifestyle determinants of AMH in a large population-based cohort of women. DESIGN In this cross-sectional study, age-specific AMH percentiles were calculated using general linear modeling with CG-LMS (Cole and Green, Lambda, Mu, and Sigma model, an established method to calculate growth curves for children). SETTING Women from the general community participating in the Doetinchem Cohort study were assessed. PARTICIPANTS Two thousand three hundred twenty premenopausal women were included. MAIN OUTCOME MEASURE The effect of female reproductive and lifestyle factors on shifts in age-specific AMH percentiles was studied. RESULTS In compa...
    query: Integrating classroom-based collaborative learning with Web-based collaborative learning offers the best class performance. It is becoming “a truth universally acknowledged” that the education of undergraduate medical students will be enhanced through the use of computer assisted learning. Access to the wide range of online options illustrated in the figure must surely make learning more exciting, effective, and likely to be retained. This assumption is potentially but by no means inevitably correct. ### Box 1: Why fund computer assisted learning? Computer assisted learning is inevitable —Individual lecturers and departments are already beginning to introduce a wide range of computer based applications, sometimes in a haphazard way. Planned and coordinated development is better than indiscriminate expansion It is convenient and flexible —Courses supported by computer assisted learning applications may require fewer face to face lectures and seminars and place fewer geographical and temporal constraints on staff and students. Students at peripheral hospitals or primary care centres may benefit in particular... BACKGROUND Improving the design and implementation of evidence-based practice depends on successful behaviour change interventions. This requires an appropriate method for characterising interventions and linking them to an analysis of the targeted behaviour. There exists a plethora of frameworks of behaviour change interventions, but it is not clear how well they serve this purpose. This paper evaluates these frameworks, and develops and evaluates a new framework aimed at overcoming their limitations. METHODS A systematic search of electronic databases and consultation with behaviour change experts were used to identify frameworks of behaviour change interventions. These were evaluated according to three criteria: comprehensiveness, coherence, and a clear link to an overarching model of behaviour. A new framework was developed to meet these criteria. The reliability with which it could be applied was examined in two domains of behaviour change: tobacco control and obesity. RESULTS Nin...
    query: British female students are bullied more than British male students. Bullying is still prevalent in schools and is clearly stressful for victims. 1 2 It may also have undesirable consequences for bullies, with antisocial behaviour persisting into adulthood. Victims are generally reported to be weaker than the bullies. 2 3 This would suggest that very short pupils are more likely to be victims and less likely to be the aggressors. The Wessex growth study allowed us to examine the prevalence of bullying, as experienced or perpetrated by pupils of different heights. Ninety two short normal adolescents who had been below the third centile for height at school entry4 and 117 controls matched for age and sex completed a bullying questionnaire, derived from work by Whitney and Smith.5 There were no refusals or any significant differences in sex or social class between the groups. Mean age (range) was 14.7 (13.4-15.7) years. Mean height SD scores were: short pupils −1.90 (−3.53 to −0.01), controls 0.31 (−1.41 … OBJECTIVE To determine whether there are risk factors in a doctor's time at medical school that are associated with subsequent professional misconduct. DESIGN Matched case-control study. Setting Records from medical schools and the General Medical Council (GMC). PARTICIPANTS 59 doctors who had graduated from any one of eight medical schools in the United Kingdom in 1958-97 and had a proved finding of serious professional misconduct in GMC proceedings in 1999-2004 (cases); 236 controls (four for each case) were selected by systematic sampling from matching graduation cohorts. Case-control status was revealed by the GMC after completion of data entry. MAIN OUTCOME MEASURE Odds ratios for being a "case," with multivariable conditional logistic regression of potential risk factors including pre-admission characteristics and progress during the course. These data were obtained from anonymised copies of the students' progress files held by their original medical schools. RESULTS Univariate c...
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
SyntheticClassificationData

SyntheticClassificationData

  • Dataset: SyntheticClassificationData
  • Size: 695,940 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 25 tokens
    • mean: 125.37 tokens
    • max: 297 tokens
    • min: 7 tokens
    • mean: 7.94 tokens
    • max: 21 tokens
    • min: 7 tokens
    • mean: 8.04 tokens
    • max: 18 tokens
  • Samples:
    question positive negative
    query: Instruct: Detecting phishing websites from text
    Query: The website with a suspicious url asked me to verify my bank account details via email immediately to avoid account suspension.
    phishing legitimate
    query: Instruct: Identify the political stance expressed in an op‑ed piece (left, center, right)
    Query: The author contends that the current fiscal framework disproportionately burdens the middle class while granting corporations outsized tax shelters, urging a recalibration toward a more progressive structure that funds universal healthcare, robust public education, and aggressive climate mitigation. Citing historical precedents, they argue that collective action and government stewardship have historically corrected market failures, and they warn that retreating to laissez‑faire policies will exacerbate inequality and undermine democratic accountability. The piece calls for a renewed social contract anchored in equity and shared responsibility.
    left center
    query: Instruct: Predicting the outcome of customer support conversations
    Query: User expresses gratitude for help
    Resolved Escalated
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    
TriviaQA

TriviaQA

  • Dataset: TriviaQA
  • Size: 48,696 training samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 13 tokens
    • mean: 26.48 tokens
    • max: 77 tokens
    • min: 44 tokens
    • mean: 764.45 tokens
    • max: 1515 tokens
    • min: 51 tokens
    • mean: 708.59 tokens
    • max: 1996 tokens
  • Samples:
    question positive negative
    query: What colour does copper give to a firework How Do Fireworks Get Their Colors? | Mental Floss How Do Fireworks Get Their Colors? iStock Like us on Facebook It’s all about chemistry. Inside an “aerial shell” firework that gets launched into the sky, there’s a “bursting charge,” black powder (aka gunpowder) or a black powder substitute and a bunch of small pellets called “pyrotechnic stars.” The stars are made up of a fuel, an oxidizer, a finely ground metal or metal salt powder, and a binder to hold the ingredients together.  When a firework explodes mid-air thanks to the bursting charge and the black powder, the gas and the heat that are produced ignite the stars. The atoms of the metal powders in the stars absorb that heat energy and their electrons rearrange from their lower-energy ground state to a higher-energy “excited” state. As they come back down to their ground state, the excess energy is emitted as light.  The energy difference between the excited and ground states of the electrons is different for each of the chemical... Phantom Fireworks : Fireworks University : Pyrotechnic Compounds Pyrotechnic Compounds Pyrotechnic Compounds Pyrotechnic Compounds Colors in fireworks are usually generated by pyrotechnic stars—usually just called stars—which produce intense light when ignited. Stars contain five basic types of ingredients. A fuel which allows the star to burn An oxidizer—a compound which produces (usually) oxygen to support the combustion of the fuel Color-producing chemicals A binder which holds the pellet together. A chlorine donor which provides chlorine to strengthen the color of the flame. Sometimes the oxidizer can serve this purpose. Some of the more common color-producing compounds are tabulated here. The color of a compound in a firework will be the same as its color in a flame test (shown at right). Not all compounds that produce a colored flame are appropriate for coloring fireworks, however. Ideal colorants will produce a pure, intense color when present in moderate concentration. Color Li...
    query: "-When George Formby sang the lines ""It may be sticky, but I never complain; It's nice to have a nibble at it now and again"", to what was he referring?" h2g2 - George Formby - the Entertainer - Edited Entry 5 Conversations George Formby was one of the most popular British entertainers of the 20th Century. His career as a comedian , actor, singer and songwriter lasted for 40 years - from his debut in 1921 until his death in 1961. He appeared in 21 hit films, made over 230 records and did much to help keep the British people's spirits high during the Second World War. He travelled widely throughout Europe and the Middle East during the war, and entertained an estimated three million Allied servicemen and women. His contribution to the war effort won official recognition in the form of medals from two countries. The first nation to honour Formby was the Soviet Union, where he was remarkably popular; in 1943 the Soviet government awarded Formby the Order of Lenin. His homeland honoured him at the end of the war, when Formby was awarded an OBE (Officer of the order of the British Empire). The Boy George George Formby was born George Hoy Boo... UK television adverts 1955-1985 Breads, spreads, biscuits, crackers, cakes Anchor Butter (1): c.1970 There’s an Anchor sign on Britain’s favourite butter, It’s the Anchor sign that tells you it’s the best. If you like your bread and butter, There’s no other word you’ll utter ’Cos you’ll always want the butter With the Anchor sign! (A little butter sailor singing and dancing to a hornpipe tune) Anchor Butter (2): 1982 Didn’t we have a lov-er-ly time Those far off days with Anchor? Salmon and cucumber butties for you Something cheesy — ain’t it breezy? Somebody’s seen the butler machine! Kiss-me-quick and donkeys So far away — and I Anchor today For those days gone by. You’ve got to Anchor for the real taste of butter! Tune: “Didn’t we have a lovely time the day we went to Bangor”] Anchor Butter (3) There’s an anchor sign on Britain’s favourite butter, It’s the anchor sign that tells you it’s the best. If you want your bread and butter there’s no other name you’ll utter ’Cos Britain’s fa...
    query: The largest ever white (What?) weighing 4.16lbs was sold at NYC Sotheby's for $61,250 in 2014? World’s Largest White Truffle | Sotheby's World’s Largest White Truffle 06 December 2014 Sale Number: N09231 Lots : 1 SALE TOTAL Overview RESULTS On 6 December at Sotheby's New York, a white truffle weighing in at a massive 4.16 pounds (1.89 kilos) when discovered sold for $61,250. The truffle, by far the largest ever found, sold to a food and wine lover from Taiwan bidding by phone who also planned to participate in the day's wine auction. The extraordinary tuber was discovered just last week in central Italy and was offered by the Balestra family of Sabatino Truffles who plan to donate proceeds to a number of charitable organizations, including Citymeals-on-Wheels and the Children's Glaucoma Foundation. AUCTION DETAILS Sotheby’s New York is delighted to offer the largest truffle in the world in conjunction with the Balestra Family of Sabatino Truffles this Saturday at 9:15 am. The truffle was found last week in the Umbrian region of Italy weighing 4.16 pounds or 1.89 ... Overspill Overspill 5A: Vanilla, Strawberry and Chocolate 6A: Tea 18A: The white of an egg 19A: Tomato 33A. Kings cross and Charing cross 34A. Pennsylvania 35A. KLM or Royal Dutch Airlines (Koninklijke Luchtvaart Maatschappij) 36A. Caracus 41A. New Guinea (Greenland is the largest) 42A. Eros 64A: The Duke of Edinburgh, Prince Phillip 65A: Captain James Cook! 66A: Bones in the Hand 67A: John D. Rockefeller 69A: The eye (inflammation of the cornea) 70A: Mormons 72A: Princess Diana was killed in a car crash. 73A: Leprosy 79A: Schutzstaffel or ‘Protection Squad 80A: The 16th 83A: Fractures of the bone 84A: Leg 108A. New Guinea (Greenland is the largest) 109A. A monkey 110A. The Merchant Of Venice 111A. Teeth 115A. A fish (of the herring family found off North America's Atlantic coast) 116A. the umbrella 118A. Rhinoceros (up to 5 tons, then hippo up to 3.2 tons) 119A. Water buffalo 133A. 8 ft (2.44 metres) 134A. Anna Kournikova 140A. Preston North End - 1888-89 141A. Motor Racing (nickname ...
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    

Evaluation Dataset

Unnamed Dataset

  • Size: 2,661 evaluation samples
  • Columns: question, positive, and negative
  • Approximate statistics based on the first 100 samples:
    question positive negative
    type string string string
    modality text text text
    details
    • min: 9 tokens
    • mean: 33.04 tokens
    • max: 253 tokens
    • min: 7 tokens
    • mean: 233.64 tokens
    • max: 1003 tokens
    • min: 7 tokens
    • mean: 206.07 tokens
    • max: 1101 tokens
  • Samples:
    question positive negative
    query: who is responsible for choosing shows for the theatre Theatre director A theatre director or stage director is an instructor in the theatre field who oversees and orchestrates the mounting of a theatre production (a play, an opera, a musical, or a devised piece of work) by unifying various endeavours and aspects of production. The director's function is to ensure the quality and completeness of theatre production and to lead the members of the creative team into realizing their artistic vision for it. The director therefore collaborates with a team of creative individuals and other staff, coordinating research, stagecraft, costume design, props, lighting design, acting, set design, stage combat, and sound design for the production. If the production he or she is mounting is a new piece of writing or a (new) translation of a play, the director may also work with the playwright or translator. In contemporary theatre, after the playwright, the director is generally the primary visionary, making decisions on the artistic concept and interpret... Kennedy Center Honors Honoree recommendations are accepted from the general public,[10] and the Kennedy Center initiated a Special Honors Advisory Committee, which comprises two members of the Board of Trustees as well as past Honorees and distinguished artists. The Executive Committee of the Board of Trustees selects the Honoree recipients based on excellence in music, dance, theater, opera, motion pictures or television.[11] The selections are typically announced sometime between July and September.
    query: What do Eleonora's falcon feed their young? These advantages offset the high stress, physical exertion costs, and other risks of the migration. Predation can be heightened during migration: Eleonora's falcon Falco eleonorae, which breeds on Mediterranean islands, has a very late breeding season, coordinated with the autumn passage of southbound passerine migrants, which it feeds to its young. A similar strategy is adopted by the greater noctule bat, which preys on nocturnal passerine migrants. The higher concentrations of migrating birds at stopover sites make them prone to parasites and pathogens, which require a heightened immune response. A squab is the name given to the young of domestic pigeons that are destined for the table. Like other domesticated pigeons, birds used for this purpose are descended from the rock pigeon (Columba livia). Special utility breeds with desirable characteristics are used. Two eggs are laid and incubated for about 17 days. When they hatch, the squabs are fed by both parents on "pigeon's milk", a thick secretion high in protein produced by the crop. Squabs grow rapidly, but are slow to fledge and are ready to leave the nest at 26 to 30 days weighing about 500 g (18 oz). By this time, the adult pigeons will have laid and be incubating another pair of eggs and a prolific pair should produce two squabs every four weeks during a breeding season lasting several months.
    query: how many people were polled in february 2017 about muslims in europe Islam in Europe of Poles have a negative attitude towards Muslims, with only 23% having a positive attitude towards them. Furthermore, a majority agreed with statements like "Muslims are intolerant of customs and values other than their own." (64% agreed, 12% disagreed), "Muslims living in Western European countries generally do not acquire customs and values that are characteristic for the majority of the population of that country." (63% agreed, 14% disagreed), "Islam encourages violence more than other religions." (51% agreed, 24% disagreed). A February 2017 poll of 10 000 people in 10 Eurpean countries by Chatham House found on average a majority were Islam in Europe Herzegovina. In transcontinental countries such as Turkey 99%, and 93% in Azerbaijan of the population is Muslim respectively. According to the 2011 census, 20% of the total population in Montenegro are Muslims. In Russia, Moscow is home to an estimated 1.5 million Muslims. A Pew Research Center study, published in January 2011, forecast an increase of Muslims in European population from 6% in 2010 to 8% in 2030. The study also predicted that Muslim fertility rate in Europe would drop from 2.2 in 2010 to 2.0 in 2030. On the other hand, the non-Muslim fertility rate in Europe would increase
  • Loss: MatryoshkaLoss with these parameters:
    {
        "loss": "GeminiEmbedding2NCELoss",
        "matryoshka_dims": [
            1536,
            768,
            384
        ],
        "matryoshka_weights": [
            1,
            1,
            1
        ],
        "n_dims_per_step": -1
    }
    

Training Hyperparameters

Non-Default Hyperparameters

  • per_device_train_batch_size: 64
  • num_train_epochs: 1
  • learning_rate: 0.0002
  • lr_scheduler_type: cosine
  • warmup_steps: 0.05
  • bf16: True
  • tf32: True
  • per_device_eval_batch_size: 64
  • dataloader_num_workers: 16

All Hyperparameters

Click to expand
  • per_device_train_batch_size: 64
  • num_train_epochs: 1
  • max_steps: -1
  • learning_rate: 0.0002
  • lr_scheduler_type: cosine
  • lr_scheduler_kwargs: None
  • warmup_steps: 0.05
  • optim: adamw_torch_fused
  • optim_args: None
  • weight_decay: 0.0
  • adam_beta1: 0.9
  • adam_beta2: 0.999
  • adam_epsilon: 1e-08
  • optim_target_modules: None
  • gradient_accumulation_steps: 1
  • average_tokens_across_devices: True
  • max_grad_norm: 1.0
  • label_smoothing_factor: 0.0
  • bf16: True
  • fp16: False
  • bf16_full_eval: False
  • fp16_full_eval: False
  • tf32: True
  • gradient_checkpointing: False
  • gradient_checkpointing_kwargs: None
  • torch_compile: False
  • torch_compile_backend: None
  • torch_compile_mode: None
  • use_liger_kernel: False
  • liger_kernel_config: None
  • use_cache: False
  • neftune_noise_alpha: None
  • torch_empty_cache_steps: None
  • auto_find_batch_size: False
  • log_on_each_node: True
  • logging_nan_inf_filter: True
  • include_num_input_tokens_seen: no
  • log_level: passive
  • log_level_replica: warning
  • disable_tqdm: False
  • project: huggingface
  • trackio_space_id: None
  • trackio_bucket_id: None
  • trackio_static_space_id: None
  • per_device_eval_batch_size: 64
  • prediction_loss_only: True
  • eval_on_start: False
  • eval_do_concat_batches: True
  • eval_use_gather_object: False
  • eval_accumulation_steps: None
  • include_for_metrics: []
  • batch_eval_metrics: False
  • save_only_model: False
  • save_on_each_node: False
  • enable_jit_checkpoint: False
  • push_to_hub: False
  • hub_private_repo: None
  • hub_model_id: None
  • hub_strategy: every_save
  • hub_always_push: False
  • hub_revision: None
  • load_best_model_at_end: False
  • ignore_data_skip: False
  • restore_callback_states_from_checkpoint: False
  • full_determinism: False
  • seed: 42
  • data_seed: None
  • use_cpu: False
  • accelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}
  • parallelism_config: None
  • dataloader_drop_last: False
  • dataloader_num_workers: 16
  • dataloader_pin_memory: True
  • dataloader_persistent_workers: False
  • dataloader_prefetch_factor: None
  • remove_unused_columns: True
  • label_names: None
  • train_sampling_strategy: random
  • length_column_name: length
  • ddp_find_unused_parameters: None
  • ddp_bucket_cap_mb: None
  • ddp_broadcast_buffers: False
  • ddp_static_graph: None
  • ddp_backend: None
  • ddp_timeout: 1800
  • fsdp: None
  • fsdp_config: None
  • deepspeed: None
  • debug: []
  • skip_memory_metrics: True
  • do_predict: False
  • resume_from_checkpoint: None
  • warmup_ratio: None
  • local_rank: -1
  • prompts: None
  • batch_sampler: batch_sampler
  • multi_dataset_batch_sampler: proportional
  • router_mapping: {}
  • learning_rate_mapping: {}

Training Logs

Click to expand
Epoch Step Training Loss Validation Loss cosine_ndcg@10
0.0769 2505 1.2458 - -
0.0771 2510 0.9500 - -
0.0772 2515 1.2075 - -
0.0774 2520 1.4213 - -
0.0775 2525 1.1148 - -
0.0777 2530 1.0588 - -
0.0778 2535 0.9554 - -
0.0780 2540 0.8800 - -
0.0781 2545 1.1893 - -
0.0783 2550 1.3729 - -
0.0784 2555 0.8561 - -
0.0786 2560 0.8223 - -
0.0788 2565 0.8913 - -
0.0789 2570 1.0597 - -
0.0791 2575 1.1798 - -
0.0792 2580 1.1538 - -
0.0794 2585 1.3155 - -
0.0795 2590 0.6224 - -
0.0797 2595 1.1366 - -
0.0798 2600 1.2049 - -
0.0800 2605 1.1241 - -
0.0801 2610 1.0648 - -
0.0803 2615 0.7112 - -
0.0804 2620 1.4470 - -
0.0806 2625 1.1179 - -
0.0808 2630 1.6348 - -
0.0809 2635 1.3087 - -
0.0811 2640 1.4194 - -
0.0812 2645 1.5513 - -
0.0814 2650 1.3968 - -
0.0815 2655 1.0719 - -
0.0817 2660 1.1256 - -
0.0818 2665 1.4158 - -
0.0820 2670 1.0241 - -
0.0821 2675 1.3299 - -
0.0823 2680 1.3286 - -
0.0824 2685 0.8491 - -
0.0826 2690 1.5111 - -
0.0827 2695 1.5176 - -
0.0829 2700 0.6360 - -
0.0831 2705 2.3966 - -
0.0832 2710 0.9081 - -
0.0834 2715 0.9910 - -
0.0835 2720 0.7109 - -
0.0837 2725 1.2076 - -
0.0838 2730 1.4672 - -
0.0840 2735 1.2170 - -
0.0841 2740 0.8845 - -
0.0843 2745 1.6422 - -
0.0844 2750 0.6939 - -
0.0846 2755 0.9380 - -
0.0847 2760 0.9943 - -
0.0849 2765 1.3138 - -
0.0851 2770 0.7233 - -
0.0852 2775 2.3266 - -
0.0854 2780 0.9855 - -
0.0855 2785 0.9703 - -
0.0857 2790 1.2018 - -
0.0858 2795 1.2275 - -
0.0860 2800 0.8880 - -
0.0861 2805 1.0545 - -
0.0863 2810 0.8202 - -
0.0864 2815 1.2349 - -
0.0866 2820 1.1505 - -
0.0867 2825 1.0798 - -
0.0869 2830 0.9055 - -
0.0870 2835 0.8198 - -
0.0872 2840 1.2207 - -
0.0874 2845 1.3452 - -
0.0875 2850 0.4694 - -
0.0877 2855 1.1494 - -
0.0878 2860 0.9619 - -
0.0880 2865 1.4529 - -
0.0881 2870 1.2080 - -
0.0883 2875 1.0943 - -
0.0884 2880 0.9937 - -
0.0886 2885 0.7460 - -
0.0887 2890 1.0290 - -
0.0889 2895 0.5539 - -
0.0890 2900 0.9894 - -
0.0892 2905 0.7239 - -
0.0893 2910 0.8450 - -
0.0895 2915 1.4837 - -
0.0897 2920 1.2034 - -
0.0898 2925 1.1118 - -
0.0900 2930 0.8318 - -
0.0901 2935 1.4355 - -
0.0903 2940 1.1011 - -
0.0904 2945 1.1912 - -
0.0906 2950 1.2907 - -
0.0907 2955 1.2111 - -
0.0909 2960 0.9429 - -
0.0910 2965 0.5764 - -
0.0912 2970 0.9059 - -
0.0913 2975 0.9565 - -
0.0915 2980 0.7459 - -
0.0917 2985 1.1074 - -
0.0918 2990 1.1716 - -
0.0920 2995 0.7638 - -
0.0921 3000 1.1755 - -
0.0923 3005 0.9340 - -
0.0924 3010 0.9250 - -
0.0926 3015 1.1992 - -
0.0927 3020 1.1125 - -
0.0929 3025 1.2712 - -
0.0930 3030 1.1657 - -
0.0932 3035 1.0280 - -
0.0933 3040 1.0823 - -
0.0935 3045 0.7007 - -
0.0936 3050 2.6251 - -
0.0938 3055 1.2941 - -
0.0940 3060 0.6813 - -
0.0941 3065 1.2750 - -
0.0943 3070 0.9800 - -
0.0944 3075 1.0200 - -
0.0946 3080 0.8290 - -
0.0947 3085 1.2330 - -
0.0949 3090 0.5222 - -
0.0950 3095 1.5056 - -
0.0952 3100 0.9646 - -
0.0953 3105 1.1612 - -
0.0955 3110 0.7006 - -
0.0956 3115 1.2154 - -
0.0958 3120 0.9109 - -
0.0960 3125 0.4942 - -
0.0961 3130 0.8677 - -
0.0963 3135 1.4330 - -
0.0964 3140 1.1485 - -
0.0966 3145 0.9648 - -
0.0967 3150 0.8052 - -
0.0969 3155 0.6922 - -
0.0970 3160 1.2130 - -
0.0972 3165 1.1450 - -
0.0973 3170 1.6133 - -
0.0975 3175 0.9895 - -
0.0976 3180 0.7409 - -
0.0978 3185 1.0629 - -
0.0979 3190 0.9805 - -
0.0981 3195 1.3246 - -
0.0983 3200 0.8054 - -
0.0984 3205 0.8689 - -
0.0986 3210 0.8625 - -
0.0987 3215 1.0687 - -
0.0989 3220 0.8551 - -
0.0990 3225 1.0103 - -
0.0992 3230 0.8720 - -
0.0993 3235 1.2757 - -
0.0995 3240 1.3039 - -
0.0996 3245 1.3605 - -
0.0998 3250 1.0345 - -
0.0999 3255 1.3840 - -
0.1001 3260 0.8195 - -
0.1002 3265 1.0663 - -
0.1004 3270 1.3208 - -
0.1006 3275 0.7554 - -
0.1007 3280 0.9403 - -
0.1009 3285 0.8953 - -
0.1010 3290 1.4583 - -
0.1012 3295 1.0058 - -
0.1013 3300 1.1783 - -
0.1015 3305 0.7468 - -
0.1016 3310 0.8321 - -
0.1018 3315 1.0123 - -
0.1019 3320 0.8225 - -
0.1021 3325 0.7784 - -
0.1022 3330 1.1158 - -
0.1024 3335 0.8925 - -
0.1026 3340 0.7638 - -
0.1027 3345 0.7907 - -
0.1029 3350 1.0842 - -
0.1030 3355 0.8000 - -
0.1032 3360 1.0020 - -
0.1033 3365 0.4554 - -
0.1035 3370 1.0195 - -
0.1036 3375 0.8738 - -
0.1038 3380 0.9341 - -
0.1039 3385 1.1646 - -
0.1041 3390 2.4554 - -
0.1042 3395 0.6538 - -
0.1044 3400 1.1472 - -
0.1045 3405 3.2003 - -
0.1047 3410 0.6666 - -
0.1049 3415 1.0830 - -
0.1050 3420 0.9054 - -
0.1052 3425 2.2554 - -
0.1053 3430 1.2364 - -
0.1055 3435 0.9480 - -
0.1056 3440 0.6755 - -
0.1058 3445 1.4148 - -
0.1059 3450 0.8867 - -
0.1061 3455 0.9975 - -
0.1062 3460 1.4856 - -
0.1064 3465 0.8917 - -
0.1065 3470 1.1656 - -
0.1067 3475 0.6798 - -
0.1069 3480 0.8822 - -
0.1070 3485 1.0465 - -
0.1072 3490 0.4331 - -
0.1073 3495 1.0032 - -
0.1075 3500 0.9606 - -
0.1076 3505 0.7064 - -
0.1078 3510 0.9708 - -
0.1079 3515 1.0419 - -
0.1081 3520 1.0702 - -
0.1082 3525 1.2026 - -
0.1084 3530 1.1378 - -
0.1085 3535 0.7808 - -
0.1087 3540 0.9041 - -
0.1088 3545 1.3199 - -
0.1090 3550 1.0210 - -
0.1092 3555 0.7775 - -
0.1093 3560 0.8365 - -
0.1095 3565 0.9956 - -
0.1096 3570 0.5781 - -
0.1098 3575 1.3490 - -
0.1099 3580 0.8416 - -
0.1101 3585 0.7688 - -
0.1102 3590 0.9984 - -
0.1104 3595 1.2147 - -
0.1105 3600 0.9577 - -
0.1107 3605 0.9821 - -
0.1108 3610 1.0856 - -
0.1110 3615 0.8160 - -
0.1111 3620 0.9927 - -
0.1113 3625 1.2147 - -
0.1115 3630 1.1405 - -
0.1116 3635 0.8289 - -
0.1118 3640 0.7752 - -
0.1119 3645 0.8518 - -
0.1121 3650 1.0630 - -
0.1122 3655 1.1349 - -
0.1124 3660 1.0924 - -
0.1125 3665 0.9335 - -
0.1127 3670 1.1070 - -
0.1128 3675 1.1483 - -
0.1130 3680 0.8912 - -
0.1131 3685 0.9114 - -
0.1133 3690 0.9490 - -
0.1135 3695 0.9993 - -
0.1136 3700 0.7632 - -
0.1138 3705 0.8363 - -
0.1139 3710 1.2607 - -
0.1141 3715 0.9560 - -
0.1142 3720 0.9901 - -
0.1144 3725 0.6413 - -
0.1145 3730 0.9707 - -
0.1147 3735 0.8372 - -
0.1148 3740 2.3694 - -
0.1150 3745 1.2658 - -
0.1151 3750 0.9862 - -
0.1153 3755 0.7141 - -
0.1154 3760 2.2164 - -
0.1156 3765 1.2971 - -
0.1158 3770 0.9300 - -
0.1159 3775 0.6881 - -
0.1161 3780 1.0160 - -
0.1162 3785 0.6824 - -
0.1164 3790 0.8243 - -
0.1165 3795 1.2347 - -
0.1167 3800 1.0497 - -
0.1168 3805 0.8950 - -
0.1170 3810 0.7980 - -
0.1171 3815 1.1344 - -
0.1173 3820 1.0063 - -
0.1174 3825 1.4237 - -
0.1176 3830 1.0520 - -
0.1178 3835 1.1449 - -
0.1179 3840 0.9851 - -
0.1181 3845 1.0287 - -
0.1182 3850 0.7923 - -
0.1184 3855 0.9120 - -
0.1185 3860 1.2774 - -
0.1187 3865 0.9481 - -
0.1188 3870 0.9535 - -
0.1190 3875 2.9498 - -
0.1191 3880 0.7169 - -
0.1193 3885 0.9955 - -
0.1194 3890 0.8555 - -
0.1196 3895 1.0392 - -
0.1197 3900 1.0254 - -
0.1199 3905 1.0782 - -
0.1201 3910 0.6503 - -
0.1202 3915 0.9510 - -
0.1204 3920 0.7768 - -
0.1205 3925 0.9103 - -
0.1207 3930 0.9184 - -
0.1208 3935 1.2588 - -
0.1210 3940 0.7897 - -
0.1211 3945 0.9977 - -
0.1213 3950 1.3129 - -
0.1214 3955 1.1112 - -
0.1216 3960 1.2098 - -
0.1217 3965 1.0923 - -
0.1219 3970 0.6174 - -
0.1220 3975 1.1575 - -
0.1222 3980 0.5368 - -
0.1224 3985 1.0226 - -
0.1225 3990 0.7998 - -
0.1227 3995 1.2804 - -
0.1228 4000 1.1777 1.7373 0.7776
0.1230 4005 3.2100 - -
0.1231 4010 0.9875 - -
0.1233 4015 1.0272 - -
0.1234 4020 0.7026 - -
0.1236 4025 1.1094 - -
0.1237 4030 1.0422 - -
0.1239 4035 1.1820 - -
0.1240 4040 0.7331 - -
0.1242 4045 1.1860 - -
0.1244 4050 1.2997 - -
0.1245 4055 1.1382 - -
0.1247 4060 0.5803 - -
0.1248 4065 1.0439 - -
0.1250 4070 0.9787 - -
0.1251 4075 0.7131 - -
0.1253 4080 1.1228 - -
0.1254 4085 0.9773 - -
0.1256 4090 1.8472 - -
0.1257 4095 1.1472 - -
0.1259 4100 0.7513 - -
0.1260 4105 0.6249 - -
0.1262 4110 0.9861 - -
0.1263 4115 0.8149 - -
0.1265 4120 1.3842 - -
0.1267 4125 0.9396 - -
0.1268 4130 0.7045 - -
0.1270 4135 1.1083 - -
0.1271 4140 0.8286 - -
0.1273 4145 1.0533 - -
0.1274 4150 0.9231 - -
0.1276 4155 0.9531 - -
0.1277 4160 0.8643 - -
0.1279 4165 1.0053 - -
0.1280 4170 1.0286 - -
0.1282 4175 0.8143 - -
0.1283 4180 0.8295 - -
0.1285 4185 0.7664 - -
0.1286 4190 1.2763 - -
0.1288 4195 1.1299 - -
0.1290 4200 1.0170 - -
0.1291 4205 0.5040 - -
0.1293 4210 1.2095 - -
0.1294 4215 1.1111 - -
0.1296 4220 0.8483 - -
0.1297 4225 1.2104 - -
0.1299 4230 0.3462 - -
0.1300 4235 0.9998 - -
0.1302 4240 0.8682 - -
0.1303 4245 1.2437 - -
0.1305 4250 0.9947 - -
0.1306 4255 0.7832 - -
0.1308 4260 0.9765 - -
0.1310 4265 1.2557 - -
0.1311 4270 1.0628 - -
0.1313 4275 0.5863 - -
0.1314 4280 1.0248 - -
0.1316 4285 0.8733 - -
0.1317 4290 0.7554 - -
0.1319 4295 0.9261 - -
0.1320 4300 1.0933 - -
0.1322 4305 0.6156 - -
0.1323 4310 1.2138 - -
0.1325 4315 0.7874 - -
0.1326 4320 0.5624 - -
0.1328 4325 0.7071 - -
0.1329 4330 0.5638 - -
0.1331 4335 1.0243 - -
0.1333 4340 0.7690 - -
0.1334 4345 0.6717 - -
0.1336 4350 1.3840 - -
0.1337 4355 1.1903 - -
0.1339 4360 0.4955 - -
0.1340 4365 0.8482 - -
0.1342 4370 1.1449 - -
0.1343 4375 0.9834 - -
0.1345 4380 1.8890 - -
0.1346 4385 0.9545 - -
0.1348 4390 1.0261 - -
0.1349 4395 0.6786 - -
0.1351 4400 1.0031 - -
0.1353 4405 0.7774 - -
0.1354 4410 1.5078 - -
0.1356 4415 0.7484 - -
0.1357 4420 1.0353 - -
0.1359 4425 0.7476 - -
0.1360 4430 1.3478 - -
0.1362 4435 1.0786 - -
0.1363 4440 0.9099 - -
0.1365 4445 1.2095 - -
0.1366 4450 0.4651 - -
0.1368 4455 1.0470 - -
0.1369 4460 0.5536 - -
0.1371 4465 1.0559 - -
0.1372 4470 0.6466 - -
0.1374 4475 1.1041 - -
0.1376 4480 1.1915 - -
0.1377 4485 0.6892 - -
0.1379 4490 0.9546 - -
0.1380 4495 0.8174 - -
0.1382 4500 0.5896 - -
0.1383 4505 0.7824 - -
0.1385 4510 0.9328 - -
0.1386 4515 0.8127 - -
0.1388 4520 1.0303 - -
0.1389 4525 2.7731 - -
0.1391 4530 0.7763 - -
0.1392 4535 1.1531 - -
0.1394 4540 0.6227 - -
0.1395 4545 0.7384 - -
0.1397 4550 1.3480 - -
0.1399 4555 0.6706 - -
0.1400 4560 0.6922 - -
0.1402 4565 1.2590 - -
0.1403 4570 0.8243 - -
0.1405 4575 2.1842 - -
0.1406 4580 1.0388 - -
0.1408 4585 0.7541 - -
0.1409 4590 0.8485 - -
0.1411 4595 0.9721 - -
0.1412 4600 0.9656 - -
0.1414 4605 0.7101 - -
0.1415 4610 2.6948 - -
0.1417 4615 1.1008 - -
0.1419 4620 0.8594 - -
0.1420 4625 1.4278 - -
0.1422 4630 0.6200 - -
0.1423 4635 0.6722 - -
0.1425 4640 0.6389 - -
0.1426 4645 1.1075 - -
0.1428 4650 0.9408 - -
0.1429 4655 0.9913 - -
0.1431 4660 0.8368 - -
0.1432 4665 0.7762 - -
0.1434 4670 0.9256 - -
0.1435 4675 0.9792 - -
0.1437 4680 0.5981 - -
0.1438 4685 0.8409 - -
0.1440 4690 0.4663 - -
0.1442 4695 0.8179 - -
0.1443 4700 0.5749 - -
0.1445 4705 1.1341 - -
0.1446 4710 0.7952 - -
0.1448 4715 1.2871 - -
0.1449 4720 1.0977 - -
0.1451 4725 0.9651 - -
0.1452 4730 0.8480 - -
0.1454 4735 1.6592 - -
0.1455 4740 1.1849 - -
0.1457 4745 0.9230 - -
0.1458 4750 0.9718 - -
0.1460 4755 0.8037 - -
0.1462 4760 1.2357 - -
0.1463 4765 1.1656 - -
0.1465 4770 0.9832 - -
0.1466 4775 0.8935 - -
0.1468 4780 0.9929 - -
0.1469 4785 0.8122 - -
0.1471 4790 1.2047 - -
0.1472 4795 0.7905 - -
0.1474 4800 0.7742 - -
0.1475 4805 0.5850 - -
0.1477 4810 0.8081 - -
0.1478 4815 0.9236 - -
0.1480 4820 0.7938 - -
0.1481 4825 0.6057 - -
0.1483 4830 0.7192 - -
0.1485 4835 1.1466 - -
0.1486 4840 0.9817 - -
0.1488 4845 0.5746 - -
0.1489 4850 0.9851 - -
0.1491 4855 1.2616 - -
0.1492 4860 0.8603 - -
0.1494 4865 1.3642 - -
0.1495 4870 1.0307 - -
0.1497 4875 3.1744 - -
0.1498 4880 0.9147 - -
0.1500 4885 0.9158 - -
0.1501 4890 1.3547 - -
0.1503 4895 0.7023 - -
0.1504 4900 1.3027 - -
0.1506 4905 0.9242 - -
0.1508 4910 0.6835 - -
0.1509 4915 1.2527 - -
0.1511 4920 0.8490 - -
0.1512 4925 0.6298 - -
0.1514 4930 1.0773 - -
0.1515 4935 0.9631 - -
0.1517 4940 0.7739 - -
0.1518 4945 0.5102 - -
0.1520 4950 1.0165 - -
0.1521 4955 0.9874 - -
0.1523 4960 0.9857 - -
0.1524 4965 0.7337 - -
0.1526 4970 0.5832 - -
0.1528 4975 0.9037 - -
0.1529 4980 1.0506 - -
0.1531 4985 0.7000 - -
0.1532 4990 1.0283 - -
0.1534 4995 0.6656 - -
0.1535 5000 0.9176 - -
0.1537 5005 0.6878 - -
0.1538 5010 0.5386 - -
0.1540 5015 1.0816 - -
0.1541 5020 1.0802 - -
0.1543 5025 2.8792 - -
0.1544 5030 0.7757 - -
0.1546 5035 0.8776 - -
0.1547 5040 1.1779 - -
0.1549 5045 1.0879 - -
0.1551 5050 0.6736 - -
0.1552 5055 1.1816 - -
0.1554 5060 0.8325 - -
0.1555 5065 0.6433 - -
0.1557 5070 0.9738 - -
0.1558 5075 1.2610 - -
0.1560 5080 0.8416 - -
0.1561 5085 0.9113 - -
0.1563 5090 0.7331 - -
0.1564 5095 0.5780 - -
0.1566 5100 0.9793 - -
0.1567 5105 0.8949 - -
0.1569 5110 0.8628 - -
0.1571 5115 0.7238 - -
0.1572 5120 0.9425 - -
0.1574 5125 0.5522 - -
0.1575 5130 0.6979 - -
0.1577 5135 0.7567 - -
0.1578 5140 0.5724 - -
0.1580 5145 0.8976 - -
0.1581 5150 0.6913 - -
0.1583 5155 1.0870 - -
0.1584 5160 1.0341 - -
0.1586 5165 0.9234 - -
0.1587 5170 0.8994 - -
0.1589 5175 0.8915 - -
0.1590 5180 1.1307 - -
0.1592 5185 3.0499 - -
0.1594 5190 0.7616 - -
0.1595 5195 0.7822 - -
0.1597 5200 0.9739 - -
0.1598 5205 0.7987 - -
0.1600 5210 0.8327 - -
0.1601 5215 1.0443 - -
0.1603 5220 0.7733 - -
0.1604 5225 1.3299 - -
0.1606 5230 0.8112 - -
0.1607 5235 0.8399 - -
0.1609 5240 0.4872 - -
0.1610 5245 0.8868 - -
0.1612 5250 0.9282 - -
0.1613 5255 1.2913 - -
0.1615 5260 0.8431 - -
0.1617 5265 0.6866 - -
0.1618 5270 1.3951 - -
0.1620 5275 0.8949 - -
0.1621 5280 0.5203 - -
0.1623 5285 1.0866 - -
0.1624 5290 0.9734 - -
0.1626 5295 0.8975 - -
0.1627 5300 0.6424 - -
0.1629 5305 0.7148 - -
0.1630 5310 1.3072 - -
0.1632 5315 0.8260 - -
0.1633 5320 0.5803 - -
0.1635 5325 1.1173 - -
0.1637 5330 1.0162 - -
0.1638 5335 0.7944 - -
0.1640 5340 1.7047 - -
0.1641 5345 1.2691 - -
0.1643 5350 0.9626 - -
0.1644 5355 0.9841 - -
0.1646 5360 0.5614 - -
0.1647 5365 0.9066 - -
0.1649 5370 1.0452 - -
0.1650 5375 0.4727 - -
0.1652 5380 1.1285 - -
0.1653 5385 1.2753 - -
0.1655 5390 0.7480 - -
0.1656 5395 1.0072 - -
0.1658 5400 0.6367 - -
0.1660 5405 0.8500 - -
0.1661 5410 0.7233 - -
0.1663 5415 1.0716 - -
0.1664 5420 1.0347 - -
0.1666 5425 2.8923 - -
0.1667 5430 1.0630 - -
0.1669 5435 0.7433 - -
0.1670 5440 1.9305 - -
0.1672 5445 0.7744 - -
0.1673 5450 0.8437 - -
0.1675 5455 0.8287 - -
0.1676 5460 1.3686 - -
0.1678 5465 0.6748 - -
0.1680 5470 0.9573 - -
0.1681 5475 0.8460 - -
0.1683 5480 0.6308 - -
0.1684 5485 0.9375 - -
0.1686 5490 0.9677 - -
0.1687 5495 0.6133 - -
0.1689 5500 1.0419 - -
0.1690 5505 0.7361 - -
0.1692 5510 0.8489 - -
0.1693 5515 0.9715 - -
0.1695 5520 1.0575 - -
0.1696 5525 0.6088 - -
0.1698 5530 0.9427 - -
0.1699 5535 0.7299 - -
0.1701 5540 1.0175 - -
0.1703 5545 0.8946 - -
0.1704 5550 0.6755 - -
0.1706 5555 1.0644 - -
0.1707 5560 0.6057 - -
0.1709 5565 1.1701 - -
0.1710 5570 0.7125 - -
0.1712 5575 0.9191 - -
0.1713 5580 0.9767 - -
0.1715 5585 0.6710 - -
0.1716 5590 0.7789 - -
0.1718 5595 0.8852 - -
0.1719 5600 0.7472 - -
0.1721 5605 0.5489 - -
0.1722 5610 0.9124 - -
0.1724 5615 0.7757 - -
0.1726 5620 0.7653 - -
0.1727 5625 0.7510 - -
0.1729 5630 1.2009 - -
0.1730 5635 1.4123 - -
0.1732 5640 0.7274 - -
0.1733 5645 0.8411 - -
0.1735 5650 0.7832 - -
0.1736 5655 0.9874 - -
0.1738 5660 0.7535 - -
0.1739 5665 0.6839 - -
0.1741 5670 0.7219 - -
0.1742 5675 0.5266 - -
0.1744 5680 0.5427 - -
0.1746 5685 0.6399 - -
0.1747 5690 0.9274 - -
0.1749 5695 0.7104 - -
0.1750 5700 0.8975 - -
0.1752 5705 2.0242 - -
0.1753 5710 0.7431 - -
0.1755 5715 0.9958 - -
0.1756 5720 0.9263 - -
0.1758 5725 1.1207 - -
0.1759 5730 0.9610 - -
0.1761 5735 1.0244 - -
0.1762 5740 0.5883 - -
0.1764 5745 0.4066 - -
0.1765 5750 0.6054 - -
0.1767 5755 0.3743 - -
0.1769 5760 0.7439 - -
0.1770 5765 0.9362 - -
0.1772 5770 0.6558 - -
0.1773 5775 1.1575 - -
0.1775 5780 1.0944 - -
0.1776 5785 1.0259 - -
0.1778 5790 1.1375 - -
0.1779 5795 0.7020 - -
0.1781 5800 0.8834 - -
0.1782 5805 1.0030 - -
0.1784 5810 0.7746 - -
0.1785 5815 1.1263 - -
0.1787 5820 1.0361 - -
0.1789 5825 1.7563 - -
0.1790 5830 0.8488 - -
0.1792 5835 0.8265 - -
0.1793 5840 1.0362 - -
0.1795 5845 1.0152 - -
0.1796 5850 0.7368 - -
0.1798 5855 0.5932 - -
0.1799 5860 1.9811 - -
0.1801 5865 1.6912 - -
0.1802 5870 0.5645 - -
0.1804 5875 0.7654 - -
0.1805 5880 0.6317 - -
0.1807 5885 0.7024 - -
0.1808 5890 0.8186 - -
0.1810 5895 1.1636 - -
0.1812 5900 0.7879 - -
0.1813 5905 1.2026 - -
0.1815 5910 0.8827 - -
0.1816 5915 1.0243 - -
0.1818 5920 1.1437 - -
0.1819 5925 1.0154 - -
0.1821 5930 0.9164 - -
0.1822 5935 0.8422 - -
0.1824 5940 0.8999 - -
0.1825 5945 0.8309 - -
0.1827 5950 0.5857 - -
0.1828 5955 0.6167 - -
0.1830 5960 0.8702 - -
0.1831 5965 0.8682 - -
0.1833 5970 0.7647 - -
0.1835 5975 2.1407 - -
0.1836 5980 0.5105 - -
0.1838 5985 0.7257 - -
0.1839 5990 0.9732 - -
0.1841 5995 1.0484 - -
0.1842 6000 0.4960 1.5372 0.7867
0.1844 6005 0.8076 - -
0.1845 6010 0.8159 - -
0.1847 6015 0.9123 - -
0.1848 6020 0.5405 - -
0.1850 6025 0.9635 - -
0.1851 6030 0.9155 - -
0.1853 6035 1.0698 - -
0.1855 6040 0.8016 - -
0.1856 6045 0.9849 - -
0.1858 6050 0.8811 - -
0.1859 6055 1.0356 - -
0.1861 6060 0.8413 - -
0.1862 6065 0.7382 - -
0.1864 6070 0.7199 - -
0.1865 6075 0.9235 - -
0.1867 6080 0.7777 - -
0.1868 6085 0.9086 - -
0.1870 6090 0.9899 - -
0.1871 6095 1.1181 - -
0.1873 6100 0.5041 - -
0.1874 6105 1.3873 - -
0.1876 6110 0.8345 - -
0.1878 6115 0.6582 - -
0.1879 6120 1.1336 - -
0.1881 6125 0.9440 - -
0.1882 6130 0.4494 - -
0.1884 6135 1.0362 - -
0.1885 6140 0.8872 - -
0.1887 6145 0.7673 - -
0.1888 6150 1.1242 - -
0.1890 6155 1.0630 - -
0.1891 6160 0.7340 - -
0.1893 6165 1.1191 - -
0.1894 6170 0.6365 - -
0.1896 6175 0.6835 - -
0.1898 6180 0.8626 - -
0.1899 6185 1.1297 - -
0.1901 6190 0.9584 - -
0.1902 6195 0.4867 - -
0.1904 6200 0.8601 - -
0.1905 6205 2.0518 - -
0.1907 6210 0.5835 - -
0.1908 6215 0.4341 - -
0.1910 6220 0.8527 - -
0.1911 6225 0.6031 - -
0.1913 6230 0.5461 - -
0.1914 6235 0.9291 - -
0.1916 6240 1.0448 - -
0.1917 6245 1.2328 - -
0.1919 6250 0.8366 - -
0.1921 6255 0.9738 - -
0.1922 6260 0.8287 - -
0.1924 6265 0.8225 - -
0.1925 6270 0.9109 - -
0.1927 6275 0.8716 - -
0.1928 6280 0.9857 - -
0.1930 6285 0.8989 - -
0.1931 6290 0.8830 - -
0.1933 6295 0.6707 - -
0.1934 6300 0.7623 - -
0.1936 6305 0.8417 - -
0.1937 6310 0.8250 - -
0.1939 6315 0.6614 - -
0.1940 6320 0.8906 - -
0.1942 6325 0.9177 - -
0.1944 6330 0.6202 - -
0.1945 6335 0.9424 - -
0.1947 6340 0.9186 - -
0.1948 6345 0.8131 - -
0.1950 6350 0.6582 - -
0.1951 6355 0.9133 - -
0.1953 6360 1.1433 - -
0.1954 6365 0.9078 - -
0.1956 6370 1.0814 - -
0.1957 6375 0.4180 - -
0.1959 6380 0.8328 - -
0.1960 6385 0.5202 - -
0.1962 6390 1.0558 - -
0.1964 6395 1.0000 - -
0.1965 6400 0.6862 - -
0.1967 6405 1.0609 - -
0.1968 6410 0.6985 - -
0.1970 6415 0.8998 - -
0.1971 6420 0.8166 - -
0.1973 6425 1.2927 - -
0.1974 6430 0.9421 - -
0.1976 6435 0.7830 - -
0.1977 6440 0.6699 - -
0.1979 6445 0.5114 - -
0.1980 6450 0.9602 - -
0.1982 6455 1.2237 - -
0.1983 6460 0.7447 - -
0.1985 6465 0.8092 - -
0.1987 6470 0.9395 - -
0.1988 6475 0.9842 - -
0.1990 6480 0.5036 - -
0.1991 6485 0.4002 - -
0.1993 6490 0.6283 - -
0.1994 6495 0.9741 - -
0.1996 6500 0.9446 - -
0.1997 6505 0.7138 - -
0.1999 6510 1.1144 - -
0.2000 6515 0.7687 - -
0.2002 6520 1.0880 - -
0.2003 6525 0.7537 - -
0.2005 6530 0.6250 - -
0.2007 6535 1.0678 - -
0.2008 6540 0.6464 - -
0.2010 6545 0.9055 - -
0.2011 6550 0.7863 - -
0.2013 6555 0.7689 - -
0.2014 6560 0.9173 - -
0.2016 6565 0.8006 - -
0.2017 6570 1.0930 - -
0.2019 6575 0.4900 - -
0.2020 6580 0.6185 - -
0.2022 6585 0.9750 - -
0.2023 6590 1.5116 - -
0.2025 6595 0.7153 - -
0.2026 6600 0.9156 - -
0.2028 6605 0.8693 - -
0.2030 6610 0.8889 - -
0.2031 6615 0.8027 - -
0.2033 6620 0.9155 - -
0.2034 6625 0.6005 - -
0.2036 6630 0.6401 - -
0.2037 6635 0.7669 - -
0.2039 6640 1.0656 - -
0.2040 6645 0.5354 - -
0.2042 6650 0.5631 - -
0.2043 6655 0.8927 - -
0.2045 6660 0.6158 - -
0.2046 6665 0.8165 - -
0.2048 6670 0.9364 - -
0.2049 6675 0.9699 - -
0.2051 6680 0.7601 - -
0.2053 6685 0.7206 - -
0.2054 6690 0.3646 - -
0.2056 6695 0.8664 - -
0.2057 6700 1.0524 - -
0.2059 6705 0.4552 - -
0.2060 6710 1.0865 - -
0.2062 6715 1.2981 - -
0.2063 6720 0.8990 - -
0.2065 6725 0.6995 - -
0.2066 6730 0.6850 - -
0.2068 6735 0.7332 - -
0.2069 6740 0.4533 - -
0.2071 6745 0.7837 - -
0.2073 6750 0.8065 - -
0.2074 6755 0.5213 - -
0.2076 6760 0.9889 - -
0.2077 6765 0.7872 - -
0.2079 6770 1.1747 - -
0.2080 6775 0.6223 - -
0.2082 6780 0.8402 - -
0.2083 6785 0.8064 - -
0.2085 6790 1.0065 - -
0.2086 6795 0.6496 - -
0.2088 6800 0.6960 - -
0.2089 6805 1.0241 - -
0.2091 6810 0.9136 - -
0.2092 6815 0.7986 - -
0.2094 6820 0.9447 - -
0.2096 6825 0.6855 - -
0.2097 6830 1.0488 - -
0.2099 6835 0.8954 - -
0.2100 6840 0.9281 - -
0.2102 6845 0.6608 - -
0.2103 6850 0.8771 - -
0.2105 6855 1.0189 - -
0.2106 6860 0.5933 - -
0.2108 6865 0.7521 - -
0.2109 6870 0.6392 - -
0.2111 6875 1.1307 - -
0.2112 6880 0.9118 - -
0.2114 6885 0.7568 - -
0.2116 6890 0.6966 - -
0.2117 6895 0.9683 - -
0.2119 6900 0.9525 - -
0.2120 6905 1.0923 - -
0.2122 6910 0.7339 - -
0.2123 6915 0.8233 - -
0.2125 6920 0.9005 - -
0.2126 6925 0.8875 - -
0.2128 6930 0.7634 - -
0.2129 6935 0.6749 - -
0.2131 6940 0.7592 - -
0.2132 6945 0.6867 - -
0.2134 6950 0.7875 - -
0.2135 6955 0.4590 - -
0.2137 6960 0.8060 - -
0.2139 6965 0.6468 - -
0.2140 6970 1.1813 - -
0.2142 6975 0.7720 - -
0.2143 6980 0.7616 - -
0.2145 6985 0.6355 - -
0.2146 6990 0.6555 - -
0.2148 6995 0.8552 - -
0.2149 7000 2.3025 - -
0.2151 7005 0.8398 - -
0.2152 7010 1.0412 - -
0.2154 7015 0.7695 - -
0.2155 7020 1.1809 - -
0.2157 7025 0.7942 - -
0.2158 7030 0.5053 - -
0.2160 7035 1.1200 - -
0.2162 7040 0.6997 - -
0.2163 7045 0.6155 - -
0.2165 7050 0.5718 - -
0.2166 7055 0.7251 - -
0.2168 7060 1.2555 - -
0.2169 7065 0.8969 - -
0.2171 7070 0.5691 - -
0.2172 7075 0.7566 - -
0.2174 7080 1.7644 - -
0.2175 7085 0.5656 - -
0.2177 7090 0.6799 - -
0.2178 7095 1.2369 - -
0.2180 7100 2.3885 - -
0.2182 7105 1.0796 - -
0.2183 7110 1.1675 - -
0.2185 7115 0.7810 - -
0.2186 7120 1.1012 - -
0.2188 7125 0.5624 - -
0.2189 7130 0.8197 - -
0.2191 7135 1.0231 - -
0.2192 7140 0.7498 - -
0.2194 7145 0.6576 - -
0.2195 7150 0.4540 - -
0.2197 7155 0.8046 - -
0.2198 7160 0.6311 - -
0.2200 7165 0.5817 - -
0.2201 7170 0.7436 - -
0.2203 7175 0.6750 - -
0.2205 7180 0.9356 - -
0.2206 7185 0.5925 - -
0.2208 7190 0.8489 - -
0.2209 7195 0.5306 - -
0.2211 7200 0.7044 - -
0.2212 7205 0.6623 - -
0.2214 7210 0.9877 - -
0.2215 7215 0.5378 - -
0.2217 7220 0.8060 - -
0.2218 7225 1.1302 - -
0.2220 7230 1.1317 - -
0.2221 7235 0.6665 - -
0.2223 7240 1.1484 - -
0.2225 7245 0.8592 - -
0.2226 7250 0.9746 - -
0.2228 7255 1.0503 - -
0.2229 7260 0.4900 - -
0.2231 7265 0.9669 - -
0.2232 7270 2.7529 - -
0.2234 7275 1.1603 - -
0.2235 7280 0.5680 - -
0.2237 7285 0.9832 - -
0.2238 7290 0.6408 - -
0.2240 7295 0.5106 - -
0.2241 7300 0.8166 - -
0.2243 7305 0.9733 - -
0.2244 7310 0.8358 - -
0.2246 7315 0.9775 - -
0.2248 7320 1.1852 - -
0.2249 7325 0.7875 - -
0.2251 7330 0.6309 - -
0.2252 7335 0.5972 - -
0.2254 7340 0.9236 - -
0.2255 7345 1.0610 - -
0.2257 7350 0.7769 - -
0.2258 7355 1.2046 - -
0.2260 7360 0.9356 - -
0.2261 7365 0.6252 - -
0.2263 7370 0.7771 - -
0.2264 7375 0.8045 - -
0.2266 7380 0.7816 - -
0.2267 7385 0.8941 - -
0.2269 7390 0.8042 - -
0.2271 7395 0.7825 - -
0.2272 7400 0.6848 - -
0.2274 7405 0.6990 - -
0.2275 7410 0.8942 - -
0.2277 7415 0.6061 - -
0.2278 7420 0.6242 - -
0.2280 7425 0.5680 - -
0.2281 7430 0.7596 - -
0.2283 7435 0.7648 - -
0.2284 7440 0.8045 - -
0.2286 7445 0.9282 - -
0.2287 7450 0.6707 - -
0.2289 7455 0.9355 - -
0.2291 7460 0.8511 - -
0.2292 7465 0.8231 - -
0.2294 7470 0.8575 - -
0.2295 7475 0.6748 - -
0.2297 7480 1.0774 - -
0.2298 7485 0.8313 - -
0.2300 7490 0.6919 - -
0.2301 7495 0.8980 - -
0.2303 7500 0.7198 - -
0.2304 7505 0.6294 - -
0.2306 7510 0.9843 - -
0.2307 7515 0.6079 - -
0.2309 7520 0.5517 - -
0.2310 7525 0.9581 - -
0.2312 7530 0.9172 - -
0.2314 7535 0.6281 - -
0.2315 7540 0.6821 - -
0.2317 7545 0.8967 - -
0.2318 7550 1.0625 - -
0.2320 7555 0.7400 - -
0.2321 7560 0.6217 - -
0.2323 7565 0.7179 - -
0.2324 7570 0.6622 - -
0.2326 7575 0.5231 - -
0.2327 7580 0.3979 - -
0.2329 7585 0.8986 - -
0.2330 7590 1.0962 - -
0.2332 7595 0.8435 - -
0.2334 7600 0.5989 - -
0.2335 7605 0.7719 - -
0.2337 7610 0.9838 - -
0.2338 7615 0.5788 - -
0.2340 7620 1.1947 - -
0.2341 7625 0.4430 - -
0.2343 7630 0.8162 - -
0.2344 7635 0.9375 - -
0.2346 7640 0.4396 - -
0.2347 7645 1.0396 - -
0.2349 7650 1.0823 - -
0.2350 7655 2.9411 - -
0.2352 7660 0.8998 - -
0.2353 7665 0.8775 - -
0.2355 7670 0.9168 - -
0.2357 7675 1.0641 - -
0.2358 7680 0.5087 - -
0.2360 7685 0.7442 - -
0.2361 7690 1.0630 - -
0.2363 7695 0.6187 - -
0.2364 7700 0.9651 - -
0.2366 7705 0.9410 - -
0.2367 7710 0.5568 - -
0.2369 7715 0.7403 - -
0.2370 7720 0.9503 - -
0.2372 7725 0.9850 - -
0.2373 7730 0.7216 - -
0.2375 7735 1.6342 - -
0.2376 7740 1.7303 - -
0.2378 7745 0.9366 - -
0.2380 7750 0.9492 - -
0.2381 7755 0.7517 - -
0.2383 7760 0.7567 - -
0.2384 7765 0.9578 - -
0.2386 7770 0.6676 - -
0.2387 7775 0.9927 - -
0.2389 7780 1.2860 - -
0.2390 7785 0.7663 - -
0.2392 7790 0.9241 - -
0.2393 7795 0.8237 - -
0.2395 7800 0.9673 - -
0.2396 7805 0.6391 - -
0.2398 7810 0.8074 - -
0.2400 7815 0.8275 - -
0.2401 7820 0.7524 - -
0.2403 7825 0.9032 - -
0.2404 7830 0.6303 - -
0.2406 7835 0.6604 - -
0.2407 7840 0.7727 - -
0.2409 7845 0.9263 - -
0.2410 7850 0.8226 - -
0.2412 7855 1.0808 - -
0.2413 7860 0.6625 - -
0.2415 7865 0.6995 - -
0.2416 7870 0.7106 - -
0.2418 7875 0.4727 - -
0.2419 7880 0.5161 - -
0.2421 7885 0.6936 - -
0.2423 7890 0.9590 - -
0.2424 7895 0.5227 - -
0.2426 7900 0.7753 - -
0.2427 7905 0.5139 - -
0.2429 7910 0.8800 - -
0.2430 7915 0.7684 - -
0.2432 7920 0.6446 - -
0.2433 7925 0.4452 - -
0.2435 7930 0.4868 - -
0.2436 7935 0.7374 - -
0.2438 7940 0.7146 - -
0.2439 7945 0.8598 - -
0.2441 7950 1.8847 - -
0.2443 7955 0.6869 - -
0.2444 7960 0.7828 - -
0.2446 7965 0.8351 - -
0.2447 7970 0.8734 - -
0.2449 7975 0.6071 - -
0.2450 7980 0.7430 - -
0.2452 7985 0.4508 - -
0.2453 7990 0.6011 - -
0.2455 7995 0.5717 - -
0.2456 8000 0.7975 1.3808 0.7884
0.2458 8005 0.4761 - -
0.2459 8010 0.8135 - -
0.2461 8015 0.8712 - -
0.2462 8020 1.1299 - -
0.2464 8025 0.9720 - -
0.2466 8030 0.8195 - -
0.2467 8035 0.6121 - -
0.2469 8040 1.0443 - -
0.2470 8045 0.7329 - -
0.2472 8050 0.6319 - -
0.2473 8055 0.6220 - -
0.2475 8060 0.6105 - -
0.2476 8065 0.7306 - -
0.2478 8070 0.9014 - -
0.2479 8075 0.8314 - -
0.2481 8080 1.0431 - -
0.2482 8085 1.9903 - -
0.2484 8090 0.6479 - -
0.2485 8095 0.9369 - -
0.2487 8100 0.5041 - -
0.2489 8105 0.5627 - -
0.2490 8110 0.6162 - -
0.2492 8115 0.7156 - -
0.2493 8120 0.8547 - -
0.2495 8125 0.3945 - -
0.2496 8130 0.9979 - -
0.2498 8135 0.5108 - -
0.2499 8140 0.4874 - -
0.2501 8145 0.6752 - -
0.2502 8150 0.4726 - -
0.2504 8155 0.9400 - -
0.2505 8160 0.7080 - -
0.2507 8165 0.8574 - -
0.2509 8170 0.8996 - -
0.2510 8175 0.7029 - -
0.2512 8180 0.7006 - -
0.2513 8185 0.7368 - -
0.2515 8190 0.7086 - -
0.2516 8195 0.8172 - -
0.2518 8200 0.6596 - -
0.2519 8205 0.9812 - -
0.2521 8210 0.5782 - -
0.2522 8215 0.6655 - -
0.2524 8220 1.0330 - -
0.2525 8225 0.5995 - -
0.2527 8230 0.7086 - -
0.2528 8235 0.9490 - -
0.2530 8240 0.3445 - -
0.2532 8245 0.8032 - -
0.2533 8250 0.6298 - -
0.2535 8255 0.7679 - -
0.2536 8260 0.5702 - -
0.2538 8265 0.9044 - -
0.2539 8270 0.6241 - -
0.2541 8275 0.6464 - -
0.2542 8280 1.2525 - -
0.2544 8285 1.1293 - -
0.2545 8290 1.2902 - -
0.2547 8295 0.8950 - -
0.2548 8300 0.8473 - -
0.2550 8305 0.6780 - -
0.2552 8310 0.7372 - -
0.2553 8315 0.8400 - -
0.2555 8320 0.8814 - -
0.2556 8325 0.5239 - -
0.2558 8330 0.5580 - -
0.2559 8335 0.7698 - -
0.2561 8340 0.9627 - -
0.2562 8345 0.6194 - -
0.2564 8350 0.9948 - -
0.2565 8355 0.8186 - -
0.2567 8360 0.9240 - -
0.2568 8365 0.4041 - -
0.2570 8370 1.0218 - -
0.2571 8375 0.3764 - -
0.2573 8380 0.7640 - -
0.2575 8385 0.6234 - -
0.2576 8390 0.6763 - -
0.2578 8395 0.5335 - -
0.2579 8400 0.7546 - -
0.2581 8405 1.0190 - -
0.2582 8410 0.6578 - -
0.2584 8415 0.9306 - -
0.2585 8420 0.6900 - -
0.2587 8425 1.0100 - -
0.2588 8430 0.8596 - -
0.2590 8435 0.4824 - -
0.2591 8440 0.6646 - -
0.2593 8445 0.8286 - -
0.2594 8450 0.8558 - -
0.2596 8455 0.8533 - -
0.2598 8460 0.7935 - -
0.2599 8465 0.6304 - -
0.2601 8470 0.6650 - -
0.2602 8475 0.5031 - -
0.2604 8480 0.6373 - -
0.2605 8485 0.6429 - -
0.2607 8490 0.8867 - -
0.2608 8495 1.0253 - -
0.2610 8500 0.6420 - -
0.2611 8505 0.4574 - -
0.2613 8510 0.7973 - -
0.2614 8515 0.4862 - -
0.2616 8520 0.6549 - -
0.2618 8525 0.6171 - -
0.2619 8530 0.8532 - -
0.2621 8535 0.7206 - -
0.2622 8540 0.9740 - -
0.2624 8545 1.0002 - -
0.2625 8550 0.7018 - -
0.2627 8555 0.8731 - -
0.2628 8560 0.8628 - -
0.2630 8565 1.4547 - -
0.2631 8570 0.6705 - -
0.2633 8575 0.6176 - -
0.2634 8580 0.8612 - -
0.2636 8585 0.5288 - -
0.2637 8590 0.6949 - -
0.2639 8595 0.5745 - -
0.2641 8600 0.9401 - -
0.2642 8605 0.6572 - -
0.2644 8610 0.5270 - -
0.2645 8615 0.7488 - -
0.2647 8620 0.4836 - -
0.2648 8625 0.8297 - -
0.2650 8630 1.2405 - -
0.2651 8635 0.9644 - -
0.2653 8640 0.6369 - -
0.2654 8645 0.5552 - -
0.2656 8650 0.8632 - -
0.2657 8655 0.6540 - -
0.2659 8660 0.6093 - -
0.2661 8665 0.4224 - -
0.2662 8670 0.2891 - -
0.2664 8675 0.6655 - -
0.2665 8680 0.7701 - -
0.2667 8685 0.8309 - -
0.2668 8690 0.6124 - -
0.2670 8695 0.7179 - -
0.2671 8700 1.1126 - -
0.2673 8705 1.0127 - -
0.2674 8710 0.9943 - -
0.2676 8715 0.5943 - -
0.2677 8720 0.6320 - -
0.2679 8725 0.6025 - -
0.2680 8730 1.0142 - -
0.2682 8735 0.6789 - -
0.2684 8740 0.7554 - -
0.2685 8745 0.7264 - -
0.2687 8750 0.9362 - -
0.2688 8755 0.5635 - -
0.2690 8760 0.7615 - -
0.2691 8765 0.7983 - -
0.2693 8770 0.7960 - -
0.2694 8775 1.0374 - -
0.2696 8780 0.8056 - -
0.2697 8785 0.8759 - -
0.2699 8790 0.7734 - -
0.2700 8795 0.6819 - -
0.2702 8800 1.0652 - -
0.2703 8805 0.5690 - -
0.2705 8810 0.5840 - -
0.2707 8815 0.9553 - -
0.2708 8820 0.8254 - -
0.2710 8825 0.8063 - -
0.2711 8830 0.8106 - -
0.2713 8835 1.6844 - -
0.2714 8840 0.3755 - -
0.2716 8845 0.9535 - -
0.2717 8850 0.8246 - -
0.2719 8855 0.8575 - -
0.2720 8860 0.4406 - -
0.2722 8865 0.8961 - -
0.2723 8870 0.5979 - -
0.2725 8875 0.6648 - -
0.2727 8880 0.6835 - -
0.2728 8885 0.5335 - -
0.2730 8890 0.5807 - -
0.2731 8895 0.6109 - -
0.2733 8900 0.7740 - -
0.2734 8905 0.8813 - -
0.2736 8910 1.1860 - -
0.2737 8915 0.5280 - -
0.2739 8920 0.6986 - -
0.2740 8925 0.6157 - -
0.2742 8930 0.4163 - -
0.2743 8935 1.4872 - -
0.2745 8940 0.7224 - -
0.2746 8945 0.8050 - -
0.2748 8950 0.9629 - -
0.2750 8955 1.1055 - -
0.2751 8960 0.9459 - -
0.2753 8965 0.6876 - -
0.2754 8970 0.5991 - -
0.2756 8975 0.5884 - -
0.2757 8980 0.8653 - -
0.2759 8985 0.5330 - -
0.2760 8990 0.7700 - -
0.2762 8995 0.8923 - -
0.2763 9000 0.8866 - -
0.2765 9005 0.6938 - -
0.2766 9010 0.4554 - -
0.2768 9015 0.6274 - -
0.2770 9020 0.8326 - -
0.2771 9025 0.9412 - -
0.2773 9030 0.8133 - -
0.2774 9035 0.9058 - -
0.2776 9040 0.5796 - -
0.2777 9045 1.1127 - -
0.2779 9050 0.6867 - -
0.2780 9055 0.9385 - -
0.2782 9060 0.7392 - -
0.2783 9065 0.6849 - -
0.2785 9070 1.2098 - -
0.2786 9075 0.7493 - -
0.2788 9080 0.5315 - -
0.2789 9085 0.9676 - -
0.2791 9090 0.7836 - -
0.2793 9095 0.7658 - -
0.2794 9100 0.3853 - -
0.2796 9105 0.7088 - -
0.2797 9110 0.5394 - -
0.2799 9115 0.6274 - -
0.2800 9120 0.9463 - -
0.2802 9125 0.9442 - -
0.2803 9130 0.8598 - -
0.2805 9135 0.5520 - -
0.2806 9140 0.5746 - -
0.2808 9145 0.6374 - -
0.2809 9150 0.7855 - -
0.2811 9155 0.4331 - -
0.2812 9160 0.6134 - -
0.2814 9165 1.0719 - -
0.2816 9170 0.9737 - -
0.2817 9175 0.8350 - -
0.2819 9180 0.7872 - -
0.2820 9185 0.7667 - -
0.2822 9190 0.5790 - -
0.2823 9195 0.4364 - -
0.2825 9200 0.5237 - -
0.2826 9205 0.3616 - -
0.2828 9210 0.5750 - -
0.2829 9215 0.5328 - -
0.2831 9220 0.3956 - -
0.2832 9225 0.8410 - -
0.2834 9230 0.5068 - -
0.2836 9235 0.6790 - -
0.2837 9240 0.2634 - -
0.2839 9245 0.8625 - -
0.2840 9250 1.0098 - -
0.2842 9255 1.0278 - -
0.2843 9260 0.8673 - -
0.2845 9265 0.8415 - -
0.2846 9270 1.1872 - -
0.2848 9275 0.5343 - -
0.2849 9280 0.4202 - -
0.2851 9285 0.7501 - -
0.2852 9290 0.6671 - -
0.2854 9295 0.4098 - -
0.2855 9300 0.6065 - -
0.2857 9305 3.1547 - -
0.2859 9310 0.7073 - -
0.2860 9315 0.5517 - -
0.2862 9320 0.8001 - -
0.2863 9325 0.7081 - -
0.2865 9330 0.6173 - -
0.2866 9335 0.9448 - -
0.2868 9340 0.5633 - -
0.2869 9345 0.9472 - -
0.2871 9350 0.5010 - -
0.2872 9355 0.8646 - -
0.2874 9360 0.8028 - -
0.2875 9365 0.6801 - -
0.2877 9370 0.5462 - -
0.2879 9375 0.9883 - -
0.2880 9380 0.9396 - -
0.2882 9385 0.8056 - -
0.2883 9390 0.6800 - -
0.2885 9395 0.6803 - -
0.2886 9400 1.0380 - -
0.2888 9405 0.7508 - -
0.2889 9410 2.1103 - -
0.2891 9415 0.8498 - -
0.2892 9420 0.9945 - -
0.2894 9425 0.5010 - -
0.2895 9430 0.5793 - -
0.2897 9435 0.4982 - -
0.2898 9440 0.9619 - -
0.2900 9445 0.7284 - -
0.2902 9450 0.7824 - -
0.2903 9455 0.8092 - -
0.2905 9460 0.8315 - -
0.2906 9465 0.7965 - -
0.2908 9470 0.9386 - -
0.2909 9475 0.7781 - -
0.2911 9480 0.6615 - -
0.2912 9485 0.6432 - -
0.2914 9490 0.5951 - -
0.2915 9495 0.6332 - -
0.2917 9500 0.8635 - -
0.2918 9505 0.4471 - -
0.2920 9510 0.6857 - -
0.2921 9515 0.4457 - -
0.2923 9520 0.8086 - -
0.2925 9525 0.6730 - -
0.2926 9530 0.6312 - -
0.2928 9535 1.4883 - -
0.2929 9540 0.3779 - -
0.2931 9545 0.7570 - -
0.2932 9550 0.7557 - -
0.2934 9555 0.8905 - -
0.2935 9560 0.7074 - -
0.2937 9565 0.7152 - -
0.2938 9570 0.8722 - -
0.2940 9575 0.5733 - -
0.2941 9580 0.3698 - -
0.2943 9585 0.7826 - -
0.2945 9590 0.7600 - -
0.2946 9595 0.8478 - -
0.2948 9600 0.8614 - -
0.2949 9605 0.7143 - -
0.2951 9610 0.8489 - -
0.2952 9615 0.6869 - -
0.2954 9620 0.7427 - -
0.2955 9625 0.6715 - -
0.2957 9630 0.7624 - -
0.2958 9635 0.8126 - -
0.2960 9640 0.4995 - -
0.2961 9645 0.6788 - -
0.2963 9650 0.5867 - -
0.2964 9655 0.9001 - -
0.2966 9660 0.5238 - -
0.2968 9665 0.7225 - -
0.2969 9670 1.1518 - -
0.2971 9675 0.7214 - -
0.2972 9680 0.6224 - -
0.2974 9685 0.4787 - -
0.2975 9690 0.7481 - -
0.2977 9695 0.6642 - -
0.2978 9700 0.9437 - -
0.2980 9705 0.7134 - -
0.2981 9710 0.8732 - -
0.2983 9715 0.6423 - -
0.2984 9720 0.7752 - -
0.2986 9725 0.9987 - -
0.2988 9730 0.7900 - -
0.2989 9735 0.6629 - -
0.2991 9740 0.5781 - -
0.2992 9745 0.5078 - -
0.2994 9750 0.8811 - -
0.2995 9755 0.6439 - -
0.2997 9760 0.5287 - -
0.2998 9765 0.6699 - -
0.3000 9770 0.8678 - -
0.3001 9775 0.8599 - -
0.3003 9780 0.6850 - -
0.3004 9785 0.7472 - -
0.3006 9790 0.9167 - -
0.3007 9795 0.4292 - -
0.3009 9800 0.6416 - -
0.3011 9805 1.0330 - -
0.3012 9810 0.8728 - -
0.3014 9815 0.3787 - -
0.3015 9820 1.1446 - -
0.3017 9825 0.8360 - -
0.3018 9830 0.5168 - -
0.3020 9835 0.8481 - -
0.3021 9840 0.5149 - -
0.3023 9845 0.7200 - -
0.3024 9850 0.7981 - -
0.3026 9855 0.6107 - -
0.3027 9860 0.5260 - -
0.3029 9865 0.9230 - -
0.3030 9870 0.9532 - -
0.3032 9875 0.6285 - -
0.3034 9880 0.5666 - -
0.3035 9885 0.5209 - -
0.3037 9890 0.4870 - -
0.3038 9895 0.6286 - -
0.3040 9900 0.9564 - -
0.3041 9905 0.9468 - -
0.3043 9910 0.8095 - -
0.3044 9915 0.6428 - -
0.3046 9920 0.6520 - -
0.3047 9925 0.8666 - -
0.3049 9930 0.8657 - -
0.3050 9935 0.8573 - -
0.3052 9940 0.4671 - -
0.3054 9945 0.7507 - -
0.3055 9950 0.8440 - -
0.3057 9955 0.6978 - -
0.3058 9960 0.4717 - -
0.3060 9965 0.6417 - -
0.3061 9970 0.5673 - -
0.3063 9975 0.6634 - -
0.3064 9980 0.7626 - -
0.3066 9985 0.6126 - -
0.3067 9990 0.5515 - -
0.3069 9995 0.8718 - -
0.3070 10000 0.7050 1.3609 0.7868
0.3072 10005 0.5494 - -
0.3073 10010 0.6771 - -
0.3075 10015 1.0020 - -
0.3077 10020 0.9519 - -
0.3078 10025 0.6915 - -
0.3080 10030 0.7461 - -
0.3081 10035 0.6837 - -
0.3083 10040 0.8998 - -
0.3084 10045 0.6354 - -
0.3086 10050 0.6044 - -
0.3087 10055 0.6050 - -
0.3089 10060 0.8085 - -
0.3090 10065 0.7714 - -
0.3092 10070 0.9028 - -
0.3093 10075 0.3235 - -
0.3095 10080 0.9462 - -
0.3097 10085 0.6950 - -
0.3098 10090 0.5494 - -
0.3100 10095 0.9091 - -
0.3101 10100 0.8908 - -
0.3103 10105 0.7903 - -
0.3104 10110 0.7318 - -
0.3106 10115 0.5010 - -
0.3107 10120 0.5628 - -
0.3109 10125 0.8551 - -
0.3110 10130 0.9416 - -
0.3112 10135 1.0004 - -
0.3113 10140 0.4410 - -
0.3115 10145 0.8060 - -
0.3116 10150 0.7750 - -
0.3118 10155 0.8122 - -
0.3120 10160 0.7738 - -
0.3121 10165 1.3142 - -
0.3123 10170 0.6563 - -
0.3124 10175 0.7148 - -
0.3126 10180 0.6675 - -
0.3127 10185 1.0124 - -
0.3129 10190 0.6053 - -
0.3130 10195 0.5282 - -
0.3132 10200 0.8263 - -
0.3133 10205 0.7726 - -
0.3135 10210 0.8880 - -
0.3136 10215 1.1098 - -
0.3138 10220 0.5506 - -
0.3139 10225 0.7765 - -
0.3141 10230 1.0842 - -
0.3143 10235 0.7529 - -
0.3144 10240 0.9219 - -
0.3146 10245 0.5148 - -
0.3147 10250 0.6518 - -
0.3149 10255 0.6690 - -
0.3150 10260 0.5643 - -
0.3152 10265 0.8729 - -
0.3153 10270 0.7658 - -
0.3155 10275 0.8528 - -
0.3156 10280 0.4665 - -
0.3158 10285 0.8500 - -
0.3159 10290 0.7100 - -
0.3161 10295 0.7564 - -
0.3163 10300 0.5085 - -
0.3164 10305 0.5948 - -
0.3166 10310 0.6385 - -
0.3167 10315 0.7975 - -
0.3169 10320 0.8680 - -
0.3170 10325 0.6007 - -
0.3172 10330 0.7071 - -
0.3173 10335 0.7217 - -
0.3175 10340 0.9644 - -
0.3176 10345 0.9944 - -
0.3178 10350 0.4302 - -
0.3179 10355 0.9779 - -
0.3181 10360 0.7014 - -
0.3182 10365 0.7910 - -
0.3184 10370 0.6299 - -
0.3186 10375 0.6799 - -
0.3187 10380 0.6323 - -
0.3189 10385 0.9242 - -
0.3190 10390 1.1448 - -
0.3192 10395 0.8465 - -
0.3193 10400 0.3831 - -
0.3195 10405 0.5326 - -
0.3196 10410 0.7318 - -
0.3198 10415 0.7228 - -
0.3199 10420 0.9695 - -
0.3201 10425 0.5435 - -
0.3202 10430 0.7914 - -
0.3204 10435 0.6917 - -
0.3206 10440 0.7382 - -
0.3207 10445 0.9447 - -
0.3209 10450 0.9431 - -
0.3210 10455 0.5741 - -
0.3212 10460 0.9673 - -
0.3213 10465 0.8279 - -
0.3215 10470 0.8349 - -
0.3216 10475 0.6908 - -
0.3218 10480 0.7505 - -
0.3219 10485 0.7952 - -
0.3221 10490 0.5789 - -
0.3222 10495 0.9263 - -
0.3224 10500 0.5143 - -
0.3225 10505 0.9510 - -
0.3227 10510 0.8602 - -
0.3229 10515 0.5544 - -
0.3230 10520 0.8118 - -
0.3232 10525 0.8628 - -
0.3233 10530 0.9089 - -
0.3235 10535 0.6236 - -
0.3236 10540 0.4755 - -
0.3238 10545 0.7098 - -
0.3239 10550 0.9131 - -
0.3241 10555 0.6855 - -
0.3242 10560 0.6770 - -
0.3244 10565 1.3718 - -
0.3245 10570 0.5214 - -
0.3247 10575 0.6945 - -
0.3248 10580 0.5487 - -
0.3250 10585 0.5666 - -
0.3252 10590 0.4879 - -
0.3253 10595 0.8153 - -
0.3255 10600 0.9530 - -
0.3256 10605 0.8105 - -
0.3258 10610 0.8840 - -
0.3259 10615 0.4883 - -
0.3261 10620 0.8823 - -
0.3262 10625 0.8897 - -
0.3264 10630 0.5275 - -
0.3265 10635 0.6940 - -
0.3267 10640 0.6536 - -
0.3268 10645 0.9559 - -
0.3270 10650 0.7149 - -
0.3272 10655 0.6001 - -
0.3273 10660 0.8356 - -
0.3275 10665 1.1457 - -
0.3276 10670 0.3283 - -
0.3278 10675 0.5715 - -
0.3279 10680 1.5186 - -
0.3281 10685 0.6074 - -
0.3282 10690 0.3325 - -
0.3284 10695 0.4862 - -
0.3285 10700 0.7513 - -
0.3287 10705 0.6910 - -
0.3288 10710 0.9124 - -
0.3290 10715 1.0828 - -
0.3291 10720 0.6864 - -
0.3293 10725 0.5963 - -
0.3295 10730 0.6106 - -
0.3296 10735 0.8872 - -
0.3298 10740 0.1980 - -
0.3299 10745 1.0756 - -
0.3301 10750 0.6863 - -
0.3302 10755 0.5589 - -
0.3304 10760 0.3732 - -
0.3305 10765 0.8473 - -
0.3307 10770 0.6011 - -
0.3308 10775 0.9533 - -
0.3310 10780 0.9047 - -
0.3311 10785 0.6779 - -
0.3313 10790 0.3988 - -
0.3315 10795 0.7197 - -
0.3316 10800 0.4955 - -
0.3318 10805 0.6034 - -
0.3319 10810 0.8551 - -
0.3321 10815 0.7790 - -
0.3322 10820 0.7275 - -
0.3324 10825 0.5970 - -
0.3325 10830 0.6786 - -
0.3327 10835 0.6048 - -
0.3328 10840 0.5962 - -
0.3330 10845 0.8006 - -
0.3331 10850 0.7944 - -
0.3333 10855 0.8068 - -
0.3334 10860 0.8139 - -
0.3336 10865 0.6322 - -
0.3338 10870 0.5194 - -
0.3339 10875 0.5995 - -
0.3341 10880 0.6996 - -
0.3342 10885 0.5852 - -
0.3344 10890 0.7929 - -
0.3345 10895 0.8353 - -
0.3347 10900 0.4343 - -
0.3348 10905 0.7011 - -
0.3350 10910 0.6790 - -
0.3351 10915 0.5867 - -
0.3353 10920 1.4428 - -
0.3354 10925 0.5765 - -
0.3356 10930 0.3723 - -
0.3357 10935 0.1596 - -
0.3359 10940 0.6772 - -
0.3361 10945 1.0374 - -
0.3362 10950 0.5751 - -
0.3364 10955 0.5703 - -
0.3365 10960 0.6721 - -
0.3367 10965 1.3165 - -
0.3368 10970 0.6628 - -
0.3370 10975 0.9557 - -
0.3371 10980 0.6385 - -
0.3373 10985 0.5292 - -
0.3374 10990 0.6630 - -
0.3376 10995 0.5930 - -
0.3377 11000 0.6536 - -
0.3379 11005 0.5838 - -
0.3381 11010 0.5249 - -
0.3382 11015 0.8596 - -
0.3384 11020 0.8579 - -
0.3385 11025 0.8432 - -
0.3387 11030 0.5711 - -
0.3388 11035 0.6771 - -
0.3390 11040 0.7034 - -
0.3391 11045 0.8400 - -
0.3393 11050 0.8397 - -
0.3394 11055 0.6186 - -
0.3396 11060 1.3788 - -
0.3397 11065 0.4317 - -
0.3399 11070 0.7726 - -
0.3400 11075 1.0415 - -
0.3402 11080 0.9754 - -
0.3404 11085 0.8292 - -
0.3405 11090 0.4213 - -
0.3407 11095 0.7628 - -
0.3408 11100 0.4834 - -
0.3410 11105 0.6720 - -
0.3411 11110 0.9332 - -
0.3413 11115 0.5080 - -
0.3414 11120 1.0324 - -
0.3416 11125 0.9999 - -
0.3417 11130 1.1100 - -
0.3419 11135 0.7703 - -
0.3420 11140 0.6492 - -
0.3422 11145 1.2743 - -
0.3424 11150 0.8122 - -
0.3425 11155 1.5038 - -
0.3427 11160 0.6234 - -
0.3428 11165 0.6176 - -
0.3430 11170 0.6995 - -
0.3431 11175 0.6164 - -
0.3433 11180 0.6753 - -
0.3434 11185 0.5606 - -
0.3436 11190 1.3247 - -
0.3437 11195 0.6242 - -
0.3439 11200 0.4995 - -
0.3440 11205 0.5032 - -
0.3442 11210 0.3740 - -
0.3443 11215 0.6419 - -
0.3445 11220 0.8562 - -
0.3447 11225 0.7637 - -
0.3448 11230 0.8545 - -
0.3450 11235 0.9355 - -
0.3451 11240 0.6797 - -
0.3453 11245 0.6285 - -
0.3454 11250 0.7818 - -
0.3456 11255 0.6177 - -
0.3457 11260 0.7517 - -
0.3459 11265 2.6212 - -
0.3460 11270 0.7780 - -
0.3462 11275 2.4846 - -
0.3463 11280 0.6320 - -
0.3465 11285 0.6022 - -
0.3466 11290 0.8944 - -
0.3468 11295 0.7129 - -
0.3470 11300 0.4776 - -
0.3471 11305 0.9027 - -
0.3473 11310 0.5411 - -
0.3474 11315 0.6406 - -
0.3476 11320 0.4265 - -
0.3477 11325 0.7028 - -
0.3479 11330 0.8093 - -
0.3480 11335 0.7342 - -
0.3482 11340 0.7866 - -
0.3483 11345 0.6278 - -
0.3485 11350 0.7990 - -
0.3486 11355 0.7440 - -
0.3488 11360 0.7945 - -
0.3490 11365 0.6016 - -
0.3491 11370 0.7279 - -
0.3493 11375 0.7252 - -
0.3494 11380 0.8710 - -
0.3496 11385 0.4095 - -
0.3497 11390 0.6543 - -
0.3499 11395 0.7679 - -
0.3500 11400 0.6375 - -
0.3502 11405 0.5982 - -
0.3503 11410 0.5980 - -
0.3505 11415 0.6025 - -
0.3506 11420 0.6374 - -
0.3508 11425 0.7917 - -
0.3509 11430 0.6229 - -
0.3511 11435 0.8380 - -
0.3513 11440 0.7415 - -
0.3514 11445 0.4564 - -
0.3516 11450 0.7578 - -
0.3517 11455 0.7560 - -
0.3519 11460 0.4489 - -
0.3520 11465 0.4279 - -
0.3522 11470 0.3713 - -
0.3523 11475 0.5338 - -
0.3525 11480 0.8107 - -
0.3526 11485 0.6515 - -
0.3528 11490 0.7202 - -
0.3529 11495 0.8898 - -
0.3531 11500 0.6063 - -
0.3533 11505 0.4300 - -
0.3534 11510 0.6816 - -
0.3536 11515 1.6707 - -
0.3537 11520 0.5215 - -
0.3539 11525 0.7718 - -
0.3540 11530 0.6660 - -
0.3542 11535 0.7312 - -
0.3543 11540 0.8187 - -
0.3545 11545 0.8287 - -
0.3546 11550 1.0752 - -
0.3548 11555 0.7548 - -
0.3549 11560 0.8260 - -
0.3551 11565 0.4186 - -
0.3552 11570 0.5356 - -
0.3554 11575 0.4690 - -
0.3556 11580 0.7674 - -
0.3557 11585 0.6981 - -
0.3559 11590 0.6382 - -
0.3560 11595 0.8171 - -
0.3562 11600 0.7514 - -
0.3563 11605 0.8648 - -
0.3565 11610 0.7738 - -
0.3566 11615 0.4799 - -
0.3568 11620 0.7117 - -
0.3569 11625 0.8926 - -
0.3571 11630 0.7402 - -
0.3572 11635 0.7460 - -
0.3574 11640 0.7352 - -
0.3575 11645 0.7563 - -
0.3577 11650 0.7345 - -
0.3579 11655 0.6775 - -
0.3580 11660 0.6116 - -
0.3582 11665 0.3783 - -
0.3583 11670 0.6245 - -
0.3585 11675 0.5027 - -
0.3586 11680 0.7848 - -
0.3588 11685 0.7779 - -
0.3589 11690 0.6467 - -
0.3591 11695 0.6569 - -
0.3592 11700 2.5669 - -
0.3594 11705 0.6737 - -
0.3595 11710 1.2096 - -
0.3597 11715 0.8551 - -
0.3599 11720 0.7214 - -
0.3600 11725 0.5906 - -
0.3602 11730 0.5120 - -
0.3603 11735 0.6686 - -
0.3605 11740 0.8385 - -
0.3606 11745 0.9493 - -
0.3608 11750 0.5670 - -
0.3609 11755 0.5997 - -
0.3611 11760 1.0016 - -
0.3612 11765 0.5861 - -
0.3614 11770 0.7565 - -
0.3615 11775 0.6983 - -
0.3617 11780 0.6614 - -
0.3618 11785 1.0538 - -
0.3620 11790 0.5491 - -
0.3622 11795 0.7044 - -
0.3623 11800 0.8548 - -
0.3625 11805 1.1185 - -
0.3626 11810 0.3615 - -
0.3628 11815 0.6234 - -
0.3629 11820 0.9594 - -
0.3631 11825 0.6002 - -
0.3632 11830 0.8295 - -
0.3634 11835 0.5927 - -
0.3635 11840 0.6993 - -
0.3637 11845 0.7584 - -
0.3638 11850 0.4349 - -
0.3640 11855 0.6517 - -
0.3641 11860 0.7230 - -
0.3643 11865 0.5185 - -
0.3645 11870 0.6070 - -
0.3646 11875 0.8850 - -
0.3648 11880 0.6211 - -
0.3649 11885 0.6473 - -
0.3651 11890 0.5803 - -
0.3652 11895 1.0682 - -
0.3654 11900 0.5380 - -
0.3655 11905 0.6868 - -
0.3657 11910 1.1005 - -
0.3658 11915 0.5059 - -
0.3660 11920 0.8774 - -
0.3661 11925 0.6915 - -
0.3663 11930 1.1421 - -
0.3665 11935 0.5904 - -
0.3666 11940 0.5379 - -
0.3668 11945 0.5966 - -
0.3669 11950 0.6406 - -
0.3671 11955 0.6216 - -
0.3672 11960 0.5073 - -
0.3674 11965 0.6933 - -
0.3675 11970 0.7026 - -
0.3677 11975 0.6580 - -
0.3678 11980 0.8171 - -
0.3680 11985 0.7566 - -
0.3681 11990 0.8376 - -
0.3683 11995 0.5859 - -
0.3684 12000 0.6177 1.3010 0.8007
0.3686 12005 0.8414 - -
0.3688 12010 0.4489 - -
0.3689 12015 0.8034 - -
0.3691 12020 0.6038 - -
0.3692 12025 0.5142 - -
0.3694 12030 0.5907 - -
0.3695 12035 0.6066 - -
0.3697 12040 0.5144 - -
0.3698 12045 0.9443 - -
0.3700 12050 0.6178 - -
0.3701 12055 0.8276 - -
0.3703 12060 0.5472 - -
0.3704 12065 0.8398 - -
0.3706 12070 0.6722 - -
0.3708 12075 0.6568 - -
0.3709 12080 0.9999 - -
0.3711 12085 0.8131 - -
0.3712 12090 0.8780 - -
0.3714 12095 0.7723 - -
0.3715 12100 0.9546 - -
0.3717 12105 0.8664 - -
0.3718 12110 0.5567 - -
0.3720 12115 0.6445 - -
0.3721 12120 0.4867 - -
0.3723 12125 0.8748 - -
0.3724 12130 0.4792 - -
0.3726 12135 0.7290 - -
0.3727 12140 0.8776 - -
0.3729 12145 0.6806 - -
0.3731 12150 0.6507 - -
0.3732 12155 0.6106 - -
0.3734 12160 0.3088 - -
0.3735 12165 0.5503 - -
0.3737 12170 0.8455 - -
0.3738 12175 2.7207 - -
0.3740 12180 0.8682 - -
0.3741 12185 0.8908 - -
0.3743 12190 0.8535 - -
0.3744 12195 0.6627 - -
0.3746 12200 0.7937 - -
0.3747 12205 0.7528 - -
0.3749 12210 0.6049 - -
0.3750 12215 0.5216 - -
0.3752 12220 0.6267 - -
0.3754 12225 0.8014 - -
0.3755 12230 1.0772 - -
0.3757 12235 0.4689 - -
0.3758 12240 0.3964 - -
0.3760 12245 0.7999 - -
0.3761 12250 0.4577 - -
0.3763 12255 0.9323 - -
0.3764 12260 0.3120 - -
0.3766 12265 0.7201 - -
0.3767 12270 0.5475 - -
0.3769 12275 0.7310 - -
0.3770 12280 0.6368 - -
0.3772 12285 0.7977 - -
0.3774 12290 0.5697 - -
0.3775 12295 0.4668 - -
0.3777 12300 0.8597 - -
0.3778 12305 0.7785 - -
0.3780 12310 0.6365 - -
0.3781 12315 1.0625 - -
0.3783 12320 0.5080 - -
0.3784 12325 0.5004 - -
0.3786 12330 0.8310 - -
0.3787 12335 0.9664 - -
0.3789 12340 0.5296 - -
0.3790 12345 0.6314 - -
0.3792 12350 0.5515 - -
0.3793 12355 0.4026 - -
0.3795 12360 1.4321 - -
0.3797 12365 0.5972 - -
0.3798 12370 0.9094 - -
0.3800 12375 0.4178 - -
0.3801 12380 0.8101 - -
0.3803 12385 0.6347 - -
0.3804 12390 0.8701 - -
0.3806 12395 0.5434 - -
0.3807 12400 0.5478 - -
0.3809 12405 1.0399 - -
0.3810 12410 0.4172 - -
0.3812 12415 0.5736 - -
0.3813 12420 0.8203 - -
0.3815 12425 0.5756 - -
0.3817 12430 0.7524 - -
0.3818 12435 0.8114 - -
0.3820 12440 0.5591 - -
0.3821 12445 0.6737 - -
0.3823 12450 0.9488 - -
0.3824 12455 0.9917 - -
0.3826 12460 0.6168 - -
0.3827 12465 0.3695 - -
0.3829 12470 0.5848 - -
0.3830 12475 0.7800 - -
0.3832 12480 0.7141 - -
0.3833 12485 0.6360 - -
0.3835 12490 0.8059 - -
0.3836 12495 0.7386 - -
0.3838 12500 0.5171 - -
0.3840 12505 0.4440 - -
0.3841 12510 0.8474 - -
0.3843 12515 0.5276 - -
0.3844 12520 0.5547 - -
0.3846 12525 0.7445 - -
0.3847 12530 0.6768 - -
0.3849 12535 0.6927 - -
0.3850 12540 0.8204 - -
0.3852 12545 0.9013 - -
0.3853 12550 0.5103 - -
0.3855 12555 0.3682 - -
0.3856 12560 0.6792 - -
0.3858 12565 0.8583 - -
0.3859 12570 0.9371 - -
0.3861 12575 0.7489 - -
0.3863 12580 0.5443 - -
0.3864 12585 0.8789 - -
0.3866 12590 0.5575 - -
0.3867 12595 0.6228 - -
0.3869 12600 0.8275 - -
0.3870 12605 0.5823 - -
0.3872 12610 0.7110 - -
0.3873 12615 0.5898 - -
0.3875 12620 0.3645 - -
0.3876 12625 0.6942 - -
0.3878 12630 0.7770 - -
0.3879 12635 0.5630 - -
0.3881 12640 0.5101 - -
0.3883 12645 0.9821 - -
0.3884 12650 0.4142 - -
0.3886 12655 0.4513 - -
0.3887 12660 0.7760 - -
0.3889 12665 0.6610 - -
0.3890 12670 0.4471 - -
0.3892 12675 0.9567 - -
0.3893 12680 0.2945 - -
0.3895 12685 0.3860 - -
0.3896 12690 0.8492 - -
0.3898 12695 0.6418 - -
0.3899 12700 0.7423 - -
0.3901 12705 0.7820 - -
0.3902 12710 0.6113 - -
0.3904 12715 0.5880 - -
0.3906 12720 0.7870 - -
0.3907 12725 0.5645 - -
0.3909 12730 0.6368 - -
0.3910 12735 0.5031 - -
0.3912 12740 0.7690 - -
0.3913 12745 0.4435 - -
0.3915 12750 0.8205 - -
0.3916 12755 0.5874 - -
0.3918 12760 0.6394 - -
0.3919 12765 0.4922 - -
0.3921 12770 0.8107 - -
0.3922 12775 0.5610 - -
0.3924 12780 0.9413 - -
0.3926 12785 0.6505 - -
0.3927 12790 0.5330 - -
0.3929 12795 0.2543 - -
0.3930 12800 0.8726 - -
0.3932 12805 0.8672 - -
0.3933 12810 0.8762 - -
0.3935 12815 0.7261 - -
0.3936 12820 0.7203 - -
0.3938 12825 2.2055 - -
0.3939 12830 0.5227 - -
0.3941 12835 0.5834 - -
0.3942 12840 0.6602 - -
0.3944 12845 0.4008 - -
0.3945 12850 0.5787 - -
0.3947 12855 0.5493 - -
0.3949 12860 0.8161 - -
0.3950 12865 0.4777 - -
0.3952 12870 0.4274 - -
0.3953 12875 0.3787 - -
0.3955 12880 0.7114 - -
0.3956 12885 0.7952 - -
0.3958 12890 0.8070 - -
0.3959 12895 0.7225 - -
0.3961 12900 0.6365 - -
0.3962 12905 0.9572 - -
0.3964 12910 0.6752 - -
0.3965 12915 0.7350 - -
0.3967 12920 0.6659 - -
0.3968 12925 0.9813 - -
0.3970 12930 0.7098 - -
0.3972 12935 0.7287 - -
0.3973 12940 0.6116 - -
0.3975 12945 0.9162 - -
0.3976 12950 0.7554 - -
0.3978 12955 0.4711 - -
0.3979 12960 0.4518 - -
0.3981 12965 0.5003 - -
0.3982 12970 0.5205 - -
0.3984 12975 0.7748 - -
0.3985 12980 0.4781 - -
0.3987 12985 0.4495 - -
0.3988 12990 0.4424 - -
0.3990 12995 0.9066 - -
0.3992 13000 0.7737 - -
0.3993 13005 0.9878 - -
0.3995 13010 0.7285 - -
0.3996 13015 0.6134 - -
0.3998 13020 0.5941 - -
0.3999 13025 1.1834 - -
0.4001 13030 1.0518 - -
0.4002 13035 0.5409 - -
0.4004 13040 0.8288 - -
0.4005 13045 0.9932 - -
0.4007 13050 0.6269 - -
0.4008 13055 0.5802 - -
0.4010 13060 0.6454 - -
0.4011 13065 0.3303 - -
0.4013 13070 2.3427 - -
0.4015 13075 0.7353 - -
0.4016 13080 0.7090 - -
0.4018 13085 0.8466 - -
0.4019 13090 0.8618 - -
0.4021 13095 0.6800 - -
0.4022 13100 0.7103 - -
0.4024 13105 0.5010 - -
0.4025 13110 0.6719 - -
0.4027 13115 0.9811 - -
0.4028 13120 0.6511 - -
0.4030 13125 0.4571 - -
0.4031 13130 0.5097 - -
0.4033 13135 0.7887 - -
0.4035 13140 0.8307 - -
0.4036 13145 0.8259 - -
0.4038 13150 0.4473 - -
0.4039 13155 0.5139 - -
0.4041 13160 0.4861 - -
0.4042 13165 0.9184 - -
0.4044 13170 0.5644 - -
0.4045 13175 0.6049 - -
0.4047 13180 0.5590 - -
0.4048 13185 0.6240 - -
0.4050 13190 0.4191 - -
0.4051 13195 0.8659 - -
0.4053 13200 0.7464 - -
0.4054 13205 0.7098 - -
0.4056 13210 0.5674 - -
0.4058 13215 0.4882 - -
0.4059 13220 0.5720 - -
0.4061 13225 0.5644 - -
0.4062 13230 0.9504 - -
0.4064 13235 0.5774 - -
0.4065 13240 0.7727 - -
0.4067 13245 0.7404 - -
0.4068 13250 0.6383 - -
0.4070 13255 0.5057 - -
0.4071 13260 0.7594 - -
0.4073 13265 0.7925 - -
0.4074 13270 0.6948 - -
0.4076 13275 0.6184 - -
0.4077 13280 0.7195 - -
0.4079 13285 0.5328 - -
0.4081 13290 0.7274 - -
0.4082 13295 0.8167 - -
0.4084 13300 0.6353 - -
0.4085 13305 0.5143 - -
0.4087 13310 0.6969 - -
0.4088 13315 0.5992 - -
0.4090 13320 0.4219 - -
0.4091 13325 0.5275 - -
0.4093 13330 0.9009 - -
0.4094 13335 0.3343 - -
0.4096 13340 0.5890 - -
0.4097 13345 0.7541 - -
0.4099 13350 0.7181 - -
0.4101 13355 0.6493 - -
0.4102 13360 0.6658 - -
0.4104 13365 0.4750 - -
0.4105 13370 0.3779 - -
0.4107 13375 0.4495 - -
0.4108 13380 0.6918 - -
0.4110 13385 0.5728 - -
0.4111 13390 0.4670 - -
0.4113 13395 0.5460 - -
0.4114 13400 0.5172 - -
0.4116 13405 0.7415 - -
0.4117 13410 0.5712 - -
0.4119 13415 0.4336 - -
0.4120 13420 0.5881 - -
0.4122 13425 0.5274 - -
0.4124 13430 0.4777 - -
0.4125 13435 0.8547 - -
0.4127 13440 0.5222 - -
0.4128 13445 0.8693 - -
0.4130 13450 0.7001 - -
0.4131 13455 0.7338 - -
0.4133 13460 0.8736 - -
0.4134 13465 0.9629 - -
0.4136 13470 0.4503 - -
0.4137 13475 0.8507 - -
0.4139 13480 0.3793 - -
0.4140 13485 0.4392 - -
0.4142 13490 0.3233 - -
0.4144 13495 0.4635 - -
0.4145 13500 0.6831 - -
0.4147 13505 0.6700 - -
0.4148 13510 0.5765 - -
0.4150 13515 0.7258 - -
0.4151 13520 0.4434 - -
0.4153 13525 0.4294 - -
0.4154 13530 0.7216 - -
0.4156 13535 0.5824 - -
0.4157 13540 0.7970 - -
0.4159 13545 0.7537 - -
0.4160 13550 0.6815 - -
0.4162 13555 0.5827 - -
0.4163 13560 0.6052 - -
0.4165 13565 0.6407 - -
0.4167 13570 0.7208 - -
0.4168 13575 0.6127 - -
0.4170 13580 0.3213 - -
0.4171 13585 0.3919 - -
0.4173 13590 0.9391 - -
0.4174 13595 0.4313 - -
0.4176 13600 0.7784 - -
0.4177 13605 0.5312 - -
0.4179 13610 0.4767 - -
0.4180 13615 0.3933 - -
0.4182 13620 0.3370 - -
0.4183 13625 0.5565 - -
0.4185 13630 0.6195 - -
0.4186 13635 0.7978 - -
0.4188 13640 0.4206 - -
0.4190 13645 0.3469 - -
0.4191 13650 0.5349 - -
0.4193 13655 0.6994 - -
0.4194 13660 0.8976 - -
0.4196 13665 0.6918 - -
0.4197 13670 0.7294 - -
0.4199 13675 0.6783 - -
0.4200 13680 0.7707 - -
0.4202 13685 0.5115 - -
0.4203 13690 1.3452 - -
0.4205 13695 0.7824 - -
0.4206 13700 0.6532 - -
0.4208 13705 0.6659 - -
0.4210 13710 0.4529 - -
0.4211 13715 0.5154 - -
0.4213 13720 0.3992 - -
0.4214 13725 0.8240 - -
0.4216 13730 0.5185 - -
0.4217 13735 0.4727 - -
0.4219 13740 0.7295 - -
0.4220 13745 0.7531 - -
0.4222 13750 0.6166 - -
0.4223 13755 0.6500 - -
0.4225 13760 0.5104 - -
0.4226 13765 0.4922 - -
0.4228 13770 0.5620 - -
0.4229 13775 0.5948 - -
0.4231 13780 1.4341 - -
0.4233 13785 0.4345 - -
0.4234 13790 0.4189 - -
0.4236 13795 0.4945 - -
0.4237 13800 1.0256 - -
0.4239 13805 0.6959 - -
0.4240 13810 0.3460 - -
0.4242 13815 0.5319 - -
0.4243 13820 0.4037 - -
0.4245 13825 0.6032 - -
0.4246 13830 0.7173 - -
0.4248 13835 0.6294 - -
0.4249 13840 0.5253 - -
0.4251 13845 1.1404 - -
0.4253 13850 0.4509 - -
0.4254 13855 0.7134 - -
0.4256 13860 0.5516 - -
0.4257 13865 0.5005 - -
0.4259 13870 0.3459 - -
0.4260 13875 0.5156 - -
0.4262 13880 0.7220 - -
0.4263 13885 0.4921 - -
0.4265 13890 0.7316 - -
0.4266 13895 0.6612 - -
0.4268 13900 0.8384 - -
0.4269 13905 0.6881 - -
0.4271 13910 0.4706 - -
0.4272 13915 0.5254 - -
0.4274 13920 0.5775 - -
0.4276 13925 0.4287 - -
0.4277 13930 0.5668 - -
0.4279 13935 0.5206 - -
0.4280 13940 0.6276 - -
0.4282 13945 0.5449 - -
0.4283 13950 0.6741 - -
0.4285 13955 0.6930 - -
0.4286 13960 0.5311 - -
0.4288 13965 0.7858 - -
0.4289 13970 0.6355 - -
0.4291 13975 0.6883 - -
0.4292 13980 0.5677 - -
0.4294 13985 0.5842 - -
0.4295 13990 0.6758 - -
0.4297 13995 0.7588 - -
0.4299 14000 0.6926 1.2109 0.8037
0.4300 14005 0.6796 - -
0.4302 14010 0.3927 - -
0.4303 14015 1.0130 - -
0.4305 14020 2.3525 - -
0.4306 14025 0.6645 - -
0.4308 14030 1.5581 - -
0.4309 14035 0.6188 - -
0.4311 14040 0.6855 - -
0.4312 14045 2.5442 - -
0.4314 14050 0.7495 - -
0.4315 14055 0.4885 - -
0.4317 14060 0.5791 - -
0.4319 14065 0.7761 - -
0.4320 14070 0.2767 - -
0.4322 14075 0.6360 - -
0.4323 14080 0.6662 - -
0.4325 14085 0.5306 - -
0.4326 14090 0.5171 - -
0.4328 14095 0.5353 - -
0.4329 14100 0.5077 - -
0.4331 14105 0.6441 - -
0.4332 14110 0.7126 - -
0.4334 14115 0.3941 - -
0.4335 14120 0.6652 - -
0.4337 14125 0.7159 - -
0.4338 14130 0.5974 - -
0.4340 14135 0.5303 - -
0.4342 14140 0.3788 - -
0.4343 14145 0.4580 - -
0.4345 14150 0.7979 - -
0.4346 14155 0.5317 - -
0.4348 14160 0.6211 - -
0.4349 14165 0.9946 - -
0.4351 14170 0.7561 - -
0.4352 14175 0.8804 - -
0.4354 14180 0.4338 - -
0.4355 14185 0.5250 - -
0.4357 14190 0.7527 - -
0.4358 14195 0.8012 - -
0.4360 14200 0.8157 - -
0.4362 14205 0.5100 - -
0.4363 14210 0.6340 - -
0.4365 14215 0.4229 - -
0.4366 14220 0.6605 - -
0.4368 14225 0.4156 - -
0.4369 14230 0.5795 - -
0.4371 14235 0.4709 - -
0.4372 14240 0.6449 - -
0.4374 14245 0.3781 - -
0.4375 14250 0.8091 - -
0.4377 14255 0.4804 - -
0.4378 14260 0.6424 - -
0.4380 14265 0.6431 - -
0.4381 14270 0.7692 - -
0.4383 14275 0.7764 - -
0.4385 14280 0.6266 - -
0.4386 14285 0.4290 - -
0.4388 14290 0.4239 - -
0.4389 14295 0.7393 - -
0.4391 14300 0.5204 - -
0.4392 14305 0.5719 - -
0.4394 14310 0.7247 - -
0.4395 14315 0.7408 - -
0.4397 14320 0.5760 - -
0.4398 14325 0.4908 - -
0.4400 14330 0.8124 - -
0.4401 14335 0.6475 - -
0.4403 14340 0.7439 - -
0.4404 14345 0.4792 - -
0.4406 14350 0.5243 - -
0.4408 14355 2.3967 - -
0.4409 14360 0.2784 - -
0.4411 14365 0.5618 - -
0.4412 14370 0.6467 - -
0.4414 14375 0.8132 - -
0.4415 14380 0.5168 - -
0.4417 14385 0.5574 - -
0.4418 14390 0.5000 - -
0.4420 14395 0.5247 - -
0.4421 14400 0.4885 - -
0.4423 14405 0.4517 - -
0.4424 14410 0.5853 - -
0.4426 14415 0.6217 - -
0.4428 14420 0.5687 - -
0.4429 14425 0.7391 - -
0.4431 14430 0.5224 - -
0.4432 14435 0.4869 - -
0.4434 14440 0.7247 - -
0.4435 14445 0.5656 - -
0.4437 14450 0.7172 - -
0.4438 14455 0.5727 - -
0.4440 14460 0.5084 - -
0.4441 14465 0.2361 - -
0.4443 14470 0.9728 - -
0.4444 14475 0.5838 - -
0.4446 14480 0.3077 - -
0.4447 14485 0.5262 - -
0.4449 14490 0.6835 - -
0.4451 14495 0.3851 - -
0.4452 14500 0.5203 - -
0.4454 14505 0.3240 - -
0.4455 14510 0.4862 - -
0.4457 14515 0.5774 - -
0.4458 14520 0.3891 - -
0.4460 14525 0.6847 - -
0.4461 14530 0.5822 - -
0.4463 14535 0.6141 - -
0.4464 14540 0.5991 - -
0.4466 14545 0.3943 - -
0.4467 14550 0.6468 - -
0.4469 14555 0.8593 - -
0.4471 14560 0.3679 - -
0.4472 14565 0.4837 - -
0.4474 14570 0.8067 - -
0.4475 14575 0.5732 - -
0.4477 14580 0.6660 - -
0.4478 14585 0.8232 - -
0.4480 14590 0.6816 - -
0.4481 14595 0.4705 - -
0.4483 14600 0.6049 - -
0.4484 14605 0.7202 - -
0.4486 14610 0.5759 - -
0.4487 14615 0.3538 - -
0.4489 14620 0.5319 - -
0.4490 14625 0.7528 - -
0.4492 14630 0.5759 - -
0.4494 14635 0.7938 - -
0.4495 14640 0.4878 - -
0.4497 14645 0.1471 - -
0.4498 14650 0.7215 - -
0.4500 14655 1.0545 - -
0.4501 14660 0.7396 - -
0.4503 14665 0.6195 - -
0.4504 14670 0.5074 - -
0.4506 14675 0.6512 - -
0.4507 14680 0.5924 - -
0.4509 14685 0.5056 - -
0.4510 14690 1.0699 - -
0.4512 14695 0.3976 - -
0.4513 14700 0.8929 - -
0.4515 14705 0.3824 - -
0.4517 14710 0.6012 - -
0.4518 14715 0.6182 - -
0.4520 14720 0.7253 - -
0.4521 14725 0.4656 - -
0.4523 14730 0.8975 - -
0.4524 14735 1.3475 - -
0.4526 14740 0.3885 - -
0.4527 14745 0.4821 - -
0.4529 14750 0.3550 - -
0.4530 14755 0.6689 - -
0.4532 14760 0.3551 - -
0.4533 14765 0.5080 - -
0.4535 14770 0.6333 - -
0.4537 14775 0.7698 - -
0.4538 14780 0.7142 - -
0.4540 14785 0.6130 - -
0.4541 14790 0.6394 - -
0.4543 14795 0.7158 - -
0.4544 14800 0.5430 - -
0.4546 14805 0.5907 - -
0.4547 14810 0.7927 - -
0.4549 14815 0.5508 - -
0.4550 14820 0.6313 - -
0.4552 14825 0.6287 - -
0.4553 14830 0.4869 - -
0.4555 14835 0.5246 - -
0.4556 14840 0.6664 - -
0.4558 14845 0.4249 - -
0.4560 14850 0.5554 - -
0.4561 14855 0.5452 - -
0.4563 14860 0.5299 - -
0.4564 14865 0.2493 - -
0.4566 14870 0.4825 - -
0.4567 14875 0.3316 - -
0.4569 14880 0.6363 - -
0.4570 14885 0.6475 - -
0.4572 14890 0.8527 - -
0.4573 14895 0.6277 - -
0.4575 14900 0.5006 - -
0.4576 14905 0.4771 - -
0.4578 14910 0.6141 - -
0.4580 14915 0.6402 - -
0.4581 14920 0.7668 - -
0.4583 14925 0.5127 - -
0.4584 14930 0.3647 - -
0.4586 14935 0.7914 - -
0.4587 14940 0.5811 - -
0.4589 14945 0.6769 - -
0.4590 14950 0.3472 - -
0.4592 14955 0.7714 - -
0.4593 14960 0.6951 - -
0.4595 14965 0.6090 - -
0.4596 14970 0.6851 - -
0.4598 14975 1.0278 - -
0.4599 14980 0.5114 - -
0.4601 14985 0.6033 - -
0.4603 14990 0.7044 - -
0.4604 14995 0.6483 - -
0.4606 15000 0.6652 - -
0.4607 15005 0.6956 - -
0.4609 15010 0.5012 - -
0.4610 15015 0.6548 - -
0.4612 15020 0.4803 - -
0.4613 15025 0.8299 - -
0.4615 15030 0.4057 - -
0.4616 15035 0.6404 - -
0.4618 15040 0.8019 - -
0.4619 15045 0.4657 - -
0.4621 15050 0.6827 - -
0.4622 15055 0.8026 - -
0.4624 15060 0.5792 - -
0.4626 15065 0.6312 - -
0.4627 15070 0.5390 - -
0.4629 15075 0.6012 - -
0.4630 15080 0.5121 - -
0.4632 15085 0.5022 - -
0.4633 15090 0.3223 - -
0.4635 15095 0.5511 - -
0.4636 15100 0.6147 - -
0.4638 15105 0.5699 - -
0.4639 15110 0.5166 - -
0.4641 15115 0.7171 - -
0.4642 15120 0.5788 - -
0.4644 15125 0.3371 - -
0.4646 15130 0.6944 - -
0.4647 15135 0.8982 - -
0.4649 15140 0.5910 - -
0.4650 15145 0.7926 - -
0.4652 15150 0.6216 - -
0.4653 15155 0.6246 - -
0.4655 15160 0.6484 - -
0.4656 15165 0.9532 - -
0.4658 15170 0.5311 - -
0.4659 15175 0.8564 - -
0.4661 15180 0.7509 - -
0.4662 15185 0.4924 - -
0.4664 15190 0.4054 - -
0.4665 15195 0.4576 - -
0.4667 15200 0.7429 - -
0.4669 15205 0.6855 - -
0.4670 15210 0.7713 - -
0.4672 15215 0.6232 - -
0.4673 15220 0.7131 - -
0.4675 15225 0.4735 - -
0.4676 15230 0.5236 - -
0.4678 15235 0.7844 - -
0.4679 15240 0.6358 - -
0.4681 15245 0.4608 - -
0.4682 15250 0.9720 - -
0.4684 15255 0.5966 - -
0.4685 15260 0.6345 - -
0.4687 15265 0.3615 - -
0.4689 15270 0.8135 - -
0.4690 15275 0.5887 - -
0.4692 15280 0.4372 - -
0.4693 15285 0.5191 - -
0.4695 15290 0.5324 - -
0.4696 15295 0.4552 - -
0.4698 15300 0.4682 - -
0.4699 15305 0.5820 - -
0.4701 15310 0.6972 - -
0.4702 15315 0.6754 - -
0.4704 15320 0.6449 - -
0.4705 15325 0.6253 - -
0.4707 15330 0.4622 - -
0.4708 15335 0.6303 - -
0.4710 15340 0.9199 - -
0.4712 15345 0.7732 - -
0.4713 15350 0.6758 - -
0.4715 15355 0.5906 - -
0.4716 15360 0.4600 - -
0.4718 15365 0.3685 - -
0.4719 15370 0.8193 - -
0.4721 15375 0.4160 - -
0.4722 15380 0.5597 - -
0.4724 15385 0.4108 - -
0.4725 15390 0.6462 - -
0.4727 15395 0.6901 - -
0.4728 15400 0.5169 - -
0.4730 15405 0.5122 - -
0.4731 15410 0.7951 - -
0.4733 15415 0.6922 - -
0.4735 15420 0.4844 - -
0.4736 15425 0.3732 - -
0.4738 15430 0.4038 - -
0.4739 15435 0.5513 - -
0.4741 15440 0.8130 - -
0.4742 15445 1.0521 - -
0.4744 15450 0.5115 - -
0.4745 15455 0.7999 - -
0.4747 15460 0.7320 - -
0.4748 15465 0.6822 - -
0.4750 15470 0.6134 - -
0.4751 15475 0.5984 - -
0.4753 15480 0.7522 - -
0.4755 15485 0.5939 - -
0.4756 15490 0.6949 - -
0.4758 15495 0.4434 - -
0.4759 15500 0.5483 - -
0.4761 15505 0.6174 - -
0.4762 15510 0.4661 - -
0.4764 15515 0.4861 - -
0.4765 15520 0.5056 - -
0.4767 15525 0.7767 - -
0.4768 15530 0.5245 - -
0.4770 15535 0.3621 - -
0.4771 15540 0.7788 - -
0.4773 15545 0.5271 - -
0.4774 15550 0.4641 - -
0.4776 15555 0.5629 - -
0.4778 15560 0.6487 - -
0.4779 15565 1.4926 - -
0.4781 15570 0.6904 - -
0.4782 15575 0.5011 - -
0.4784 15580 0.4896 - -
0.4785 15585 0.5526 - -
0.4787 15590 0.7470 - -
0.4788 15595 0.5137 - -
0.4790 15600 0.6860 - -
0.4791 15605 0.6486 - -
0.4793 15610 0.7383 - -
0.4794 15615 0.4124 - -
0.4796 15620 0.7872 - -
0.4798 15625 0.3694 - -
0.4799 15630 0.5127 - -
0.4801 15635 0.5886 - -
0.4802 15640 0.5890 - -
0.4804 15645 0.6599 - -
0.4805 15650 0.2160 - -
0.4807 15655 0.7355 - -
0.4808 15660 0.7101 - -
0.4810 15665 0.4895 - -
0.4811 15670 0.5209 - -
0.4813 15675 0.4224 - -
0.4814 15680 0.5164 - -
0.4816 15685 0.5281 - -
0.4817 15690 0.5574 - -
0.4819 15695 0.6505 - -
0.4821 15700 0.3912 - -
0.4822 15705 0.6731 - -
0.4824 15710 0.9136 - -
0.4825 15715 0.6062 - -
0.4827 15720 0.4539 - -
0.4828 15725 0.6028 - -
0.4830 15730 0.7656 - -
0.4831 15735 0.6541 - -
0.4833 15740 0.5339 - -
0.4834 15745 0.5525 - -
0.4836 15750 0.3424 - -
0.4837 15755 0.2469 - -
0.4839 15760 0.8215 - -
0.4840 15765 0.7014 - -
0.4842 15770 0.6658 - -
0.4844 15775 0.4593 - -
0.4845 15780 0.5273 - -
0.4847 15785 0.3903 - -
0.4848 15790 0.7321 - -
0.4850 15795 0.8497 - -
0.4851 15800 0.7300 - -
0.4853 15805 0.4098 - -
0.4854 15810 0.7760 - -
0.4856 15815 0.7310 - -
0.4857 15820 0.3073 - -
0.4859 15825 1.1378 - -
0.4860 15830 0.4112 - -
0.4862 15835 0.4152 - -
0.4864 15840 0.6585 - -
0.4865 15845 0.6162 - -
0.4867 15850 0.4748 - -
0.4868 15855 0.6613 - -
0.4870 15860 0.2715 - -
0.4871 15865 0.4254 - -
0.4873 15870 0.5154 - -
0.4874 15875 0.3115 - -
0.4876 15880 0.6366 - -
0.4877 15885 0.5066 - -
0.4879 15890 0.4664 - -
0.4880 15895 0.6329 - -
0.4882 15900 0.5098 - -
0.4883 15905 0.4946 - -
0.4885 15910 0.3635 - -
0.4887 15915 0.5281 - -
0.4888 15920 0.5952 - -
0.4890 15925 0.6121 - -
0.4891 15930 0.5697 - -
0.4893 15935 0.6916 - -
0.4894 15940 0.2453 - -
0.4896 15945 0.4570 - -
0.4897 15950 0.7610 - -
0.4899 15955 0.5013 - -
0.4900 15960 0.7251 - -
0.4902 15965 0.3931 - -
0.4903 15970 0.4482 - -
0.4905 15975 0.5332 - -
0.4907 15980 0.3792 - -
0.4908 15985 0.5367 - -
0.4910 15990 0.6705 - -
0.4911 15995 0.5002 - -
0.4913 16000 0.6220 1.1394 0.8093
0.4914 16005 0.6080 - -
0.4916 16010 0.5097 - -
0.4917 16015 0.3937 - -
0.4919 16020 0.4783 - -
0.4920 16025 0.6867 - -
0.4922 16030 0.6391 - -
0.4923 16035 0.6670 - -
0.4925 16040 0.3411 - -
0.4926 16045 0.5873 - -
0.4928 16050 0.5515 - -
0.4930 16055 0.4272 - -
0.4931 16060 0.5271 - -
0.4933 16065 0.6899 - -
0.4934 16070 0.9576 - -
0.4936 16075 0.3849 - -
0.4937 16080 0.6839 - -
0.4939 16085 0.4363 - -
0.4940 16090 0.6526 - -
0.4942 16095 0.6233 - -
0.4943 16100 0.6288 - -
0.4945 16105 0.2507 - -
0.4946 16110 0.3411 - -
0.4948 16115 0.8781 - -
0.4949 16120 0.3153 - -
0.4951 16125 0.5804 - -
0.4953 16130 0.7696 - -
0.4954 16135 0.4289 - -
0.4956 16140 0.5448 - -
0.4957 16145 0.4821 - -
0.4959 16150 0.4644 - -
0.4960 16155 0.4829 - -
0.4962 16160 0.3319 - -
0.4963 16165 0.3656 - -
0.4965 16170 0.6208 - -
0.4966 16175 0.5979 - -
0.4968 16180 0.6827 - -
0.4969 16185 0.1832 - -
0.4971 16190 0.6364 - -
0.4973 16195 0.4725 - -
0.4974 16200 0.3040 - -
0.4976 16205 0.5529 - -
0.4977 16210 0.7505 - -
0.4979 16215 0.9129 - -
0.4980 16220 0.5075 - -
0.4982 16225 0.6616 - -
0.4983 16230 0.5053 - -
0.4985 16235 0.6145 - -
0.4986 16240 0.3217 - -
0.4988 16245 0.3251 - -
0.4989 16250 0.4118 - -
0.4991 16255 0.7469 - -
0.4992 16260 0.5354 - -
0.4994 16265 0.3220 - -
0.4996 16270 0.6459 - -
0.4997 16275 0.7563 - -
0.4999 16280 0.5793 - -
0.5000 16285 0.6386 - -
0.5002 16290 0.5451 - -
0.5003 16295 0.4777 - -
0.5005 16300 1.2858 - -
0.5006 16305 0.5275 - -
0.5008 16310 0.6091 - -
0.5009 16315 0.4105 - -
0.5011 16320 0.6126 - -
0.5012 16325 0.5004 - -
0.5014 16330 0.4532 - -
0.5016 16335 0.7098 - -
0.5017 16340 0.9564 - -
0.5019 16345 0.4731 - -
0.5020 16350 0.6449 - -
0.5022 16355 0.5323 - -
0.5023 16360 0.4759 - -
0.5025 16365 0.4862 - -
0.5026 16370 0.8035 - -
0.5028 16375 0.4768 - -
0.5029 16380 0.5723 - -
0.5031 16385 0.7712 - -
0.5032 16390 0.6081 - -
0.5034 16395 0.6645 - -
0.5035 16400 0.8123 - -
0.5037 16405 0.9204 - -
0.5039 16410 0.3625 - -
0.5040 16415 0.9119 - -
0.5042 16420 0.6281 - -
0.5043 16425 0.5490 - -
0.5045 16430 0.7001 - -
0.5046 16435 0.4935 - -
0.5048 16440 0.7138 - -
0.5049 16445 0.5784 - -
0.5051 16450 0.5671 - -
0.5052 16455 0.4893 - -
0.5054 16460 0.5046 - -
0.5055 16465 0.6996 - -
0.5057 16470 0.6235 - -
0.5058 16475 0.6564 - -
0.5060 16480 0.6350 - -
0.5062 16485 0.6707 - -
0.5063 16490 0.5218 - -
0.5065 16495 0.6877 - -
0.5066 16500 0.2309 - -
0.5068 16505 0.7604 - -
0.5069 16510 0.5111 - -
0.5071 16515 0.3336 - -
0.5072 16520 0.2778 - -
0.5074 16525 0.7774 - -
0.5075 16530 0.4152 - -
0.5077 16535 0.4866 - -
0.5078 16540 0.4556 - -
0.5080 16545 0.5974 - -
0.5082 16550 0.5970 - -
0.5083 16555 0.4486 - -
0.5085 16560 0.9209 - -
0.5086 16565 0.4451 - -
0.5088 16570 0.5416 - -
0.5089 16575 0.6676 - -
0.5091 16580 0.5467 - -
0.5092 16585 0.6745 - -
0.5094 16590 0.3968 - -
0.5095 16595 0.5799 - -
0.5097 16600 0.4136 - -
0.5098 16605 0.4296 - -
0.5100 16610 0.3487 - -
0.5101 16615 0.6930 - -
0.5103 16620 0.7148 - -
0.5105 16625 0.4321 - -
0.5106 16630 0.4857 - -
0.5108 16635 0.4524 - -
0.5109 16640 0.5329 - -
0.5111 16645 0.3610 - -
0.5112 16650 0.7480 - -
0.5114 16655 0.6777 - -
0.5115 16660 0.7222 - -
0.5117 16665 0.4576 - -
0.5118 16670 0.5555 - -
0.5120 16675 0.6190 - -
0.5121 16680 0.6285 - -
0.5123 16685 0.7687 - -
0.5125 16690 0.4598 - -
0.5126 16695 0.5919 - -
0.5128 16700 0.4062 - -
0.5129 16705 0.6031 - -
0.5131 16710 0.6741 - -
0.5132 16715 0.8440 - -
0.5134 16720 0.6901 - -
0.5135 16725 0.5767 - -
0.5137 16730 0.6664 - -
0.5138 16735 0.5436 - -
0.5140 16740 0.6628 - -
0.5141 16745 0.8021 - -
0.5143 16750 0.3682 - -
0.5144 16755 0.6147 - -
0.5146 16760 0.3309 - -
0.5148 16765 0.6018 - -
0.5149 16770 0.5588 - -
0.5151 16775 0.6087 - -
0.5152 16780 0.5969 - -
0.5154 16785 0.7484 - -
0.5155 16790 0.5697 - -
0.5157 16795 0.4846 - -
0.5158 16800 0.5954 - -
0.5160 16805 0.4254 - -
0.5161 16810 0.5983 - -
0.5163 16815 0.7305 - -
0.5164 16820 0.4421 - -
0.5166 16825 0.4839 - -
0.5167 16830 0.6012 - -
0.5169 16835 0.4862 - -
0.5171 16840 0.3305 - -
0.5172 16845 0.5844 - -
0.5174 16850 0.7924 - -
0.5175 16855 0.5126 - -
0.5177 16860 0.4973 - -
0.5178 16865 0.5423 - -
0.5180 16870 0.6968 - -
0.5181 16875 0.3758 - -
0.5183 16880 0.7190 - -
0.5184 16885 0.5119 - -
0.5186 16890 0.4143 - -
0.5187 16895 0.5358 - -
0.5189 16900 0.3912 - -
0.5191 16905 0.4986 - -
0.5192 16910 0.4754 - -
0.5194 16915 0.4259 - -
0.5195 16920 0.5571 - -
0.5197 16925 0.6319 - -
0.5198 16930 0.5634 - -
0.5200 16935 0.6055 - -
0.5201 16940 0.7485 - -
0.5203 16945 0.5231 - -
0.5204 16950 0.8027 - -
0.5206 16955 0.6554 - -
0.5207 16960 0.3728 - -
0.5209 16965 0.5630 - -
0.5210 16970 0.6414 - -
0.5212 16975 0.3941 - -
0.5214 16980 0.4972 - -
0.5215 16985 0.5130 - -
0.5217 16990 0.7641 - -
0.5218 16995 0.9245 - -
0.5220 17000 0.4390 - -
0.5221 17005 0.3377 - -
0.5223 17010 0.6599 - -
0.5224 17015 0.3059 - -
0.5226 17020 0.4623 - -
0.5227 17025 0.2678 - -
0.5229 17030 0.6117 - -
0.5230 17035 0.6935 - -
0.5232 17040 0.6574 - -
0.5234 17045 0.7584 - -
0.5235 17050 0.6706 - -
0.5237 17055 0.6590 - -
0.5238 17060 0.5735 - -
0.5240 17065 0.6351 - -
0.5241 17070 0.7053 - -
0.5243 17075 0.6497 - -
0.5244 17080 0.5814 - -
0.5246 17085 0.6252 - -
0.5247 17090 0.8239 - -
0.5249 17095 0.5839 - -
0.5250 17100 0.7128 - -
0.5252 17105 0.4033 - -
0.5253 17110 0.8191 - -
0.5255 17115 0.3026 - -
0.5257 17120 0.2606 - -
0.5258 17125 0.1576 - -
0.5260 17130 0.7321 - -
0.5261 17135 0.5976 - -
0.5263 17140 0.6041 - -
0.5264 17145 0.6391 - -
0.5266 17150 0.5008 - -
0.5267 17155 0.7326 - -
0.5269 17160 0.5570 - -
0.5270 17165 0.6248 - -
0.5272 17170 0.5635 - -
0.5273 17175 0.3189 - -
0.5275 17180 0.5729 - -
0.5276 17185 0.4436 - -
0.5278 17190 0.4782 - -
0.5280 17195 0.5031 - -
0.5281 17200 0.7349 - -
0.5283 17205 0.4534 - -
0.5284 17210 0.3437 - -
0.5286 17215 0.5408 - -
0.5287 17220 0.4801 - -
0.5289 17225 0.5766 - -
0.5290 17230 0.6226 - -
0.5292 17235 0.6011 - -
0.5293 17240 0.3872 - -
0.5295 17245 0.7535 - -
0.5296 17250 0.5397 - -
0.5298 17255 0.5230 - -
0.5300 17260 0.6342 - -
0.5301 17265 0.4799 - -
0.5303 17270 0.7357 - -
0.5304 17275 0.4444 - -
0.5306 17280 0.4925 - -
0.5307 17285 0.9429 - -
0.5309 17290 0.5753 - -
0.5310 17295 0.5925 - -
0.5312 17300 0.5690 - -
0.5313 17305 0.6398 - -
0.5315 17310 0.4989 - -
0.5316 17315 0.6057 - -
0.5318 17320 0.7273 - -
0.5319 17325 0.7107 - -
0.5321 17330 0.3779 - -
0.5323 17335 0.3652 - -
0.5324 17340 0.4608 - -
0.5326 17345 0.4567 - -
0.5327 17350 0.6843 - -
0.5329 17355 0.5566 - -
0.5330 17360 0.8994 - -
0.5332 17365 0.5752 - -
0.5333 17370 0.6883 - -
0.5335 17375 0.5254 - -
0.5336 17380 0.7513 - -
0.5338 17385 0.6171 - -
0.5339 17390 0.6484 - -
0.5341 17395 0.3602 - -
0.5343 17400 0.5998 - -
0.5344 17405 0.5489 - -
0.5346 17410 0.4723 - -
0.5347 17415 0.5393 - -
0.5349 17420 0.3793 - -
0.5350 17425 0.4657 - -
0.5352 17430 0.6204 - -
0.5353 17435 0.5412 - -
0.5355 17440 0.5949 - -
0.5356 17445 0.5677 - -
0.5358 17450 0.3244 - -
0.5359 17455 0.6889 - -
0.5361 17460 0.6758 - -
0.5362 17465 0.3378 - -
0.5364 17470 0.9307 - -
0.5366 17475 0.6474 - -
0.5367 17480 0.4558 - -
0.5369 17485 0.5257 - -
0.5370 17490 0.5431 - -
0.5372 17495 0.6783 - -
0.5373 17500 0.3176 - -
0.5375 17505 0.3909 - -
0.5376 17510 0.6956 - -
0.5378 17515 0.6619 - -
0.5379 17520 0.7308 - -
0.5381 17525 0.4086 - -
0.5382 17530 0.3982 - -
0.5384 17535 0.5483 - -
0.5385 17540 0.4726 - -
0.5387 17545 0.3994 - -
0.5389 17550 0.4664 - -
0.5390 17555 0.5669 - -
0.5392 17560 0.6640 - -
0.5393 17565 0.4711 - -
0.5395 17570 0.6125 - -
0.5396 17575 0.6072 - -
0.5398 17580 0.5893 - -
0.5399 17585 0.7061 - -
0.5401 17590 0.5282 - -
0.5402 17595 0.6071 - -
0.5404 17600 0.6361 - -
0.5405 17605 0.6414 - -
0.5407 17610 0.7555 - -
0.5409 17615 0.3136 - -
0.5410 17620 0.8807 - -
0.5412 17625 0.5526 - -
0.5413 17630 0.6583 - -
0.5415 17635 0.6244 - -
0.5416 17640 0.6594 - -
0.5418 17645 0.5732 - -
0.5419 17650 0.4407 - -
0.5421 17655 0.5872 - -
0.5422 17660 0.3726 - -
0.5424 17665 0.5556 - -
0.5425 17670 0.4514 - -
0.5427 17675 0.3675 - -
0.5428 17680 0.4675 - -
0.5430 17685 0.3650 - -
0.5432 17690 0.6277 - -
0.5433 17695 0.4052 - -
0.5435 17700 0.5458 - -
0.5436 17705 0.5784 - -
0.5438 17710 0.5674 - -
0.5439 17715 0.5559 - -
0.5441 17720 0.6691 - -
0.5442 17725 0.3476 - -
0.5444 17730 0.5637 - -
0.5445 17735 0.4375 - -
0.5447 17740 0.7619 - -
0.5448 17745 0.6559 - -
0.5450 17750 0.7192 - -
0.5452 17755 0.5725 - -
0.5453 17760 0.6387 - -
0.5455 17765 0.7028 - -
0.5456 17770 0.5505 - -
0.5458 17775 0.5836 - -
0.5459 17780 0.8681 - -
0.5461 17785 0.4463 - -
0.5462 17790 0.6396 - -
0.5464 17795 0.6781 - -
0.5465 17800 0.6913 - -
0.5467 17805 0.8368 - -
0.5468 17810 0.6875 - -
0.5470 17815 0.4959 - -
0.5471 17820 0.7685 - -
0.5473 17825 0.6971 - -
0.5475 17830 0.5971 - -
0.5476 17835 0.6604 - -
0.5478 17840 0.3625 - -
0.5479 17845 0.4439 - -
0.5481 17850 0.4673 - -
0.5482 17855 0.7153 - -
0.5484 17860 0.3522 - -
0.5485 17865 0.5072 - -
0.5487 17870 0.6116 - -
0.5488 17875 0.6442 - -
0.5490 17880 0.7617 - -
0.5491 17885 0.2841 - -
0.5493 17890 0.4286 - -
0.5494 17895 0.5456 - -
0.5496 17900 0.5448 - -
0.5498 17905 0.4809 - -
0.5499 17910 0.6104 - -
0.5501 17915 0.4071 - -
0.5502 17920 0.6334 - -
0.5504 17925 0.6994 - -
0.5505 17930 0.5513 - -
0.5507 17935 0.4035 - -
0.5508 17940 0.5532 - -
0.5510 17945 0.9807 - -
0.5511 17950 0.7504 - -
0.5513 17955 0.5969 - -
0.5514 17960 0.8264 - -
0.5516 17965 0.3688 - -
0.5518 17970 0.6204 - -
0.5519 17975 0.8625 - -
0.5521 17980 0.2367 - -
0.5522 17985 0.6985 - -
0.5524 17990 0.4385 - -
0.5525 17995 0.8253 - -
0.5527 18000 0.5220 1.1314 0.8125
0.5528 18005 0.4952 - -
0.5530 18010 0.6604 - -
0.5531 18015 0.5148 - -
0.5533 18020 0.6099 - -
0.5534 18025 0.3754 - -
0.5536 18030 0.5400 - -
0.5537 18035 0.4897 - -
0.5539 18040 0.4648 - -
0.5541 18045 0.5813 - -
0.5542 18050 0.5205 - -
0.5544 18055 0.7141 - -
0.5545 18060 0.5079 - -
0.5547 18065 0.4317 - -
0.5548 18070 0.5252 - -
0.5550 18075 0.7601 - -
0.5551 18080 0.6161 - -
0.5553 18085 0.4041 - -
0.5554 18090 0.3523 - -
0.5556 18095 0.5109 - -
0.5557 18100 0.5730 - -
0.5559 18105 0.8067 - -
0.5561 18110 0.8774 - -
0.5562 18115 0.4492 - -
0.5564 18120 0.5177 - -
0.5565 18125 0.4802 - -
0.5567 18130 0.6079 - -
0.5568 18135 0.5825 - -
0.5570 18140 0.3693 - -
0.5571 18145 0.4635 - -
0.5573 18150 0.2888 - -
0.5574 18155 0.5733 - -
0.5576 18160 0.3778 - -
0.5577 18165 0.6358 - -
0.5579 18170 0.5891 - -
0.5580 18175 0.6425 - -
0.5582 18180 0.4909 - -
0.5584 18185 0.5160 - -
0.5585 18190 0.3342 - -
0.5587 18195 0.6071 - -
0.5588 18200 0.3622 - -
0.5590 18205 1.4517 - -
0.5591 18210 0.6403 - -
0.5593 18215 0.4729 - -
0.5594 18220 0.5738 - -
0.5596 18225 0.6740 - -
0.5597 18230 0.4808 - -
0.5599 18235 0.7184 - -
0.5600 18240 0.5449 - -
0.5602 18245 0.5343 - -
0.5603 18250 0.6270 - -
0.5605 18255 0.4935 - -
0.5607 18260 0.4744 - -
0.5608 18265 0.3768 - -
0.5610 18270 0.7256 - -
0.5611 18275 0.2803 - -
0.5613 18280 0.3052 - -
0.5614 18285 0.6421 - -
0.5616 18290 0.6280 - -
0.5617 18295 0.7288 - -
0.5619 18300 0.7060 - -
0.5620 18305 0.6752 - -
0.5622 18310 0.5955 - -
0.5623 18315 0.5117 - -
0.5625 18320 0.4708 - -
0.5627 18325 0.8211 - -
0.5628 18330 0.3818 - -
0.5630 18335 0.5558 - -
0.5631 18340 0.4605 - -
0.5633 18345 0.6002 - -
0.5634 18350 0.5064 - -
0.5636 18355 0.7805 - -
0.5637 18360 0.3218 - -
0.5639 18365 0.5934 - -
0.5640 18370 0.6715 - -
0.5642 18375 0.8094 - -
0.5643 18380 1.3857 - -
0.5645 18385 0.7708 - -
0.5646 18390 0.3230 - -
0.5648 18395 0.5542 - -
0.5650 18400 0.5766 - -
0.5651 18405 0.2844 - -
0.5653 18410 0.5011 - -
0.5654 18415 0.5097 - -
0.5656 18420 0.6241 - -
0.5657 18425 2.4550 - -
0.5659 18430 0.6061 - -
0.5660 18435 0.3332 - -
0.5662 18440 0.3602 - -
0.5663 18445 0.5732 - -
0.5665 18450 0.5964 - -
0.5666 18455 0.5779 - -
0.5668 18460 0.6832 - -
0.5670 18465 0.5782 - -
0.5671 18470 0.5767 - -
0.5673 18475 0.4174 - -
0.5674 18480 0.1874 - -
0.5676 18485 0.8391 - -
0.5677 18490 0.7660 - -
0.5679 18495 0.5328 - -
0.5680 18500 0.6107 - -
0.5682 18505 0.5377 - -
0.5683 18510 0.4677 - -
0.5685 18515 0.5130 - -
0.5686 18520 0.6640 - -
0.5688 18525 0.8753 - -
0.5689 18530 0.4366 - -
0.5691 18535 0.7091 - -
0.5693 18540 0.6285 - -
0.5694 18545 0.5971 - -
0.5696 18550 0.5205 - -
0.5697 18555 0.6236 - -
0.5699 18560 0.7137 - -
0.5700 18565 0.6363 - -
0.5702 18570 0.2999 - -
0.5703 18575 0.4192 - -
0.5705 18580 0.4365 - -
0.5706 18585 0.4492 - -
0.5708 18590 0.2393 - -
0.5709 18595 0.5622 - -
0.5711 18600 0.6809 - -
0.5712 18605 0.2886 - -
0.5714 18610 0.6815 - -
0.5716 18615 0.6685 - -
0.5717 18620 0.4014 - -
0.5719 18625 0.6350 - -
0.5720 18630 0.4463 - -
0.5722 18635 0.5561 - -
0.5723 18640 0.4456 - -
0.5725 18645 0.5972 - -
0.5726 18650 0.6439 - -
0.5728 18655 0.6626 - -
0.5729 18660 0.4167 - -
0.5731 18665 0.7986 - -
0.5732 18670 0.8056 - -
0.5734 18675 0.3813 - -
0.5736 18680 0.6628 - -
0.5737 18685 0.4127 - -
0.5739 18690 0.5774 - -
0.5740 18695 0.8559 - -
0.5742 18700 0.5364 - -
0.5743 18705 0.4350 - -
0.5745 18710 0.5206 - -
0.5746 18715 0.5365 - -
0.5748 18720 0.6278 - -
0.5749 18725 0.6061 - -
0.5751 18730 0.4156 - -
0.5752 18735 0.5181 - -
0.5754 18740 0.3776 - -
0.5755 18745 0.3993 - -
0.5757 18750 0.3280 - -
0.5759 18755 0.7339 - -
0.5760 18760 0.4714 - -
0.5762 18765 0.5711 - -
0.5763 18770 0.5218 - -
0.5765 18775 0.2806 - -
0.5766 18780 0.7001 - -
0.5768 18785 0.3824 - -
0.5769 18790 0.5991 - -
0.5771 18795 0.6990 - -
0.5772 18800 0.7977 - -
0.5774 18805 0.6346 - -
0.5775 18810 0.5318 - -
0.5777 18815 0.7601 - -
0.5779 18820 0.5713 - -
0.5780 18825 0.6921 - -
0.5782 18830 0.5442 - -
0.5783 18835 0.7262 - -
0.5785 18840 0.4472 - -
0.5786 18845 0.5521 - -
0.5788 18850 0.3970 - -
0.5789 18855 0.5282 - -
0.5791 18860 0.3164 - -
0.5792 18865 0.4746 - -
0.5794 18870 0.4977 - -
0.5795 18875 0.4799 - -
0.5797 18880 0.6318 - -
0.5798 18885 0.5205 - -
0.5800 18890 2.4608 - -
0.5802 18895 0.6412 - -
0.5803 18900 0.5903 - -
0.5805 18905 0.6250 - -
0.5806 18910 0.3828 - -
0.5808 18915 0.3372 - -
0.5809 18920 0.3756 - -
0.5811 18925 0.5969 - -
0.5812 18930 0.4587 - -
0.5814 18935 0.6002 - -
0.5815 18940 0.6142 - -
0.5817 18945 0.2974 - -
0.5818 18950 0.4762 - -
0.5820 18955 0.4834 - -
0.5821 18960 0.4139 - -
0.5823 18965 0.3122 - -
0.5825 18970 0.9271 - -
0.5826 18975 0.6712 - -
0.5828 18980 0.6255 - -
0.5829 18985 0.4251 - -
0.5831 18990 0.3730 - -
0.5832 18995 0.6777 - -
0.5834 19000 0.5570 - -
0.5835 19005 0.6206 - -
0.5837 19010 0.6195 - -
0.5838 19015 0.6286 - -
0.5840 19020 0.4974 - -
0.5841 19025 0.3493 - -
0.5843 19030 0.5956 - -
0.5845 19035 0.3903 - -
0.5846 19040 0.6581 - -
0.5848 19045 0.5066 - -
0.5849 19050 0.7392 - -
0.5851 19055 0.6467 - -
0.5852 19060 0.8735 - -
0.5854 19065 0.5566 - -
0.5855 19070 0.6875 - -
0.5857 19075 0.5355 - -
0.5858 19080 0.4143 - -
0.5860 19085 0.3163 - -
0.5861 19090 0.3683 - -
0.5863 19095 0.2686 - -
0.5864 19100 0.4265 - -
0.5866 19105 0.6314 - -
0.5868 19110 0.6762 - -
0.5869 19115 0.6930 - -
0.5871 19120 0.6068 - -
0.5872 19125 0.7484 - -
0.5874 19130 0.4164 - -
0.5875 19135 0.9354 - -
0.5877 19140 0.6703 - -
0.5878 19145 1.0577 - -
0.5880 19150 0.3207 - -
0.5881 19155 0.2443 - -
0.5883 19160 0.5118 - -
0.5884 19165 0.5549 - -
0.5886 19170 0.4769 - -
0.5888 19175 0.4445 - -
0.5889 19180 0.3637 - -
0.5891 19185 0.4330 - -
0.5892 19190 0.6491 - -
0.5894 19195 0.4201 - -
0.5895 19200 0.4185 - -
0.5897 19205 0.3980 - -
0.5898 19210 0.6223 - -
0.5900 19215 0.4806 - -
0.5901 19220 0.6963 - -
0.5903 19225 0.5651 - -
0.5904 19230 0.7319 - -
0.5906 19235 0.8052 - -
0.5907 19240 0.5910 - -
0.5909 19245 0.7933 - -
0.5911 19250 0.5584 - -
0.5912 19255 0.7882 - -
0.5914 19260 0.5215 - -
0.5915 19265 0.6322 - -
0.5917 19270 0.5445 - -
0.5918 19275 0.6019 - -
0.5920 19280 0.4655 - -
0.5921 19285 0.5369 - -
0.5923 19290 0.2335 - -
0.5924 19295 0.5590 - -
0.5926 19300 0.5959 - -
0.5927 19305 0.6876 - -
0.5929 19310 0.5760 - -
0.5930 19315 0.4648 - -
0.5932 19320 0.5758 - -
0.5934 19325 0.4467 - -
0.5935 19330 0.3790 - -
0.5937 19335 0.5463 - -
0.5938 19340 0.9439 - -
0.5940 19345 0.4251 - -
0.5941 19350 0.5215 - -
0.5943 19355 0.4153 - -
0.5944 19360 0.5961 - -
0.5946 19365 0.4272 - -
0.5947 19370 0.5676 - -
0.5949 19375 0.4143 - -
0.5950 19380 0.1682 - -
0.5952 19385 0.3695 - -
0.5954 19390 0.4731 - -
0.5955 19395 0.7587 - -
0.5957 19400 0.6329 - -
0.5958 19405 0.4864 - -
0.5960 19410 0.5248 - -
0.5961 19415 0.7434 - -
0.5963 19420 0.7593 - -
0.5964 19425 0.2930 - -
0.5966 19430 0.2458 - -
0.5967 19435 0.6599 - -
0.5969 19440 0.2612 - -
0.5970 19445 0.7140 - -
0.5972 19450 0.4142 - -
0.5973 19455 0.6527 - -
0.5975 19460 0.7454 - -
0.5977 19465 0.5112 - -
0.5978 19470 0.5308 - -
0.5980 19475 0.4723 - -
0.5981 19480 0.7547 - -
0.5983 19485 0.5780 - -
0.5984 19490 0.5090 - -
0.5986 19495 0.6395 - -
0.5987 19500 0.6005 - -
0.5989 19505 0.6422 - -
0.5990 19510 0.2985 - -
0.5992 19515 0.7272 - -
0.5993 19520 0.4165 - -
0.5995 19525 0.5134 - -
0.5996 19530 0.5858 - -
0.5998 19535 0.7394 - -
0.6000 19540 0.4933 - -
0.6001 19545 0.7232 - -
0.6003 19550 0.5591 - -
0.6004 19555 0.4717 - -
0.6006 19560 0.2885 - -
0.6007 19565 0.2258 - -
0.6009 19570 0.4042 - -
0.6010 19575 0.6923 - -
0.6012 19580 0.7402 - -
0.6013 19585 0.5934 - -
0.6015 19590 0.6935 - -
0.6016 19595 0.5945 - -
0.6018 19600 0.7749 - -
0.6020 19605 0.5587 - -
0.6021 19610 0.8234 - -
0.6023 19615 0.3406 - -
0.6024 19620 0.6488 - -
0.6026 19625 0.5996 - -
0.6027 19630 0.5535 - -
0.6029 19635 0.6963 - -
0.6030 19640 0.3138 - -
0.6032 19645 0.4904 - -
0.6033 19650 0.8744 - -
0.6035 19655 0.7115 - -
0.6036 19660 0.4875 - -
0.6038 19665 0.4145 - -
0.6039 19670 0.6251 - -
0.6041 19675 0.3912 - -
0.6043 19680 0.5354 - -
0.6044 19685 0.5119 - -
0.6046 19690 0.5300 - -
0.6047 19695 0.4987 - -
0.6049 19700 0.3041 - -
0.6050 19705 0.6259 - -
0.6052 19710 0.6434 - -
0.6053 19715 0.6400 - -
0.6055 19720 0.5912 - -
0.6056 19725 0.6729 - -
0.6058 19730 0.6410 - -
0.6059 19735 0.4202 - -
0.6061 19740 0.5749 - -
0.6063 19745 0.5934 - -
0.6064 19750 0.4772 - -
0.6066 19755 0.3616 - -
0.6067 19760 0.4449 - -
0.6069 19765 0.3774 - -
0.6070 19770 0.5982 - -
0.6072 19775 0.5853 - -
0.6073 19780 0.7706 - -
0.6075 19785 0.6922 - -
0.6076 19790 0.6237 - -
0.6078 19795 0.4594 - -
0.6079 19800 0.6207 - -
0.6081 19805 0.4629 - -
0.6082 19810 0.6686 - -
0.6084 19815 0.4462 - -
0.6086 19820 0.2721 - -
0.6087 19825 0.7247 - -
0.6089 19830 0.5195 - -
0.6090 19835 0.4534 - -
0.6092 19840 0.7421 - -
0.6093 19845 0.4952 - -
0.6095 19850 0.4297 - -
0.6096 19855 0.6003 - -
0.6098 19860 0.5694 - -
0.6099 19865 0.5033 - -
0.6101 19870 0.4981 - -
0.6102 19875 0.5640 - -
0.6104 19880 0.5351 - -
0.6105 19885 0.5554 - -
0.6107 19890 0.4737 - -
0.6109 19895 0.5179 - -
0.6110 19900 0.4847 - -
0.6112 19905 0.4701 - -
0.6113 19910 0.7449 - -
0.6115 19915 0.4725 - -
0.6116 19920 0.4801 - -
0.6118 19925 0.3507 - -
0.6119 19930 0.7566 - -
0.6121 19935 0.5831 - -
0.6122 19940 0.4670 - -
0.6124 19945 0.5715 - -
0.6125 19950 0.5386 - -
0.6127 19955 0.2866 - -
0.6129 19960 0.5955 - -
0.6130 19965 0.5489 - -
0.6132 19970 0.8915 - -
0.6133 19975 0.2803 - -
0.6135 19980 0.4258 - -
0.6136 19985 0.5446 - -
0.6138 19990 0.5284 - -
0.6139 19995 0.8172 - -
0.6141 20000 0.4746 1.0662 0.8151
0.6142 20005 0.5843 - -
0.6144 20010 0.3940 - -
0.6145 20015 0.3402 - -
0.6147 20020 0.3981 - -
0.6148 20025 0.6061 - -
0.6150 20030 0.3909 - -
0.6152 20035 0.5009 - -
0.6153 20040 0.6891 - -
0.6155 20045 0.2982 - -
0.6156 20050 0.5986 - -
0.6158 20055 0.3824 - -
0.6159 20060 0.5387 - -
0.6161 20065 0.5722 - -
0.6162 20070 0.3378 - -
0.6164 20075 0.4751 - -
0.6165 20080 0.6535 - -
0.6167 20085 0.6690 - -
0.6168 20090 0.4826 - -
0.6170 20095 0.4998 - -
0.6172 20100 0.7007 - -
0.6173 20105 0.5188 - -
0.6175 20110 0.6446 - -
0.6176 20115 0.5652 - -
0.6178 20120 0.6703 - -
0.6179 20125 0.5731 - -
0.6181 20130 0.4045 - -
0.6182 20135 0.5786 - -
0.6184 20140 0.5890 - -
0.6185 20145 0.4486 - -
0.6187 20150 0.7056 - -
0.6188 20155 0.5858 - -
0.6190 20160 0.3799 - -
0.6191 20165 0.5349 - -
0.6193 20170 0.4747 - -
0.6195 20175 0.6752 - -
0.6196 20180 0.5153 - -
0.6198 20185 0.5097 - -
0.6199 20190 0.3907 - -
0.6201 20195 0.4997 - -
0.6202 20200 0.6146 - -
0.6204 20205 0.6128 - -
0.6205 20210 0.5988 - -
0.6207 20215 0.4557 - -
0.6208 20220 1.0203 - -
0.6210 20225 0.6435 - -
0.6211 20230 0.5670 - -
0.6213 20235 0.7078 - -
0.6214 20240 0.4548 - -
0.6216 20245 0.7685 - -
0.6218 20250 0.7314 - -
0.6219 20255 0.3170 - -
0.6221 20260 0.8042 - -
0.6222 20265 0.7229 - -
0.6224 20270 0.6696 - -
0.6225 20275 0.6363 - -
0.6227 20280 0.5158 - -
0.6228 20285 0.6147 - -
0.6230 20290 0.7612 - -
0.6231 20295 0.6664 - -
0.6233 20300 0.4938 - -
0.6234 20305 0.4261 - -
0.6236 20310 0.4948 - -
0.6238 20315 0.4922 - -
0.6239 20320 0.6097 - -
0.6241 20325 0.5618 - -
0.6242 20330 0.6489 - -
0.6244 20335 0.7277 - -
0.6245 20340 0.6094 - -
0.6247 20345 0.5981 - -
0.6248 20350 0.4845 - -
0.6250 20355 0.4265 - -
0.6251 20360 0.4346 - -
0.6253 20365 0.6767 - -
0.6254 20370 0.3382 - -
0.6256 20375 0.4478 - -
0.6257 20380 0.5080 - -
0.6259 20385 0.6021 - -
0.6261 20390 0.3155 - -
0.6262 20395 0.6516 - -
0.6264 20400 0.5962 - -
0.6265 20405 0.5714 - -
0.6267 20410 0.5314 - -
0.6268 20415 0.6483 - -
0.6270 20420 0.5101 - -
0.6271 20425 0.4217 - -
0.6273 20430 0.2327 - -
0.6274 20435 0.4318 - -
0.6276 20440 0.4322 - -
0.6277 20445 0.7906 - -
0.6279 20450 0.5934 - -
0.6281 20455 0.4321 - -
0.6282 20460 0.5485 - -
0.6284 20465 0.5652 - -
0.6285 20470 0.6929 - -
0.6287 20475 0.6983 - -
0.6288 20480 0.8448 - -
0.6290 20485 0.3446 - -
0.6291 20490 0.4812 - -
0.6293 20495 0.4711 - -
0.6294 20500 0.5577 - -
0.6296 20505 0.4638 - -
0.6297 20510 0.6452 - -
0.6299 20515 0.8157 - -
0.6300 20520 0.3427 - -
0.6302 20525 0.5459 - -
0.6304 20530 0.7547 - -
0.6305 20535 0.6441 - -
0.6307 20540 0.5279 - -
0.6308 20545 0.6520 - -
0.6310 20550 0.8227 - -
0.6311 20555 0.5740 - -
0.6313 20560 0.5082 - -
0.6314 20565 0.5002 - -
0.6316 20570 0.7214 - -
0.6317 20575 0.4980 - -
0.6319 20580 0.5672 - -
0.6320 20585 1.0301 - -
0.6322 20590 0.4875 - -
0.6323 20595 0.5039 - -
0.6325 20600 0.4060 - -
0.6327 20605 0.4564 - -
0.6328 20610 0.5353 - -
0.6330 20615 0.4521 - -
0.6331 20620 0.4827 - -
0.6333 20625 0.4145 - -
0.6334 20630 0.4999 - -
0.6336 20635 0.5738 - -
0.6337 20640 0.4293 - -
0.6339 20645 0.7613 - -
0.6340 20650 0.6883 - -
0.6342 20655 0.4959 - -
0.6343 20660 0.5023 - -
0.6345 20665 0.6221 - -
0.6347 20670 0.4693 - -
0.6348 20675 0.3786 - -
0.6350 20680 0.7384 - -
0.6351 20685 0.4213 - -
0.6353 20690 0.3951 - -
0.6354 20695 0.5289 - -
0.6356 20700 0.4657 - -
0.6357 20705 0.5191 - -
0.6359 20710 0.9733 - -
0.6360 20715 0.3778 - -
0.6362 20720 0.4501 - -
0.6363 20725 0.4419 - -
0.6365 20730 0.5657 - -
0.6366 20735 0.6412 - -
0.6368 20740 0.4104 - -
0.6370 20745 0.5162 - -
0.6371 20750 0.2662 - -
0.6373 20755 0.2699 - -
0.6374 20760 0.2392 - -
0.6376 20765 0.4584 - -
0.6377 20770 0.6733 - -
0.6379 20775 0.5312 - -
0.6380 20780 0.5029 - -
0.6382 20785 0.5215 - -
0.6383 20790 0.3722 - -
0.6385 20795 0.4667 - -
0.6386 20800 0.7017 - -
0.6388 20805 0.4750 - -
0.6390 20810 0.6263 - -
0.6391 20815 0.7227 - -
0.6393 20820 0.4076 - -
0.6394 20825 0.5071 - -
0.6396 20830 0.5569 - -
0.6397 20835 0.5927 - -
0.6399 20840 0.5611 - -
0.6400 20845 0.4876 - -
0.6402 20850 0.5258 - -
0.6403 20855 0.3120 - -
0.6405 20860 0.7282 - -
0.6406 20865 0.6176 - -
0.6408 20870 0.5521 - -
0.6409 20875 0.7255 - -
0.6411 20880 0.6869 - -
0.6413 20885 0.4310 - -
0.6414 20890 0.7943 - -
0.6416 20895 0.3506 - -
0.6417 20900 0.2883 - -
0.6419 20905 0.6804 - -
0.6420 20910 0.4048 - -
0.6422 20915 0.6773 - -
0.6423 20920 0.5219 - -
0.6425 20925 0.4752 - -
0.6426 20930 0.5619 - -
0.6428 20935 0.4956 - -
0.6429 20940 0.6867 - -
0.6431 20945 0.6174 - -
0.6432 20950 0.5861 - -
0.6434 20955 0.6589 - -
0.6436 20960 0.5607 - -
0.6437 20965 0.5251 - -
0.6439 20970 0.7342 - -
0.6440 20975 0.5812 - -
0.6442 20980 0.4184 - -
0.6443 20985 0.5860 - -
0.6445 20990 0.7331 - -
0.6446 20995 0.4676 - -
0.6448 21000 0.6867 - -
0.6449 21005 0.6953 - -
0.6451 21010 0.5286 - -
0.6452 21015 0.5825 - -
0.6454 21020 0.5140 - -
0.6456 21025 0.7019 - -
0.6457 21030 0.2996 - -
0.6459 21035 0.6086 - -
0.6460 21040 0.4519 - -
0.6462 21045 0.6385 - -
0.6463 21050 0.5252 - -
0.6465 21055 0.5161 - -
0.6466 21060 0.2948 - -
0.6468 21065 0.5053 - -
0.6469 21070 0.3420 - -
0.6471 21075 0.4620 - -
0.6472 21080 0.5164 - -
0.6474 21085 0.7081 - -
0.6475 21090 0.5958 - -
0.6477 21095 0.5678 - -
0.6479 21100 0.6127 - -
0.6480 21105 0.5990 - -
0.6482 21110 0.5272 - -
0.6483 21115 0.3920 - -
0.6485 21120 0.3848 - -
0.6486 21125 0.3883 - -
0.6488 21130 0.5080 - -
0.6489 21135 0.4841 - -
0.6491 21140 0.5640 - -
0.6492 21145 0.7924 - -
0.6494 21150 0.3665 - -
0.6495 21155 0.3140 - -
0.6497 21160 0.5528 - -
0.6499 21165 0.7785 - -
0.6500 21170 0.5480 - -
0.6502 21175 0.5627 - -
0.6503 21180 0.5546 - -
0.6505 21185 0.4709 - -
0.6506 21190 0.6672 - -
0.6508 21195 0.3527 - -
0.6509 21200 0.4868 - -
0.6511 21205 0.7177 - -
0.6512 21210 0.4280 - -
0.6514 21215 0.6214 - -
0.6515 21220 0.5605 - -
0.6517 21225 0.3925 - -
0.6518 21230 0.6705 - -
0.6520 21235 0.4022 - -
0.6522 21240 0.6438 - -
0.6523 21245 0.7638 - -
0.6525 21250 0.7808 - -
0.6526 21255 0.4253 - -
0.6528 21260 0.7320 - -
0.6529 21265 0.6941 - -
0.6531 21270 0.2565 - -
0.6532 21275 0.4858 - -
0.6534 21280 0.4745 - -
0.6535 21285 0.4490 - -
0.6537 21290 0.5498 - -
0.6538 21295 0.5302 - -
0.6540 21300 0.7504 - -
0.6541 21305 0.2210 - -
0.6543 21310 0.5752 - -
0.6545 21315 0.3721 - -
0.6546 21320 0.5189 - -
0.6548 21325 0.4547 - -
0.6549 21330 0.4514 - -
0.6551 21335 0.5207 - -
0.6552 21340 0.4977 - -
0.6554 21345 0.3610 - -
0.6555 21350 0.2690 - -
0.6557 21355 0.4751 - -
0.6558 21360 0.4427 - -
0.6560 21365 0.6170 - -
0.6561 21370 0.3418 - -
0.6563 21375 0.5662 - -
0.6565 21380 0.5188 - -
0.6566 21385 0.6182 - -
0.6568 21390 0.5626 - -
0.6569 21395 0.5613 - -
0.6571 21400 0.4752 - -
0.6572 21405 0.5174 - -
0.6574 21410 1.0076 - -
0.6575 21415 0.5858 - -
0.6577 21420 0.5414 - -
0.6578 21425 0.4856 - -
0.6580 21430 0.5663 - -
0.6581 21435 0.5545 - -
0.6583 21440 0.4409 - -
0.6584 21445 0.4922 - -
0.6586 21450 0.5561 - -
0.6588 21455 0.7138 - -
0.6589 21460 0.5900 - -
0.6591 21465 0.5250 - -
0.6592 21470 0.6266 - -
0.6594 21475 0.5552 - -
0.6595 21480 0.4236 - -
0.6597 21485 0.6278 - -
0.6598 21490 0.3101 - -
0.6600 21495 0.7954 - -
0.6601 21500 0.7043 - -
0.6603 21505 0.6911 - -
0.6604 21510 0.4861 - -
0.6606 21515 0.4435 - -
0.6608 21520 0.3635 - -
0.6609 21525 0.8302 - -
0.6611 21530 0.5785 - -
0.6612 21535 0.4874 - -
0.6614 21540 0.6584 - -
0.6615 21545 0.3357 - -
0.6617 21550 0.4130 - -
0.6618 21555 0.3118 - -
0.6620 21560 0.3999 - -
0.6621 21565 0.4220 - -
0.6623 21570 0.5373 - -
0.6624 21575 0.2559 - -
0.6626 21580 0.5082 - -
0.6627 21585 0.6378 - -
0.6629 21590 0.7043 - -
0.6631 21595 2.1559 - -
0.6632 21600 0.3253 - -
0.6634 21605 0.3660 - -
0.6635 21610 0.4772 - -
0.6637 21615 0.3521 - -
0.6638 21620 0.3740 - -
0.6640 21625 0.4849 - -
0.6641 21630 0.4924 - -
0.6643 21635 0.3902 - -
0.6644 21640 0.6360 - -
0.6646 21645 0.5788 - -
0.6647 21650 0.5588 - -
0.6649 21655 0.6430 - -
0.6650 21660 0.7560 - -
0.6652 21665 0.4620 - -
0.6654 21670 0.4278 - -
0.6655 21675 0.3891 - -
0.6657 21680 0.6287 - -
0.6658 21685 0.3272 - -
0.6660 21690 0.6809 - -
0.6661 21695 0.6785 - -
0.6663 21700 0.3784 - -
0.6664 21705 0.5102 - -
0.6666 21710 0.2883 - -
0.6667 21715 0.5781 - -
0.6669 21720 0.5384 - -
0.6670 21725 0.6385 - -
0.6672 21730 0.3771 - -
0.6674 21735 0.4903 - -
0.6675 21740 0.3381 - -
0.6677 21745 0.7324 - -
0.6678 21750 0.5386 - -
0.6680 21755 0.3984 - -
0.6681 21760 0.3927 - -
0.6683 21765 0.4133 - -
0.6684 21770 0.3262 - -
0.6686 21775 0.4023 - -
0.6687 21780 0.5490 - -
0.6689 21785 0.4106 - -
0.6690 21790 1.2527 - -
0.6692 21795 0.5312 - -
0.6693 21800 0.3235 - -
0.6695 21805 0.3762 - -
0.6697 21810 0.5583 - -
0.6698 21815 1.2263 - -
0.6700 21820 0.4253 - -
0.6701 21825 0.5202 - -
0.6703 21830 0.8576 - -
0.6704 21835 0.2676 - -
0.6706 21840 0.6883 - -
0.6707 21845 0.6350 - -
0.6709 21850 0.4370 - -
0.6710 21855 0.4880 - -
0.6712 21860 0.3615 - -
0.6713 21865 0.8500 - -
0.6715 21870 0.4196 - -
0.6717 21875 0.7735 - -
0.6718 21880 0.4778 - -
0.6720 21885 0.5025 - -
0.6721 21890 0.4902 - -
0.6723 21895 0.4392 - -
0.6724 21900 0.7082 - -
0.6726 21905 0.3825 - -
0.6727 21910 1.3911 - -
0.6729 21915 0.3895 - -
0.6730 21920 0.7980 - -
0.6732 21925 0.5823 - -
0.6733 21930 0.3945 - -
0.6735 21935 0.4009 - -
0.6736 21940 0.3671 - -
0.6738 21945 0.6661 - -
0.6740 21950 0.5212 - -
0.6741 21955 0.3666 - -
0.6743 21960 0.4560 - -
0.6744 21965 0.6948 - -
0.6746 21970 0.5308 - -
0.6747 21975 0.4627 - -
0.6749 21980 0.7164 - -
0.6750 21985 0.6044 - -
0.6752 21990 0.4989 - -
0.6753 21995 0.7358 - -
0.6755 22000 0.3572 1.0599 0.8155
0.6756 22005 0.5097 - -
0.6758 22010 0.7023 - -
0.6759 22015 0.5415 - -
0.6761 22020 0.1939 - -
0.6763 22025 0.3588 - -
0.6764 22030 0.7134 - -
0.6766 22035 0.9435 - -
0.6767 22040 0.6732 - -
0.6769 22045 0.3901 - -
0.6770 22050 0.5517 - -
0.6772 22055 0.5100 - -
0.6773 22060 0.4361 - -
0.6775 22065 0.6518 - -
0.6776 22070 0.5953 - -
0.6778 22075 0.5495 - -
0.6779 22080 0.4109 - -
0.6781 22085 0.8643 - -
0.6783 22090 0.5654 - -
0.6784 22095 0.3767 - -
0.6786 22100 0.6956 - -
0.6787 22105 0.4995 - -
0.6789 22110 0.4157 - -
0.6790 22115 0.2754 - -
0.6792 22120 0.6074 - -
0.6793 22125 0.2688 - -
0.6795 22130 0.3921 - -
0.6796 22135 0.7027 - -
0.6798 22140 0.2708 - -
0.6799 22145 0.3331 - -
0.6801 22150 0.4244 - -
0.6802 22155 0.8293 - -
0.6804 22160 0.5148 - -
0.6806 22165 0.4669 - -
0.6807 22170 0.6841 - -
0.6809 22175 0.5690 - -
0.6810 22180 0.5035 - -
0.6812 22185 0.3073 - -
0.6813 22190 0.5860 - -
0.6815 22195 0.5948 - -
0.6816 22200 0.1676 - -
0.6818 22205 0.9259 - -
0.6819 22210 0.6469 - -
0.6821 22215 0.5323 - -
0.6822 22220 1.0927 - -
0.6824 22225 0.6962 - -
0.6826 22230 0.8754 - -
0.6827 22235 0.4670 - -
0.6829 22240 0.3896 - -
0.6830 22245 0.4358 - -
0.6832 22250 0.5475 - -
0.6833 22255 0.6305 - -
0.6835 22260 0.3704 - -
0.6836 22265 0.4705 - -
0.6838 22270 0.6198 - -
0.6839 22275 0.4422 - -
0.6841 22280 0.3895 - -
0.6842 22285 0.4804 - -
0.6844 22290 0.3177 - -
0.6845 22295 0.5071 - -
0.6847 22300 0.3446 - -
0.6849 22305 0.7105 - -
0.6850 22310 0.4041 - -
0.6852 22315 0.4218 - -
0.6853 22320 0.3148 - -
0.6855 22325 0.6192 - -
0.6856 22330 0.5965 - -
0.6858 22335 0.4019 - -
0.6859 22340 0.4618 - -
0.6861 22345 0.4821 - -
0.6862 22350 0.6059 - -
0.6864 22355 0.7019 - -
0.6865 22360 0.4335 - -
0.6867 22365 0.5009 - -
0.6868 22370 0.5270 - -
0.6870 22375 0.7624 - -
0.6872 22380 0.6919 - -
0.6873 22385 0.6441 - -
0.6875 22390 0.7136 - -
0.6876 22395 0.4875 - -
0.6878 22400 0.6970 - -
0.6879 22405 0.5884 - -
0.6881 22410 0.8442 - -
0.6882 22415 0.4445 - -
0.6884 22420 0.5878 - -
0.6885 22425 0.4162 - -
0.6887 22430 0.5020 - -
0.6888 22435 0.5354 - -
0.6890 22440 0.5302 - -
0.6892 22445 0.8633 - -
0.6893 22450 0.3344 - -
0.6895 22455 0.4303 - -
0.6896 22460 0.3154 - -
0.6898 22465 0.5323 - -
0.6899 22470 0.4014 - -
0.6901 22475 0.5154 - -
0.6902 22480 0.6478 - -
0.6904 22485 0.2198 - -
0.6905 22490 0.5746 - -
0.6907 22495 0.4896 - -
0.6908 22500 0.4749 - -
0.6910 22505 0.4594 - -
0.6911 22510 0.5956 - -
0.6913 22515 0.5043 - -
0.6915 22520 0.3458 - -
0.6916 22525 0.6065 - -
0.6918 22530 0.6049 - -
0.6919 22535 0.6105 - -
0.6921 22540 1.0844 - -
0.6922 22545 0.5280 - -
0.6924 22550 0.4801 - -
0.6925 22555 0.7839 - -
0.6927 22560 0.2254 - -
0.6928 22565 0.3594 - -
0.6930 22570 0.2397 - -
0.6931 22575 0.3974 - -
0.6933 22580 0.4208 - -
0.6935 22585 0.6320 - -
0.6936 22590 0.5241 - -
0.6938 22595 0.5705 - -
0.6939 22600 0.5791 - -
0.6941 22605 0.6183 - -
0.6942 22610 0.5738 - -
0.6944 22615 0.1799 - -
0.6945 22620 0.7176 - -
0.6947 22625 0.3701 - -
0.6948 22630 0.6134 - -
0.6950 22635 0.3874 - -
0.6951 22640 0.5740 - -
0.6953 22645 0.4396 - -
0.6954 22650 0.4661 - -
0.6956 22655 0.4481 - -
0.6958 22660 0.5074 - -
0.6959 22665 0.5053 - -
0.6961 22670 0.3732 - -
0.6962 22675 0.6157 - -
0.6964 22680 0.7514 - -
0.6965 22685 0.6184 - -
0.6967 22690 0.4298 - -
0.6968 22695 0.5360 - -
0.6970 22700 0.3866 - -
0.6971 22705 0.5453 - -
0.6973 22710 0.5616 - -
0.6974 22715 0.3573 - -
0.6976 22720 0.5550 - -
0.6977 22725 0.6635 - -
0.6979 22730 0.6072 - -
0.6981 22735 0.3850 - -
0.6982 22740 0.4673 - -
0.6984 22745 0.7406 - -
0.6985 22750 0.5284 - -
0.6987 22755 0.7703 - -
0.6988 22760 0.5257 - -
0.6990 22765 0.3849 - -
0.6991 22770 0.7830 - -
0.6993 22775 0.4493 - -
0.6994 22780 0.2828 - -
0.6996 22785 0.5157 - -
0.6997 22790 0.6758 - -
0.6999 22795 0.6754 - -
0.7001 22800 0.7783 - -
0.7002 22805 0.4981 - -
0.7004 22810 1.2036 - -
0.7005 22815 0.4386 - -
0.7007 22820 0.3995 - -
0.7008 22825 0.4026 - -
0.7010 22830 0.4862 - -
0.7011 22835 0.7915 - -
0.7013 22840 0.5974 - -
0.7014 22845 0.5975 - -
0.7016 22850 0.6241 - -
0.7017 22855 0.5188 - -
0.7019 22860 0.4897 - -
0.7020 22865 0.2985 - -
0.7022 22870 0.4285 - -
0.7024 22875 0.7750 - -
0.7025 22880 0.3730 - -
0.7027 22885 0.4467 - -
0.7028 22890 0.5541 - -
0.7030 22895 0.5798 - -
0.7031 22900 0.7142 - -
0.7033 22905 0.4855 - -
0.7034 22910 0.5506 - -
0.7036 22915 0.7419 - -
0.7037 22920 0.1681 - -
0.7039 22925 0.7665 - -
0.7040 22930 0.4119 - -
0.7042 22935 0.6699 - -
0.7044 22940 0.5858 - -
0.7045 22945 0.5159 - -
0.7047 22950 0.4723 - -
0.7048 22955 0.4582 - -
0.7050 22960 0.5761 - -
0.7051 22965 0.5351 - -
0.7053 22970 0.4542 - -
0.7054 22975 0.3042 - -
0.7056 22980 0.4314 - -
0.7057 22985 0.6143 - -
0.7059 22990 0.6205 - -
0.7060 22995 0.7603 - -
0.7062 23000 0.5952 - -
0.7063 23005 0.6356 - -
0.7065 23010 0.4857 - -
0.7067 23015 0.3551 - -
0.7068 23020 0.4679 - -
0.7070 23025 0.4778 - -
0.7071 23030 0.7047 - -
0.7073 23035 0.6282 - -
0.7074 23040 0.3713 - -
0.7076 23045 0.3933 - -
0.7077 23050 0.6281 - -
0.7079 23055 0.5577 - -
0.7080 23060 0.5432 - -
0.7082 23065 0.5517 - -
0.7083 23070 0.3934 - -
0.7085 23075 0.3306 - -
0.7086 23080 0.9663 - -
0.7088 23085 0.5354 - -
0.7090 23090 0.5115 - -
0.7091 23095 0.5594 - -
0.7093 23100 0.6344 - -
0.7094 23105 0.3380 - -
0.7096 23110 0.4337 - -
0.7097 23115 0.5386 - -
0.7099 23120 0.4200 - -
0.7100 23125 0.3759 - -
0.7102 23130 0.3819 - -
0.7103 23135 0.4560 - -
0.7105 23140 0.8112 - -
0.7106 23145 0.2670 - -
0.7108 23150 0.3248 - -
0.7110 23155 0.4620 - -
0.7111 23160 0.4237 - -
0.7113 23165 0.5323 - -
0.7114 23170 0.5387 - -
0.7116 23175 0.7790 - -
0.7117 23180 0.2225 - -
0.7119 23185 0.3455 - -
0.7120 23190 0.6229 - -
0.7122 23195 0.3016 - -
0.7123 23200 0.6458 - -
0.7125 23205 0.6563 - -
0.7126 23210 0.3035 - -
0.7128 23215 0.3430 - -
0.7129 23220 0.8857 - -
0.7131 23225 0.6881 - -
0.7133 23230 0.6286 - -
0.7134 23235 0.4867 - -
0.7136 23240 0.4252 - -
0.7137 23245 0.5365 - -
0.7139 23250 0.6599 - -
0.7140 23255 0.4275 - -
0.7142 23260 0.4732 - -
0.7143 23265 0.3811 - -
0.7145 23270 0.5107 - -
0.7146 23275 0.7213 - -
0.7148 23280 0.6038 - -
0.7149 23285 0.3820 - -
0.7151 23290 0.4862 - -
0.7153 23295 0.2870 - -
0.7154 23300 0.5334 - -
0.7156 23305 0.6296 - -
0.7157 23310 0.4469 - -
0.7159 23315 0.6541 - -
0.7160 23320 0.1687 - -
0.7162 23325 0.6070 - -
0.7163 23330 0.3845 - -
0.7165 23335 0.5919 - -
0.7166 23340 0.5251 - -
0.7168 23345 0.3427 - -
0.7169 23350 0.5421 - -
0.7171 23355 0.4628 - -
0.7172 23360 0.5938 - -
0.7174 23365 0.2345 - -
0.7176 23370 0.6085 - -
0.7177 23375 0.6076 - -
0.7179 23380 0.4998 - -
0.7180 23385 0.5895 - -
0.7182 23390 0.3253 - -
0.7183 23395 0.5583 - -
0.7185 23400 0.2959 - -
0.7186 23405 0.2809 - -
0.7188 23410 0.3618 - -
0.7189 23415 0.3171 - -
0.7191 23420 0.2981 - -
0.7192 23425 0.7746 - -
0.7194 23430 0.4081 - -
0.7195 23435 0.4650 - -
0.7197 23440 0.5475 - -
0.7199 23445 0.2593 - -
0.7200 23450 0.7385 - -
0.7202 23455 0.4195 - -
0.7203 23460 0.5222 - -
0.7205 23465 0.6792 - -
0.7206 23470 0.3706 - -
0.7208 23475 0.3918 - -
0.7209 23480 0.4929 - -
0.7211 23485 0.4377 - -
0.7212 23490 0.5726 - -
0.7214 23495 0.7896 - -
0.7215 23500 0.4006 - -
0.7217 23505 0.6129 - -
0.7219 23510 0.5094 - -
0.7220 23515 0.2716 - -
0.7222 23520 0.4220 - -
0.7223 23525 0.6335 - -
0.7225 23530 0.4932 - -
0.7226 23535 0.4205 - -
0.7228 23540 0.5558 - -
0.7229 23545 0.5324 - -
0.7231 23550 0.3791 - -
0.7232 23555 0.5908 - -
0.7234 23560 0.3779 - -
0.7235 23565 0.7209 - -
0.7237 23570 0.5237 - -
0.7238 23575 0.6270 - -
0.7240 23580 0.4945 - -
0.7242 23585 0.3916 - -
0.7243 23590 0.4997 - -
0.7245 23595 0.6263 - -
0.7246 23600 0.4735 - -
0.7248 23605 0.3922 - -
0.7249 23610 0.6247 - -
0.7251 23615 0.5389 - -
0.7252 23620 0.5301 - -
0.7254 23625 0.6688 - -
0.7255 23630 0.5237 - -
0.7257 23635 0.5445 - -
0.7258 23640 0.7088 - -
0.7260 23645 0.2150 - -
0.7262 23650 0.4125 - -
0.7263 23655 0.5328 - -
0.7265 23660 0.7045 - -
0.7266 23665 0.4953 - -
0.7268 23670 0.5295 - -
0.7269 23675 0.4750 - -
0.7271 23680 0.5878 - -
0.7272 23685 0.5273 - -
0.7274 23690 0.5589 - -
0.7275 23695 0.5683 - -
0.7277 23700 0.6053 - -
0.7278 23705 0.3780 - -
0.7280 23710 0.4042 - -
0.7281 23715 0.5066 - -
0.7283 23720 0.4922 - -
0.7285 23725 0.4338 - -
0.7286 23730 1.5529 - -
0.7288 23735 0.4587 - -
0.7289 23740 0.5810 - -
0.7291 23745 0.3973 - -
0.7292 23750 0.7119 - -
0.7294 23755 0.6023 - -
0.7295 23760 0.3201 - -
0.7297 23765 0.8488 - -
0.7298 23770 0.3498 - -
0.7300 23775 0.5893 - -
0.7301 23780 0.5921 - -
0.7303 23785 0.6109 - -
0.7304 23790 0.6383 - -
0.7306 23795 0.5394 - -
0.7308 23800 0.6570 - -
0.7309 23805 0.7126 - -
0.7311 23810 0.6186 - -
0.7312 23815 0.6274 - -
0.7314 23820 0.5296 - -
0.7315 23825 0.4889 - -
0.7317 23830 0.5776 - -
0.7318 23835 0.4551 - -
0.7320 23840 0.5882 - -
0.7321 23845 0.2606 - -
0.7323 23850 0.3713 - -
0.7324 23855 0.5102 - -
0.7326 23860 0.5371 - -
0.7328 23865 0.4066 - -
0.7329 23870 0.5556 - -
0.7331 23875 0.5512 - -
0.7332 23880 0.9632 - -
0.7334 23885 0.4729 - -
0.7335 23890 0.3730 - -
0.7337 23895 0.6784 - -
0.7338 23900 0.3873 - -
0.7340 23905 0.4449 - -
0.7341 23910 0.3073 - -
0.7343 23915 0.5444 - -
0.7344 23920 0.5495 - -
0.7346 23925 0.5619 - -
0.7347 23930 0.2509 - -
0.7349 23935 0.5036 - -
0.7351 23940 0.4665 - -
0.7352 23945 0.3641 - -
0.7354 23950 0.6464 - -
0.7355 23955 0.5645 - -
0.7357 23960 0.5413 - -
0.7358 23965 0.6599 - -
0.7360 23970 0.5083 - -
0.7361 23975 0.4242 - -
0.7363 23980 0.5286 - -
0.7364 23985 0.5849 - -
0.7366 23990 0.5130 - -
0.7367 23995 0.5124 - -
0.7369 24000 0.2667 1.0541 0.8151
0.7371 24005 0.2992 - -
0.7372 24010 0.6439 - -
0.7374 24015 0.4014 - -
0.7375 24020 0.4721 - -
0.7377 24025 0.3568 - -
0.7378 24030 0.4567 - -
0.7380 24035 0.5045 - -
0.7381 24040 0.5972 - -
0.7383 24045 0.7729 - -
0.7384 24050 0.3667 - -
0.7386 24055 0.4107 - -
0.7387 24060 0.5262 - -
0.7389 24065 0.4337 - -
0.7390 24070 0.6272 - -
0.7392 24075 0.6105 - -
0.7394 24080 0.4904 - -
0.7395 24085 0.5595 - -
0.7397 24090 0.7612 - -
0.7398 24095 0.3567 - -
0.7400 24100 0.5504 - -
0.7401 24105 0.5201 - -
0.7403 24110 0.6520 - -
0.7404 24115 0.5443 - -
0.7406 24120 0.5947 - -
0.7407 24125 0.3984 - -
0.7409 24130 0.4459 - -
0.7410 24135 0.5163 - -
0.7412 24140 0.4722 - -
0.7413 24145 2.5430 - -
0.7415 24150 0.6411 - -
0.7417 24155 0.4794 - -
0.7418 24160 0.3225 - -
0.7420 24165 0.6864 - -
0.7421 24170 0.3428 - -
0.7423 24175 0.5694 - -
0.7424 24180 0.7055 - -
0.7426 24185 0.4093 - -
0.7427 24190 0.6427 - -
0.7429 24195 0.4286 - -
0.7430 24200 0.3279 - -
0.7432 24205 0.3497 - -
0.7433 24210 0.5136 - -
0.7435 24215 2.5844 - -
0.7437 24220 0.6316 - -
0.7438 24225 0.2992 - -
0.7440 24230 0.4466 - -
0.7441 24235 0.5022 - -
0.7443 24240 0.5327 - -
0.7444 24245 0.4024 - -
0.7446 24250 0.4036 - -
0.7447 24255 0.6656 - -
0.7449 24260 0.5060 - -
0.7450 24265 0.3464 - -
0.7452 24270 0.4888 - -
0.7453 24275 0.7668 - -
0.7455 24280 0.3746 - -
0.7456 24285 0.6408 - -
0.7458 24290 0.6098 - -
0.7460 24295 0.2707 - -
0.7461 24300 0.6829 - -
0.7463 24305 0.4517 - -
0.7464 24310 0.6463 - -
0.7466 24315 0.5425 - -
0.7467 24320 0.3651 - -
0.7469 24325 0.3362 - -
0.7470 24330 0.6019 - -
0.7472 24335 0.3666 - -
0.7473 24340 0.4648 - -
0.7475 24345 0.4748 - -
0.7476 24350 0.4152 - -
0.7478 24355 0.3919 - -
0.7480 24360 0.3125 - -
0.7481 24365 0.5401 - -
0.7483 24370 0.3660 - -
0.7484 24375 0.6306 - -
0.7486 24380 0.4055 - -
0.7487 24385 0.5707 - -
0.7489 24390 0.5166 - -
0.7490 24395 0.4342 - -
0.7492 24400 0.4901 - -
0.7493 24405 0.5148 - -
0.7495 24410 0.2771 - -
0.7496 24415 0.2227 - -
0.7498 24420 0.5423 - -
0.7499 24425 0.4819 - -
0.7501 24430 0.5206 - -
0.7503 24435 0.8488 - -
0.7504 24440 0.5908 - -
0.7506 24445 0.4409 - -
0.7507 24450 0.3907 - -
0.7509 24455 0.4888 - -
0.7510 24460 0.3540 - -
0.7512 24465 0.3677 - -
0.7513 24470 0.4186 - -
0.7515 24475 0.6303 - -
0.7516 24480 0.4808 - -
0.7518 24485 0.3342 - -
0.7519 24490 0.5512 - -
0.7521 24495 0.5404 - -
0.7522 24500 0.3786 - -
0.7524 24505 0.6191 - -
0.7526 24510 0.5404 - -
0.7527 24515 0.5374 - -
0.7529 24520 0.3847 - -
0.7530 24525 0.6435 - -
0.7532 24530 0.5872 - -
0.7533 24535 0.5791 - -
0.7535 24540 0.4284 - -
0.7536 24545 0.3017 - -
0.7538 24550 0.7193 - -
0.7539 24555 0.4162 - -
0.7541 24560 0.3930 - -
0.7542 24565 0.6735 - -
0.7544 24570 0.7156 - -
0.7546 24575 0.4981 - -
0.7547 24580 0.4530 - -
0.7549 24585 0.2713 - -
0.7550 24590 0.7562 - -
0.7552 24595 0.5909 - -
0.7553 24600 0.5818 - -
0.7555 24605 0.3656 - -
0.7556 24610 0.5059 - -
0.7558 24615 0.4123 - -
0.7559 24620 0.4222 - -
0.7561 24625 0.5380 - -
0.7562 24630 0.4726 - -
0.7564 24635 0.4521 - -
0.7565 24640 0.5046 - -
0.7567 24645 0.2472 - -
0.7569 24650 0.4624 - -
0.7570 24655 0.5459 - -
0.7572 24660 0.5931 - -
0.7573 24665 0.3188 - -
0.7575 24670 0.4530 - -
0.7576 24675 0.4404 - -
0.7578 24680 0.8051 - -
0.7579 24685 0.6346 - -
0.7581 24690 0.7150 - -
0.7582 24695 0.3695 - -
0.7584 24700 0.4849 - -
0.7585 24705 0.5776 - -
0.7587 24710 0.3445 - -
0.7589 24715 0.4869 - -
0.7590 24720 0.6777 - -
0.7592 24725 0.7165 - -
0.7593 24730 0.6138 - -
0.7595 24735 0.4615 - -
0.7596 24740 0.5243 - -
0.7598 24745 0.5485 - -
0.7599 24750 0.2518 - -
0.7601 24755 0.2873 - -
0.7602 24760 0.4156 - -
0.7604 24765 0.6514 - -
0.7605 24770 0.5834 - -
0.7607 24775 0.4518 - -
0.7608 24780 0.4325 - -
0.7610 24785 0.6862 - -
0.7612 24790 0.4710 - -
0.7613 24795 0.6170 - -
0.7615 24800 0.4594 - -
0.7616 24805 0.5556 - -
0.7618 24810 0.6548 - -
0.7619 24815 0.5646 - -
0.7621 24820 0.5199 - -
0.7622 24825 0.5800 - -
0.7624 24830 0.4795 - -
0.7625 24835 0.6564 - -
0.7627 24840 0.8280 - -
0.7628 24845 0.5891 - -
0.7630 24850 0.1973 - -
0.7631 24855 0.6654 - -
0.7633 24860 0.4567 - -
0.7635 24865 0.8167 - -
0.7636 24870 0.5780 - -
0.7638 24875 0.6193 - -
0.7639 24880 0.6772 - -
0.7641 24885 0.5078 - -
0.7642 24890 0.6911 - -
0.7644 24895 0.8423 - -
0.7645 24900 0.5185 - -
0.7647 24905 0.4603 - -
0.7648 24910 0.3884 - -
0.7650 24915 0.5839 - -
0.7651 24920 0.4560 - -
0.7653 24925 0.5231 - -
0.7655 24930 0.4240 - -
0.7656 24935 0.5390 - -
0.7658 24940 0.6572 - -
0.7659 24945 0.6117 - -
0.7661 24950 0.5232 - -
0.7662 24955 0.8713 - -
0.7664 24960 0.7169 - -
0.7665 24965 0.7723 - -
0.7667 24970 0.4798 - -
0.7668 24975 0.5880 - -
0.7670 24980 0.5884 - -
0.7671 24985 0.5892 - -
0.7673 24990 0.3962 - -
0.7674 24995 0.3519 - -
0.7676 25000 0.4506 - -
0.7678 25005 0.8351 - -
0.7679 25010 0.4116 - -
0.7681 25015 0.6984 - -
0.7682 25020 0.6331 - -
0.7684 25025 0.4179 - -
0.7685 25030 0.4472 - -
0.7687 25035 0.3280 - -
0.7688 25040 0.4817 - -
0.7690 25045 0.6982 - -
0.7691 25050 0.5922 - -
0.7693 25055 0.6572 - -
0.7694 25060 0.3611 - -
0.7696 25065 0.5408 - -
0.7698 25070 0.6147 - -
0.7699 25075 0.2442 - -
0.7701 25080 0.4126 - -
0.7702 25085 0.2584 - -
0.7704 25090 0.6719 - -
0.7705 25095 0.5484 - -
0.7707 25100 0.4003 - -
0.7708 25105 0.8816 - -
0.7710 25110 0.3862 - -
0.7711 25115 0.4031 - -
0.7713 25120 0.2421 - -
0.7714 25125 0.5541 - -
0.7716 25130 0.4274 - -
0.7717 25135 0.7024 - -
0.7719 25140 0.2987 - -
0.7721 25145 0.2487 - -
0.7722 25150 0.3657 - -
0.7724 25155 0.5276 - -
0.7725 25160 0.4598 - -
0.7727 25165 0.9044 - -
0.7728 25170 0.2212 - -
0.7730 25175 0.3481 - -
0.7731 25180 0.2812 - -
0.7733 25185 0.4551 - -
0.7734 25190 0.5798 - -
0.7736 25195 0.4374 - -
0.7737 25200 0.3958 - -
0.7739 25205 0.4565 - -
0.7740 25210 0.6262 - -
0.7742 25215 2.2866 - -
0.7744 25220 0.5994 - -
0.7745 25225 0.4364 - -
0.7747 25230 0.4954 - -
0.7748 25235 0.5130 - -
0.7750 25240 0.3056 - -
0.7751 25245 0.6087 - -
0.7753 25250 0.7126 - -
0.7754 25255 0.5142 - -
0.7756 25260 0.3785 - -
0.7757 25265 0.4423 - -
0.7759 25270 0.3765 - -
0.7760 25275 0.4830 - -
0.7762 25280 0.4243 - -
0.7764 25285 0.4493 - -
0.7765 25290 0.7454 - -
0.7767 25295 0.2774 - -
0.7768 25300 0.5430 - -
0.7770 25305 0.6325 - -
0.7771 25310 0.5294 - -
0.7773 25315 0.2449 - -
0.7774 25320 0.4455 - -
0.7776 25325 0.2795 - -
0.7777 25330 0.4137 - -
0.7779 25335 0.4133 - -
0.7780 25340 0.6540 - -
0.7782 25345 0.6334 - -
0.7783 25350 0.5523 - -
0.7785 25355 0.6062 - -
0.7787 25360 0.5382 - -
0.7788 25365 0.6037 - -
0.7790 25370 0.5933 - -
0.7791 25375 0.5995 - -
0.7793 25380 0.5173 - -
0.7794 25385 0.8901 - -
0.7796 25390 0.4486 - -
0.7797 25395 0.5039 - -
0.7799 25400 0.4679 - -
0.7800 25405 0.5353 - -
0.7802 25410 0.2157 - -
0.7803 25415 0.5632 - -
0.7805 25420 0.2712 - -
0.7807 25425 0.8295 - -
0.7808 25430 0.3208 - -
0.7810 25435 0.3342 - -
0.7811 25440 0.5687 - -
0.7813 25445 0.2256 - -
0.7814 25450 0.6510 - -
0.7816 25455 0.3629 - -
0.7817 25460 0.6290 - -
0.7819 25465 0.4925 - -
0.7820 25470 0.5442 - -
0.7822 25475 0.4577 - -
0.7823 25480 0.3274 - -
0.7825 25485 0.3989 - -
0.7826 25490 0.2623 - -
0.7828 25495 0.2765 - -
0.7830 25500 0.6359 - -
0.7831 25505 0.4480 - -
0.7833 25510 0.6258 - -
0.7834 25515 0.3931 - -
0.7836 25520 0.6155 - -
0.7837 25525 0.3733 - -
0.7839 25530 0.5356 - -
0.7840 25535 0.5067 - -
0.7842 25540 0.4959 - -
0.7843 25545 0.3180 - -
0.7845 25550 0.5880 - -
0.7846 25555 0.6257 - -
0.7848 25560 0.3008 - -
0.7849 25565 0.5682 - -
0.7851 25570 0.6849 - -
0.7853 25575 0.5533 - -
0.7854 25580 0.5405 - -
0.7856 25585 0.4175 - -
0.7857 25590 0.4055 - -
0.7859 25595 0.6501 - -
0.7860 25600 0.4969 - -
0.7862 25605 0.5184 - -
0.7863 25610 0.5023 - -
0.7865 25615 0.6825 - -
0.7866 25620 0.7348 - -
0.7868 25625 0.4198 - -
0.7869 25630 0.6302 - -
0.7871 25635 0.3197 - -
0.7873 25640 0.7285 - -
0.7874 25645 0.1994 - -
0.7876 25650 0.4702 - -
0.7877 25655 0.5183 - -
0.7879 25660 0.4953 - -
0.7880 25665 0.2865 - -
0.7882 25670 0.5779 - -
0.7883 25675 0.3652 - -
0.7885 25680 0.4281 - -
0.7886 25685 0.4204 - -
0.7888 25690 0.4557 - -
0.7889 25695 0.5111 - -
0.7891 25700 0.3180 - -
0.7892 25705 0.2876 - -
0.7894 25710 0.3502 - -
0.7896 25715 0.2851 - -
0.7897 25720 0.5214 - -
0.7899 25725 0.4357 - -
0.7900 25730 0.4833 - -
0.7902 25735 0.4320 - -
0.7903 25740 0.5906 - -
0.7905 25745 0.4081 - -
0.7906 25750 0.2900 - -
0.7908 25755 0.3355 - -
0.7909 25760 0.2679 - -
0.7911 25765 0.5686 - -
0.7912 25770 0.5086 - -
0.7914 25775 0.4295 - -
0.7916 25780 0.4855 - -
0.7917 25785 0.8066 - -
0.7919 25790 0.4152 - -
0.7920 25795 0.5275 - -
0.7922 25800 0.5681 - -
0.7923 25805 0.6280 - -
0.7925 25810 0.4883 - -
0.7926 25815 0.4414 - -
0.7928 25820 0.4742 - -
0.7929 25825 0.8317 - -
0.7931 25830 0.4520 - -
0.7932 25835 0.7814 - -
0.7934 25840 0.5566 - -
0.7935 25845 0.5864 - -
0.7937 25850 0.5036 - -
0.7939 25855 0.5485 - -
0.7940 25860 0.3909 - -
0.7942 25865 0.3550 - -
0.7943 25870 0.4810 - -
0.7945 25875 0.6145 - -
0.7946 25880 0.4955 - -
0.7948 25885 0.5109 - -
0.7949 25890 0.4359 - -
0.7951 25895 0.4805 - -
0.7952 25900 0.4512 - -
0.7954 25905 0.6802 - -
0.7955 25910 0.5185 - -
0.7957 25915 1.0534 - -
0.7958 25920 0.3313 - -
0.7960 25925 0.7148 - -
0.7962 25930 0.4105 - -
0.7963 25935 0.5510 - -
0.7965 25940 0.5346 - -
0.7966 25945 0.4035 - -
0.7968 25950 0.2220 - -
0.7969 25955 0.4148 - -
0.7971 25960 0.6762 - -
0.7972 25965 0.5806 - -
0.7974 25970 0.4977 - -
0.7975 25975 0.4861 - -
0.7977 25980 0.4525 - -
0.7978 25985 0.4118 - -
0.7980 25990 0.5961 - -
0.7982 25995 0.4001 - -
0.7983 26000 0.1943 1.0544 0.8148
0.7985 26005 0.6796 - -
0.7986 26010 0.5772 - -
0.7988 26015 0.3768 - -
0.7989 26020 0.6412 - -
0.7991 26025 0.5324 - -
0.7992 26030 0.4494 - -
0.7994 26035 0.4471 - -
0.7995 26040 0.4598 - -
0.7997 26045 0.5996 - -
0.7998 26050 0.5021 - -
0.8000 26055 0.5332 - -
0.8001 26060 0.5238 - -
0.8003 26065 0.4510 - -
0.8005 26070 0.6649 - -
0.8006 26075 0.6855 - -
0.8008 26080 0.4809 - -
0.8009 26085 0.7282 - -
0.8011 26090 0.4752 - -
0.8012 26095 0.4974 - -
0.8014 26100 0.6454 - -
0.8015 26105 0.6943 - -
0.8017 26110 0.4464 - -
0.8018 26115 0.5464 - -
0.8020 26120 0.7932 - -
0.8021 26125 0.7130 - -
0.8023 26130 0.6380 - -
0.8025 26135 0.5199 - -
0.8026 26140 0.8105 - -
0.8028 26145 0.4075 - -
0.8029 26150 0.4549 - -
0.8031 26155 0.4323 - -
0.8032 26160 0.1582 - -
0.8034 26165 0.5779 - -
0.8035 26170 0.6390 - -
0.8037 26175 0.5590 - -
0.8038 26180 0.4218 - -
0.8040 26185 0.6428 - -
0.8041 26190 0.3215 - -
0.8043 26195 0.4459 - -
0.8044 26200 0.5998 - -
0.8046 26205 0.3504 - -
0.8048 26210 0.4589 - -
0.8049 26215 0.2282 - -
0.8051 26220 0.7616 - -
0.8052 26225 0.4170 - -
0.8054 26230 0.4982 - -
0.8055 26235 0.7308 - -
0.8057 26240 0.4771 - -
0.8058 26245 0.6920 - -
0.8060 26250 0.3525 - -
0.8061 26255 0.4192 - -
0.8063 26260 0.2487 - -
0.8064 26265 0.5764 - -
0.8066 26270 0.1576 - -
0.8067 26275 0.5143 - -
0.8069 26280 0.6259 - -
0.8071 26285 0.4108 - -
0.8072 26290 0.5120 - -
0.8074 26295 0.8243 - -
0.8075 26300 0.6712 - -
0.8077 26305 0.4220 - -
0.8078 26310 2.4241 - -
0.8080 26315 0.2834 - -
0.8081 26320 0.5163 - -
0.8083 26325 0.4531 - -
0.8084 26330 0.3283 - -
0.8086 26335 0.8662 - -
0.8087 26340 0.6006 - -
0.8089 26345 0.4559 - -
0.8091 26350 0.5529 - -
0.8092 26355 0.4556 - -
0.8094 26360 0.3183 - -
0.8095 26365 0.4543 - -
0.8097 26370 0.5633 - -
0.8098 26375 0.3756 - -
0.8100 26380 0.4344 - -
0.8101 26385 0.4807 - -
0.8103 26390 0.6171 - -
0.8104 26395 0.4233 - -
0.8106 26400 0.3228 - -
0.8107 26405 0.3569 - -
0.8109 26410 0.6505 - -
0.8110 26415 0.5536 - -
0.8112 26420 0.4538 - -
0.8114 26425 0.5931 - -
0.8115 26430 0.2537 - -
0.8117 26435 0.2056 - -
0.8118 26440 0.2957 - -
0.8120 26445 0.2984 - -
0.8121 26450 0.5308 - -
0.8123 26455 0.4971 - -
0.8124 26460 0.4679 - -
0.8126 26465 0.6574 - -
0.8127 26470 0.2666 - -
0.8129 26475 0.4661 - -
0.8130 26480 0.4501 - -
0.8132 26485 0.6345 - -
0.8134 26490 0.4206 - -
0.8135 26495 0.4019 - -
0.8137 26500 0.7045 - -
0.8138 26505 0.6322 - -
0.8140 26510 0.5421 - -
0.8141 26515 0.4717 - -
0.8143 26520 0.5691 - -
0.8144 26525 0.5161 - -
0.8146 26530 0.3608 - -
0.8147 26535 0.4156 - -
0.8149 26540 0.3919 - -
0.8150 26545 0.5193 - -
0.8152 26550 0.3880 - -
0.8153 26555 0.5738 - -
0.8155 26560 0.4919 - -
0.8157 26565 0.3087 - -
0.8158 26570 0.7956 - -
0.8160 26575 0.5269 - -
0.8161 26580 0.3392 - -
0.8163 26585 0.6014 - -
0.8164 26590 0.5758 - -
0.8166 26595 0.3317 - -
0.8167 26600 0.6053 - -
0.8169 26605 0.2459 - -
0.8170 26610 0.5640 - -
0.8172 26615 0.5384 - -
0.8173 26620 0.5275 - -
0.8175 26625 0.3211 - -
0.8176 26630 0.2398 - -
0.8178 26635 0.5663 - -
0.8180 26640 0.5416 - -
0.8181 26645 0.4120 - -
0.8183 26650 0.5437 - -
0.8184 26655 0.5349 - -
0.8186 26660 0.5264 - -
0.8187 26665 0.4176 - -
0.8189 26670 0.6247 - -
0.8190 26675 0.5919 - -
0.8192 26680 0.5680 - -
0.8193 26685 0.3969 - -
0.8195 26690 0.5805 - -
0.8196 26695 0.6261 - -
0.8198 26700 0.3942 - -
0.8200 26705 0.3288 - -
0.8201 26710 0.4230 - -
0.8203 26715 0.6999 - -
0.8204 26720 0.5867 - -
0.8206 26725 0.5450 - -
0.8207 26730 0.5403 - -
0.8209 26735 0.2577 - -
0.8210 26740 0.4480 - -
0.8212 26745 0.5956 - -
0.8213 26750 0.6001 - -
0.8215 26755 0.5952 - -
0.8216 26760 0.3501 - -
0.8218 26765 0.5825 - -
0.8219 26770 0.4057 - -
0.8221 26775 0.6021 - -
0.8223 26780 0.4511 - -
0.8224 26785 0.4433 - -
0.8226 26790 0.2696 - -
0.8227 26795 0.4462 - -
0.8229 26800 0.5826 - -
0.8230 26805 0.6173 - -
0.8232 26810 0.4675 - -
0.8233 26815 0.2495 - -
0.8235 26820 0.2879 - -
0.8236 26825 0.5559 - -
0.8238 26830 0.4763 - -
0.8239 26835 0.2067 - -
0.8241 26840 0.6290 - -
0.8243 26845 0.5513 - -
0.8244 26850 0.7307 - -
0.8246 26855 0.8412 - -
0.8247 26860 0.6942 - -
0.8249 26865 0.3477 - -
0.8250 26870 0.5967 - -
0.8252 26875 0.5266 - -
0.8253 26880 2.1986 - -
0.8255 26885 0.3048 - -
0.8256 26890 0.5601 - -
0.8258 26895 0.5392 - -
0.8259 26900 0.5634 - -
0.8261 26905 0.3984 - -
0.8262 26910 0.4156 - -
0.8264 26915 0.2555 - -
0.8266 26920 0.5716 - -
0.8267 26925 0.6508 - -
0.8269 26930 0.4441 - -
0.8270 26935 0.6163 - -
0.8272 26940 0.6723 - -
0.8273 26945 0.5394 - -
0.8275 26950 0.5161 - -
0.8276 26955 0.5211 - -
0.8278 26960 0.7725 - -
0.8279 26965 0.6488 - -
0.8281 26970 0.5595 - -
0.8282 26975 0.5567 - -
0.8284 26980 0.6793 - -
0.8285 26985 0.4213 - -
0.8287 26990 0.5662 - -
0.8289 26995 0.7644 - -
0.8290 27000 0.3954 - -
0.8292 27005 0.5150 - -
0.8293 27010 0.4038 - -
0.8295 27015 0.5358 - -
0.8296 27020 0.6734 - -
0.8298 27025 0.6589 - -
0.8299 27030 0.1763 - -
0.8301 27035 0.4758 - -
0.8302 27040 0.4275 - -
0.8304 27045 0.5100 - -
0.8305 27050 0.9256 - -
0.8307 27055 0.5888 - -
0.8309 27060 0.5526 - -
0.8310 27065 0.6115 - -
0.8312 27070 0.4126 - -
0.8313 27075 0.5386 - -
0.8315 27080 0.6183 - -
0.8316 27085 0.5701 - -
0.8318 27090 0.3464 - -
0.8319 27095 0.3995 - -
0.8321 27100 0.4352 - -
0.8322 27105 0.7151 - -
0.8324 27110 0.3228 - -
0.8325 27115 0.7083 - -
0.8327 27120 0.4994 - -
0.8328 27125 0.5576 - -
0.8330 27130 0.6160 - -
0.8332 27135 0.6130 - -
0.8333 27140 0.4932 - -
0.8335 27145 0.2978 - -
0.8336 27150 0.4512 - -
0.8338 27155 0.5491 - -
0.8339 27160 0.3354 - -
0.8341 27165 0.6831 - -
0.8342 27170 0.4923 - -
0.8344 27175 0.3075 - -
0.8345 27180 0.4981 - -
0.8347 27185 0.3935 - -
0.8348 27190 0.5348 - -
0.8350 27195 0.4081 - -
0.8351 27200 0.4664 - -
0.8353 27205 0.5491 - -
0.8355 27210 0.5108 - -
0.8356 27215 0.4672 - -
0.8358 27220 0.2668 - -
0.8359 27225 0.4881 - -
0.8361 27230 0.5193 - -
0.8362 27235 0.5197 - -
0.8364 27240 0.6306 - -
0.8365 27245 0.3482 - -
0.8367 27250 0.6826 - -
0.8368 27255 0.4452 - -
0.8370 27260 0.4099 - -
0.8371 27265 0.7220 - -
0.8373 27270 0.4322 - -
0.8375 27275 0.5563 - -
0.8376 27280 0.5555 - -
0.8378 27285 0.3549 - -
0.8379 27290 0.3283 - -
0.8381 27295 0.8664 - -
0.8382 27300 0.3740 - -
0.8384 27305 0.5155 - -
0.8385 27310 0.4640 - -
0.8387 27315 0.7231 - -
0.8388 27320 0.5954 - -
0.8390 27325 0.3216 - -
0.8391 27330 0.4280 - -
0.8393 27335 0.3623 - -
0.8394 27340 0.3150 - -
0.8396 27345 0.4120 - -
0.8398 27350 0.8020 - -
0.8399 27355 0.3655 - -
0.8401 27360 0.5545 - -
0.8402 27365 0.6918 - -
0.8404 27370 0.4420 - -
0.8405 27375 0.3849 - -
0.8407 27380 0.4801 - -
0.8408 27385 0.4248 - -
0.8410 27390 0.5171 - -
0.8411 27395 0.2807 - -
0.8413 27400 0.4496 - -
0.8414 27405 0.4606 - -
0.8416 27410 0.7607 - -
0.8418 27415 0.6423 - -
0.8419 27420 0.5491 - -
0.8421 27425 0.4593 - -
0.8422 27430 0.7931 - -
0.8424 27435 0.4200 - -
0.8425 27440 0.2723 - -
0.8427 27445 0.4741 - -
0.8428 27450 0.2917 - -
0.8430 27455 0.3616 - -
0.8431 27460 0.3257 - -
0.8433 27465 0.6131 - -
0.8434 27470 0.5708 - -
0.8436 27475 0.6986 - -
0.8437 27480 0.5412 - -
0.8439 27485 0.4183 - -
0.8441 27490 0.5865 - -
0.8442 27495 0.7054 - -
0.8444 27500 0.5115 - -
0.8445 27505 0.3493 - -
0.8447 27510 0.4365 - -
0.8448 27515 0.4579 - -
0.8450 27520 0.4083 - -
0.8451 27525 0.5237 - -
0.8453 27530 0.5242 - -
0.8454 27535 0.5979 - -
0.8456 27540 0.5099 - -
0.8457 27545 0.6154 - -
0.8459 27550 0.6659 - -
0.8460 27555 0.4287 - -
0.8462 27560 0.3053 - -
0.8464 27565 0.6082 - -
0.8465 27570 0.4053 - -
0.8467 27575 0.4383 - -
0.8468 27580 0.7008 - -
0.8470 27585 0.5206 - -
0.8471 27590 0.3960 - -
0.8473 27595 1.2350 - -
0.8474 27600 0.5036 - -
0.8476 27605 0.3789 - -
0.8477 27610 0.7799 - -
0.8479 27615 0.5072 - -
0.8480 27620 0.5083 - -
0.8482 27625 0.2865 - -
0.8484 27630 0.5659 - -
0.8485 27635 0.6575 - -
0.8487 27640 0.5811 - -
0.8488 27645 0.4510 - -
0.8490 27650 0.4284 - -
0.8491 27655 0.6452 - -
0.8493 27660 0.6262 - -
0.8494 27665 0.7692 - -
0.8496 27670 0.4601 - -
0.8497 27675 0.4186 - -
0.8499 27680 0.6054 - -
0.8500 27685 0.4881 - -
0.8502 27690 0.6536 - -
0.8503 27695 0.6295 - -
0.8505 27700 0.5530 - -
0.8507 27705 0.2572 - -
0.8508 27710 0.3740 - -
0.8510 27715 0.7046 - -
0.8511 27720 0.5554 - -
0.8513 27725 0.4876 - -
0.8514 27730 0.6509 - -
0.8516 27735 0.4612 - -
0.8517 27740 0.2415 - -
0.8519 27745 0.6902 - -
0.8520 27750 0.3222 - -
0.8522 27755 0.7921 - -
0.8523 27760 0.5632 - -
0.8525 27765 0.3603 - -
0.8527 27770 0.3136 - -
0.8528 27775 0.4714 - -
0.8530 27780 0.3331 - -
0.8531 27785 0.4022 - -
0.8533 27790 0.6521 - -
0.8534 27795 0.6892 - -
0.8536 27800 0.4893 - -
0.8537 27805 0.3654 - -
0.8539 27810 0.7071 - -
0.8540 27815 0.6416 - -
0.8542 27820 0.6185 - -
0.8543 27825 0.5013 - -
0.8545 27830 0.7919 - -
0.8546 27835 0.3147 - -
0.8548 27840 0.6930 - -
0.8550 27845 0.6695 - -
0.8551 27850 0.5404 - -
0.8553 27855 0.3515 - -
0.8554 27860 0.5679 - -
0.8556 27865 0.4772 - -
0.8557 27870 0.3117 - -
0.8559 27875 0.6546 - -
0.8560 27880 0.4634 - -
0.8562 27885 0.7423 - -
0.8563 27890 0.4005 - -
0.8565 27895 0.6381 - -
0.8566 27900 0.3990 - -
0.8568 27905 0.3099 - -
0.8569 27910 0.5076 - -
0.8571 27915 0.5063 - -
0.8573 27920 0.3159 - -
0.8574 27925 0.4556 - -
0.8576 27930 0.6658 - -
0.8577 27935 0.5278 - -
0.8579 27940 0.5849 - -
0.8580 27945 0.3177 - -
0.8582 27950 0.7310 - -
0.8583 27955 0.7068 - -
0.8585 27960 0.6189 - -
0.8586 27965 0.3109 - -
0.8588 27970 0.5189 - -
0.8589 27975 0.5346 - -
0.8591 27980 0.5264 - -
0.8593 27985 0.3282 - -
0.8594 27990 0.3131 - -
0.8596 27995 0.4442 - -
0.8597 28000 0.2604 1.0522 0.8160
0.8599 28005 0.6423 - -
0.8600 28010 0.3984 - -
0.8602 28015 0.9108 - -
0.8603 28020 0.4569 - -
0.8605 28025 0.5169 - -
0.8606 28030 0.4628 - -
0.8608 28035 0.6619 - -
0.8609 28040 0.4529 - -
0.8611 28045 0.4711 - -
0.8612 28050 0.2703 - -
0.8614 28055 0.3390 - -
0.8616 28060 0.4054 - -
0.8617 28065 0.3300 - -
0.8619 28070 0.4711 - -
0.8620 28075 0.4181 - -
0.8622 28080 0.2628 - -
0.8623 28085 0.5022 - -
0.8625 28090 0.5173 - -
0.8626 28095 0.7887 - -
0.8628 28100 0.5319 - -
0.8629 28105 0.7142 - -
0.8631 28110 0.3686 - -
0.8632 28115 0.6260 - -
0.8634 28120 0.5681 - -
0.8636 28125 1.0210 - -
0.8637 28130 0.3248 - -
0.8639 28135 0.3975 - -
0.8640 28140 0.6137 - -
0.8642 28145 0.6769 - -
0.8643 28150 0.4367 - -
0.8645 28155 0.5166 - -
0.8646 28160 0.3112 - -
0.8648 28165 0.5830 - -
0.8649 28170 0.3977 - -
0.8651 28175 0.4725 - -
0.8652 28180 0.2056 - -
0.8654 28185 0.4448 - -
0.8655 28190 0.3295 - -
0.8657 28195 0.4291 - -
0.8659 28200 0.4980 - -
0.8660 28205 0.4629 - -
0.8662 28210 0.5115 - -
0.8663 28215 0.4151 - -
0.8665 28220 0.4946 - -
0.8666 28225 0.4702 - -
0.8668 28230 0.6467 - -
0.8669 28235 0.2315 - -
0.8671 28240 0.4231 - -
0.8672 28245 0.4997 - -
0.8674 28250 0.5167 - -
0.8675 28255 0.5511 - -
0.8677 28260 0.3026 - -
0.8678 28265 0.3406 - -
0.8680 28270 0.6130 - -
0.8682 28275 0.5392 - -
0.8683 28280 0.6425 - -
0.8685 28285 0.4745 - -
0.8686 28290 0.5444 - -
0.8688 28295 0.4335 - -
0.8689 28300 0.6368 - -
0.8691 28305 0.4467 - -
0.8692 28310 0.4082 - -
0.8694 28315 0.5600 - -
0.8695 28320 0.4774 - -
0.8697 28325 0.5752 - -
0.8698 28330 0.5861 - -
0.8700 28335 0.5747 - -
0.8702 28340 0.3468 - -
0.8703 28345 0.5780 - -
0.8705 28350 0.1046 - -
0.8706 28355 0.7079 - -
0.8708 28360 0.5399 - -
0.8709 28365 0.6172 - -
0.8711 28370 0.6353 - -
0.8712 28375 0.6645 - -
0.8714 28380 0.2064 - -
0.8715 28385 0.4480 - -
0.8717 28390 0.4099 - -
0.8718 28395 0.7235 - -
0.8720 28400 0.3652 - -
0.8721 28405 0.5337 - -
0.8723 28410 0.5865 - -
0.8725 28415 0.5058 - -
0.8726 28420 0.4640 - -
0.8728 28425 0.3172 - -
0.8729 28430 0.5954 - -
0.8731 28435 0.3810 - -
0.8732 28440 0.7023 - -
0.8734 28445 0.3783 - -
0.8735 28450 0.3125 - -
0.8737 28455 0.5573 - -
0.8738 28460 0.6039 - -
0.8740 28465 0.5547 - -
0.8741 28470 1.1958 - -
0.8743 28475 0.5080 - -
0.8745 28480 0.6234 - -
0.8746 28485 0.6637 - -
0.8748 28490 0.4586 - -
0.8749 28495 0.3935 - -
0.8751 28500 0.8924 - -
0.8752 28505 0.6983 - -
0.8754 28510 0.3726 - -
0.8755 28515 0.5222 - -
0.8757 28520 0.4588 - -
0.8758 28525 0.7097 - -
0.8760 28530 0.6620 - -
0.8761 28535 0.4387 - -
0.8763 28540 0.4111 - -
0.8764 28545 0.6071 - -
0.8766 28550 0.4405 - -
0.8768 28555 0.3487 - -
0.8769 28560 0.4483 - -
0.8771 28565 0.5484 - -
0.8772 28570 0.5350 - -
0.8774 28575 0.7742 - -
0.8775 28580 0.4619 - -
0.8777 28585 0.4346 - -
0.8778 28590 0.6929 - -
0.8780 28595 0.5174 - -
0.8781 28600 0.3300 - -
0.8783 28605 0.5370 - -
0.8784 28610 0.3486 - -
0.8786 28615 0.4411 - -
0.8787 28620 0.4285 - -
0.8789 28625 0.5088 - -
0.8791 28630 0.4463 - -
0.8792 28635 0.4596 - -
0.8794 28640 0.3619 - -
0.8795 28645 0.4627 - -
0.8797 28650 0.2597 - -
0.8798 28655 0.4910 - -
0.8800 28660 0.5680 - -
0.8801 28665 0.5350 - -
0.8803 28670 0.5215 - -
0.8804 28675 0.4947 - -
0.8806 28680 0.4828 - -
0.8807 28685 0.6271 - -
0.8809 28690 0.5808 - -
0.8811 28695 0.3705 - -
0.8812 28700 0.4485 - -
0.8814 28705 0.4905 - -
0.8815 28710 1.0356 - -
0.8817 28715 0.6672 - -
0.8818 28720 0.5231 - -
0.8820 28725 0.5715 - -
0.8821 28730 0.5512 - -
0.8823 28735 0.3064 - -
0.8824 28740 0.3713 - -
0.8826 28745 0.5846 - -
0.8827 28750 0.6349 - -
0.8829 28755 0.4766 - -
0.8830 28760 2.2296 - -
0.8832 28765 0.4952 - -
0.8834 28770 0.6231 - -
0.8835 28775 0.7475 - -
0.8837 28780 0.6818 - -
0.8838 28785 0.4053 - -
0.8840 28790 0.2249 - -
0.8841 28795 0.7285 - -
0.8843 28800 0.5298 - -
0.8844 28805 0.6737 - -
0.8846 28810 0.7621 - -
0.8847 28815 0.3855 - -
0.8849 28820 0.4582 - -
0.8850 28825 0.4025 - -
0.8852 28830 0.5421 - -
0.8854 28835 0.6375 - -
0.8855 28840 0.7332 - -
0.8857 28845 0.5695 - -
0.8858 28850 0.5521 - -
0.8860 28855 0.3508 - -
0.8861 28860 0.6278 - -
0.8863 28865 0.6690 - -
0.8864 28870 0.6508 - -
0.8866 28875 0.5679 - -
0.8867 28880 0.5246 - -
0.8869 28885 0.5963 - -
0.8870 28890 0.3732 - -
0.8872 28895 0.5958 - -
0.8873 28900 0.2851 - -
0.8875 28905 0.3166 - -
0.8877 28910 0.5336 - -
0.8878 28915 0.4287 - -
0.8880 28920 0.3046 - -
0.8881 28925 0.3391 - -
0.8883 28930 0.3350 - -
0.8884 28935 0.3541 - -
0.8886 28940 0.5970 - -
0.8887 28945 0.5824 - -
0.8889 28950 0.3514 - -
0.8890 28955 0.3435 - -
0.8892 28960 0.5720 - -
0.8893 28965 0.3911 - -
0.8895 28970 0.3700 - -
0.8896 28975 0.5704 - -
0.8898 28980 0.4967 - -
0.8900 28985 0.5482 - -
0.8901 28990 0.7320 - -
0.8903 28995 0.6792 - -
0.8904 29000 0.5001 - -
0.8906 29005 0.2599 - -
0.8907 29010 0.4703 - -
0.8909 29015 0.4761 - -
0.8910 29020 0.5997 - -
0.8912 29025 0.5788 - -
0.8913 29030 0.2494 - -
0.8915 29035 0.4919 - -
0.8916 29040 0.4171 - -
0.8918 29045 0.5459 - -
0.8920 29050 0.3761 - -
0.8921 29055 0.5537 - -
0.8923 29060 0.4179 - -
0.8924 29065 0.5692 - -
0.8926 29070 0.6370 - -
0.8927 29075 0.6505 - -
0.8929 29080 0.4367 - -
0.8930 29085 0.5505 - -
0.8932 29090 0.1750 - -
0.8933 29095 0.5435 - -
0.8935 29100 0.4055 - -
0.8936 29105 0.3710 - -
0.8938 29110 0.6216 - -
0.8939 29115 0.7621 - -
0.8941 29120 0.3585 - -
0.8943 29125 0.5992 - -
0.8944 29130 0.6705 - -
0.8946 29135 0.3911 - -
0.8947 29140 0.2869 - -
0.8949 29145 0.4350 - -
0.8950 29150 0.5159 - -
0.8952 29155 0.4464 - -
0.8953 29160 0.4241 - -
0.8955 29165 0.3851 - -
0.8956 29170 0.2224 - -
0.8958 29175 0.7572 - -
0.8959 29180 0.5987 - -
0.8961 29185 0.4273 - -
0.8963 29190 0.6302 - -
0.8964 29195 0.5453 - -
0.8966 29200 0.3077 - -
0.8967 29205 0.5029 - -
0.8969 29210 0.4307 - -
0.8970 29215 0.4384 - -
0.8972 29220 0.3570 - -
0.8973 29225 0.3248 - -
0.8975 29230 0.5653 - -
0.8976 29235 0.4696 - -
0.8978 29240 0.7044 - -
0.8979 29245 0.6223 - -
0.8981 29250 0.2775 - -
0.8982 29255 0.4533 - -
0.8984 29260 0.5268 - -
0.8986 29265 0.2588 - -
0.8987 29270 0.4900 - -
0.8989 29275 0.5877 - -
0.8990 29280 0.7147 - -
0.8992 29285 0.6313 - -
0.8993 29290 0.5451 - -
0.8995 29295 0.5127 - -
0.8996 29300 0.3648 - -
0.8998 29305 0.4927 - -
0.8999 29310 0.3540 - -
0.9001 29315 0.5218 - -
0.9002 29320 0.6318 - -
0.9004 29325 0.4956 - -
0.9005 29330 0.3993 - -
0.9007 29335 0.5595 - -
0.9009 29340 0.5797 - -
0.9010 29345 0.4242 - -
0.9012 29350 0.4077 - -
0.9013 29355 0.5215 - -
0.9015 29360 0.5616 - -
0.9016 29365 0.3997 - -
0.9018 29370 0.4217 - -
0.9019 29375 0.6198 - -
0.9021 29380 0.5971 - -
0.9022 29385 0.8982 - -
0.9024 29390 0.3746 - -
0.9025 29395 0.4544 - -
0.9027 29400 0.6049 - -
0.9029 29405 0.6423 - -
0.9030 29410 0.5250 - -
0.9032 29415 0.2893 - -
0.9033 29420 0.6165 - -
0.9035 29425 0.2784 - -
0.9036 29430 0.6872 - -
0.9038 29435 0.4298 - -
0.9039 29440 0.7433 - -
0.9041 29445 0.3130 - -
0.9042 29450 0.5091 - -
0.9044 29455 0.5403 - -
0.9045 29460 0.4249 - -
0.9047 29465 2.3719 - -
0.9048 29470 0.6402 - -
0.9050 29475 0.4414 - -
0.9052 29480 0.7186 - -
0.9053 29485 0.5339 - -
0.9055 29490 0.5905 - -
0.9056 29495 0.2626 - -
0.9058 29500 0.4788 - -
0.9059 29505 0.7492 - -
0.9061 29510 0.7146 - -
0.9062 29515 0.4361 - -
0.9064 29520 0.4748 - -
0.9065 29525 0.7660 - -
0.9067 29530 0.4299 - -
0.9068 29535 0.7339 - -
0.9070 29540 0.4626 - -
0.9072 29545 0.7632 - -
0.9073 29550 0.5729 - -
0.9075 29555 0.6470 - -
0.9076 29560 2.2651 - -
0.9078 29565 0.2965 - -
0.9079 29570 0.5173 - -
0.9081 29575 0.2478 - -
0.9082 29580 0.4270 - -
0.9084 29585 0.5780 - -
0.9085 29590 0.6480 - -
0.9087 29595 0.3899 - -
0.9088 29600 0.5097 - -
0.9090 29605 0.3836 - -
0.9091 29610 0.5384 - -
0.9093 29615 0.7133 - -
0.9095 29620 0.6851 - -
0.9096 29625 0.7171 - -
0.9098 29630 0.3592 - -
0.9099 29635 0.3811 - -
0.9101 29640 0.7653 - -
0.9102 29645 0.2119 - -
0.9104 29650 0.7867 - -
0.9105 29655 0.5237 - -
0.9107 29660 0.4961 - -
0.9108 29665 0.2816 - -
0.9110 29670 0.3915 - -
0.9111 29675 0.5687 - -
0.9113 29680 0.4943 - -
0.9114 29685 0.4009 - -
0.9116 29690 0.7377 - -
0.9118 29695 0.4462 - -
0.9119 29700 0.4853 - -
0.9121 29705 2.2353 - -
0.9122 29710 0.3048 - -
0.9124 29715 0.4854 - -
0.9125 29720 0.6761 - -
0.9127 29725 0.5371 - -
0.9128 29730 0.6106 - -
0.9130 29735 0.4584 - -
0.9131 29740 0.3328 - -
0.9133 29745 0.5092 - -
0.9134 29750 0.5128 - -
0.9136 29755 0.7238 - -
0.9138 29760 0.3624 - -
0.9139 29765 0.4514 - -
0.9141 29770 0.5706 - -
0.9142 29775 0.3549 - -
0.9144 29780 0.5879 - -
0.9145 29785 0.5249 - -
0.9147 29790 0.6569 - -
0.9148 29795 0.3983 - -
0.9150 29800 0.2814 - -
0.9151 29805 0.3026 - -
0.9153 29810 0.4199 - -
0.9154 29815 0.8173 - -
0.9156 29820 0.5373 - -
0.9157 29825 0.6998 - -
0.9159 29830 0.5084 - -
0.9161 29835 0.5508 - -
0.9162 29840 0.3157 - -
0.9164 29845 0.3292 - -
0.9165 29850 0.4339 - -
0.9167 29855 0.2980 - -
0.9168 29860 0.5960 - -
0.9170 29865 0.5358 - -
0.9171 29870 0.5706 - -
0.9173 29875 0.4808 - -
0.9174 29880 0.7154 - -
0.9176 29885 0.5108 - -
0.9177 29890 0.5381 - -
0.9179 29895 0.5950 - -
0.9181 29900 0.4693 - -
0.9182 29905 0.4678 - -
0.9184 29910 0.4917 - -
0.9185 29915 0.4152 - -
0.9187 29920 0.5222 - -
0.9188 29925 0.3620 - -
0.9190 29930 0.4389 - -
0.9191 29935 0.5766 - -
0.9193 29940 0.4812 - -
0.9194 29945 0.7105 - -
0.9196 29950 0.6923 - -
0.9197 29955 0.4587 - -
0.9199 29960 0.3895 - -
0.9200 29965 0.6396 - -
0.9202 29970 0.7031 - -
0.9204 29975 0.4808 - -
0.9205 29980 0.5631 - -
0.9207 29985 0.4472 - -
0.9208 29990 0.4417 - -
0.9210 29995 0.3735 - -
0.9211 30000 0.5074 1.0515 0.8153
0.9213 30005 0.2811 - -
0.9214 30010 0.4615 - -
0.9216 30015 0.5009 - -
0.9217 30020 0.5446 - -
0.9219 30025 0.5109 - -
0.9220 30030 0.4466 - -
0.9222 30035 0.5900 - -
0.9223 30040 0.6723 - -
0.9225 30045 0.7980 - -
0.9227 30050 0.2734 - -
0.9228 30055 0.4835 - -
0.9230 30060 0.4306 - -
0.9231 30065 0.5068 - -
0.9233 30070 0.2024 - -
0.9234 30075 0.4803 - -
0.9236 30080 0.5095 - -
0.9237 30085 0.6966 - -
0.9239 30090 0.5931 - -
0.9240 30095 0.4528 - -
0.9242 30100 0.4453 - -
0.9243 30105 0.3554 - -
0.9245 30110 0.5831 - -
0.9247 30115 0.5296 - -
0.9248 30120 0.6326 - -
0.9250 30125 0.6178 - -
0.9251 30130 0.2581 - -
0.9253 30135 0.5641 - -
0.9254 30140 0.4343 - -
0.9256 30145 0.5803 - -
0.9257 30150 0.3393 - -
0.9259 30155 0.3640 - -
0.9260 30160 0.4989 - -
0.9262 30165 0.7377 - -
0.9263 30170 0.5213 - -
0.9265 30175 0.6645 - -
0.9266 30180 0.8061 - -
0.9268 30185 0.3343 - -
0.9270 30190 0.2669 - -
0.9271 30195 0.3301 - -
0.9273 30200 0.4088 - -
0.9274 30205 0.6016 - -
0.9276 30210 0.4091 - -
0.9277 30215 0.5536 - -
0.9279 30220 0.4485 - -
0.9280 30225 0.5259 - -
0.9282 30230 0.4923 - -
0.9283 30235 0.4594 - -
0.9285 30240 0.4167 - -
0.9286 30245 0.2921 - -
0.9288 30250 0.4063 - -
0.9290 30255 0.5202 - -
0.9291 30260 0.5112 - -
0.9293 30265 0.2533 - -
0.9294 30270 0.3768 - -
0.9296 30275 0.5597 - -
0.9297 30280 0.6100 - -
0.9299 30285 0.7120 - -
0.9300 30290 0.5503 - -
0.9302 30295 0.3728 - -
0.9303 30300 0.3682 - -
0.9305 30305 0.5200 - -
0.9306 30310 0.4078 - -
0.9308 30315 0.6855 - -
0.9309 30320 0.5905 - -
0.9311 30325 0.2914 - -
0.9313 30330 0.4229 - -
0.9314 30335 0.4853 - -
0.9316 30340 0.6935 - -
0.9317 30345 0.3988 - -
0.9319 30350 0.4721 - -
0.9320 30355 0.6422 - -
0.9322 30360 0.3728 - -
0.9323 30365 1.8641 - -
0.9325 30370 0.6319 - -
0.9326 30375 0.7835 - -
0.9328 30380 0.4646 - -
0.9329 30385 0.4180 - -
0.9331 30390 0.3481 - -
0.9332 30395 0.5058 - -
0.9334 30400 0.6706 - -
0.9336 30405 0.4209 - -
0.9337 30410 0.3835 - -
0.9339 30415 0.5796 - -
0.9340 30420 0.6539 - -
0.9342 30425 0.3229 - -
0.9343 30430 0.6754 - -
0.9345 30435 0.4177 - -
0.9346 30440 0.5382 - -
0.9348 30445 0.5346 - -
0.9349 30450 0.5463 - -
0.9351 30455 0.4748 - -
0.9352 30460 0.4172 - -
0.9354 30465 0.5219 - -
0.9356 30470 0.2486 - -
0.9357 30475 0.5166 - -
0.9359 30480 0.4734 - -
0.9360 30485 0.6322 - -
0.9362 30490 1.0306 - -
0.9363 30495 0.4644 - -
0.9365 30500 0.2865 - -
0.9366 30505 0.5802 - -
0.9368 30510 1.0520 - -
0.9369 30515 0.5665 - -
0.9371 30520 0.4805 - -
0.9372 30525 0.2842 - -
0.9374 30530 0.5688 - -
0.9375 30535 0.5123 - -
0.9377 30540 0.4290 - -
0.9379 30545 0.6674 - -
0.9380 30550 0.5079 - -
0.9382 30555 0.3728 - -
0.9383 30560 0.2342 - -
0.9385 30565 0.3575 - -
0.9386 30570 0.4320 - -
0.9388 30575 0.4397 - -
0.9389 30580 0.5430 - -
0.9391 30585 0.3794 - -
0.9392 30590 0.4796 - -
0.9394 30595 0.2643 - -
0.9395 30600 0.6242 - -
0.9397 30605 0.6911 - -
0.9399 30610 0.5908 - -
0.9400 30615 0.4435 - -
0.9402 30620 0.4442 - -
0.9403 30625 0.3541 - -
0.9405 30630 0.4237 - -
0.9406 30635 0.4283 - -
0.9408 30640 0.3027 - -
0.9409 30645 0.4161 - -
0.9411 30650 0.2458 - -
0.9412 30655 0.5212 - -
0.9414 30660 0.5807 - -
0.9415 30665 0.6988 - -
0.9417 30670 0.6184 - -
0.9418 30675 0.4747 - -
0.9420 30680 0.5700 - -
0.9422 30685 0.4953 - -
0.9423 30690 0.4412 - -
0.9425 30695 0.3630 - -
0.9426 30700 0.3950 - -
0.9428 30705 0.7079 - -
0.9429 30710 0.4791 - -
0.9431 30715 0.4846 - -
0.9432 30720 0.5433 - -
0.9434 30725 0.5134 - -
0.9435 30730 0.6181 - -
0.9437 30735 0.6619 - -
0.9438 30740 0.3953 - -
0.9440 30745 0.3411 - -
0.9441 30750 0.4874 - -
0.9443 30755 0.5587 - -
0.9445 30760 0.5444 - -
0.9446 30765 0.3140 - -
0.9448 30770 0.3728 - -
0.9449 30775 0.4254 - -
0.9451 30780 0.4504 - -
0.9452 30785 0.3677 - -
0.9454 30790 0.7480 - -
0.9455 30795 0.4664 - -
0.9457 30800 0.5322 - -
0.9458 30805 0.5369 - -
0.9460 30810 0.4080 - -
0.9461 30815 0.2289 - -
0.9463 30820 0.4599 - -
0.9465 30825 0.6291 - -
0.9466 30830 0.5700 - -
0.9468 30835 0.5675 - -
0.9469 30840 0.3838 - -
0.9471 30845 0.4718 - -
0.9472 30850 0.3370 - -
0.9474 30855 0.2740 - -
0.9475 30860 0.4386 - -
0.9477 30865 0.2876 - -
0.9478 30870 0.6458 - -
0.9480 30875 0.6141 - -
0.9481 30880 0.6444 - -
0.9483 30885 0.2904 - -
0.9484 30890 2.3485 - -
0.9486 30895 0.4383 - -
0.9488 30900 0.6317 - -
0.9489 30905 0.5620 - -
0.9491 30910 0.5985 - -
0.9492 30915 0.5780 - -
0.9494 30920 0.4227 - -
0.9495 30925 0.4852 - -
0.9497 30930 0.6658 - -
0.9498 30935 0.7779 - -
0.9500 30940 0.4383 - -
0.9501 30945 0.5785 - -
0.9503 30950 0.3695 - -
0.9504 30955 0.4906 - -
0.9506 30960 0.2753 - -
0.9508 30965 0.3363 - -
0.9509 30970 0.2527 - -
0.9511 30975 0.4442 - -
0.9512 30980 0.5634 - -
0.9514 30985 0.6510 - -
0.9515 30990 0.4944 - -
0.9517 30995 0.7075 - -
0.9518 31000 0.5258 - -
0.9520 31005 0.6852 - -
0.9521 31010 0.3612 - -
0.9523 31015 0.3823 - -
0.9524 31020 0.6555 - -
0.9526 31025 0.3443 - -
0.9527 31030 0.4273 - -
0.9529 31035 0.5473 - -
0.9531 31040 0.6201 - -
0.9532 31045 0.5546 - -
0.9534 31050 0.4958 - -
0.9535 31055 0.4532 - -
0.9537 31060 0.5675 - -
0.9538 31065 0.4325 - -
0.9540 31070 0.6685 - -
0.9541 31075 0.5475 - -
0.9543 31080 0.7098 - -
0.9544 31085 0.5967 - -
0.9546 31090 0.5671 - -
0.9547 31095 0.5875 - -
0.9549 31100 0.2800 - -
0.9550 31105 0.3741 - -
0.9552 31110 0.4830 - -
0.9554 31115 0.2317 - -
0.9555 31120 0.6962 - -
0.9557 31125 0.6425 - -
0.9558 31130 0.5515 - -
0.9560 31135 0.7992 - -
0.9561 31140 0.7883 - -
0.9563 31145 1.1670 - -
0.9564 31150 0.4163 - -
0.9566 31155 0.5067 - -
0.9567 31160 0.1957 - -
0.9569 31165 0.2615 - -
0.9570 31170 0.7710 - -
0.9572 31175 0.6220 - -
0.9574 31180 0.7291 - -
0.9575 31185 0.3328 - -
0.9577 31190 0.4800 - -
0.9578 31195 0.3818 - -
0.9580 31200 0.2486 - -
0.9581 31205 0.6685 - -
0.9583 31210 0.4988 - -
0.9584 31215 0.1754 - -
0.9586 31220 0.5659 - -
0.9587 31225 0.5056 - -
0.9589 31230 0.3875 - -
0.9590 31235 0.7411 - -
0.9592 31240 0.4449 - -
0.9593 31245 0.6137 - -
0.9595 31250 0.4112 - -
0.9597 31255 0.3970 - -
0.9598 31260 0.4337 - -
0.9600 31265 0.6753 - -
0.9601 31270 0.5482 - -
0.9603 31275 0.2535 - -
0.9604 31280 0.4590 - -
0.9606 31285 0.6873 - -
0.9607 31290 0.5260 - -
0.9609 31295 0.4008 - -
0.9610 31300 0.2585 - -
0.9612 31305 0.7570 - -
0.9613 31310 0.7621 - -
0.9615 31315 0.3482 - -
0.9617 31320 0.5867 - -
0.9618 31325 0.5536 - -
0.9620 31330 0.2865 - -
0.9621 31335 0.3887 - -
0.9623 31340 0.6161 - -
0.9624 31345 0.3481 - -
0.9626 31350 0.4250 - -
0.9627 31355 0.4355 - -
0.9629 31360 0.2542 - -
0.9630 31365 0.5053 - -
0.9632 31370 0.4063 - -
0.9633 31375 0.4677 - -
0.9635 31380 0.5234 - -
0.9636 31385 0.5747 - -
0.9638 31390 0.4142 - -
0.9640 31395 0.6948 - -
0.9641 31400 0.5734 - -
0.9643 31405 0.7420 - -
0.9644 31410 0.6560 - -
0.9646 31415 0.6060 - -
0.9647 31420 0.6182 - -
0.9649 31425 0.4763 - -
0.9650 31430 0.4404 - -
0.9652 31435 0.4654 - -
0.9653 31440 0.4101 - -
0.9655 31445 0.4241 - -
0.9656 31450 0.4105 - -
0.9658 31455 0.4154 - -
0.9659 31460 0.4558 - -
0.9661 31465 0.7383 - -
0.9663 31470 1.0376 - -
0.9664 31475 0.6467 - -
0.9666 31480 0.2483 - -
0.9667 31485 0.6023 - -
0.9669 31490 0.5229 - -
0.9670 31495 0.8693 - -
0.9672 31500 0.5634 - -
0.9673 31505 0.5395 - -
0.9675 31510 0.4989 - -
0.9676 31515 0.4407 - -
0.9678 31520 0.8605 - -
0.9679 31525 0.6571 - -
0.9681 31530 0.5333 - -
0.9683 31535 0.7627 - -
0.9684 31540 0.5349 - -
0.9686 31545 0.3587 - -
0.9687 31550 0.6454 - -
0.9689 31555 0.3439 - -
0.9690 31560 0.3633 - -
0.9692 31565 0.5198 - -
0.9693 31570 2.3360 - -
0.9695 31575 0.3013 - -
0.9696 31580 0.6598 - -
0.9698 31585 0.6196 - -
0.9699 31590 0.5642 - -
0.9701 31595 0.4745 - -
0.9702 31600 0.7309 - -
0.9704 31605 0.5473 - -
0.9706 31610 0.4167 - -
0.9707 31615 0.2757 - -
0.9709 31620 0.4336 - -
0.9710 31625 0.3136 - -
0.9712 31630 0.6122 - -
0.9713 31635 0.4200 - -
0.9715 31640 0.7317 - -
0.9716 31645 0.4715 - -
0.9718 31650 0.5002 - -
0.9719 31655 0.3220 - -
0.9721 31660 0.2273 - -
0.9722 31665 0.5905 - -
0.9724 31670 0.3384 - -
0.9726 31675 0.5387 - -
0.9727 31680 0.8116 - -
0.9729 31685 0.7274 - -
0.9730 31690 0.5006 - -
0.9732 31695 0.5397 - -
0.9733 31700 0.3628 - -
0.9735 31705 0.6188 - -
0.9736 31710 0.3677 - -
0.9738 31715 0.6648 - -
0.9739 31720 0.5085 - -
0.9741 31725 0.3940 - -
0.9742 31730 0.4885 - -
0.9744 31735 0.5371 - -
0.9745 31740 0.5910 - -
0.9747 31745 0.6212 - -
0.9749 31750 0.7972 - -
0.9750 31755 0.5258 - -
0.9752 31760 0.4867 - -
0.9753 31765 0.6479 - -
0.9755 31770 0.6874 - -
0.9756 31775 0.6631 - -
0.9758 31780 0.7988 - -
0.9759 31785 0.5587 - -
0.9761 31790 0.8214 - -
0.9762 31795 0.3521 - -
0.9764 31800 0.6774 - -
0.9765 31805 0.5529 - -
0.9767 31810 0.7012 - -
0.9768 31815 0.6723 - -
0.9770 31820 0.6150 - -
0.9772 31825 0.6437 - -
0.9773 31830 0.6170 - -
0.9775 31835 0.2836 - -
0.9776 31840 0.7359 - -
0.9778 31845 0.3128 - -
0.9779 31850 0.3217 - -
0.9781 31855 0.6228 - -
0.9782 31860 0.5596 - -
0.9784 31865 0.3521 - -
0.9785 31870 0.3492 - -
0.9787 31875 0.7868 - -
0.9788 31880 0.5752 - -
0.9790 31885 0.3995 - -
0.9792 31890 0.3519 - -
0.9793 31895 0.6310 - -
0.9795 31900 0.4306 - -
0.9796 31905 0.7326 - -
0.9798 31910 0.5212 - -
0.9799 31915 0.3312 - -
0.9801 31920 0.5088 - -
0.9802 31925 0.2428 - -
0.9804 31930 0.3906 - -
0.9805 31935 0.7209 - -
0.9807 31940 0.8692 - -
0.9808 31945 2.0189 - -
0.9810 31950 0.5219 - -
0.9811 31955 0.5464 - -
0.9813 31960 0.6025 - -
0.9815 31965 0.5138 - -
0.9816 31970 0.4147 - -
0.9818 31975 0.5300 - -
0.9819 31980 0.5203 - -
0.9821 31985 0.7872 - -
0.9822 31990 0.3878 - -
0.9824 31995 0.4995 - -
0.9825 32000 0.4632 1.0509 0.8148
0.9827 32005 0.5923 - -
0.9828 32010 0.7128 - -
0.9830 32015 0.4697 - -
0.9831 32020 0.5378 - -
0.9833 32025 0.6616 - -
0.9835 32030 0.5801 - -
0.9836 32035 0.3366 - -
0.9838 32040 0.7125 - -
0.9839 32045 0.8347 - -
0.9841 32050 0.4982 - -
0.9842 32055 0.5651 - -
0.9844 32060 0.4112 - -
0.9845 32065 0.3152 - -
0.9847 32070 0.8431 - -
0.9848 32075 0.4444 - -
0.9850 32080 0.5636 - -
0.9851 32085 0.4619 - -
0.9853 32090 0.5359 - -
0.9854 32095 0.4322 - -
0.9856 32100 0.3515 - -
0.9858 32105 1.0957 - -
0.9859 32110 0.4159 - -
0.9861 32115 0.6413 - -
0.9862 32120 0.4280 - -
0.9864 32125 0.3265 - -
0.9865 32130 0.4197 - -
0.9867 32135 0.5645 - -
0.9868 32140 0.3897 - -
0.9870 32145 0.4055 - -
0.9871 32150 0.6102 - -
0.9873 32155 0.5380 - -
0.9874 32160 0.3448 - -
0.9876 32165 0.2907 - -
0.9877 32170 0.6043 - -
0.9879 32175 0.3232 - -
0.9881 32180 0.7737 - -
0.9882 32185 0.3224 - -
0.9884 32190 0.3072 - -
0.9885 32195 0.6126 - -
0.9887 32200 0.4485 - -
0.9888 32205 0.2812 - -
0.9890 32210 0.4147 - -
0.9891 32215 0.5178 - -
0.9893 32220 0.5869 - -
0.9894 32225 0.3707 - -
0.9896 32230 0.5098 - -
0.9897 32235 0.4873 - -
0.9899 32240 0.6850 - -
0.9901 32245 0.7219 - -
0.9902 32250 0.2861 - -
0.9904 32255 0.4407 - -
0.9905 32260 0.4148 - -
0.9907 32265 0.6100 - -
0.9908 32270 0.5016 - -
0.9910 32275 0.3581 - -
0.9911 32280 0.7246 - -
0.9913 32285 0.4945 - -
0.9914 32290 0.5213 - -
0.9916 32295 0.5255 - -
0.9917 32300 0.5187 - -
0.9919 32305 0.4226 - -
0.9920 32310 0.5970 - -
0.9922 32315 0.5802 - -
0.9924 32320 0.7210 - -
0.9925 32325 0.4375 - -
0.9927 32330 0.4691 - -
0.9928 32335 0.5099 - -
0.9930 32340 0.2486 - -
0.9931 32345 0.4494 - -
0.9933 32350 0.5298 - -
0.9934 32355 0.8100 - -
0.9936 32360 0.4675 - -
0.9937 32365 0.3905 - -
0.9939 32370 0.3902 - -
0.9940 32375 0.4462 - -
0.9942 32380 0.4530 - -
0.9944 32385 0.3577 - -
0.9945 32390 0.4123 - -
0.9947 32395 0.3524 - -
0.9948 32400 0.5489 - -
0.9950 32405 0.4462 - -
0.9951 32410 0.2234 - -
0.9953 32415 0.4583 - -
0.9954 32420 0.5827 - -
0.9956 32425 0.7619 - -
0.9957 32430 0.2082 - -
0.9959 32435 0.5052 - -
0.9960 32440 0.5350 - -
0.9962 32445 0.5122 - -
0.9963 32450 0.4806 - -
0.9965 32455 0.5233 - -
0.9967 32460 0.5704 - -
0.9968 32465 0.6902 - -
0.9970 32470 0.5379 - -
0.9971 32475 0.4670 - -
0.9973 32480 0.5542 - -
0.9974 32485 0.2782 - -
0.9976 32490 0.4619 - -
0.9977 32495 0.5964 - -
0.9979 32500 0.4838 - -
0.9980 32505 0.5643 - -
0.9982 32510 0.4409 - -
0.9983 32515 0.6216 - -
0.9985 32520 0.7191 - -
0.9986 32525 0.4464 - -
0.9988 32530 0.7433 - -
0.9990 32535 0.6568 - -
0.9991 32540 0.4651 - -
0.9993 32545 0.4549 - -
0.9994 32550 0.5335 - -
0.9996 32555 0.4701 - -
0.9997 32560 0.4915 - -
0.9999 32565 0.4603 - -
1.0 32569 - 1.0518 0.8154
-1 -1 - - 0.8156

Training Time

  • Training: 23.1 hours

Framework Versions

  • Python: 3.12.13
  • Sentence Transformers: 5.7.0
  • Transformers: 5.14.1
  • PyTorch: 2.13.0+cu130
  • Accelerate: 1.14.0
  • Datasets: 5.0.1
  • Tokenizers: 0.22.2

Additional Resources

Citation

BibTeX

Sentence Transformers

@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",
}

MatryoshkaLoss

@misc{kusupati2024matryoshka,
    title={Matryoshka Representation Learning},
    author={Aditya Kusupati and Gantavya Bhatt and Aniket Rege and Matthew Wallingford and Aditya Sinha and Vivek Ramanujan and William Howard-Snyder and Kaifeng Chen and Sham Kakade and Prateek Jain and Ali Farhadi},
    year={2024},
    eprint={2205.13147},
    archivePrefix={arXiv},
    primaryClass={cs.LG}
}
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Papers for shadowlilac/omniembed

Evaluation results