To see the other types of publications on this topic, follow the link: Regex matching.

Journal articles on the topic 'Regex matching'

Create a spot-on reference in APA, MLA, Chicago, Harvard, and other styles

Select a source type:

Consult the top 44 journal articles for your research on the topic 'Regex matching.'

Next to every source in the list of references, there is an 'Add to bibliography' button. Press on it, and we will generate automatically the bibliographic reference to the chosen work in the citation style you need: APA, MLA, Harvard, Chicago, Vancouver, etc.

You can also download the full text of the academic publication as pdf and read online its abstract whenever available in the metadata.

Browse journal articles on a wide variety of disciplines and organise your bibliography correctly.

1

Barrière, Aurèle, and Clément Pit-Claudel. "Linear Matching of JavaScript Regular Expressions." Proceedings of the ACM on Programming Languages 8, PLDI (2024): 1336–60. http://dx.doi.org/10.1145/3656431.

Full text
Abstract:
Modern regex languages have strayed far from well-understood traditional regular expressions: they include features that fundamentally transform the matching problem. In exchange for these features, modern regex engines at times suffer from exponential complexity blowups, a frequent source of denial-of-service vulnerabilities in JavaScript applications. Worse, regex semantics differ across languages, and the impact of these divergences on algorithmic design and worst-case matching complexity has seldom been investigated. This paper provides a novel perspective on JavaScript's regex semantics b
APA, Harvard, Vancouver, ISO, and other styles
2

Moseley, Dan, Mario Nishio, Jose Perez Rodriguez, et al. "Derivative Based Nonbacktracking Real-World Regex Matching with Backtracking Semantics." Proceedings of the ACM on Programming Languages 7, PLDI (2023): 1026–49. http://dx.doi.org/10.1145/3591262.

Full text
Abstract:
We develop a new derivative based theory and algorithm for nonbacktracking regex matching that supports anchors and counting, preserves backtracking semantics, and can be extended with lookarounds. The algorithm has been implemented as a new regex backend in .NET and was extensively tested as part of the formal release process of .NET7. We present a formal proof of the correctness of the algorithm, which we believe to be the first of its kind concerning industrial implementations of regex matchers. The paper describes the complete foundation, the matching algorithm, and key aspects of the impl
APA, Harvard, Vancouver, ISO, and other styles
3

Zhang, Ling, Shaleen Deep, Avrilia Floratou, Anja Gruenheid, Jignesh M. Patel, and Yiwen Zhu. "Exploiting Structure in Regular Expression Queries." Proceedings of the ACM on Management of Data 1, no. 2 (2023): 1–28. http://dx.doi.org/10.1145/3589297.

Full text
Abstract:
Regular expression, or regex, is widely used to extract critical information from a large corpus of formatted text by finding patterns of interest. In tasks like log processing, the speed of regex matching is crucial. Data scientists and developers regularly use regex libraries that implement optimized regular expression matching using modern automata theory. However, computing state transitions in the underlying regex evaluation engine can be inefficient when a regex query contains a multitude of string literals. This inefficiency is further exasperated when analyzing large data volumes. This
APA, Harvard, Vancouver, ISO, and other styles
4

Turoňová, Lenka, Lukáš Holík, Ondřej Lengál, Olli Saarikivi, Margus Veanes, and Tomáš Vojnar. "Regex matching with counting-set automata." Proceedings of the ACM on Programming Languages 4, OOPSLA (2020): 1–30. http://dx.doi.org/10.1145/3428286.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Le Glaunec, Alexis, Lingkun Kong, and Konstantinos Mamouras. "Regular Expression Matching using Bit Vector Automata." Proceedings of the ACM on Programming Languages 7, OOPSLA1 (2023): 492–521. http://dx.doi.org/10.1145/3586044.

Full text
Abstract:
Regular expressions (regexes) are ubiquitous in modern software. There is a variety of implementation techniques for regex matching, which can be roughly categorized as (1) relying on backtracking search, or (2) being based on finite-state automata. The implementations that use backtracking are often chosen due to their ability to support advanced pattern-matching constructs. Unfortunately, they are known to suffer from severe performance problems. For some regular expressions, the running time for matching can be exponential in the size of the input text. In order to provide stronger guarante
APA, Harvard, Vancouver, ISO, and other styles
6

Nepeivoda, Antonina Nikolaevna, Yulia Andreevna Belikova, Kirill Konstantinovich Shevchenko, et al. "REDoS Detection in “Domino” Regular Expressions by Ambiguity Analysis." Proceedings of the Institute for System Programming of the RAS 35, no. 3 (2023): 109–24. http://dx.doi.org/10.15514/ispras-2023-35(3)-8.

Full text
Abstract:
The Regular Expression Denial of Service (REDoS) problem refers to a time explosion caused by the high computational complexity of matching a string against a regex pattern. This issue is prevalent in popular regex engines, such as PYTHON, JAVASCRIPT, and C++. In this paper, we examine several existing open-source tools for detecting REDoS and identify a class of regexes that can create REDoS situations in popular regex engines but are not detected by these tools. To address this gap, we propose a new approach based on ambiguity analysis, which combines a strong star-normal form test with an a
APA, Harvard, Vancouver, ISO, and other styles
7

Purtzel, Steven, and Matthias Weidlich. "SuSe: Summary Selection for Regular Expression Subsequence Aggregation over Streams." Proceedings of the ACM on Management of Data 3, no. 3 (2025): 1–27. https://doi.org/10.1145/3725359.

Full text
Abstract:
Regular expressions (RegEx) are an essential tool for pattern matching over streaming data, e.g., in network and security applications. The evaluation of RegEx queries becomes challenging, though, once subsequences are incorporated, i.e., characters in a sequence may be skipped during matching. Since the number of subsequence matches may grow exponentially in the input length, existing RegEx engines fall short in finding all subsequence matches, especially for queries including Kleene closure. In this paper, we argue that common applications for RegEx queries over streams do not require the en
APA, Harvard, Vancouver, ISO, and other styles
8

De Santo, Noé, Aurèle Barrière, and Clément Pit-Claudel. "A Coq Mechanization of JavaScript Regular Expression Semantics." Proceedings of the ACM on Programming Languages 8, ICFP (2024): 1003–31. http://dx.doi.org/10.1145/3674666.

Full text
Abstract:
We present an executable, proven-safe, faithful, and future-proof Coq mechanization of JavaScript regular expression (regex) matching, as specified by the latest published edition of ECMA-262 section 22.2. This is, to our knowledge, the first time that an industrial-strength regex language has been faithfully mechanized in an interactive theorem prover. We highlight interesting challenges that arose in the process (including issues of encoding, corner cases, and executability), and we document the steps that we took to ensure that the result is straightforwardly auditable and that our understa
APA, Harvard, Vancouver, ISO, and other styles
9

Le Glaunec, Alexis, Lingkun Kong, and Konstantinos Mamouras. "HybridSA: GPU Acceleration of Multi-pattern Regex Matching using Bit Parallelism." Proceedings of the ACM on Programming Languages 8, OOPSLA2 (2024): 1699–728. http://dx.doi.org/10.1145/3689771.

Full text
Abstract:
Multi-pattern matching is widely used in modern software for applications requiring high throughput such as protein search, network traffic inspection, virus or spam detection. Graphics Processor Units (GPUs) excel at executing massively parallel workloads. Regular expression (regex) matching is typically performed by simulating the execution of deterministic finite automata (DFAs) or nondeterministic finite automata (NFAs). The natural implementations of these automata simulation algorithms on GPUs are highly inefficient because they give rise to irregular memory access patterns. This paper p
APA, Harvard, Vancouver, ISO, and other styles
10

Vigneshwari G, Jaya. "SAFE SAVOR." International Scientific Journal of Engineering and Management 04, no. 05 (2025): 1–9. https://doi.org/10.55041/isjem03832.

Full text
Abstract:
Abstract - Food allergies are a considerable public-health consideration everywhere, particularly for people depending on online-shopping for groceries. Mistakes in labeling, information that is not structured, and not mentioning all the ingredients in the products' listing are partial reasons that lead to consumers being accidentally exposed to allergens. This thesis is to present Safe Savor, a Chrome-Extension created to identify allergens, their derivatives, and cross-reactive ingredients via studying products' ingredients section in real time on electronic commerce sites like Walmart. The
APA, Harvard, Vancouver, ISO, and other styles
11

Varatalu, Ian Erik, Margus Veanes, and Juhan Ernits. "RE#: High Performance Derivative-Based Regex Matching with Intersection, Complement, and Restricted Lookarounds." Proceedings of the ACM on Programming Languages 9, POPL (2025): 1–32. https://doi.org/10.1145/3704837.

Full text
Abstract:
We present a tool and theory RE# for regular expression matching that is built on symbolic derivatives, does not use backtracking, and, in addition to the classical operators, also supports complement, intersection and restricted lookarounds. We develop the theory formally and show that the main matching algorithm has input-linear complexity both in theory as well as experimentally. We apply thorough evaluation on popular benchmarks that show that RE# is over 71% faster than the next fastest regex engine in Rust on the baseline, and outperforms all state-of-the-art engines on extensions of the
APA, Harvard, Vancouver, ISO, and other styles
12

Mamouras, Konstantinos, and Agnishom Chattopadhyay. "Efficient Matching of Regular Expressions with Lookaround Assertions." Proceedings of the ACM on Programming Languages 8, POPL (2024): 2761–91. http://dx.doi.org/10.1145/3632934.

Full text
Abstract:
Regular expressions have been extended with lookaround assertions, which are subdivided into lookahead and lookbehind assertions. These constructs are used to refine when a match for a pattern occurs in the input text based on the surrounding context. Current implementation techniques for lookaround involve backtracking search, which can give rise to running time that is super-linear in the length of input text. In this paper, we first consider a formal mathematical semantics for lookaround, which complements the commonly used operational understanding of lookaround in terms of a backtracking
APA, Harvard, Vancouver, ISO, and other styles
13

Nagaraju, S., and P. Sudhakara Reddy. "Page Enabled FSM Model For Multi Rate- High Throughput Regex Pattern Matching System." International Journal of Engineering & Technology 7, no. 4.19 (2018): 329–33. http://dx.doi.org/10.14419/ijet.v7i4.19.22083.

Full text
Abstract:
In recent years demands for high throughput NIDS systems are emerged with compatible Wildcard support for the detection of irregular patterns like ClamAV. In this work we presented a single-compound FSM based state transition controller for regular ASCII based patterns and counter enabled score generation model for regex patterns which contains both repeated characters and don’t cares void segments. In many existing digital NIDS systems are token-stream based approaches were used with dedicated memory units to accommodate byte oriented matching with moderate network payload speed. The NIDS e
APA, Harvard, Vancouver, ISO, and other styles
14

Chida, Nariyoshi, and Tachio Terauchi. "Repairing Regular Expressions for Extraction." Proceedings of the ACM on Programming Languages 7, PLDI (2023): 1633–56. http://dx.doi.org/10.1145/3591287.

Full text
Abstract:
While synthesizing and repairing regular expressions (regexes) based on Programming-by-Examples (PBE) methods have seen rapid progress in recent years, all existing works only support synthesizing or repairing regexes for membership testing, and the support for extraction is still an open problem. This paper fills the void by proposing the first PBE-based method for synthesizing and repairing regexes for extraction. Our work supports regexes that have real-world extensions such as backreferences and lookarounds. The extensions significantly affect the PBE-based synthesis and repair problem. In
APA, Harvard, Vancouver, ISO, and other styles
15

Sheeraz, Muhammad, Muhammad Hanif Durad, Muhammad Arsalan Paracha, Syed Muhammad Mohsin, Sadia Nishat Kazmi, and Carsten Maple. "Revolutionizing SIEM Security: An Innovative Correlation Engine Design for Multi-Layered Attack Detection." Sensors 24, no. 15 (2024): 4901. http://dx.doi.org/10.3390/s24154901.

Full text
Abstract:
Advances in connectivity, communication, computation, and algorithms are driving a revolution that will bring economic and social benefits through smart technologies of the Industry 4.0 era. At the same time, attackers are targeting this expanded cyberspace to exploit it. Therefore, many cyberattacks are reported each year at an increasing rate. Traditional security devices such as firewalls, intrusion detection systems (IDSs), intrusion prevention systems (IPSs), anti-viruses, and the like, often cannot detect sophisticated cyberattacks. The security information and event management (SIEM) sy
APA, Harvard, Vancouver, ISO, and other styles
16

Ramakrishnan, Mr R. "Reducing Latency and Storage Costs in Cloud Applications Through Advanced Data Management." INTERNATIONAL JOURNAL OF SCIENTIFIC RESEARCH IN ENGINEERING AND MANAGEMENT 09, no. 06 (2025): 1–9. https://doi.org/10.55041/ijsrem49547.

Full text
Abstract:
ABSTRACT-Junk files, including outdated backups, redundant document versions, and orphaned objects, accumulate in cloud storage, leading to inefficiencies in data retrieval, increased latency, and higher storage costs. As cloud applications grow in scale, managing and optimizing storage resources becomes crucial for maintaining performance and reducing operational overhead. The problem of unnecessary files taking up valuable space is especially critical in cloud environments where efficient resource management is essential for smooth operations. This project proposes a solution to optimize clo
APA, Harvard, Vancouver, ISO, and other styles
17

Matute, Gabriel, Wode Ni, Titus Barik, Alvin Cheung, and Sarah E. Chasins. "Syntactic Code Search with Sequence-to-Tree Matching: Supporting Syntactic Search with Incomplete Code Fragments." Proceedings of the ACM on Programming Languages 8, PLDI (2024): 2051–72. http://dx.doi.org/10.1145/3656460.

Full text
Abstract:
Lightweight syntactic analysis tools like Semgrep and Comby leverage the tree structure of code, making them more expressive than string and regex search. Unlike traditional language frameworks (e.g., ESLint) that analyze codebases via explicit syntax tree manipulations, these tools use query languages that closely resemble the source language. However, state-of-the-art matching techniques for these tools require queries to be complete and parsable snippets, which makes in-progress query specifications useless. We propose a new search architecture that relies only on tokenizing (not parsing) a
APA, Harvard, Vancouver, ISO, and other styles
18

Sopaheluwakan, Christian Ronaldo, and Dian Widiyanto Chandra. "Anti-WebShell PHP Backdoor Scanner pada Linux Server." ILKOM Jurnal Ilmiah 12, no. 2 (2020): 143–53. http://dx.doi.org/10.33096/ilkom.v12i2.596.143-153.

Full text
Abstract:
Backdoor or commonly also known as web shell is one of the malicious software that hackers use to maintain access systems that they have entered. Relatively few programs like Anti Web-Shell, PHP Backdoor Scanner circulating on the Internet, and can be obtained free of charge to deal with the issues above. But most of these programs have no actual database of signature behavior to deal with PHP backdoor / Shell nowadays. Then comes the contemporary Anti Web-Shell program that can deal with today's backdoor shell. This study uses an experimental method concerning previous similar studies and is
APA, Harvard, Vancouver, ISO, and other styles
19

MCAREAVEY, KEVIN, WEIRU LIU, PAUL MILLER, and KEDIAN MU. "MEASURING INCONSISTENCY IN A NETWORK INTRUSION DETECTION RULE SET BASED ON SNORT." International Journal of Semantic Computing 05, no. 03 (2011): 281–322. http://dx.doi.org/10.1142/s1793351x11001274.

Full text
Abstract:
In this preliminary study, we investigate how inconsistency in a network intrusion detection rule set can be measured. To achieve this, we first examine the structure of these rules which are based on Snort and incorporate regular expression (Regex) pattern matching. We then identify primitive elements in these rules in order to translate the rules into their (equivalent) logical forms and to establish connections between them. Additional rules from background knowledge are also introduced to make the correlations among rules more explicit. We measure the degree of inconsistency in formulae of
APA, Harvard, Vancouver, ISO, and other styles
20

Murade, Mr Taha, Mr Vrajesh Shetty, Mr Aditya Thakur, and Ms Vandana Tripathi. "Women Security & Women Empowerment(WSWE)." INTERANTIONAL JOURNAL OF SCIENTIFIC RESEARCH IN ENGINEERING AND MANAGEMENT 09, no. 03 (2025): 1–9. https://doi.org/10.55041/ijsrem43076.

Full text
Abstract:
The Women Security and Empowerment System is designed to enhance women's safety and promote their professional development through innovative technology. It incorporates live location tracking to enable real-time sharing with emergency contacts, an SOS button for immediate distress alerts, and latest location retrieval via OTP verification for authorized contacts. The system also includes a safe place locator to guide users to nearby secure locations such as police stations and hospitals. On the empowerment front, the Workshop module allows users to create and participate in workshops upon adm
APA, Harvard, Vancouver, ISO, and other styles
21

Zhang, Kevin, and Dina Demner-Fushman. "Automated classification of eligibility criteria in clinical trials to facilitate patient-trial matching for specific patient populations." Journal of the American Medical Informatics Association 24, no. 4 (2017): 781–87. http://dx.doi.org/10.1093/jamia/ocw176.

Full text
Abstract:
Abstract Objective:To develop automated classification methods for eligibility criteria in ClinicalTrials.gov to facilitate patient-trial matching for specific populations such as persons living with HIV or pregnant women. Materials and Methods:We annotated 891 interventional cancer trials from ClinicalTrials.gov based on their eligibility for human immunodeficiency virus (HIV)-positive patients using their eligibility criteria. These annotations were used to develop classifiers based on regular expressions and machine learning (ML). After evaluating classification of cancer trials for eligibi
APA, Harvard, Vancouver, ISO, and other styles
22

S, Janakiraman. "Cloud Clean: Cloud Storage Space Sustainability using Data Life Cycle Guard Scheme." International Journal for Research in Applied Science and Engineering Technology 13, no. 6 (2025): 165–72. https://doi.org/10.22214/ijraset.2025.71988.

Full text
Abstract:
Junk files, including outdated backups, redundant document versions, and orphaned objects, accumulate in cloud storage, leading to inefficiencies in data retrieval, increased latency, and higher storage costs. As cloud applications grow in scale, managing and optimizing storage resources becomes crucial for maintaining performance and reducing operational overhead. The problem of unnecessary files taking up valuable space is especially critical in cloud environments where efficient resource management is essential for smooth operations. This project proposes a solution to optimize cloud data m
APA, Harvard, Vancouver, ISO, and other styles
23

Radhakrishnan, Saravanan, Jerubbaal Luke, Rahul Agarwal, Gargi Lahiri, and Karthick Alagappan. "ENHANCING E-COMMERCE DATA ENRICHMENT: A MULTIMODAL APPROACH WITH LARGE LANGUAGE MODELS & RULEBOOK." Journal of Computer Sciences and Informatics 2, no. 3 (2025): 148. https://doi.org/10.5455/jcsi.20250217052842.

Full text
Abstract:
Aim/Background: Product attribute value extraction (PAVE) systems have emerged as a powerful tool to automate the process of extracting and organizing product attributes from diverse data sources. Large Language Models (LLMs) have repeatedly demonstrated significant potential in extracting relevant information and are well founded on high reasoning ability. In this article, we propose the use of a rulebook that can assist LLMs in extracting the correct information while maintaining compliance with predefined guidelines. We call this technique rulebook-based prompting, and it significantly outp
APA, Harvard, Vancouver, ISO, and other styles
24

SCHMIDT-SCHAUß, MANFRED. "Linear pattern matching of compressed terms and polynomial rewriting." Mathematical Structures in Computer Science 28, no. 8 (2018): 1415–50. http://dx.doi.org/10.1017/s0960129518000208.

Full text
Abstract:
We consider term rewriting under sharing in the form of compression by singleton tree grammars (STG), which is more general than the term dags. Algorithms for the subtasks of rewriting are analysed: finding a redex for rewriting by locating a position for a match, performing a rewrite step by constructing the compressed result and executing a sequence of rewrite steps. The first main result is that locating a match of a linear termsin another termtcan be performed in polynomial time ifs,tare both STG-compressed. This generalizes results on matching of STG-compressed terms, matching of straight
APA, Harvard, Vancouver, ISO, and other styles
25

Pereira, Antonio Gualberto, and Luís Eduardo Afonso. "Automatic enrollment and employer match: an experiment with the choice of pension plans." Revista de Gestão 27, no. 3 (2020): 281–99. http://dx.doi.org/10.1108/rege-07-2019-0077.

Full text
Abstract:
PurposeThe purpose of this study is to identify arrangements of fully funded defined contribution (FF-DC) pension plans associated with the continuity of retirement savings.Design/methodology/approachThe authors adopted an experimental design composed of a control group and two treatment groups. In all groups, individuals made decisions throughout nine periods: five during the working period and four at the postretirement stage. The authors asked participants if they wanted to join a pension plan, and which plan. The authors offered three plans with different risk profiles: plan 1 (high risk),
APA, Harvard, Vancouver, ISO, and other styles
26

Kang, M. B., and K. A. Thole. "Flowfield Measurements in the Endwall Region of a Stator Vane." Journal of Turbomachinery 122, no. 3 (1999): 458–66. http://dx.doi.org/10.1115/1.1303703.

Full text
Abstract:
A first-stage stator vane experiences high heat transfer rates, particularly near the endwall, where strong secondary flows occur. In order to improve numerical predictions of the complex endwall flow at low-speed conditions, benchmark quality experimental data are required. This study documents the flowfield in the endwall region of a stator vane that has been scaled up by a factor of nine while matching an engine exit Reynolds number of Reex=1.2×106. Laser Doppler velocimeter (LDV) measurements of all three components of the mean and fluctuating velocities are presented for several flow plan
APA, Harvard, Vancouver, ISO, and other styles
27

Bürger, G. "On the verification of climate reconstructions." Climate of the Past 3, no. 3 (2007): 397–409. http://dx.doi.org/10.5194/cp-3-397-2007.

Full text
Abstract:
Abstract. The skill of proxy-based reconstructions of Northern hemisphere temperature is reassessed. Using an almost complete set of proxy and instrumental data of the past 130 years a multi-crossvalidation is conducted of a number of statistical methods, producing a distribution of verification skill scores. Among the methods are multiple regression, multiple inverse regression, total least squares, RegEM, all considered with and without variance matching. For all of them the scores show considerable variation, but previous estimates, such as a 50% reduction of error (RE), appear as outliers
APA, Harvard, Vancouver, ISO, and other styles
28

Kratzer, André, Linda Karrer, Nikolas Dietzel, et al. "Symptombelastung, Inanspruchnahme des Gesundheitssystems und Todesumstände von Menschen mit Demenz in der letzten Lebensphase: der Bayerische Demenz Survey (BayDem)." Das Gesundheitswesen 82, no. 01 (2019): 50–58. http://dx.doi.org/10.1055/a-1033-7159.

Full text
Abstract:
Zusammenfassung Hintergrund Demenz ist in der Regel eine lebenslimitierende Erkrankung. Dennoch fehlen derzeit evidenzbasierte Leitlinien für eine angemessene Palliativversorgung von Menschen mit Demenz (MmD). Ein Grund hierfür ist der Mangel an belastbaren empirischen Daten zu MmD in der letzten Lebensphase. Ziel dieser Untersuchung ist daher, Symptombelastung, Inanspruchnahme des Gesundheitssystems sowie Todesumstände von MmD in der letzten Lebensphase zu beschreiben. Methodik Der Bayerische Demenz Survey (BayDem) war eine multizentrische Längsschnittstudie, die in 3 Regionen Bayerns (Dachau
APA, Harvard, Vancouver, ISO, and other styles
29

Окач, М. А., та С. В. Мухаметова. "ЛИЛЕЙНИКИ КОЛЛЕКЦИИ БОТАНИЧЕСКОГО САДА-ИНСТИТУТА ПГТУ". Vestnik of Volga State University of Technology Series Forest. Ecology. Nature Management, № 4(48) (26 січня 2021): 50–60. https://doi.org/10.25686/2306-2827.2020.4.50.

Full text
Abstract:
Приводится анализ коллекции лилейника гибридного Ботанического сада-института ПГТУ по декоративным признакам в 2015–2016 гг.: окраска околоцветника, размер цветка, высота цветоноса, количество цветков в соцветии. Представлен материал по истории создания коллекции, проанализированы материалы выверки сортов по дате регистрации и именам оригинаторов. Установлено, что в коллекции преобладают средне- и высокорослые сорта с пастельными и жёлтыми тонами околоцветника, со средним диаметром цветка. За период 2015–2016 гг. цветение изученных лилейников происходило с конца мая по начало сентября. Выделен
APA, Harvard, Vancouver, ISO, and other styles
30

Challagulla, Swetha, Nehemiah Kebede, Sanika Rege, Raisa R. Volodarsky, Kojo Osei-Bonsu, and Sudeep Karve. "Impact of Dosing Frequency of Oral Oncolytics on Refill Adherence Among Patients with Hematological Malignancies." Blood 138, Supplement 1 (2021): 1964. http://dx.doi.org/10.1182/blood-2021-145070.

Full text
Abstract:
Abstract Background : With advances in oral oncolytics for hematologic malignancies, it is important to consider dosing frequency and treatment (tx) adherence, as prior data have shown poor adherence to oral cancer medications may result in inferior tx outcomes (Huang WC, Expert Rev Anticancer Ther, 2016; Muluneh B, J Oncol Pract, 2018). There is limited evidence regarding the impact of dosing frequency on tx adherence among patients with hematological malignancies treated with oral oncolytics. The objective of this study was to characterize real-world demographic and clinical characteristics,
APA, Harvard, Vancouver, ISO, and other styles
31

Abravanel, Daniel L., Johanna Klughammer, Timothy Blosser, et al. "Abstract PD6-03: Spatio-molecular dissection of the breast cancer metastatic microenvironment." Cancer Research 82, no. 4_Supplement (2022): PD6–03—PD6–03. http://dx.doi.org/10.1158/1538-7445.sabcs21-pd6-03.

Full text
Abstract:
Abstract Metastatic breast cancer (MBC) remains incurable due to inevitable development of therapeutic resistance. Although tumor cell intrinsic mechanisms of resistance in MBC are beginning to be elucidated by bulk sequencing studies, the roles of the tumor microenvironment and intratumor heterogeneity in therapeutic resistance remain underexplored due to both technological barriers and limited availability of samples. To comprehensively capture these characteristics we have adapted a research biopsy protocol to collect tissue for an array of single-cell and spatio-molecular assays whose perf
APA, Harvard, Vancouver, ISO, and other styles
32

Bickell, Nina A., Benjamin May, Ihor Havrylchuk, et al. "Implementation of a rule-based algorithm to find patients eligible for cancer clinical trials." JAMIA Open 7, no. 4 (2024). http://dx.doi.org/10.1093/jamiaopen/ooae131.

Full text
Abstract:
Abstract Objective To explore implementing regular expressions (RegEx) to streamline patient identification and classification for matching to clinical trials. Materials and Methods To prepare approaches needed to match patients to relevant cancer clinical trials, we combined NCI’s Clinical Trials Search API to extract high-level eligibility criteria, including cancer type, stage, receptor/biomarker status, with similar data of patients with appointments in the upcoming week. Using RegEx, we prospectively identified all patients with breast, liver, or lung cancers at treatment decision points
APA, Harvard, Vancouver, ISO, and other styles
33

Dung, Nguyen Trung, Pham Van Toi, and Phung Minh Hieu. "Regular Expression Attack Technique On ReDoS Vulnerability." Journal of Science and Technology on Information security, June 27, 2024, 5–15. http://dx.doi.org/10.54654/isj.v1i21.1030.

Full text
Abstract:
Abstract— Regular expressions, or regexes, have become an integral part of modern software development, seamlessly woven into the fabric of countless applications. From validating user input in web forms to parsing complex log files for data analysis, regexes are employed across a vast spectrum of tasks. Their ability to precisely define and match patterns within text makes them invaluable tools for tasks ranging from simple data extraction to sophisticated security measures. However, this widespread reliance on regexes also introduces a significant security vulnerability: ReDoS (Regular Expre
APA, Harvard, Vancouver, ISO, and other styles
34

FILINSKI, ANDRZEJ. "Proof-directed program transformation: A functional account of efficient regular expression matching." Journal of Functional Programming 31 (2021). http://dx.doi.org/10.1017/s0956796820000295.

Full text
Abstract:
Abstract We show how to systematically derive an efficient regular expression (regex) matcher using a variety of program transformation techniques, but very little specialized formal language and automata theory. Starting from the standard specification of the set-theoretic semantics of regular expressions, we proceed via a continuation-based backtracking matcher, to a classical, table-driven state machine. All steps of the development are supported by self-contained (and machine-verified) equational correctness proofs.
APA, Harvard, Vancouver, ISO, and other styles
35

"An Efficient Regular Expression Pattern Matching Using Stride Finite Automata." International Journal of Engineering and Advanced Technology 8, no. 6S (2019): 1050–54. http://dx.doi.org/10.35940/ijeat.f1200.0886s19.

Full text
Abstract:
Example coordinating assumes a key job in different parcel payload identification applications, for example, interruption location, which is utilized in distinguishing the malware content in system frameworks. Various calculations and instruments have been created to improve reality complexities of distinguishing regex principles and subsequently empower profound bundle review at line rate. In this paper, a novel quickening plan is introduced to determine speed and space wasteful aspects of the customary automata and the DFA called multi-walk Finite automata that confirms more than one byte th
APA, Harvard, Vancouver, ISO, and other styles
36

Nagaraju, S., B. Shanmugham, and K. Baskaran. "High throughput token driven FSM based regex pattern matching for network intrusion detection system." Materials Today: Proceedings, April 2021. http://dx.doi.org/10.1016/j.matpr.2021.04.028.

Full text
APA, Harvard, Vancouver, ISO, and other styles
37

Petrou, Eirini, Heather Davies, Maria Aoun, et al. "First opinion practice electronic health records are a useful source of descriptions of medication errors." Frontiers in Veterinary Science 12 (May 20, 2025). https://doi.org/10.3389/fvets.2025.1560652.

Full text
Abstract:
BackgroundMedication error (MedE) is a leading global cause of harm in human healthcare with significance both in patient morbidity and mortality, and consequent legal and financial issues. Despite this, MedEs are a poorly explored area in veterinary medicine. Research has so far focussed on survey work and errors spontaneously reported to third parties, such as professional indemnity providers.AimDetermine if MedEs can be successfully identified in first opinion electronic health records (EHRs).AnimalsEHRs pertaining to animals treated in UK first opinion practice.Materials and methodsRegular
APA, Harvard, Vancouver, ISO, and other styles
38

Meza, Kelly, Ahmed Elkhanany, and Nataly Valeria Torrejon. "GUIDE-T: A three-tier, markmap-driven platform for streamlined breast cancer trial navigation and improved enrollment." Journal of Clinical Oncology 43, no. 16_suppl (2025). https://doi.org/10.1200/jco.2025.43.16_suppl.e23022.

Full text
Abstract:
e23022 Background: Clinical trial enrollment in Breast Cancer (BC) remains challenging due to frequent changes in protocol status, extensive eligibility criteria, and reliance on fragmented data. These barriers can delay patient access to novel therapies and undermine accrual efforts. GUIDE-T was developed at Baylor College of Medicine (BCM) to centralize active BC trial information, generate intuitive MarkMap visualizations, and interface with BCL local enrollment tracker (ENROL). Updated weekly, GUIDE-T aims to simplify trial search for clinicians, coordinators, and patient advocates while f
APA, Harvard, Vancouver, ISO, and other styles
39

Liu, Yufeng, Fan Yang, Jian Liu, and Song Li. "A fuzzy structure processing mechanism for graph grammar." Journal of Logic and Computation, August 1, 2023. http://dx.doi.org/10.1093/logcom/exad046.

Full text
Abstract:
Abstract A strict graph-matching mechanism brings normativeness to graph grammar but leads to graph grammar insufficiency when processing fuzzy grammatical structures. To address this issue, the current paper proposes an improved formal framework for graph grammar that enables it to effectively specify the ambiguity of graph models while maintaining normativeness and intuition. First, the improved framework defines the connection probability for edges and classifies the edges based on the connection probability, which is used as the quantitative and qualitative description of the graph grammar
APA, Harvard, Vancouver, ISO, and other styles
40

Takemoto, Kazue. "Retrospective Case-Control Study of REGEN-COV (Casirivimab and Imdevimab) Therapy for Patients with COVID-19 and Cancer Using the United States MarketScan<sup>®</sup> Database." Oncology, September 4, 2023, 1–11. http://dx.doi.org/10.1159/000533614.

Full text
Abstract:
&lt;b&gt;&lt;i&gt;Introduction:&lt;/i&gt;&lt;/b&gt; Patients with cancer may be at a higher risk of experiencing severe complications from coronavirus disease 2019 (COVID-19) than are patients without cancer. This study evaluated the efficacy of REGEN-COV, a combination of the monoclonal antibodies casirivimab and imdevimab, for treating COVID-19 in patients with cancer in the USA. &lt;b&gt;&lt;i&gt;Methods:&lt;/i&gt;&lt;/b&gt; Using the MarketScan&lt;sup&gt;Ⓡ&lt;/sup&gt; database, de-identified data of patients with a COVID-19 diagnosis between November 1, 2020, and November 30, 2021, were an
APA, Harvard, Vancouver, ISO, and other styles
41

Liu, Yufeng, and Fan Yang. "EGG+: A graph grammar formalism with uncertain structure processing mechanism." Journal of Logic and Computation, September 3, 2021. http://dx.doi.org/10.1093/logcom/exab055.

Full text
Abstract:
Abstract Extended from string grammars, graph grammar is a 2D formal method, which could specify the syntax structures of visual programming languages intuitively yet formally. However, the graph matching conditions in most graph grammars are too strict in specified applications, influencing the flexibility and fault tolerant capability of graph grammar. To solve the problems, this paper introduces an uncertain structure processing mechanism into graph grammar formalism and proposes a new graph grammar named EGG+. Different from traditional graph grammars, EGG+ defines a class of special edges
APA, Harvard, Vancouver, ISO, and other styles
42

Chua, Annabel, Puay Hoon Eve Nah, Grace Hoo, et al. "P-2015. Evaluating the use of Monoclonal Antibodies - Sotrovimab, Casirivimab/Imedvimab (REGEN-COV) and Tixagevimab/Cilgavimab (EVUSHELD) for COVID-19 Treatment in Singapore." Open Forum Infectious Diseases 12, Supplement_1 (2025). https://doi.org/10.1093/ofid/ofae631.2172.

Full text
Abstract:
Abstract Background The emergence of SARS-CoV-2 led to the development of therapeutic monoclonal antibodies (mAbs) including sotrovimab, casirivimab/imdevimab (REGEN-COV) and tixagevimab/cilgavimab (EVUSHELD). While tixagevimab/cilgavimab was not approved in the United States for COVID-19 treatment, there was limited off-label use in Singapore based on promising results from the TACKLE trial. The effectiveness of these mAbs against Omicron variants is uncertain.Table 1:Comparison of outcomes between patients treated with monoclonal antibody and those who did not receive monoclonal antibody tre
APA, Harvard, Vancouver, ISO, and other styles
43

"Language learning." Language Teaching 36, no. 2 (2003): 120–57. http://dx.doi.org/10.1017/s0261444803221935.

Full text
Abstract:
03—285 Ahmed, Mehreen (U. of Queensland, Australia). A note on phrase structure analysis and design implication for ICALL. Computer Assisted Language Learning (Lisse, The Netherlands), 15, 4 (2002), 423—33.03—286 Argaman, Osnat and Abu-Rabia, Salim (U. of Haifa, Israel). The influence of language anxiety on English reading and writing tasks among native Hebrew speakers. Language, Culture and Curriculum (Clevedon, UK), 15, 2 (2002), 143—60.03—287 Bielinska, Monika (Schlesische Universität, Katowice, Poland). Zu Semantischen Aspekten der Wortkombinatorik. [On semantic aspects of word combination
APA, Harvard, Vancouver, ISO, and other styles
44

Chavdarov, Anatoliy V. "Special Issue No. – 10, June, 2020 Journal > Special Issue > Special Issue No. – 10, June, 2020 > Page 5 “Quantative Methods in Modern Science” organized by Academic Paper Ltd, Russia MORPHOLOGICAL AND ANATOMICAL FEATURES OF THE GENUS GAGEA SALISB., GROWING IN THE EAST KAZAKHSTAN REGION Authors: Zhamal T. Igissinova,Almash A. Kitapbayeva,Anargul S. Sharipkhanova,Alexander L. Vorobyev,Svetlana F. Kolosova,Zhanat K. Idrisheva, DOI: https://doi.org/10.26782/jmcms.spl.10/2020.06.00041 Abstract: Due to ecological preferences among species of the genus GageaSalisb, many plants are qualified as rare and/or endangered. Therefore, the problem of rational use of natural resources, in particular protection of early spring plant species is very important. However, literary sources analysis only reveals data on the biology of species of this genus. The present research,conducted in the spring of 2017-2019, focuses on anatomical and morphological features of two Altai species: Gagealutea and Gagea minima; these features were studied, clarified and confirmed by drawings and photographs. The anatomical structure of the stem and leaf blade was studied in detail. The obtained research results will prove useful for studies of medicinal raw materials and honey plants. The aforementioned species are similar in morphological features, yet G. minima issmaller in size, and its shoots appear earlier than those of other species Keywords: Flora,gageas,Altai species,vegetative organs., Refference: I. Atlas of areas and resources of medicinal plants of Kazakhstan.Almaty, 2008. II. Baitenov M.S. Flora of Kazakhstan.Almaty: Ġylym, 2001. III. DanilevichV. G. ThegenusGageaSalisb. of WesternTienShan. PhD Thesis, St. Petersburg,1996. IV. EgeubaevaR.A., GemedzhievaN.G. The current state of stocks of medicinal plants in some mountain ecosystems of Kazakhstan.Proceedings of the international scientific conference ‘”Results and prospects for the development of botanical science in Kazakhstan’, 2002. V. Kotukhov Yu.A. New species of the genus Gagea (Liliaceae) from Southern Altai. Bot. Journal.1989;74(11). VI. KotukhovYu.A. ListofvascularplantsofKazakhstanAltai. Botan. Researches ofSiberiaandKazakhstan.2005;11. VII. KotukhovYu. The current state of populations of rare and endangered plants in Eastern Kazakhstan. Almaty: AST, 2009. VIII. Kotukhov Yu.A., DanilovaA.N., AnufrievaO.A. Synopsisoftheonions (AlliumL.) oftheKazakhstanAltai, Sauro-ManrakandtheZaisandepression. BotanicalstudiesofSiberiaandKazakhstan. 2011;17: 3-33. IX. Kotukhov, Yu.A., Baytulin, I.O. Rareandendangered, endemicandrelictelementsofthefloraofKazakhstanAltai. MaterialsoftheIntern. scientific-practical. conf. ‘Sustainablemanagementofprotectedareas’.Almaty: Ridder, 2010. X. Krasnoborov I.M. et al. The determinant of plants of the Republic of Altai. Novosibirsk: SB RAS, 2012. XI. Levichev I.G. On the species status of Gagea Rubicunda. Botanical Journal.1997;6:71-76. XII. Levichev I.G. A new species of the genus Gagea (Liliaceae). Botanical Journal. 2000;7: 186-189. XIII. Levichev I.G., Jangb Chang-gee, Seung Hwan Ohc, Lazkovd G.A.A new species of genus GageaSalisb.(Liliaceae) from Kyrgyz Republic (Western Tian Shan, Chatkal Range, Sary-Chelek Nature Reserve). Journal of Asia-Pacific Biodiversity.2019; 12: 341-343. XIV. Peterson A., Levichev I.G., Peterson J. Systematics of Gagea and Lloydia (Liliaceae) and infrageneric classification of Gagea based on molecular and morphological data. Molecular Phylogenetics and Evolution.2008; 46. XV. Peruzzi L., Peterson A., Tison J.-M., Peterson J. Phylogenetic relationships of GageaSalisb.(Liliaceae) in Italy, inferred from molecular and morphological data matrices. Plant Systematics and Evolution; 2008: 276. XVI. Rib R.D. Honey plants of Kazakhstan. Advertising Digest, 2013. XVII. Scherbakova L.I., Shirshikova N.A. Flora of medicinal plants in the vicinity of Ust-Kamenogorsk. Collection of materials of the scientific-practical conference ‘Unity of Education, Science and Innovation’. Ust-Kamenogorsk: EKSU, 2011. XVIII. syganovA.P. PrimrosesofEastKazakhstan. Ust-Kamenogorsk: EKSU, 2001. XIX. Tsyganov A.P. Flora and vegetation of the South Altai Tarbagatay. Berlin: LAP LAMBERT,2014. XX. Utyasheva, T.R., Berezovikov, N.N., Zinchenko, Yu.K. ProceedingsoftheMarkakolskStateNatureReserve. Ust-Kamenogorsk, 2009. XXI. Xinqi C, Turland NJ. Gagea. Flora of China.2000;24: 117-121. XXII. Zarrei M., Zarre S., Wilkin P., Rix E.M. Systematic revision of the genus GageaSalisb. (Liliaceae) in Iran.BotJourn Linn Soc.2007;154. XXIII. Zarrei M., Wilkin P., Ingroille M.J., Chase M.W. A revised infrageneric classification for GageaSalisb. (Tulipeae; Liliaceae): insights from DNA sequence and morphological data.Phytotaxa.2011:5. View | Download INFLUENCE OF SUCCESSION CROPPING ON ECONOMIC EFFICIENCY OF NO-TILL CROP ROTATIONS Authors: Victor K. Dridiger,Roman S. Stukalov,Rasul G. Gadzhiumarov,Anastasiya A. Voropaeva,Viktoriay A. Kolomytseva, DOI: https://doi.org/10.26782/jmcms.spl.10/2020.06.00042 Abstract: This study was aimed at examining the influence of succession cropping on the economic efficiency of no-till field crop rotations on the black earth in the zone of unstable moistening of the Stavropol krai. A long-term stationary experiment was conducted to examine for the purpose nine field crop rotation patterns different in the number of fields (four to six), set of crops, and their succession in crop rotation. The respective shares of legumes, oilseeds, and cereals in the cropping pattern were 17 to 33, 17 to 40, and 50 to 67 %. It has been established that in case of no-till field crop cultivation the economic efficiency of plant production depends on the set of crops and their succession in rotation. The most economically efficient type of crop rotation is the soya-winter wheat-peas-winter wheat-sunflower-corn six-field rotation with two fields of legumes: in this rotation 1 ha of crop rotation area yields 3 850 grain units per ha at a grain unit prime cost of 5.46 roubles; the plant production output return and profitability were 20,888 roubles per ha and 113 %, respectively. The high production profitabilities provided by the soya-winter wheat-sunflower four-field and the soya-winter-wheat-sunflower-corn-winter wheat five-field crop rotation are 108.7 and 106.2 %, respectively. The inclusion of winter wheat in crop rotation for two years in a row reduces the second winter wheat crop yield by 80 to 100 %, which means a certain reduction in the grain unit harvesting rate to 3.48-3.57 thousands per ha of rotation area and cuts the production profitability down to 84.4-92.3 %. This is why, no-till cropping should not include winter wheat for a second time Keywords: No-till technology,crop rotation,predecessor,yield,return,profitability, Refference: I Badakhova G. Kh. and Knutas A. V., Stavropol Krai: Modern Climate Conditions [Stavropol’skiykray: sovremennyyeklimaticheskiyeusloviya]. Stavropol: SUE Krai Communication Networks, 2007. II Cherkasov G. N. and Akimenko A. S. Scientific Basis of Modernization of Crop Rotations and Formation of Their Systems according to the Specializations of Farms in the Central Chernozem Region [Osnovy moderniz atsiisevooborotoviformirovaniyaikh sistem v sootvetstvii so spetsi-alizatsiyeykhozyaystvTsentral’nogoChernozem’ya]. Zemledelie. 2017; 4: 3-5. III Decree 330 of July 6, 2017 the Ministry of Agriculture of Russia “On Approving Coefficients of Converting to Agricultural Crops to Grain Units [Ob utverzhdeniikoeffitsiyentovperevoda v zernovyyee dinitsysel’s kokhozyaystvennykhkul’tur]. IV Dridiger V. K., About Methods of Research of No-Till Technology [O metodikeissledovaniytekhnologii No-till]//Achievements of Science and Technology of AIC (Dostizheniyanaukiitekhniki APK). 2016; 30 (4): 30-32. V Dridiger V. K. and Gadzhiumarov R. G. Growth, Development, and Productivity of Soya Beans Cultivated On No-Till Technology in the Zone of Unstable Moistening of Stavropol Region [Rost, razvitiyeiproduktivnost’ soiprivozdelyvaniipotekhnologii No-till v zone ne-ustoychivog ouvlazhneniyaStavropol’skogokraya]//Oil Crops RTBVNIIMK (Maslichnyyekul’turyNTBVNIIMK). 2018; 3 (175): 52–57. VI Dridiger V. K., Godunova E. I., Eroshenko F. V., Stukalov R. S., Gadzhiumarov, R. G., Effekt of No-till Technology on erosion resistance, the population of earthworms and humus content in soil (Vliyaniyetekhnologii No-till naprotivoerozionnuyuustoychivost’, populyatsiyudozhdevykhcherveyisoderzhaniyegumusa v pochve)//Research Journal of Pharmaceutical, Biological and Chemical Sciences. 2018; 9 (2): 766-770. VII Karabutov A. P., Solovichenko V. D., Nikitin V. V. et al., Reproduction of Soil Fertility, Productivity and Energy Efficiency of Crop Rotations [Vosproizvodstvoplodorodiyapochv, produktivnost’ ienergeticheskayaeffektivnost’ sevooborotov]. Zemledelie. 2019; 2: 3-7. VIII Kulintsev V. V., Dridiger V. K., Godunova E. I., Kovtun V. I., Zhukova M. P., Effekt of No-till Technology on The Available Moisture Content and Soil Density in The Crop Rotation [Vliyaniyetekhnologii No-till nasoderzhaniyedostupnoyvlagiiplotnost’ pochvy v sevoob-orote]// Research Journal of Pharmaceutical, Biological and Chemical Sciences. 2017; 8 (6): 795-99. IX Kulintsev V. V., Godunova E. I., Zhelnakova L. I. et al., Next-Gen Agriculture System for Stavropol Krai: Monograph [SistemazemledeliyanovogopokoleniyaStavropol’skogokraya: Monogtafiya]. Stavropol: AGRUS Publishers, Stavropol State Agrarian University, 2013. X Lessiter Frank, 29 reasons why many growers are harvesting higher no-till yields in their fields than some university scientists find in research plots//No-till Farmer. 2015; 44 (2): 8. XI Rodionova O. A. Reproduction and Exchange-Distributive Relations in Farming Entities [Vosproizvodstvoiobmenno-raspredelitel’nyyeotnosheniya v sel’skokhozyaystvennykhorganizatsiyakh]//Economy, Labour, and Control in Agriculture (Ekonomika, trud, upravleniye v sel’skomkhozyaystve). 2010; 1 (2): 24-27. XII Sandu I. S., Svobodin V. A., Nechaev V. I., Kosolapova M. V., and Fedorenko V. F., Agricultural Production Efficiency: Recommended Practices [Effektivnost’ sel’skokhozyaystvennogoproizvodstva (metodicheskiyerekomendatsii)]. Moscow: Rosinforagrotech, 2013. XIII Sotchenko V. S. Modern Corn Cultivation Technologies [Sovremennayatekhnologiyavozdelyvaniya]. Moscow: Rosagrokhim, 2009. View | Download DEVELOPMENT AND TESTING OF AUTONOMOUS PORTABLE SEISMOMETER DESIGNED FOR USE AT ULTRALOW TEMPERATURES IN ARCTIC ENVIRONMENT Authors: Mikhail A. Abaturov,Yuriy V. Sirotinskiy, DOI: https://doi.org/10.26782/jmcms.spl.10/2020.06.00043 Abstract: This paper is concerned with solving one of the issues of the general problem of designing geophysical equipment for the natural climatic environment of the Arctic. The relevance of the topic has to do with an increased global interest in this region. The paper is aimed at considering the basic principles of developing and the procedure of testing seismic instruments for use at ultralow climatic temperatures. In this paper the indicated issue is considered through the example of a seismic module designed for petroleum and gas exploration by passive seismoacoustic methods. The seismic module is a direct-burial portable unit of around 5 kg in weight, designed to continuously measure and record microseismic triaxial orthogonal (ZNE) noise in a range from 0.1 to 45 Hz during several days in autonomous mode. The functional chart of designing the seismic module was considered, and concrete conclusions were made for choosing the necessary components to meet the ultralow-temperature operational requirements. The conclusions made served for developing appropriate seismic module. In this case, the components and tools used included a SAFT MP 176065 xc low-temperature lithium cell, industrial-spec electronic component parts, a Zhaofeng Geophysical ZF-4.5 Chinese primary electrodynamic seismic sensor, housing seal parts made of frost-resistant silicone materials, and finely dispersed silica gel used as water-retaining sorbent to avoid condensation in the housing. The paper also describes a procedure of low-temperature collation tests at the lab using a New Brunswick Scientific freezing plant. The test results proved the operability of the developed equipment at ultralow temperatures down to -55°C. In addition, tests were conducted at low microseismic noises in the actual Arctic environment. The possibility to detect signals in a range from 1 to 10 Hz at the level close to the NLNM limit (the Peterson model) has been confirmed, which allows monitoring and exploring petroleum and gas deposits by passive methods. As revealed by this study, the suggested approaches are efficient in developing high-precision mobile seismic instruments for use at ultralow climatic temperatures. The solution of the considered instrumentation and methodical issues is of great practical significance as a constituent of the generic problem of Arctic exploration. Keywords: Seismic instrumentation,microseismic monitoring,Peterson model,geological exploration,temperature ratings,cooling test, Refference: I. AD797: Ultralow Distortion, Ultralow Noise Op Amp, Analog Devices, Inc., Data Sheet (Rev. K). Analog Devices, Inc. URL: https://www.analog.com/media/en/technical-documentation/data-sheets/AD797.pdf(Date of access September 2, 2019). II. Agafonov, V. M., Egorov, I. V., and Shabalina, A. S. Operating Principles and Technical Characteristics of a Small-Sized Molecular–Electronic Seismic Sensor with Negative Feedback [Printsipyraboty I tekhnicheskiyekharakteristikimalogabaritnogomolekulyarno-elektronnogoseysmodatchika s otritsatel’noyobratnoysvyaz’yu]. SeysmicheskiyePribory (Seismic Instruments). 2014; 50 (1): 1–8. DOI: 10.3103/S0747923914010022. III. Antonovskaya, G., Konechnaya, Ya.,Kremenetskaya, E., Asming, V., Kvaema, T., Schweitzer, J., Ringdal, F. Enhanced Earthquake Monitoring in the European Arctic. Polar Science. 2015; 1 (9): 158-167. IV. Anthony, R. E., Aster, R. C., Wiens, D., Nyblade, Andr., Anandakrishnan, Sr., Huerta, Audr., Winberry, J. P., Wilson, T., and Rowe, Ch. The Seismic Noise Environment of Antarctica. Seismological Research Letters. 2015; 86(1): 89-100. DOI: 10.1785/0220150005 V. Brincker, R., Lago, T. L., Andersen, P., and Ventura, C. Improving the Classical Geophone Sensor Element by Digital Correction. In Conference Proceedings: IMAC-XXIII: A Conference & Exposition on Structural Dynamics Society for Experimental Mechanics, 2005. URL: https://www.researchgate.net/publication/242452637_Improving_the_Classical_Geophone_Sensor_Element_by_Digital_Correction(Date of access September 2, 2019). VI. Bylaw 164 of the State Committee for Construction of the Russian Federation “On adopting amendments to SNiP 31-01-99 “Construction climatology”. URL: https://base.garant.ru/2322381/(Date of access September 2, 2019). VII. Chao Xu, Junbo Wang, Deyong Chen, Jian Chen, Bowen Liu, Wenjie Qi, XichenZheng, Hua Wei, Guoqing Zhang. The Electrochemical Seismometer Based on a Novel Designed.Sensing Electrode for Undersea Exploration. 20th International Conference on Solid-State Sensors, Actuators and Microsystems &Eurosensors XXXIII (TRANSDUCERS &EUROSENSORS XXXIII). IEEE, 2019. DOI: 10.1109/TRANSDUCERS.2019.8808450. VIII. Chebotareva, I. Ya. New algorithms of emission tomography for passive seismic monitoring of a producing hydrocarbon deposit: Part I. Algorithms of processing and numerical simulation [Novyye algoritmyemissionnoyto mografiidlyapassivnogoseysmicheskogomonitoringarazrabatyvayemykhmestorozhdeniyuglevodorodov. Chast’ I: Algoritmyobrabotki I chislennoyemodelirovaniye]. FizikaZemli. 2010; 46(3):187-98. DOI: 10.1134/S106935131003002X IX. Danilov, A. V. and Konechnaya, Ya. V. Analytical comparison of seismic instruments for stationary surveys in the Arctic [Sravnitel’nyyanalizseysmicheskoyapparaturydlyastatsionarnykhnablyudeniy v Arktike]. DSYS. URL: https://dsys.ru/upload/id254_docPDF_FranzJosefLand.pdf(Date of access September 2, 2019). X. Dew point temperature calculator. Maple Tech. International LLC. URL: https://www.calculator.net/dew-point-calculator.html?airtemperature=20&airtemperatureunit=celsius&humidity=0.34&dewpoint=&dewpointunit=celsius&x=51&y=14(Date of access September 2, 2019). XI. Frolov, A. S. Matching of wave fields recorded by different geophysical receivers [Soglasovaniyevolnovykhpoley, poluchennykh s primeneniyemrazlichnoyregistriruyushcheyapparatury]. Abstracts IX International scientific and technical conference competition of young specialists “Geophysics-2013”. Saint-Petersburg: Gubkin University, 2013. URL: https://www.gubkin.ru/faculty/geology_and_geophysics/chairs_and_departments/exploration_geophysics_and_computers_systems/files/2013_SPb_Frolov.pdf. (Date of access September 2, 2019). XII. Gibbons, S. J., Asming, V., Fedorov, A., Fyen, J., Kero, J., Kozlovskaya, E., Kværna, T., Liszka, L., Näsholm, S.P., Raita, T., Roth, M., Tiira, T., Vinogradov, Yu. The European Arctic: A laboratory for seismoacoustic studies. Seism. Res. Letters. 2015; 86 (3): 917–928. XIII. GOST 8.395-80. State system for ensuring the uniformity of measurements. Reference conditions of measurements while calibrating. General requirements [Gosudarstvennayasistemaobespecheniyaedinstvaizmereniy. Normal’nyyeusloviyaizmereniypripoverke. Obshchiyetrebovaniya]. Moscow: Standartinform, 2008. URL: http://gostrf.com/normadata/1/4294821/4294821960.pdf (Date of access September 2, 2019). XIV. Guralp 6TD. Operators’ Guide. Document Number: MAN-T60-0002, Issue J: April, 2017. Guralp Systems Limited. URL: https://www.guralp.com/documents/MAN-T60-0002.pdf (Date of access September 2, 2019). XV. Inshakova, A. S., Barykina, E. S., and Kozlov, V. V. Role of silica gel in adsorption air drying [Rol’ silikagelya v adsorbtsionnoyosushkevozdukha]. AlleyaNauki (Alley of Science). 2017; 15. URL: https://www.alley- science.ru/domains_data/files/November2017/ROL%20SILIKAGELYa%20V%20ADSORBCIONNOY%20OSUShKE%20VOZDUHA.pdf(Date of access September 2, 2019). XVI. Ioffe, D. and Pozdnyakov, P. Searching for Hidden Reserves of Modern Microchip Circuits. Part I [Poiskskrytykhrezervovsovremennykhmikroskhem. Chast’ I].Komponenty I tekhnologii (Components and Technologies). 2015; 4: 144-46. XVII. Jiang Xu, Xi Wang, Ningyi Yuan, Jianning Ding, Si Qin, Joselito M. Razal, Xuehang Wang, ShanhaiGe, Gogotsi, Yu. Extending the low temperature operational limit of Li-ion battery to −80 °C. Energy Storage Materials (IF0). Published 2019-04-27. DOI: 10.1016/j.ensm.2019.04.033. XVIII. Kouznetsov, O. L., Lyasch, Y. F., Chirkin, I. A., Rizanov, E. G., LeRoy, S. D., Koligaev, S. O. Long-term monitoring of microseismic emissions: Earth tides, fracture distribution, and fluid content. SEG, APPG Interpretation. 2016: 4 (2): T191–T204. XIX. Laverov, N. P., Bogoyavlenskiy, V. I., Bogoyavlenskiy, I. V. Fundamental Aspects of Rational Management of the Petroleum and Gas Resources of the Arctic and the Russian Continental Shelf: Strategy, Prospects, and Problems [Fundamental’nyyeaspektyratsional’nogoosvoyeniyaresursovneftiigazaArktiki I shel’faRossii: strategiya, perspektivyi problem].Arktika: ekologiya I ekonomika [Arctic: Ecology and Economy]. 2016; 2 (22): 4-13. XX. Lee, P. Low Noise Amplifier Selection Guide for Optimal Noise Performance, Analog Devices, Inc., AN-940 Application Note. Analog Devices, Inc. URL: https://www.analog.com/media/en/technical-documentation/application-notes/AN-940.pdf(Date of access September 2, 2019). XXI. Markatis, N., Polychronopoulou, K., Tselentis, Ak. Passive seismic tomography: A passive concept actively evolving. First Break. 2012; 30 (7): 83-90. XXII. Matveev, I. V. and Matveeva, N. V. Portable seismic recorder “SEISAR-5” with very low energy consumption for autonomous work in harsh climatic conditions [Portativnyyseysmicheskiyregistrator «Seysar-5» s ochen’ nizkimenergopotrebleniyemdlyaavtonomnoyraboty v slozhnykhklimatic heskikhusloviyakh]. Nauka I tekhnologicheskierazrabotki (Science and Technological Developments). 2017; 96 (3): 33-40. [Special Issue “Applied Geophysics: New Developments and Results. Part 1. Seismology and Seismic Exploration]. DOI: 10.21455/std2017.3-3. XXIII. Mishra, R. The Temperature Ratings of Electronic Parts.Electronics Cooling magazine. URL: http://www.electronics-cooling.com/2004/02/the-temperature-ratings-of-electronic-parts(Date of access September 2, 2019). XXIV. Moore, Sue E.; Stabeno, Phyllis J.; Van Pelt, Thomas I. The Synthesis of Arctic Research (SOAR) project. Deep-Sea Research Part II. 152: 1-7. DOI: 10.1016/j.dsr2.2018.05.013. XXV. MS-SPORT Viscous Silicone Lubricant with Fluoroplastic. ToR2257-010-45540231-2003. OOO VMPAUTO, URL: https://smazka.ru/attachments/get/469/ms-sport-tds.pdf(Date of access September 2, 2019). XXVI. New Brunswick™ Premium -86 °C Freezers. Operating manual. URL: https://www.eppendorf.com/product-media/doc/en/142770_Operating-Manual/New-Brunswick_Freezers_Operating-manual-86-C-Premium-Freezers.pdf(Date of access September 2, 2019). XXVII. New seismic digitizer/recorder for passive seismic monitoring applications. LandTech Enterprises. URL: http://www.landtechsa.com/Images/Instrument/SRi32L/SRi32L.pdf(Date of access September 2, 2019). XXVIII. Parker, T., Winberry, P., Huerta, A., Bainbridge, G., Devanney, P. Direct Burial Broadband Seismic Instrumentation for Polar Environments. Nanometrics Inc. URL: https://www.nanometrics.ca/sites/default/files/2017-11/direct_burial_bb_seismic_instrumentation_for_polar_environments.pdf. (Date of access September 2, 2019). XXIX. Peterson, J. Observation and Modeling of Seismic Background Noise. Albuquerque, New Mexico: US Department of Interior Geological Survey, 1993. XXX. Razinkov, O.G., Sidorov-Biryukov, D. D., Townsend, B., Parker, T., Bainbridge, G., Greiss, R. Strengths and Applications of Direct Burial Seismic Instruments [Preimushchestva I oblastiprimeneniyaseysmicheskikhpriborovdlyapryamoyustanovki v grunt] in Proc. VI Sci. Tech. Conf. “Problems of Complex Geophysical Monitoring of the Russian Far East”, Petropavlovsk-Kamchatskiy: Geophysical Survey, Russian Academy of Sciences, 2017. URL: http://www.emsd.ru/conf2017lib/pdf/techn/razinkov.pdf (Date of access September 2, 2019). XXXI. Roux, Ph., Wathelet, M., Roueff, Ant. The San Andreas Fault revisited through seismic-noise and surface-wave tomography. Geophysical Research Letters. 2011; 38 (13). DOI: 10.1029/2011GL047811. XXXII. Rubber O-ring seals for hydraulic and pneumatic equipment. Specifications [Kol’tsarezinovyyeuplotnitel’nyyekruglogosecheniyadlyagidravlicheskikh I pnevmaticheskikhustroystv. Tekhnicheskiyeusloviya]. GOST 18829-2017 Interstate standard. Moscow: Standartinform, 2017. URL: https://files.stroyinf.ru/Data/645/64562.pdf (Date of access September 2, 2019). XXXIII. Sanina, I., Gabsatarova, I., Chernykh, О.,Riznichenko, О., Volosov, S., Nesterkina, M., Konstantinovskaya, N. The Mikhnevo small aperture array enhances the resolution property of seismological observations on the East European Platform. Journal of Seismology (JOSE). 2011; 15 (3): 545-56. (DOI: 10.1007/sl0950-010-9211-х). XXXIV. SM-3VK Magnetoelectric Seismic Pickup. Specifications. ToR-4314-001-02698826-01. N. Laverov Federal Centre for Integrated Arctic Research, Russian Academy of Sciences. URL: http://fciarctic.ru/index.php?page=ckpg (Date of access September 2, 2019). XXXV. Sobisevich, A. L.,Presnov, D. A.,Agafonov, V. M.,Sobisevich, L. E. Autonomous geohydroacoustic ice buoy of new generation [Vmorazhivayemyyavtonomnyygeogidroakusticheskiy buy novogopokoleniya]. Nauka I tekhnologicheskierazrabotki (Science and Technological Developments). 2018; 97 (1): 25–34. [Special issue “Precise Geophysical Monitoring of Natural Hazards. Part 1. Instruments andTechnologies”]. DOI: 10.21455/ std2018.1-3. XXXVI. Zhukov, Y. V. Issues of resistance and reliability of electronic equipment products to the exposure factors [Voprosystoykosti i nadezhnostiizdeliyradioelektronnoytekhniki k vneshnimvozdeystvuyushchimfaktoram]. Provintsial’nyyenauchnyyezapiski (The journal Provincial scientific proceedings). 2019; 1 (9): 118-124. View | Download COMPARATIVE ANALYSIS OF RESULTS OF TREATMENT OF PATIENTS WITH FOOT PATHOLOGY WHO UNDERWENT WEIL OPEN OSTEOTOMY BY CLASSICAL METHOD AND WITHOUT STEOSYNTHESIS Authors: Yuriy V. Lartsev,Dmitrii A. Rasputin,Sergey D. Zuev-Ratnikov,Pavel V.Ryzhov,Dmitry S. Kudashev,Anton A. Bogdanov, DOI: https://doi.org/10.26782/jmcms.spl.10/2020.06.00044 Abstract: The article considers the problem of surgical correction of the second metatarsal bone length. The article analyzes the results of treatment of patients with excess length of the second metatarsal bones that underwent osteotomy with and without osteosynthesis. The results of treatment of patients who underwent metatarsal shortening due to classical Weil-osteotomy with and without osteosynthesis were analyzed. The first group consisted of 34 patients. They underwent classical Weil osteotomy. The second group included 44 patients in whomosteotomy of the second metatarsal bone were not by the screw. When studying the results of the treatment in the immediate postoperative period, weeks 6, 12, slightly better results were observed in patients of the first group, while one year after surgical treatment the results in both groups were comparable. One year after surgical treatment, there were 2.9% (1 patient) of unsatisfactory results in the first group and 4.5% (2 patients) in the second group. Considering the comparability of the results of treatment in remote postoperative period, the choice of concrete method remains with the operating surgeon. Keywords: Flat feet,hallux valgus,corrective osteotomy,metatarsal bones, Refference: I. A novel modification of the Stainsby procedure: surgical technique and clinical outcome [Text] / E. Concannon, R. MacNiocaill, R. Flavin [et al.] // Foot Ankle Surg. – 2014. – Dec., Vol. 20(4). – P. 262–267. II. Accurate determination of relative metatarsal protrusion with a small intermetatarsal angle: a novel simplified method [Text] / L. Osher, M.M. Blazer, S. Buck [et al.] // J. Foot Ankle Surg. – 2014. – Sep.-Oct., Vol. 53(5). – P. 548–556. III. Argerakis, N.G. The radiographic effects of the scarf bunionectomy on rearfoot alignment [Text] / N.G. Argerakis, L.Jr. Weil, L.S. Sr. Weil // Foot Ankle Spec. – 2015. – Apr., Vol. 8(2). – P. 89–94. IV. Bauer, T. Percutaneous forefoot surgery [Text] / T. Bauer // Orthop. Traumatol. Surg. Res. – 2014. – Feb., Vol. 100(1 Suppl.). – P. S191–S204. V. Biomechanical Evaluation of Custom Foot Orthoses for Hallux Valgus Deformity [Text] // J. Foot Ankle Surg. – 2015. – Sep.-Oct., Vol.54(5). – P. 852–855. VI. Chopra, S. Characterization of gait in female patients with moderate to severe hallux valgus deformity [Text] / S. Chopra, K. Moerenhout, X. Crevoisier // Clin. Biomech. (Bristol, Avon). – 2015. – Jul., Vol. 30(6). – P. 629–635. VII. Computer assisted planning and custom-made surgical guide for malunited pronation deformity after first metatarsophalangeal joint arthrodesis in rheumatoid arthritis: a case report [Text] / M. Hirao, S. Ikemoto, H. Tsuboi [et al.] // Comput. Aided Surg. – 2014. – Vol. 19(1-3). – P. 13–19. VIII. Correlation between static radiographic measurements and intersegmental angular measurements during gait using a multisegment foot model [Text] / D.Y. Lee, S.G. Seo, E.J. Kim [et al.] // Foot Ankle Int. – 2015. – Jan., Vol.36(1). – P. 1–10. IX. Correlative study between length of first metatarsal and transfer metatarsalgia after osteotomy of first metatarsal [Text]: [Article in Chinese] / F.Q. Zhang, B.Y. Pei, S.T. Wei [et al.] // Zhonghua Yi XueZaZhi. – 2013. – Nov. 19, Vol. 93(43). – P. 3441–3444. X. Dave, M.H. Forefoot Deformity in Rheumatoid Arthritis: A Comparison of Shod and Unshod Populations [Text] / M.H. Dave, L.W. Mason, K. Hariharan // Foot Ankle Spec. – 2015. – Oct., Vol. 8(5). – P. 378–383. XI. Does arthrodesis of the first metatarsophalangeal joint correct the intermetatarsal M1M2 angle? Analysis of a continuous series of 208 arthrodeses fixed with plates [Text] / F. Dalat, F. Cottalorda, M.H. Fessy [et al.] // Orthop. Traumatol. Surg. Res. – 2015. – Oct., Vol. 101(6). – P. 709–714. XII. Dynamic plantar pressure distribution after percutaneous hallux valgus correction using the Reverdin-Isham osteotomy [Text]: [Article in Spanish] / G. Rodríguez-Reyes, E. López-Gavito, A.I. Pérez-Sanpablo [et al.] // Rev. Invest. Clin. – 2014. – Jul., Vol. 66, Suppl. 1. – P. S79-S84. XIII. Efficacy of Bilateral Simultaneous Hallux Valgus Correction Compared to Unilateral [Text] / A.V. Boychenko, L.N. Solomin, S.G. Parfeyev [et al.] // Foot Ankle Int. – 2015. – Nov., Vol. 36(11). – P. 1339–1343. XIV. Endolog technique for correction of hallux valgus: a prospective study of 30 patients with 4-year follow-up [Text] / C. Biz, M. Corradin, I. Petretta [et al.] // J. OrthopSurg Res. – 2015. – Jul. 2, № 10. – P. 102. XV. First metatarsal proximal opening wedge osteotomy for correction of hallux valgus deformity: comparison of straight versus oblique osteotomy [Text] / S.H. Han, E.H. Park, J. Jo [et al.] // Yonsei Med. J. – 2015. – May, Vol. 56(3). – P. 744–752. XVI. Long-term outcome of joint-preserving surgery by combination metatarsal osteotomies for shortening for forefoot deformity in patients with rheumatoid arthritis [Text] / H. Niki, T. Hirano, Y. Akiyama [et al.] // Mod. Rheumatol. – 2015. – Sep., Vol. 25(5). – P. 683–638. XVII. Maceira, E. Transfer metatarsalgia post hallux valgus surgery [Text] / E. Maceira, M. Monteagudo // Foot Ankle Clin. – 2014. – Jun., Vol. 19(2). – P.285–307. XVIII. Nielson, D.L. Absorbable fixation in forefoot surgery: a viable alternative to metallic hardware [Text] / D.L. Nielson, N.J. Young, C.M. Zelen // Clin. Podiatr. Med. Surg. – 2013. – Jul., Vol. 30(3). – P. 283–293 XIX. Patient’s satisfaction after outpatient forefoot surgery: Study of 619 cases [Text] / A. Mouton, V. Le Strat, D. Medevielle [et al.] // Orthop. Traumatol. Surg. Res. – 2015. – Oct., Vol. 101(6 Suppl.). – P. S217–S220. XX. Preference of surgical procedure for the forefoot deformity in the rheumatoid arthritis patients–A prospective, randomized, internal controlled study [Text] / M. Tada, T. Koike, T. Okano [et al.] // Mod. Rheumatol. – 2015. – May., Vol. 25(3). – P.362–366. XXI. Redfern, D. Percutaneous Surgery of the Forefoot [Text] / D. Redfern, J. Vernois, B.P. Legré // Clin. Podiatr. Med. Surg. – 2015. – Jul., Vol. 32(3). – P. 291–332. XXII. Singh, D. Bullous pemphigoid after bilateral forefoot surgery [Text] / D. Singh, A. Swann // Foot Ankle Spec. – 2015. – Feb., Vol. 8(1). – P. 68–72. XXIII. Treatment of moderate hallux valgus by percutaneous, extra-articular reverse-L Chevron (PERC) osteotomy [Text] / J. Lucas y Hernandez, P. Golanó, S. Roshan-Zamir [et al.] // Bone Joint J. – 2016. – Mar., Vol. 98-B(3). – P. 365–373. XXIV. Weil, L.Jr. Scarf osteotomy for correction of hallux abducto valgus deformity [Text] / L.Jr. Weil, M. Bowen // Clin. Podiatr. Med. Surg. – 2014. – Apr., Vol.31(2). – P. 233–246. View | Download QUANTITATIVE ULTRASONOGRAPHY OF THE STOMACH AND SMALL INTESTINE IN HEALTHYDOGS Authors: Roman A. Tcygansky,Irina I. Nekrasova,Angelina N. Shulunova,Alexander I.Sidelnikov, DOI: https://doi.org/10.26782/jmcms.spl.10/2020.06.00045 Abstract: Purpose.To determine the quantitative echogenicity indicators (and their ratio) of the layers of stomach and small intestine wall in healthy dogs. Methods. A prospective 3-year study of 86 healthy dogs (aged 1-7 yrs) of different breeds and of both sexes. Echo homogeneity and echogenicity of the stomach and intestines wall were determined by the method of Silina, T.L., et al. (2010) in absolute values ​​of average brightness levels of ultrasound image pixels using the 8-bit scale with 256 shades of gray. Results. Quantitative echogenicity indicators of the stomach and the small intestine wall in dogs were determined. Based on the numerical values ​​characterizing echogenicity distribution in each layer of a separate structure of the digestive system, the coefficient of gastric echogenicity is determined as 1:2.4:1.1 (mucosa/submucosa/muscle layers, respectively), the coefficient of duodenum and jejunum echogenicity is determined as 1:3.5:2 and that of ileum is 1:1.8:1. Clinical significance. The echogenicity coefficient of the wall of the digestive system allows an objective assessment of the stomach and intestines wall and can serve as the basis for a quantitative assessment of echogenicity changes for various pathologies of the digestive system Keywords: Ultrasound (US),echogenicity,echogenicity coefficient,digestive system,dogs,stomach,intestines, Refference: I. Agut, A. Ultrasound examination of the small intestine in small animals // Veterinary focus. 2009.Vol. 19. No. 1. P. 20-29. II. Bull. 4.RF patent 2398513, IPC51A61B8 / 00 A61B8 / 14 (2006.01) A method for determining the homoechogeneity and the degree of echogenicity of an ultrasound image / T. Silina, S. S. Golubkov. – No. 2008149311/14; declared 12/16/2008; publ. 09/10/2010 III. Choi, M., Seo, M., Jung, J., Lee, K., Yoon, J., Chang, D., Park, RD. Evaluation of canine gastric motility with ultrasonography // J. of Veterinary Medical Science. – 2002. Vol. 64. – № 1. – P. 17-21. IV. Delaney, F., O’Brien, R.T., Waller, K.Ultrasound evaluation of small bowel thickness compared to weight in normal dogs // Veterinary Radiology and Ultrasound. 2003 Vol. 44, № 5. Р 577-580. V. Diana, A., Specchi, S., Toaldo, M.B., Chiocchetti, R., Laghi, A., Cipone, M. Contrast-enhanced ultrasonography of the small bowel in healthy cats // Veterinary Radiology and Ultrasound. – 2011. – Vol. 52, № 5. – Р. 555-559. VI. Garcia, D.A.A., Froes, T.R. Errors in abdominal ultrasonography in dogs and cats // J. of Small Animal Practice. – 2012. Vol. 53. – № 9. – P. 514-519. VII. Garcia, D.A.A., Froes, T.R. Importance of fasting in preparing dogs for abdominal ultrasound examination of specific organs // J. of Small Animal Practice. – 2014. Vol. 55. – № 12. – P. 630-634. VIII. Gaschen, L., Granger, L.A., Oubre, O., Shannon, D., Kearney, M., Gaschen, F. The effects of food intake and its fat composition on intestinal echogenicity in healthy dogs // Veterinary Radiology and Ultrasound. 2016. Vol. 57. № 5. P. 546-550 IX. Gaschen, L., Kircher, P., Stussi, A., Allenspach, K., Gaschen, F., Doherr, M., Grone, A. Comparison of ultrasonographic findings with clinical activity index (CIBDAI) and diagnosis in dogs with chronic enteropathies // Veterinary radiology and ultrasound. – 2008. – Vol. 49. – № 1. – Р. 56-64. X. Gil, E.M.U. Garcia, D.A.A. Froes, T.R. In utero development of the fetal intestine: Sonographic evaluation and correlation with gestational age and fetal maturity in dogs // Theriogenology. 2015. Vol. 84, №5. Р. 681-686. XI. Gladwin, N.E. Penninck, D.G., Webster, C.R.L. Ultrasonographic evaluation of the thickness of the wall layers in the intestinal tract of dogs // American Journal of Veterinary Research. 2014. Vol. 75, №4. Р. 349-353. XII. Gory, G., Rault, D.N., Gatel, L, Dally, C., Belli, P., Couturier, L., Cauvin, E. Ultrasonographic characteristics of the abdominal esophagus and cardia in dogs // Veterinary Radiology and Ultrasound. 2014. Vol. 55, № 5. P. 552-560. XIII. Günther, C.S. Lautenschläger, I.E., Scholz, V.B. Assessment of the inter- and intraobserver variability for sonographical measurement of intestinal wall thickness in dogs without gastrointestinal diseases | [Inter-und Intraobserver-Variabilitätbei der sonographischenBestimmung der Darmwanddicke von HundenohnegastrointestinaleErkrankungen] // Tierarztliche Praxis Ausgabe K: Kleintiere – Heimtiere. 2014. Vol. 42 №2. Р. 71-78. XIV. Hanazono, K., Fukumoto, S., Hirayama, K., Takashima, K., Yamane, Y., Natsuhori, M., Kadosawa, T., Uchide, T. Predicting Metastatic Potential of gastrointestinal stromal tumors in dog by ultrasonography // J. of Veterinary Medical Science. – 2012. Vol. 74. – № 11. – P. 1477-1482. XV. Heng, H.G., Lim, Ch.K., Miller, M.A., Broman, M.M.Prevalence and significance of an ultrasonographic colonic muscularishyperechoic band paralleling the serosal layer in dogs // Veterinary Radiology and Ultrasound. 2015. Vol. 56 № 6. P. 666-669. XVI. Ivančić, M., Mai, W. Qualitative and quantitative comparison of renal vs. hepatic ultrasonographic intensity in healthy dogs // Veterinary Radiology and Ultrasound. 2008. Vol. 49. № 4. Р. 368-373. XVII. Lamb, C.R., Mantis, P. Ultrasonographic features of intestinal intussusception in 10 dogs // J. of Small Animal Practice. – 2008. Vol. 39. – № 9. – P. 437-441. XVIII. Le Roux, A. B., Granger, L.A., Wakamatsu, N, Kearney, M.T., Gaschen, L.Ex vivo correlation of ultrasonographic small intestinal wall layering with histology in dogs // Veterinary Radiology and Ultrasound.2016. Vol. 57. № 5. P. 534-545. XIX. Nielsen, T. High-frequency ultrasound of Peyer’s patches in the small intestine of young cats / T. Nielsen [et al.] // Journal of Feline Medicine and Surgery. – 2015. – Vol. 18, № 4. – Р. 303-309. XX. PenninckD.G. Gastrointestinal tract. In Nyland T.G., Mattoon J.S. (eds): Small Animal Diagnostic Ultrasound. Philadelphia: WB Saunders. 2002, 2nd ed. Р. 207-230. XXI. PenninckD.G. Gastrointestinal tract. In: PenninckD.G.,d´Anjou M.A. Atlas of Small Animal Ultrasonography. Blackwell Publishing, Iowa. 2008. Р. 281-318. XXII. Penninck, D.G., Nyland, T.G., Kerr, L.Y., Fisher, P.E. Ultrasonographic evaluation of gastrointestinal diseases in small animals // Veterinary Radiology. 1990. Vol. 31. №3. P. 134-141. XXIII. Penninck, D.G.,Webster, C.R.L.,Keating, J.H. The sonographic appearance of intestinal mucosal fibrosis in cats // Veterinary Radiology and Ultrasound. – 2010. – Vol. 51, № 4. – Р. 458-461. XXIV. Pollard, R.E.,Johnson, E.G., Pesavento, P.A., Baker, T.W., Cannon, A.B., Kass, P.H., Marks, S.L. Effects of corn oil administered orally on conspicuity of ultrasonographic small intestinal lesions in dogs with lymphangiectasia // Veterinary Radiology and Ultrasound. 2013. Vol. 54. № 4. P. 390-397. XXV. Rault, D.N., Besso, J.G., Boulouha, L., Begon, D., Ruel, Y. Significance of a common extended mucosal interface observed in transverse small intestine sonograms // Veterinary Radiology and Ultrasound. 2004. Vol. 45. №2. Р. 177-179. XXVI. Sutherland-Smith, J., Penninck, D.G., Keating, J.H., Webster, C.R.L. Ultrasonographic intestinal hyperechoic mucosal striations in dogs are associated with lacteal dilation // Veterinary Radiology and Ultrasound. – 2007. Vol. 48. – № 1. – P. 51-57. View | Download EVALUATION OF ADAPTIVE POTENTIAL IN MEDICAL STUDENTS IN THE CONTEXT OF SEASONAL DYNAMICS Authors: Larisa A. Merdenova,Elena A. Takoeva,Marina I. Nartikoeva,Victoria A. Belyayeva,Fatima S. Datieva,Larisa R. Datieva, DOI: https://doi.org/10.26782/jmcms.spl.10/2020.06.00046 Abstract: The aim of this work was to assess the functional reserves of the body to quantify individual health; adaptation, psychophysiological characteristics of the health quality of medical students in different seasons of the year. When studying the temporal organization of physiological functions, the rhythm parameters of physiological functions were determined, followed by processing the results using the Cosinor Analysis program, which reveals rhythms with an unknown period for unequal observations, evaluates 5 parameters of sinusoidal rhythms (mesor, amplitude, acrophase, period, reliability). The essence of desynchronization is the mismatch of circadian rhythms among themselves or destruction of the rhythms architectonics (instability of acrophases or their disappearance). Desynchronization with respect to the rhythmic structure of the body is of a disregulatory nature, most pronounced in pathological desynchronization. High neurotism, increased anxiety reinforces the tendency to internal desynchronization, which increases with stress. During examination stress, students experience a decrease in the stability of the temporary organization of the biosystem and the tension of adaptive mechanisms develops, which affects attention, mental performance and the quality of adaptation to the educational process. Time is shortened and the amplitude of the “initial minute” decreases, personal and situational anxiety develops, and the level of psychophysiological adaptation decreases. The results of the work are priority because they can be used in assessing quality and level of health. Keywords: Desynchronosis,biorhythms,psycho-emotional stress,mesor,acrophase,amplitude,individual minute, Refference: I. Arendt, J., Middleton, B. Human seasonal and circadian studies in Antarctica (Halley, 75_S) – General and Comparative Endocrinology. 2017: 250-259. (http://dx.doi.org/10.1016/j.ygcen.2017.05.010). II. BalandinYu.P. A brief methodological guide on the use of the agro-industrial complex “Health Sources” / Yu.P. Balandin, V.S. Generalov, V.F. Shishlov. Ryazan, 2007. III. Buslovskaya L.K. Adaptation reactions in students at exam stress/ L.K. Buslovskaya, Yu.P. Ryzhkova. Scientific bulletin of Belgorod State University. Series: Natural Sciences. 2011;17(21):46-52. IV. Chutko L. S. Sindromjemocionalnogovygoranija – Klinicheskie I psihologicheskieaspekty./ L.S Chutko. Moscow: MEDpress-inform, 2013. V. Eroshina K., Paul Wilkinson, Martin Mackey. The role of environmental and social factors in the occurrence of diseases of the respiratory tract in children of primary school age in Moscow. Medicine. 2013:57-71. VI. Fagrell B. “Microcirculation of the Skin”. The physiology and pharmacology of the microcirculation. 2013:423. VII. Gurova O.A. Change in blood microcirculation in students throughout the day. New research. 2013; 2 (35):66-71. VIII. Khetagurova L.G. – Stress/Ed. L.G. Khetagurov. Vladikavkaz: Project-Press Publishing House, 2010. IX. Khetagurova L.G., Urumova L.T. et al. Stress (chronomedical aspects). International Journal of Experimental Education 2010; 12: 30-31. X. Khetagurova L.G., Salbiev K.D., Belyaev S.D., Datieva F.S., Kataeva M.R., Tagaeva I.R. Chronopathology (experimental and clinical aspects/ Ed. L.G. Khetagurov, K.D. Salbiev, S.D.Belyaev, F.S. Datiev, M.R. Kataev, I.R. Tagaev. Moscow: Science, 2004. XI. KlassinaS.Ya. Self-regulatory reactions in the microvasculature of the nail bed of fingers in person with psycho-emotional stress. Bulletin of new medical technologies, 2013; 2 (XX):408-412. XII. Kovtun O.P., Anufrieva E.V., Polushina L.G. Gender-age characteristics of the component composition of the body in overweight and obese schoolchildren. Medical Science and Education of the Urals. 2019; 3:139-145. XIII. Kuchieva M.B., Chaplygina E.V., Vartanova O.T., Aksenova O.A., Evtushenko A.V., Nor-Arevyan K.A., Elizarova E.S., Efremova E.N. A comparative analysis of the constitutional features of various generations of healthy young men and women in the Rostov Region. Modern problems of science and education. 2017; 5:50-59. XIV. Mathias Adamsson1, ThorbjörnLaike, Takeshi Morita – Annual variation in daily light expo-sure and circadian change of melatonin and cortisol consent rations at a northern latitude with large seasonal differences in photoperiod length – Journal of Physiological Anthropology. 2017; 36: 6 – 15. XV. Merdenova L.A., Tagaeva I.R., Takoeva E.A. Features of the study of biological rhythms in children. The results of fundamental and applied research in the field of natural and technical sciences. Materials of the International Scientific and Practical Conference. Belgorod, 2017, pp. 119-123. XVI. Ogarysheva N.V. The dynamics of mental performance as a criterion for adapting to the teaching load. Bulletin of the Samara Scientific Center of the Russian Academy of Sciences. 2014;16:5 (1): S.636-638. XVII. Pekmezovi T. Gene-environment interaction: A genetic-epidemiological approach. Journal of Medical Biochemistry. 2010;29:131-134. XVIII. Rapoport S.I., Chibisov S.M. Chronobiology and chronomedicine: history and prospects/Ed. S.M. Chibisov, S.I. Rapoport ,, M.L. Blagonravova. Chronobiology and Chronomedicine: Peoples’ Friendship University of Russia (RUDN) Press. Moscow, 2018. XIX. Roustit M., Cracowski J.L. “Non-invasive assessment of skin microvascular function in humans: an insight into methods” – Microcirculation 2012; 19 (1): 47-64. XX. Rud V.O., FisunYu.O. – References of the circadian desinchronosis in students. Ukrainian Bulletin of Psychoneurology. 2010; 18(2) (63): 74-77. XXI. Takoeva Z. A., Medoeva N. O., Berezova D. T., Merdenova L. A. et al. Long-term analysis of the results of chronomonitoring of the health of the population of North Ossetia; Vladikavkaz Medical and Biological Bulletin. 2011; 12(12,19): 32-38. XXII. Urumova L.T., Tagaeva I.R., Takoeva E.A., Datieva L.R. – The study of some health indicators of medical students in different periods of the year. Health and education in the XXI century. 2016; 18(4): 94-97. XXIII. Westman J. – Complex diseases. In: Medical genetics for the modern clinician. USA: Lippincott Williams & Wilkins, 2006. XXIV. Yadrischenskaya T.V. Circadian biorhythms of students and their importance in educational activities. Problems of higher education. Pacific State University Press. 2016; 2:176-178. View | Download TRIADIC COMPARATIVE ANALYSIS Authors: Stanislav A.Kudzh,Victor Ya. Tsvetkov, DOI: https://doi.org/10.26782/jmcms.spl.10/2020.06.00047 Abstract: The present study of comparison methods based on the triadic model introduces the following concepts: the relation of comparability and the relation of comparison, and object comparison and attributive comparison. The difference between active and passive qualitative comparison is shown, two triadic models of passive and active comparison and models for comparing two and three objects are described. Triadic comparison models are proposed as an alternative to dyadic comparison models. Comparison allows finding the common and the different; this approach is proposed for the analysis of the nomothetic and ideographic method of obtaining knowledge. The nomothetic method identifies and evaluates the general, while the ideographic method searches for unique in parameters and in combinations of parameters. Triadic comparison is used in systems and methods of argumentation, as well as in the analysis of consistency/inconsistency. Keywords: Comparative analysis,dyad,triad,triadic model,comparability relation,object comparison,attributive comparison,nomothetic method,ideographic method, Refference: I. AltafS., Aslam.M.Paired comparison analysis of the van Baarenmodel using Bayesian approach with noninformativeprior.Pakistan Journal of Statistics and Operation Research 8(2) (2012) 259{270. II. AmooreJ. E., VenstromD Correlations between stereochemical assessments and organoleptic analysis of odorous compounds. Olfaction and Taste (2016) 3{17. III. BarnesJ., KlingerR. Embedding projection for targeted cross-lingual sentiment: model comparisons and a real-world study. Journal of Artificial Intelligence Research 66 (2019) 691{742. doi.org/10.1613/jair.1.11561 IV. Castro-SchiloL., FerrerE.Comparison of nomothetic versus idiographic-oriented methods for making predictions about distal outcomes from time series data. Multivariate Behavioral Research 48(2) (2013) 175{207. V. De BonaG.et al. Classifying inconsistency measures using graphs. Journal of Artificial Intelligence Research 66 (2019) 937{987. VI. FideliR. La comparazione. Milano: Angeli, 1998. VII. GordonT. F., PrakkenH., WaltonD. The Carneades model of argument and burden of proof. Artificial Intelligence 10(15) (2007) 875{896. VIII. GrenzS.J. The social god and the relational self: A Triad theology of the imago Dei. Westminster: John Knox Press, 2001. IX. HermansH.J. M.On the integration of nomothetic and idiographic research methods in the study of personal meaning.Journal of Personality 56(4) (1988) 785{812. X. JamiesonK. G., NowakR. Active ranking using pairwise comparisons.Advances in Neural Information Processing Systems (2011) 2240{2248. XI. JongsmaC.Poythress’s triad logic: a review essay. Pro Rege 42(4) (2014) 6{15. XII. KärkkäinenV.M. Trinity and Religious Pluralism: The Doctrine of the Trinity in Christian Theology of Religions. London: Routledge, 2017. XIII. KudzhS. A., TsvetkovV.Ya. Triadic systems. Russian Technology Magazine 7(6) (2019) 74{882. XIV. NelsonK.E.Some observations from the perspective of the rare event cognitive comparison theory of language acquisition.Children’s Language 6 (1987) 289{331. XV. NiskanenA., WallnerJ., JärvisaloM.Synthesizing argumentation frameworks from examples. Journal of Artificial Intelligence Research 66 (2019) 503{554. XVI. PührerJ.Realizability of three-valued semantics for abstract dialectical frameworks.Artificial Intelligence 278 (2020) 103{198. XVII. SwansonG.Frameworks for comparative research: structural anthropology and the theory of action. In: Vallier, Ivan (Ed.). Comparative methods in sociology: essays on trends and applications.Berkeley: University of California Press, 1971 141{202. XVIII. TsvetkovV.Ya.Worldview model as the result of education.World Applied Sciences Journal 31(2) (2014) 211{215. XIX. TsvetkovV. Ya. Logical analysis and variable scales. Slavic Forum 4(22) (2018) 103{109. XX. Wang S. et al. Transit traffic analysis zone delineating method based on Thiessen polygon. Sustainability 6(4) (2014) 1821{1832. View | Download DEVELOPING TECHNOLOGY OF CREATING WEAR-RESISTANT CERAMIC COATING FOR ICE CYLINDER". JOURNAL OF MECHANICS OF CONTINUA AND MATHEMATICAL SCIENCES spl10, № 1 (2020). http://dx.doi.org/10.26782/jmcms.spl.10/2020.06.00048.

Full text
APA, Harvard, Vancouver, ISO, and other styles
We offer discounts on all premium plans for authors whose works are included in thematic literature selections. Contact us to get a unique promo code!