commit be95938580abe90f285dbc66eb820aa2c34f7bff Author: erjemin Date: Fri Mar 27 17:41:09 2026 +0300 chore: import legacy 1998 site snapshot diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..9f7fa99 Binary files /dev/null and b/.DS_Store differ diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..ab1f416 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/1998-cad-ru.iml b/.idea/1998-cad-ru.iml new file mode 100644 index 0000000..c956989 --- /dev/null +++ b/.idea/1998-cad-ru.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/copilot.data.migration.ask2agent.xml b/.idea/copilot.data.migration.ask2agent.xml new file mode 100644 index 0000000..1f2ea11 --- /dev/null +++ b/.idea/copilot.data.migration.ask2agent.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..18b33cb --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..e481cbe --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 0000000..f324872 --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/configs/cadpoin-ru_1998.conf b/configs/cadpoin-ru_1998.conf new file mode 100644 index 0000000..524e187 --- /dev/null +++ b/configs/cadpoin-ru_1998.conf @@ -0,0 +1,79 @@ +# Разработка сайта LPON.RU +# == Конфикурационный файл nginx cadpoint.conf + +# Описываем апстрим-потоки которые должен подключить Nginx +# Для каждого сайта надо настроить свйо поток, со своим уникальным именем. +# Если будете настраивать несколько python (django) сайтов - измените название upstream + +# конфигурируем сервер +server { + server_name 1998.cadpoint.ru; # доменное имя сайта + # listen 443 ssl http2; # managed by Certbot + listen 80; # managed by Certbot + + root /home/web/cadpoint-ru_1998/html; + location = / { + try_files /index.htm =404; + } + + charset koi8-r; # кодировка по умолчанию + source_charset koi8-r; + access_log /home/web/cadpoint-ru_1998/logs/cadpoint-ru_1998-access.log; # логи с доступом + error_log /home/web/cadpoint-ru_1998/logs/cadpoint-ru_1998-error.log; # логи с ошибками + client_max_body_size 100M; # максимальный объем файла для загрузки на сайт (max upload size) + error_page 404 /404.html; + error_page 500 /500.html; + + # location /robots.txt { root /home/web/cadpoint-ru_1998/html; } # Расположение robots.txt + # location /favicon.ico { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon.ico + # location /favicon.gif { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon + # location /favicon.png { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon + # location /favicon.svg { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon + # location /author.txt { root /home/web/cadpoint-ru_1998/html; } # Расположение author.txt + location = /404.html { + root /home/web/cadpoint-ru_1998/html/index.html; + internal; + } + location = /500.html { + root /home/web/cadpoint-ru_1998/html/index.html; + internal; + } + # location ~ \.(html|htm|ico|svg|png|gif|jpg|jpeg)$ { + # root /home/web/cadpoint-ru_1998/public; # Расположение статичных *.xml, *.html и *.txt + # } + +} + +# переадресация с www на "без" www +server { + server_name www.1998.cadpoint.ru; + + listen 443 ssl; # managed by Certbot + ssl_certificate /etc/letsencrypt/live/1998.cadpoint.ru/fullchain.pem; # managed by Certbot + ssl_certificate_key /etc/letsencrypt/live/1998.cadpoint.ru/privkey.pem; # managed by Certbot + include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot + ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot + + return 301 http://1998.cadpoint.ru$request_uri; +} + +server { + server_name 1998.cadpoint.ru; + + listen 443 ssl; # managed by Certbot + ssl_certificate /etc/letsencrypt/live/1998.cadpoint.ru/fullchain.pem; # managed by Certbot + ssl_certificate_key /etc/letsencrypt/live/1998.cadpoint.ru/privkey.pem; # managed by Certbot + include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot + ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot + + return 301 http://1998.cadpoint.ru$request_uri; + } + +server { + server_name www.1998.cadpoint.ru; + listen 80; + if ($host = www.1998.cadpoint.ru) { + return 301 http://$host$request_uri; + } # managed by Certbot + +} \ No newline at end of file diff --git a/configs/cadpoin-ru_1998_w_ssl.conf b/configs/cadpoin-ru_1998_w_ssl.conf new file mode 100644 index 0000000..4e75c9e --- /dev/null +++ b/configs/cadpoin-ru_1998_w_ssl.conf @@ -0,0 +1,83 @@ +# Разработка сайта LPON.RU +# == Конфикурационный файл nginx cadpoint.conf + +# Описываем апстрим-потоки которые должен подключить Nginx +# Для каждого сайта надо настроить свйо поток, со своим уникальным именем. +# Если будете настраивать несколько python (django) сайтов - измените название upstream + +# конфигурируем сервер +server { + server_name 1998.cadpoint.ru; # доменное имя сайта + # listen 443 ssl http2; # managed by Certbot + listen 443 ssl; # managed by Certbot + root /home/web/cadpoint-ru_1998/html; + location = / { + try_files /index.htm =404; + # try_files /index.htm; + } + ssl_certificate /etc/letsencrypt/live/1998.cadpoint.ru/fullchain.pem; # managed by Certbot + ssl_certificate_key /etc/letsencrypt/live/1998.cadpoint.ru/privkey.pem; # managed by Certbot + include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot + ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot + + charset koi8-r; # кодировка по умолчанию + access_log /home/web/cadpoint-ru_1998/logs/cadpoint-ru_1998-access.log; # логи с доступом + error_log /home/web/cadpoint-ru_1998/logs/cadpoint-ru_1998-error.log; # логи с ошибками + client_max_body_size 100M; # максимальный объем файла для загрузки на сайт (max upload size) + error_page 404 /404.html; + error_page 500 /500.html; + + # location /robots.txt { root /home/web/cadpoint-ru_1998/html; } # Расположение robots.txt + # location /favicon.ico { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon.ico + # location /favicon.gif { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon + # location /favicon.png { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon + # location /favicon.svg { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon + # location /author.txt { root /home/web/cadpoint-ru_1998/html; } # Расположение author.txt + location = /404.html { + root /home/web/cadpoint-ru_1998/html/index.html; + internal; + } + location = /500.html { + root /home/web/cadpoint-ru_1998/html/index.html; + internal; + } + # location ~ \.(html|htm|ico|svg|png|gif|jpg|jpeg)$ { + # root /home/web/cadpoint-ru_1998/public; # Расположение статичных *.xml, *.html и *.txt + # } +} + +# переадресация с www на "без" www +server { + server_name www.1998.cadpoint.ru; + return 301 http://1998.cadpoint.ru$request_uri; + + listen 443 ssl; # managed by Certbot + ssl_certificate /etc/letsencrypt/live/1998.cadpoint.ru/fullchain.pem; # managed by Certbot + ssl_certificate_key /etc/letsencrypt/live/1998.cadpoint.ru/privkey.pem; # managed by Certbot + include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot + ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot +} +server { + if ($host = 1998.cadpoint.ru) { + return 301 https://$host$request_uri; + } # managed by Certbot + + + server_name 1998.cadpoint.ru; + listen 80; + return 404; # managed by Certbot + + +} +server { + if ($host = www.1998.cadpoint.ru) { + return 301 https://$host$request_uri; + } # managed by Certbot + + + server_name www.1998.cadpoint.ru; + listen 80; + return 404; # managed by Certbot + + +} \ No newline at end of file diff --git a/html/.DS_Store b/html/.DS_Store new file mode 100644 index 0000000..5222c35 Binary files /dev/null and b/html/.DS_Store differ diff --git a/html/_b/0co.gif b/html/_b/0co.gif new file mode 100644 index 0000000..20c9a4f Binary files /dev/null and b/html/_b/0co.gif differ diff --git a/html/_b/0ex.gif b/html/_b/0ex.gif new file mode 100644 index 0000000..885226b Binary files /dev/null and b/html/_b/0ex.gif differ diff --git a/html/_b/0fr.gif b/html/_b/0fr.gif new file mode 100644 index 0000000..ed39598 Binary files /dev/null and b/html/_b/0fr.gif differ diff --git a/html/_b/0l.gif b/html/_b/0l.gif new file mode 100644 index 0000000..d8afe99 Binary files /dev/null and b/html/_b/0l.gif differ diff --git a/html/_b/0nw.gif b/html/_b/0nw.gif new file mode 100644 index 0000000..b3dfeeb Binary files /dev/null and b/html/_b/0nw.gif differ diff --git a/html/_b/0ot.gif b/html/_b/0ot.gif new file mode 100644 index 0000000..ec85b09 Binary files /dev/null and b/html/_b/0ot.gif differ diff --git a/html/_b/0pb.gif b/html/_b/0pb.gif new file mode 100644 index 0000000..81e0b6d Binary files /dev/null and b/html/_b/0pb.gif differ diff --git a/html/_b/0pr.gif b/html/_b/0pr.gif new file mode 100644 index 0000000..d4a0c94 Binary files /dev/null and b/html/_b/0pr.gif differ diff --git a/html/_b/0r.gif b/html/_b/0r.gif new file mode 100644 index 0000000..07d4171 Binary files /dev/null and b/html/_b/0r.gif differ diff --git a/html/_b/0sh.gif b/html/_b/0sh.gif new file mode 100644 index 0000000..d623b71 Binary files /dev/null and b/html/_b/0sh.gif differ diff --git a/html/_b/1.gif b/html/_b/1.gif new file mode 100644 index 0000000..81af24b Binary files /dev/null and b/html/_b/1.gif differ diff --git a/html/_b/1co.gif b/html/_b/1co.gif new file mode 100644 index 0000000..1b449be Binary files /dev/null and b/html/_b/1co.gif differ diff --git a/html/_b/1ex.gif b/html/_b/1ex.gif new file mode 100644 index 0000000..7875740 Binary files /dev/null and b/html/_b/1ex.gif differ diff --git a/html/_b/1fr.gif b/html/_b/1fr.gif new file mode 100644 index 0000000..787fd70 Binary files /dev/null and b/html/_b/1fr.gif differ diff --git a/html/_b/1l.gif b/html/_b/1l.gif new file mode 100644 index 0000000..79f6f07 Binary files /dev/null and b/html/_b/1l.gif differ diff --git a/html/_b/1nw.gif b/html/_b/1nw.gif new file mode 100644 index 0000000..118a97e Binary files /dev/null and b/html/_b/1nw.gif differ diff --git a/html/_b/1ot.gif b/html/_b/1ot.gif new file mode 100644 index 0000000..8112899 Binary files /dev/null and b/html/_b/1ot.gif differ diff --git a/html/_b/1pb.gif b/html/_b/1pb.gif new file mode 100644 index 0000000..832ea1c Binary files /dev/null and b/html/_b/1pb.gif differ diff --git a/html/_b/1pr.gif b/html/_b/1pr.gif new file mode 100644 index 0000000..66fc717 Binary files /dev/null and b/html/_b/1pr.gif differ diff --git a/html/_b/1r.gif b/html/_b/1r.gif new file mode 100644 index 0000000..2322654 Binary files /dev/null and b/html/_b/1r.gif differ diff --git a/html/_b/1sh.gif b/html/_b/1sh.gif new file mode 100644 index 0000000..77b21f9 Binary files /dev/null and b/html/_b/1sh.gif differ diff --git a/html/_b/2.gif b/html/_b/2.gif new file mode 100644 index 0000000..bb71a2c Binary files /dev/null and b/html/_b/2.gif differ diff --git a/html/_b/3.gif b/html/_b/3.gif new file mode 100644 index 0000000..4fec341 Binary files /dev/null and b/html/_b/3.gif differ diff --git a/html/_b/4.gif b/html/_b/4.gif new file mode 100644 index 0000000..efa0c62 Binary files /dev/null and b/html/_b/4.gif differ diff --git a/html/_b/50.gif b/html/_b/50.gif new file mode 100644 index 0000000..798d11c Binary files /dev/null and b/html/_b/50.gif differ diff --git a/html/_b/501.gif b/html/_b/501.gif new file mode 100644 index 0000000..278a6f7 Binary files /dev/null and b/html/_b/501.gif differ diff --git a/html/_b/502.gif b/html/_b/502.gif new file mode 100644 index 0000000..b9e0261 Binary files /dev/null and b/html/_b/502.gif differ diff --git a/html/_b/51.gif b/html/_b/51.gif new file mode 100644 index 0000000..ba56881 Binary files /dev/null and b/html/_b/51.gif differ diff --git a/html/_b/52.gif b/html/_b/52.gif new file mode 100644 index 0000000..d0a359e Binary files /dev/null and b/html/_b/52.gif differ diff --git a/html/_b/53.gif b/html/_b/53.gif new file mode 100644 index 0000000..a6e0c0f Binary files /dev/null and b/html/_b/53.gif differ diff --git a/html/_b/54.gif b/html/_b/54.gif new file mode 100644 index 0000000..ccae209 Binary files /dev/null and b/html/_b/54.gif differ diff --git a/html/_b/55.gif b/html/_b/55.gif new file mode 100644 index 0000000..f546de8 Binary files /dev/null and b/html/_b/55.gif differ diff --git a/html/_b/56.gif b/html/_b/56.gif new file mode 100644 index 0000000..b58d63a Binary files /dev/null and b/html/_b/56.gif differ diff --git a/html/_b/57.gif b/html/_b/57.gif new file mode 100644 index 0000000..e9bc3db Binary files /dev/null and b/html/_b/57.gif differ diff --git a/html/_b/58.gif b/html/_b/58.gif new file mode 100644 index 0000000..3d0ff3f Binary files /dev/null and b/html/_b/58.gif differ diff --git a/html/_b/59.gif b/html/_b/59.gif new file mode 100644 index 0000000..4551aaa Binary files /dev/null and b/html/_b/59.gif differ diff --git a/html/_b/6l.gif b/html/_b/6l.gif new file mode 100644 index 0000000..816adc4 Binary files /dev/null and b/html/_b/6l.gif differ diff --git a/html/_b/6r.gif b/html/_b/6r.gif new file mode 100644 index 0000000..3fdf299 Binary files /dev/null and b/html/_b/6r.gif differ diff --git a/html/_b/7.gif b/html/_b/7.gif new file mode 100644 index 0000000..1a6b1ea Binary files /dev/null and b/html/_b/7.gif differ diff --git a/html/_b/8.gif b/html/_b/8.gif new file mode 100644 index 0000000..ee1fab8 Binary files /dev/null and b/html/_b/8.gif differ diff --git a/html/_b/9.gif b/html/_b/9.gif new file mode 100644 index 0000000..595a947 Binary files /dev/null and b/html/_b/9.gif differ diff --git a/html/_b/a.gif b/html/_b/a.gif new file mode 100644 index 0000000..9eb8573 Binary files /dev/null and b/html/_b/a.gif differ diff --git a/html/_b/b.gif b/html/_b/b.gif new file mode 100644 index 0000000..5e45a10 Binary files /dev/null and b/html/_b/b.gif differ diff --git a/html/_b/b1.gif b/html/_b/b1.gif new file mode 100644 index 0000000..8e35e31 Binary files /dev/null and b/html/_b/b1.gif differ diff --git a/html/_b/bgr1.gif b/html/_b/bgr1.gif new file mode 100644 index 0000000..1675918 Binary files /dev/null and b/html/_b/bgr1.gif differ diff --git a/html/_b/c.gif b/html/_b/c.gif new file mode 100644 index 0000000..9de8763 Binary files /dev/null and b/html/_b/c.gif differ diff --git a/html/_b/c1.gif b/html/_b/c1.gif new file mode 100644 index 0000000..5cef8d9 Binary files /dev/null and b/html/_b/c1.gif differ diff --git a/html/_b/co_name.gif b/html/_b/co_name.gif new file mode 100644 index 0000000..b713022 Binary files /dev/null and b/html/_b/co_name.gif differ diff --git a/html/_b/d.gif b/html/_b/d.gif new file mode 100644 index 0000000..78f3761 Binary files /dev/null and b/html/_b/d.gif differ diff --git a/html/_b/d1.gif b/html/_b/d1.gif new file mode 100644 index 0000000..a60de1c Binary files /dev/null and b/html/_b/d1.gif differ diff --git a/html/_b/e.gif b/html/_b/e.gif new file mode 100644 index 0000000..bc617d7 Binary files /dev/null and b/html/_b/e.gif differ diff --git a/html/_b/e1.gif b/html/_b/e1.gif new file mode 100644 index 0000000..d3b00a5 Binary files /dev/null and b/html/_b/e1.gif differ diff --git a/html/_b/event.gif b/html/_b/event.gif new file mode 100644 index 0000000..e786e3f Binary files /dev/null and b/html/_b/event.gif differ diff --git a/html/_b/f.gif b/html/_b/f.gif new file mode 100644 index 0000000..3f36711 Binary files /dev/null and b/html/_b/f.gif differ diff --git a/html/_b/f1.gif b/html/_b/f1.gif new file mode 100644 index 0000000..05b84d2 Binary files /dev/null and b/html/_b/f1.gif differ diff --git a/html/_b/fr_1.gif b/html/_b/fr_1.gif new file mode 100644 index 0000000..faca91a Binary files /dev/null and b/html/_b/fr_1.gif differ diff --git a/html/_b/fr_2.gif b/html/_b/fr_2.gif new file mode 100644 index 0000000..b7be773 Binary files /dev/null and b/html/_b/fr_2.gif differ diff --git a/html/_b/fr_3conf.gif b/html/_b/fr_3conf.gif new file mode 100644 index 0000000..ec180a7 Binary files /dev/null and b/html/_b/fr_3conf.gif differ diff --git a/html/_b/fr_3down.gif b/html/_b/fr_3down.gif new file mode 100644 index 0000000..abefb90 Binary files /dev/null and b/html/_b/fr_3down.gif differ diff --git a/html/_b/fr_3glos.gif b/html/_b/fr_3glos.gif new file mode 100644 index 0000000..2486062 Binary files /dev/null and b/html/_b/fr_3glos.gif differ diff --git a/html/_b/fr_3gost.gif b/html/_b/fr_3gost.gif new file mode 100644 index 0000000..9e3152b Binary files /dev/null and b/html/_b/fr_3gost.gif differ diff --git a/html/_b/fr_3news.gif b/html/_b/fr_3news.gif new file mode 100644 index 0000000..086bc8a Binary files /dev/null and b/html/_b/fr_3news.gif differ diff --git a/html/_b/fr_3null.gif b/html/_b/fr_3null.gif new file mode 100644 index 0000000..661a417 Binary files /dev/null and b/html/_b/fr_3null.gif differ diff --git a/html/_b/fr_3obja.gif b/html/_b/fr_3obja.gif new file mode 100644 index 0000000..d51995e Binary files /dev/null and b/html/_b/fr_3obja.gif differ diff --git a/html/_b/fr_3pric.gif b/html/_b/fr_3pric.gif new file mode 100644 index 0000000..9a81318 Binary files /dev/null and b/html/_b/fr_3pric.gif differ diff --git a/html/_b/fr_3skid.gif b/html/_b/fr_3skid.gif new file mode 100644 index 0000000..3f61068 Binary files /dev/null and b/html/_b/fr_3skid.gif differ diff --git a/html/_b/fr_4conf0.gif b/html/_b/fr_4conf0.gif new file mode 100644 index 0000000..4ae2159 Binary files /dev/null and b/html/_b/fr_4conf0.gif differ diff --git a/html/_b/fr_4conf1.gif b/html/_b/fr_4conf1.gif new file mode 100644 index 0000000..b0252fd Binary files /dev/null and b/html/_b/fr_4conf1.gif differ diff --git a/html/_b/fr_4down0.gif b/html/_b/fr_4down0.gif new file mode 100644 index 0000000..052d522 Binary files /dev/null and b/html/_b/fr_4down0.gif differ diff --git a/html/_b/fr_4down1.gif b/html/_b/fr_4down1.gif new file mode 100644 index 0000000..47ee9ee Binary files /dev/null and b/html/_b/fr_4down1.gif differ diff --git a/html/_b/fr_4glos0.gif b/html/_b/fr_4glos0.gif new file mode 100644 index 0000000..1cc665f Binary files /dev/null and b/html/_b/fr_4glos0.gif differ diff --git a/html/_b/fr_4glos1.gif b/html/_b/fr_4glos1.gif new file mode 100644 index 0000000..2aa9c61 Binary files /dev/null and b/html/_b/fr_4glos1.gif differ diff --git a/html/_b/fr_4gost0.gif b/html/_b/fr_4gost0.gif new file mode 100644 index 0000000..e4d2380 Binary files /dev/null and b/html/_b/fr_4gost0.gif differ diff --git a/html/_b/fr_4gost1.gif b/html/_b/fr_4gost1.gif new file mode 100644 index 0000000..e5c3463 Binary files /dev/null and b/html/_b/fr_4gost1.gif differ diff --git a/html/_b/fr_4line.gif b/html/_b/fr_4line.gif new file mode 100644 index 0000000..ec42dbf Binary files /dev/null and b/html/_b/fr_4line.gif differ diff --git a/html/_b/fr_4news0.gif b/html/_b/fr_4news0.gif new file mode 100644 index 0000000..3737bb1 Binary files /dev/null and b/html/_b/fr_4news0.gif differ diff --git a/html/_b/fr_4news1.gif b/html/_b/fr_4news1.gif new file mode 100644 index 0000000..b314db9 Binary files /dev/null and b/html/_b/fr_4news1.gif differ diff --git a/html/_b/fr_4obja0.gif b/html/_b/fr_4obja0.gif new file mode 100644 index 0000000..7a75496 Binary files /dev/null and b/html/_b/fr_4obja0.gif differ diff --git a/html/_b/fr_4obja1.gif b/html/_b/fr_4obja1.gif new file mode 100644 index 0000000..86099cf Binary files /dev/null and b/html/_b/fr_4obja1.gif differ diff --git a/html/_b/fr_4pric0.gif b/html/_b/fr_4pric0.gif new file mode 100644 index 0000000..97799c9 Binary files /dev/null and b/html/_b/fr_4pric0.gif differ diff --git a/html/_b/fr_4pric1.gif b/html/_b/fr_4pric1.gif new file mode 100644 index 0000000..913f7da Binary files /dev/null and b/html/_b/fr_4pric1.gif differ diff --git a/html/_b/fr_4skid0.gif b/html/_b/fr_4skid0.gif new file mode 100644 index 0000000..4197c13 Binary files /dev/null and b/html/_b/fr_4skid0.gif differ diff --git a/html/_b/fr_4skid1.gif b/html/_b/fr_4skid1.gif new file mode 100644 index 0000000..6e4af06 Binary files /dev/null and b/html/_b/fr_4skid1.gif differ diff --git a/html/_b/fr_5.gif b/html/_b/fr_5.gif new file mode 100644 index 0000000..bf4c3a9 Binary files /dev/null and b/html/_b/fr_5.gif differ diff --git a/html/_b/fr_box.gif b/html/_b/fr_box.gif new file mode 100644 index 0000000..b4cbc7d Binary files /dev/null and b/html/_b/fr_box.gif differ diff --git a/html/_b/g.gif b/html/_b/g.gif new file mode 100644 index 0000000..13a9f1e Binary files /dev/null and b/html/_b/g.gif differ diff --git a/html/_b/g1.gif b/html/_b/g1.gif new file mode 100644 index 0000000..83a05ce Binary files /dev/null and b/html/_b/g1.gif differ diff --git a/html/_b/h.gif b/html/_b/h.gif new file mode 100644 index 0000000..1b05877 Binary files /dev/null and b/html/_b/h.gif differ diff --git a/html/_b/h1.gif b/html/_b/h1.gif new file mode 100644 index 0000000..292e429 Binary files /dev/null and b/html/_b/h1.gif differ diff --git a/html/_b/header.gif b/html/_b/header.gif new file mode 100644 index 0000000..ef947c5 Binary files /dev/null and b/html/_b/header.gif differ diff --git a/html/_b/i.gif b/html/_b/i.gif new file mode 100644 index 0000000..7301237 Binary files /dev/null and b/html/_b/i.gif differ diff --git a/html/_b/i1.gif b/html/_b/i1.gif new file mode 100644 index 0000000..0f2e168 Binary files /dev/null and b/html/_b/i1.gif differ diff --git a/html/_b/i2.gif b/html/_b/i2.gif new file mode 100644 index 0000000..56d186d Binary files /dev/null and b/html/_b/i2.gif differ diff --git a/html/_b/j.gif b/html/_b/j.gif new file mode 100644 index 0000000..297e82d Binary files /dev/null and b/html/_b/j.gif differ diff --git a/html/_b/j1.gif b/html/_b/j1.gif new file mode 100644 index 0000000..bd63bf0 Binary files /dev/null and b/html/_b/j1.gif differ diff --git a/html/_b/k.gif b/html/_b/k.gif new file mode 100644 index 0000000..6e1b00b Binary files /dev/null and b/html/_b/k.gif differ diff --git a/html/_b/l.gif b/html/_b/l.gif new file mode 100644 index 0000000..be12870 Binary files /dev/null and b/html/_b/l.gif differ diff --git a/html/_b/l1.gif b/html/_b/l1.gif new file mode 100644 index 0000000..cf43673 Binary files /dev/null and b/html/_b/l1.gif differ diff --git a/html/_b/la.gif b/html/_b/la.gif new file mode 100644 index 0000000..6f099e8 Binary files /dev/null and b/html/_b/la.gif differ diff --git a/html/_b/lb.gif b/html/_b/lb.gif new file mode 100644 index 0000000..1faa63b Binary files /dev/null and b/html/_b/lb.gif differ diff --git a/html/_b/lc.gif b/html/_b/lc.gif new file mode 100644 index 0000000..ed17f51 Binary files /dev/null and b/html/_b/lc.gif differ diff --git a/html/_b/ld.gif b/html/_b/ld.gif new file mode 100644 index 0000000..20df60e Binary files /dev/null and b/html/_b/ld.gif differ diff --git a/html/_b/le.gif b/html/_b/le.gif new file mode 100644 index 0000000..b90df2b Binary files /dev/null and b/html/_b/le.gif differ diff --git a/html/_b/lf.gif b/html/_b/lf.gif new file mode 100644 index 0000000..3efdd1b Binary files /dev/null and b/html/_b/lf.gif differ diff --git a/html/_b/lg.gif b/html/_b/lg.gif new file mode 100644 index 0000000..e9a89ea Binary files /dev/null and b/html/_b/lg.gif differ diff --git a/html/_b/lh.gif b/html/_b/lh.gif new file mode 100644 index 0000000..7b56511 Binary files /dev/null and b/html/_b/lh.gif differ diff --git a/html/_b/li.gif b/html/_b/li.gif new file mode 100644 index 0000000..149cd42 Binary files /dev/null and b/html/_b/li.gif differ diff --git a/html/_b/lj.gif b/html/_b/lj.gif new file mode 100644 index 0000000..57e38c1 Binary files /dev/null and b/html/_b/lj.gif differ diff --git a/html/_b/lk.gif b/html/_b/lk.gif new file mode 100644 index 0000000..4829830 Binary files /dev/null and b/html/_b/lk.gif differ diff --git a/html/_b/ll.gif b/html/_b/ll.gif new file mode 100644 index 0000000..8a2d445 Binary files /dev/null and b/html/_b/ll.gif differ diff --git a/html/_b/lm.gif b/html/_b/lm.gif new file mode 100644 index 0000000..6cebe0d Binary files /dev/null and b/html/_b/lm.gif differ diff --git a/html/_b/ln.gif b/html/_b/ln.gif new file mode 100644 index 0000000..45409cd Binary files /dev/null and b/html/_b/ln.gif differ diff --git a/html/_b/lo.gif b/html/_b/lo.gif new file mode 100644 index 0000000..6795a87 Binary files /dev/null and b/html/_b/lo.gif differ diff --git a/html/_b/logo.gif b/html/_b/logo.gif new file mode 100644 index 0000000..372bd3f Binary files /dev/null and b/html/_b/logo.gif differ diff --git a/html/_b/lp.gif b/html/_b/lp.gif new file mode 100644 index 0000000..c1f0be6 Binary files /dev/null and b/html/_b/lp.gif differ diff --git a/html/_b/lq.gif b/html/_b/lq.gif new file mode 100644 index 0000000..2b36c50 Binary files /dev/null and b/html/_b/lq.gif differ diff --git a/html/_b/lr.gif b/html/_b/lr.gif new file mode 100644 index 0000000..5c6fc3b Binary files /dev/null and b/html/_b/lr.gif differ diff --git a/html/_b/ls.gif b/html/_b/ls.gif new file mode 100644 index 0000000..26ac734 Binary files /dev/null and b/html/_b/ls.gif differ diff --git a/html/_b/lt.gif b/html/_b/lt.gif new file mode 100644 index 0000000..e2473dc Binary files /dev/null and b/html/_b/lt.gif differ diff --git a/html/_b/lu.gif b/html/_b/lu.gif new file mode 100644 index 0000000..93bb753 Binary files /dev/null and b/html/_b/lu.gif differ diff --git a/html/_b/lv.gif b/html/_b/lv.gif new file mode 100644 index 0000000..43ca2d9 Binary files /dev/null and b/html/_b/lv.gif differ diff --git a/html/_b/lw.gif b/html/_b/lw.gif new file mode 100644 index 0000000..a1fc873 Binary files /dev/null and b/html/_b/lw.gif differ diff --git a/html/_b/lx.gif b/html/_b/lx.gif new file mode 100644 index 0000000..9d5adc0 Binary files /dev/null and b/html/_b/lx.gif differ diff --git a/html/_b/ly.gif b/html/_b/ly.gif new file mode 100644 index 0000000..9b53c03 Binary files /dev/null and b/html/_b/ly.gif differ diff --git a/html/_b/lz.gif b/html/_b/lz.gif new file mode 100644 index 0000000..6bc7b36 Binary files /dev/null and b/html/_b/lz.gif differ diff --git a/html/_b/m.gif b/html/_b/m.gif new file mode 100644 index 0000000..ad662e0 Binary files /dev/null and b/html/_b/m.gif differ diff --git a/html/_b/n.gif b/html/_b/n.gif new file mode 100644 index 0000000..7913d7e Binary files /dev/null and b/html/_b/n.gif differ diff --git a/html/_b/news.gif b/html/_b/news.gif new file mode 100644 index 0000000..e8fe432 Binary files /dev/null and b/html/_b/news.gif differ diff --git a/html/_b/o.gif b/html/_b/o.gif new file mode 100644 index 0000000..0f35931 Binary files /dev/null and b/html/_b/o.gif differ diff --git a/html/_b/p.gif b/html/_b/p.gif new file mode 100644 index 0000000..73e5c65 Binary files /dev/null and b/html/_b/p.gif differ diff --git a/html/_b/p1.gif b/html/_b/p1.gif new file mode 100644 index 0000000..5311c47 Binary files /dev/null and b/html/_b/p1.gif differ diff --git a/html/_b/pr_name.gif b/html/_b/pr_name.gif new file mode 100644 index 0000000..d533a79 Binary files /dev/null and b/html/_b/pr_name.gif differ diff --git a/html/_b/publ.gif b/html/_b/publ.gif new file mode 100644 index 0000000..2c34af9 Binary files /dev/null and b/html/_b/publ.gif differ diff --git a/html/_b/q.gif b/html/_b/q.gif new file mode 100644 index 0000000..f82e11d Binary files /dev/null and b/html/_b/q.gif differ diff --git a/html/_b/r.gif b/html/_b/r.gif new file mode 100644 index 0000000..881c05a Binary files /dev/null and b/html/_b/r.gif differ diff --git a/html/_b/r1.gif b/html/_b/r1.gif new file mode 100644 index 0000000..4d8b030 Binary files /dev/null and b/html/_b/r1.gif differ diff --git a/html/_b/r2.gif b/html/_b/r2.gif new file mode 100644 index 0000000..2b6f327 Binary files /dev/null and b/html/_b/r2.gif differ diff --git a/html/_b/r3.gif b/html/_b/r3.gif new file mode 100644 index 0000000..8d9bb4d Binary files /dev/null and b/html/_b/r3.gif differ diff --git a/html/_b/ra.gif b/html/_b/ra.gif new file mode 100644 index 0000000..be45ca3 Binary files /dev/null and b/html/_b/ra.gif differ diff --git a/html/_b/rb.gif b/html/_b/rb.gif new file mode 100644 index 0000000..8578c78 Binary files /dev/null and b/html/_b/rb.gif differ diff --git a/html/_b/rc.gif b/html/_b/rc.gif new file mode 100644 index 0000000..1cc7046 Binary files /dev/null and b/html/_b/rc.gif differ diff --git a/html/_b/rd.gif b/html/_b/rd.gif new file mode 100644 index 0000000..c5e0abd Binary files /dev/null and b/html/_b/rd.gif differ diff --git a/html/_b/re.gif b/html/_b/re.gif new file mode 100644 index 0000000..dfcc399 Binary files /dev/null and b/html/_b/re.gif differ diff --git a/html/_b/rf.gif b/html/_b/rf.gif new file mode 100644 index 0000000..99fb928 Binary files /dev/null and b/html/_b/rf.gif differ diff --git a/html/_b/rg.gif b/html/_b/rg.gif new file mode 100644 index 0000000..c2d1018 Binary files /dev/null and b/html/_b/rg.gif differ diff --git a/html/_b/rh.gif b/html/_b/rh.gif new file mode 100644 index 0000000..b699647 Binary files /dev/null and b/html/_b/rh.gif differ diff --git a/html/_b/ri.gif b/html/_b/ri.gif new file mode 100644 index 0000000..a9b0e0c Binary files /dev/null and b/html/_b/ri.gif differ diff --git a/html/_b/rj.gif b/html/_b/rj.gif new file mode 100644 index 0000000..8c40be1 Binary files /dev/null and b/html/_b/rj.gif differ diff --git a/html/_b/rk.gif b/html/_b/rk.gif new file mode 100644 index 0000000..64d6cef Binary files /dev/null and b/html/_b/rk.gif differ diff --git a/html/_b/rl.gif b/html/_b/rl.gif new file mode 100644 index 0000000..79fec28 Binary files /dev/null and b/html/_b/rl.gif differ diff --git a/html/_b/rm.gif b/html/_b/rm.gif new file mode 100644 index 0000000..8ffe117 Binary files /dev/null and b/html/_b/rm.gif differ diff --git a/html/_b/rn.gif b/html/_b/rn.gif new file mode 100644 index 0000000..66b16a3 Binary files /dev/null and b/html/_b/rn.gif differ diff --git a/html/_b/ro.gif b/html/_b/ro.gif new file mode 100644 index 0000000..670c967 Binary files /dev/null and b/html/_b/ro.gif differ diff --git a/html/_b/rp.gif b/html/_b/rp.gif new file mode 100644 index 0000000..f557e98 Binary files /dev/null and b/html/_b/rp.gif differ diff --git a/html/_b/rq.gif b/html/_b/rq.gif new file mode 100644 index 0000000..e2efd8c Binary files /dev/null and b/html/_b/rq.gif differ diff --git a/html/_b/rr.gif b/html/_b/rr.gif new file mode 100644 index 0000000..f482b80 Binary files /dev/null and b/html/_b/rr.gif differ diff --git a/html/_b/rs.gif b/html/_b/rs.gif new file mode 100644 index 0000000..50e7411 Binary files /dev/null and b/html/_b/rs.gif differ diff --git a/html/_b/rt.gif b/html/_b/rt.gif new file mode 100644 index 0000000..0551508 Binary files /dev/null and b/html/_b/rt.gif differ diff --git a/html/_b/ru.gif b/html/_b/ru.gif new file mode 100644 index 0000000..379ec98 Binary files /dev/null and b/html/_b/ru.gif differ diff --git a/html/_b/rv.gif b/html/_b/rv.gif new file mode 100644 index 0000000..3917603 Binary files /dev/null and b/html/_b/rv.gif differ diff --git a/html/_b/rw.gif b/html/_b/rw.gif new file mode 100644 index 0000000..e04ec01 Binary files /dev/null and b/html/_b/rw.gif differ diff --git a/html/_b/ry.gif b/html/_b/ry.gif new file mode 100644 index 0000000..558238b Binary files /dev/null and b/html/_b/ry.gif differ diff --git a/html/_b/rz.gif b/html/_b/rz.gif new file mode 100644 index 0000000..a591c77 Binary files /dev/null and b/html/_b/rz.gif differ diff --git a/html/_b/s.gif b/html/_b/s.gif new file mode 100644 index 0000000..55d904f Binary files /dev/null and b/html/_b/s.gif differ diff --git a/html/_b/spacer.gif b/html/_b/spacer.gif new file mode 100644 index 0000000..c8e27fd Binary files /dev/null and b/html/_b/spacer.gif differ diff --git a/html/_b/srch.gif b/html/_b/srch.gif new file mode 100644 index 0000000..2cb2da8 Binary files /dev/null and b/html/_b/srch.gif differ diff --git a/html/_b/t.gif b/html/_b/t.gif new file mode 100644 index 0000000..3367e03 Binary files /dev/null and b/html/_b/t.gif differ diff --git a/html/_b/t1.gif b/html/_b/t1.gif new file mode 100644 index 0000000..3e6e2f5 Binary files /dev/null and b/html/_b/t1.gif differ diff --git a/html/_b/t2.gif b/html/_b/t2.gif new file mode 100644 index 0000000..de0192a Binary files /dev/null and b/html/_b/t2.gif differ diff --git a/html/_b/u.gif b/html/_b/u.gif new file mode 100644 index 0000000..7035ea7 Binary files /dev/null and b/html/_b/u.gif differ diff --git a/html/_b/u1.gif b/html/_b/u1.gif new file mode 100644 index 0000000..70145ae Binary files /dev/null and b/html/_b/u1.gif differ diff --git a/html/_b/v.gif b/html/_b/v.gif new file mode 100644 index 0000000..7813943 Binary files /dev/null and b/html/_b/v.gif differ diff --git a/html/_b/w.gif b/html/_b/w.gif new file mode 100644 index 0000000..d719824 Binary files /dev/null and b/html/_b/w.gif differ diff --git a/html/_b/x.gif b/html/_b/x.gif new file mode 100644 index 0000000..35fca1c Binary files /dev/null and b/html/_b/x.gif differ diff --git a/html/_b/y.gif b/html/_b/y.gif new file mode 100644 index 0000000..c28b83b Binary files /dev/null and b/html/_b/y.gif differ diff --git a/html/_b/y1.gif b/html/_b/y1.gif new file mode 100644 index 0000000..8173fb9 Binary files /dev/null and b/html/_b/y1.gif differ diff --git a/html/_b/z.gif b/html/_b/z.gif new file mode 100644 index 0000000..8e6d89d Binary files /dev/null and b/html/_b/z.gif differ diff --git a/html/_b/z1.gif b/html/_b/z1.gif new file mode 100644 index 0000000..3cb6ac2 Binary files /dev/null and b/html/_b/z1.gif differ diff --git a/html/_co/index.htm b/html/_co/index.htm new file mode 100644 index 0000000..8e7da32 --- /dev/null +++ b/html/_co/index.htm @@ -0,0 +1,156 @@ + + + + + + : + + + + + + + + + + + + + + +
+ + + + + +

" " + , + . + .

+

, + + . , . + + . + + + () + . + .

+

:

+ + + + + +
Flow Science, + Kinetix, + LightWork Design, + Mita Industrial Co., + SGI, + SolidWorks Russia, + , + , + , + , +   , +  , + , + , +   , +  .
+
+
+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y X
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/la.htm b/html/_co/la.htm new file mode 100644 index 0000000..5b1d38a --- /dev/null +++ b/html/_co/la.htm @@ -0,0 +1,218 @@ + + + + + + + + + + + + + + + : (A lat) + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Accel Technologies; Autodesk Inc.
+
+
+

+
+
+

latA

+ + + + + +

Accel Technologies

+ + + + + + + + + + +
 : 
 :www.acceltech.com
+

ACCEL Technologies + + () + , + , + , , + , , + + , + , + / + . ACCEL + Technologies + ( ) P-CAD, + Accel EDA, Accel PCB, Tango + PCB, Specra .

+ +


+

+ + + + + +

Autodesk

+ + + + + + + + + + +
 : www.cad.ru/autodesk
 :www.autodesk.com; + (Autodesk Inc.)
+ www.ktx.com; (Kinetix Division)
+ www.mapguide.com; (Autodesk + MapGuide)
+

, + + ( + Adobe, Oracle, Microsoft). + + AutoCAD, AutoCAD + MAP, Mechanical Desktop, 3D-Studio. + + ( ) Autodesk + . : Autodesk CadOverlay, + S8 Genius, Autodesk + World MapGuide... + Autodesk , + , . 1998 + 200 + , , + , , .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lb.htm b/html/_co/lb.htm new file mode 100644 index 0000000..450b8a9 --- /dev/null +++ b/html/_co/lb.htm @@ -0,0 +1,170 @@ + + + + + : (B lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latB

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "B", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lc.htm b/html/_co/lc.htm new file mode 100644 index 0000000..1d1e464 --- /dev/null +++ b/html/_co/lc.htm @@ -0,0 +1,171 @@ + + + + + : (C lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Consistent Software.
+
+
+

+
+
+

latC

+ + + + + +

Consistent Software

+ + + + + + + + + + +
 : www.csoft.ru
 :
+

Consistent Software + 1990 . :

+

Consistent Software .-, + , , , , .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/ld.htm b/html/_co/ld.htm new file mode 100644 index 0000000..d936b10 --- /dev/null +++ b/html/_co/ld.htm @@ -0,0 +1,161 @@ + + + + + + : (D lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
DPI.
+
+
+

+
+
+

latD

+ + + + + +

DPI ()

+ + + + + + + + + + +
 : www.dpi.ru/win/wacom/ Windows (CP-1251)
+ www.dpi.ru/koi/wacom/ KOI-8R
+ www.dpi.ru/mac/wacom/ Macintosh
 :
+

DPI + - + + . + + Wacom .

+

DPI + + .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/le.htm b/html/_co/le.htm new file mode 100644 index 0000000..1f07397 --- /dev/null +++ b/html/_co/le.htm @@ -0,0 +1,170 @@ + + + + + : (E lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latE

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "E", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lf.htm b/html/_co/lf.htm new file mode 100644 index 0000000..c007904 --- /dev/null +++ b/html/_co/lf.htm @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + : (F lat) + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Flow Science Inc.;
+
+
+

+
+
+

latF

+ + + + + +

Flow Science Inc.

+ + + + + + + + + + +
 : www.cad.ru/flow3d
 :www.flow3d.com
+

  "  " + Flow Science Inc. - + + + (CFD). Flow Science + " " -- Flow-3D, + + 1985 . + + ( + ), + ( + , ..), + + , + , - ...

+

Flow Science : + + .

+
+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lg.htm b/html/_co/lg.htm new file mode 100644 index 0000000..ae2ae42 --- /dev/null +++ b/html/_co/lg.htm @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + : (G lat) + + + + + + + + + + + + + + + + + + + + + + + +
+ :
GTX Inc.,
+
+
+

+
+
+

latG

+ + + + + +

GTX Inc.

+ + + + + + + + + + +
 : 
 :www.gtx.com
+

GTX + + . + ( + ) + . GTX + - + AutoCAD Autodesk ( GTXRaster + CAD), + ( GTXImage CAD). GTX ATIP (Autodesk Tracing Image Program -- Autodesk ). + GTX + + ( + , , + ...)

+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lh.htm b/html/_co/lh.htm new file mode 100644 index 0000000..288a9ee --- /dev/null +++ b/html/_co/lh.htm @@ -0,0 +1,170 @@ + + + + + : (H lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latH

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "H", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/li.htm b/html/_co/li.htm new file mode 100644 index 0000000..013876d --- /dev/null +++ b/html/_co/li.htm @@ -0,0 +1,170 @@ + + + + + : (I lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latI

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "I", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lj.htm b/html/_co/lj.htm new file mode 100644 index 0000000..9259bd6 --- /dev/null +++ b/html/_co/lj.htm @@ -0,0 +1,170 @@ + + + + + : (J lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latJ

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "J", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lk.htm b/html/_co/lk.htm new file mode 100644 index 0000000..390b87d --- /dev/null +++ b/html/_co/lk.htm @@ -0,0 +1,169 @@ + + + + + : (K lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Kinetix.
+
+
+

+
+
+

latK

+ + + + + +

Kinetix

+ + + + + + + + + + +
 : 
 :www.ktx.com
+

Kinetix -- + Autodesk.. + Kinetix. + 3D Studio MAX, + 3D Studio VIZ, Character Studio, + Radio Ray HyperMatter. + 1999 , Autodesk + Discreet Logic, Discreet.

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/ll.htm b/html/_co/ll.htm new file mode 100644 index 0000000..decfd44 --- /dev/null +++ b/html/_co/ll.htm @@ -0,0 +1,163 @@ + + + + + : (L lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
LightWork Design
+
+
+

+
+
+

latL

+ + + + + +

LightWork Design

+ + + + + + + + + + +
 : 
 :www.lightwork.com
+

LightWork Design + , + , + . + , LightWork Design + RadioRay, + Kinetix.

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lm.htm b/html/_co/lm.htm new file mode 100644 index 0000000..43d8ace --- /dev/null +++ b/html/_co/lm.htm @@ -0,0 +1,246 @@ + + + + + + + + + + + + + + + : (M lat) + + + + + + + + + + + + + + + + + + + + + + + +
+ :
MacNeal Schwendler Corporation (MSC); + Matra Datavision, + Mita Industrial Co..
+
+
+

+
+
+

latM

+ + + + + +

MacNeal Schwendler Corporation

+ + + + + + + + + + +
 : www.cad.ru/msc
 :www.macsch.com
+

MacNeal Schwendler Corpration (MSC) + + , + (MCAE), + + . NASA + MSC/NASTRAN, + - + + . + . + MSC -- MSC/InCheck, + "" + AutoCAD, + + .

+ + + + + + + +
MSC :
 : + .
:, + , + -, + , + , + , + , + -.
+ +


+

+ + + + +

Matra Datavision Inc.

+ + + + + + + + + + +
 : 
 :www.matra-datavision.com
+

Matra Datavision Inc. -- + (CAD), + (CAE), (CAM) + (PDM).

+

: Euclid3, + Euclid Quantum CAS.CADE. + Matra Datavision Inc. + , + t, , + .

+
+ +


+

+ + + + + +

Mita Industrial Co.

+ + + + + + + + + + +
 : www.mita.ru
 :http://www.mita.co.jp/e_html/e_index.html
+

Mita Industrial Co., + , + (0...2), .

+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/ln.htm b/html/_co/ln.htm new file mode 100644 index 0000000..86e4dee --- /dev/null +++ b/html/_co/ln.htm @@ -0,0 +1,170 @@ + + + + + : (N lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latN

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "N", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lo.htm b/html/_co/lo.htm new file mode 100644 index 0000000..22961cc --- /dev/null +++ b/html/_co/lo.htm @@ -0,0 +1,169 @@ + + + + + : (O lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latO

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "O", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lp.htm b/html/_co/lp.htm new file mode 100644 index 0000000..a7596a8 --- /dev/null +++ b/html/_co/lp.htm @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + : (P lat) + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Pathtrace Ingineering Systems Ltd.; + Pit-Cup GmbH;
+
+
+

+
+
+

latP

+ + + + + +

Pathtrace Ingineering Systems Ltd.

+ + + + + + + + + + +
 : www.cad.ru/pathtrace
 :www.pathtrace.com
+

  "  " Pathtrace Ingineering Systems Ltd. + + . + EdgeCAM, + , + + , , + . + EdgeCAM + + Autodesk Mechanical Desktop, + + .

+ +


+

+ + + + + +

Pit-Cup GmbH

+ + + + + + + + + + +
 : 
 :www.pit.de/englisch/pitinfo.htm
+

Pit-Cup GmbH + AutoCAD + + , + : Pit-Menu Construction, Pit-Heating, + Pit-Plumbing, + Pit-Electrical Engineering, + Pit-Ventilation.

+

+ Pit-Cup Pit-LT, + AutoCAD + LT. + , + + , + , + , + .

+ + + + + + + + + + + + + +
Pit-Cup :
: + .
:, , -, , , , + ,  .
+
+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lq.htm b/html/_co/lq.htm new file mode 100644 index 0000000..5987b8a --- /dev/null +++ b/html/_co/lq.htm @@ -0,0 +1,170 @@ + + + + + : (Q lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latQ

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "Q", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lr.htm b/html/_co/lr.htm new file mode 100644 index 0000000..0b9dae7 --- /dev/null +++ b/html/_co/lr.htm @@ -0,0 +1,186 @@ + + + + + : (R lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Rebis Industrial Workgroup Software + Inc. (),
+
+
+

+
+
+

latR

+ + + + + +

Rebis Industrial Workgroup Software ()

+ + + + + + + + + + +
 : www.rebis.net
 :www.rebis.com
+

Rebis Industrial Workgroup Software Inc. -- + + + + . AutoPLANT97 + , + , + + + . + AutoCAD + + :

    +
  • ( + ), ;
  • +
  • (, , + ...);
  • +
  • ;
  • +
  • + ;
  • +
  • ;
  • +
  • ;
  • +
  • - ;
  • +
  • .
  • +
+

+ + , + , - + (), + ... + + + + .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/ls.htm b/html/_co/ls.htm new file mode 100644 index 0000000..0742edf --- /dev/null +++ b/html/_co/ls.htm @@ -0,0 +1,198 @@ + + + + + : (S lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
SGI, + SolidWorks Russia.
+
+
+

+
+
+

latS

+
+ + + + + +

SGI

+ + + + + + + + +
 : www.sgi.ru
+ www.cad.ru/sgi
ʚ:www.sgi.com
+ visio.sgi.com
+

SGI ( Silicon Graphics Inc.) + + . + SGI + RISC- + Origin Cray. + 45% SGI + CAD/CAM/CAE Unix. C 1999 . + Visual PC + Pentium II 350...450  Microsoft Windows NT. + SGI + 1993 .

+ +


+

+ + + + + +

SolidWorks Russia

+ + + + + + + + +
 : www.solidworks.ru
ʚ:www.solidworks.com
+

SolidWorks Russia + ep + apap pa p aa SolidWorks -- + VAR (Value Added + Resellers) .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lt.htm b/html/_co/lt.htm new file mode 100644 index 0000000..00e6b69 --- /dev/null +++ b/html/_co/lt.htm @@ -0,0 +1,170 @@ + + + + + : (T lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latT

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "T", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lu.htm b/html/_co/lu.htm new file mode 100644 index 0000000..1517024 --- /dev/null +++ b/html/_co/lu.htm @@ -0,0 +1,163 @@ + + + + + : (U lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Unigraphics Solutions.
+
+
+

+
+
+

latU

+ + + + + +

Unigraphics Solutions, Inc.

+ + + + + + + + + + +
 : www.ugsolutions.ru
 :www.ug.eds.com
+

, + Unigraphics Solutions + :

    +
  • Unigraphics -- ;
  • +
  • SolidEdge -- ;
  • +
  • IMAN -- ;
  • +
  • Parasolid -- ;
  • +
  • ProductVision -- .
+ .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lv.htm b/html/_co/lv.htm new file mode 100644 index 0000000..84836e1 --- /dev/null +++ b/html/_co/lv.htm @@ -0,0 +1,191 @@ + + + + + : (V lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Vibrant Graphics Inc.
+
+
+

+
+
+

latV

+
+ + + + + +

Vibrant Graphics Inc.

+ + + + + + + + + +
 : 
ʚ:www.vibrant.com

Vibrant Graphics + , + , , + . + : SoftEngine, SoftPoint LiquidSpeed.

+

Vibrant Graphics + Autodesk, GTX + + . + Vibrant Graphics + + .

+ + + + + + + +
Vibrant Graphics :
 : + .
:EMT R, + , + , + , + , + -.
+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lw.htm b/html/_co/lw.htm new file mode 100644 index 0000000..87b3987 --- /dev/null +++ b/html/_co/lw.htm @@ -0,0 +1,170 @@ + + + + + : (W lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latW

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "W", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lx.htm b/html/_co/lx.htm new file mode 100644 index 0000000..f349fa4 --- /dev/null +++ b/html/_co/lx.htm @@ -0,0 +1,170 @@ + + + + + : (X lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latX

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "X", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/ly.htm b/html/_co/ly.htm new file mode 100644 index 0000000..ebc94b2 --- /dev/null +++ b/html/_co/ly.htm @@ -0,0 +1,169 @@ + + + + + : (Y lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latY

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "X", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/lz.htm b/html/_co/lz.htm new file mode 100644 index 0000000..54b873a --- /dev/null +++ b/html/_co/lz.htm @@ -0,0 +1,170 @@ + + + + + : (Z lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latZ

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "Z", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/r1.htm b/html/_co/r1.htm new file mode 100644 index 0000000..18c6636 --- /dev/null +++ b/html/_co/r1.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/r2.htm b/html/_co/r2.htm new file mode 100644 index 0000000..fd6824b --- /dev/null +++ b/html/_co/r2.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/r3.htm b/html/_co/r3.htm new file mode 100644 index 0000000..e5dc92d --- /dev/null +++ b/html/_co/r3.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/ra.htm b/html/_co/ra.htm new file mode 100644 index 0000000..0d71a78 --- /dev/null +++ b/html/_co/ra.htm @@ -0,0 +1,284 @@ + + + + + + : (A ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
 ( ..); +  ; + ; + .
+
+
+

+
+
+

+ + + + + +

+ ( ..)

+ + + + + + + + + + +
 : www.apex.sitek.ru
 :
+

.. + + 1991 . Autodesk Inc. .

+ +


+

+ + + + + +

+ + + + + + + + + + +
 : www.arko.ru
 :
+

Autodesk Inc. + + . + + . + , + + + , + , , , + , , + . -- + .

+ +


+

+ + + + + +

, AO

+ + + + + + + + + + +
 : ???
 :
+

, + Autodesk + + + Autodesk, Microsoft, + Motiva.

+ +


+

+ + + + + +

+ + + + + + + + + + +
 : www.ascon.ru
 :
+

  "  " -- p + p papa a aapa + ppa -- paa a p p AP 1989 a. + pa a-pp, ( + ). a A + a papa AP , + , , + . p ap A, + , ap 700 pp + P, pa, p, aaaa p pa .

+

p ppa-aapa p, paa , + a :

    +
  • apap p-ppa A 5 + Windows p ap + pp p, a a pa pa + papa ( a p + 286/386 A 4 DOS);
  • +
  • ppa A 5 pa apa + pa Consistent Software;
  • +
  • apap p ppa + SolidWorks ;
  • +
  • pa p p pp + a a DOCS Open + - 5;
  • +
  • pp AP (, , , + .).

+

-- pa app a: + onsistent Software, + Delcam, + MacNeal Schwendler Corpration (MSC), + MoldFlow, + SolidWorks Corpration, + , +  .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rb.htm b/html/_co/rb.htm new file mode 100644 index 0000000..4f099fd --- /dev/null +++ b/html/_co/rb.htm @@ -0,0 +1,163 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
 ESG. +
+
+
+

+
+
+

+
+ + + + + +

ESG

+ + + + + + + +
 : www.esg.spb.ru
ʚ:
+

ESG + 1990 , Autodesk . + Autodesk + , , , , + .

+
+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rc.htm b/html/_co/rc.htm new file mode 100644 index 0000000..c60ecba --- /dev/null +++ b/html/_co/rc.htm @@ -0,0 +1,178 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
-.
+
+
+

+
+
+

+
+ + + + + +

-

+ + + + + + + + + + +
 : www.user.cityline.ru/~irapm
 :
+

+ + + APM WinMachine.

+ + + + + + + +
-:
 : + .
:, + -, + , + , + , + -.
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rd.htm b/html/_co/rd.htm new file mode 100644 index 0000000..a504fec --- /dev/null +++ b/html/_co/rd.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/re.htm b/html/_co/re.htm new file mode 100644 index 0000000..443352a --- /dev/null +++ b/html/_co/re.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rf.htm b/html/_co/rf.htm new file mode 100644 index 0000000..d88a9e7 --- /dev/null +++ b/html/_co/rf.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rg.htm b/html/_co/rg.htm new file mode 100644 index 0000000..eb134e5 --- /dev/null +++ b/html/_co/rg.htm @@ -0,0 +1,177 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
.
+
+
+

+
+
+

+ + + + + +

, MTK

+ + + + + + + + + + +
 : http://www.cgirealm.com/cuttools/
 :
+

-- CAM + . 1990. + , . + .

+

CutTools + - + .

+

+ :

    +
  • ;
  • +
  • ;
  • +
  • ;
  • +
  • ;
  • +
  • ;
  • +
  • ;
  • +
  • ;

+ +

+ + .

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rh.htm b/html/_co/rh.htm new file mode 100644 index 0000000..51dab63 --- /dev/null +++ b/html/_co/rh.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/ri.htm b/html/_co/ri.htm new file mode 100644 index 0000000..47c2e63 --- /dev/null +++ b/html/_co/ri.htm @@ -0,0 +1,245 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
, + .
+
+
+

+
+
+

+
+ + + + + + +

,

+ + + + + + + +
 : www.intermech.host.ru
ʚ:
+

-- + + Autodesk -- + . +   + + - . + , + , , + (CadMECH) + + , , , (AVS), + , + (Search). +   800 + , , + , . + , , , + , .

+

Autodesk,   + AutoCAD, + Mechanical Desktop, (KINETIX), + GTX, + MacNeal Schwendler Corpration (MSC), + Pathtrace, + Vibrant Graphics + CAD/CAE/CAM Autodesk.

+ + + + + + + +
  :
 : + .
:, +  .., + , + -, + , + , + , + -.
+ +


+

+ + + + + +

,

+ + + + + + + +
 : www.infars.ru
ʚ:
+

( + ) -- + Autodesk -- + 1994 . :

    +
  • + ;
  • +
  • + ;
  • +
  • + Autodesk -- AutoCAD R14, AutoCAD MAP, 3D-Studio VIZ/MAX, Softdesk;
  • +
  • : , , + , , , , + , , /, , , + , , -- + ( 150 + AutoCAD);
  • +
  • + (, , , , );
  • +
  • .

+
+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rj.htm b/html/_co/rj.htm new file mode 100644 index 0000000..712d854 --- /dev/null +++ b/html/_co/rj.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rk.htm b/html/_co/rk.htm new file mode 100644 index 0000000..5ff04b1 --- /dev/null +++ b/html/_co/rk.htm @@ -0,0 +1,271 @@ + + + + + + + + + + + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + +
+ :
, +    (), + , + -
+
+
+

+
+
+

+ + + + + +

+ + + + + + + + + + +
 : www.orc.ru/~lihtinov/
 :
+

+ + NC CNC, + .

+ +


+

+ + + + + +

()

+ + + + + + + + + + +
 : www.catalyst.ru
 :
+

(, + Catalyst Silicon Solutions) + . + . -- + Siemens , + Sun Microsystems, + SGI , + DataDirect Networks + ( RAID- MegaDrive). + + .

+

+ + CAD/CAM/CAE- , + - . + 1999 + , : +  , +  , + , + DELCAM, + Bee Pitron, + CAD house, + , + - + .

+ +


+

+ + + + + +

,

+ + + + + + + + + + +
 : www.constructor.stc.ru
 :
+

- , + , + Autodesk + Structural + Research and Analysis Corporation . + + + + .

+
+ +


+

+ + + + + +

-,

+ + + + + + + + + + +
 : www.credo.nsys.by
 :
+

- "-" + + CREDO + -, + - , + + , + , + .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rl.htm b/html/_co/rl.htm new file mode 100644 index 0000000..a5094bf --- /dev/null +++ b/html/_co/rl.htm @@ -0,0 +1,197 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
 .
+
+
+

+
+
+

+
+ + + + + +

+ + + + + + + + +
 : www.lotsia.com
ʚ:
+

+ + . + , + " ", - + , + , .

+ +

+ ( Autodesk, + Cimmetry Systems, + Consistent Software, + MacNeal Schwendler Corpration (MSC), + , + .), + , + . + - + Sybase, Inc., -- + -- + -. + PC DOCS, Inc.

+ +

:

+ + +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rm.htm b/html/_co/rm.htm new file mode 100644 index 0000000..42befa4 --- /dev/null +++ b/html/_co/rm.htm @@ -0,0 +1,192 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
 , + .
+
+
+

+
+
+

+ + + + + +

+ + + + + + + + + + +
 : www.maxsoft.ru
 :
+

 Soft (. ) -- + + ( ). + 1996 .  Soft + Authorized Dealer Autodesk. -- + Autodesk, + , + , + , +  ...

+ +


+

+ + + + + +

,

+ + + + + + + + + + +
 : ulm.uni.udm.ru/~prs
 :
+

- + + . -- LVMFlow.

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rn.htm b/html/_co/rn.htm new file mode 100644 index 0000000..5ec50c8 --- /dev/null +++ b/html/_co/rn.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/ro.htm b/html/_co/ro.htm new file mode 100644 index 0000000..dacbf26 --- /dev/null +++ b/html/_co/ro.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rp.htm b/html/_co/rp.htm new file mode 100644 index 0000000..37c7d50 --- /dev/null +++ b/html/_co/rp.htm @@ -0,0 +1,164 @@ + + + + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
+  ( )
+
+
+

+
+
+

+ + + + + +

+  ()

+ + + + + + + + + + +
 : www.propro.ru/indexr.html
 :www.propro.ru/index.html
+

- + + () -- + , + . + + + (CAD) + : , + , , , + ... -- bCAD.

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rq.htm b/html/_co/rq.htm new file mode 100644 index 0000000..59edf75 --- /dev/null +++ b/html/_co/rq.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rr.htm b/html/_co/rr.htm new file mode 100644 index 0000000..fec7c7f --- /dev/null +++ b/html/_co/rr.htm @@ -0,0 +1,158 @@ + + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
;   .
+
+
+

+
+
+

+ + + + + +

+ + + + + + + + + + +
 : www.ratiopro.ru
 :
+

+ + bCAD. + + bCAD .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rs.htm b/html/_co/rs.htm new file mode 100644 index 0000000..bc40a2c --- /dev/null +++ b/html/_co/rs.htm @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + +
+ :
-, + .
+
+
+

+
+
+

+ + + + + +

-

+ + + + + + + + + + +
 : www.angelfire.com/ok/sapralpha/
 :
+

- + + + - + (), + (). + + , + .

+ +


+

+ + + + + +

+ + + + + + + + + + +
 : http://www.solver-net.com/1251
 :http://www.solver-net.com/engl
+

, , + , + -- + + (-, ...). + .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rt.htm b/html/_co/rt.htm new file mode 100644 index 0000000..045832c --- /dev/null +++ b/html/_co/rt.htm @@ -0,0 +1,261 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
, +   , +  .
+
+
+

+
+
+

+ + + + + +

+ + + + + + + +
 : www.tpolis.com
ʚ:
+

1992 + , + , + .

+

+ - + -- "----", + ( , , + ). + .

+

+ , + PTC (Pro/ENGINEER, Pro/MECHANICA, Pro/INTRALINK, + WINDCHILL), ANSYS, + MoldFLOW, ORACLE, IBM, Sun, + Silicon Graphics, CISCO, + OCE .

+

C, , + , , + - , , , + , + , + ..

+ +


+

+ + + + + +

+ + + + + + + +
 : www.tops.ru
ʚ:
+

+ 1993 . + Unigraphics + Solutions Inc. -- . , + :

    +
  • ,
  • +
  • - ,
  • +
  • , +
  • ,
  • +
  • ,
  • +
  • ,
  • +
  • .

+ +


+

+ + + + + +

+ + + + + + + + + + +
 : www.topsystems.ru
 :
+

+ 1992 , + -- T-FLEX CAD, + 400 . + + - :

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/ru.htm b/html/_co/ru.htm new file mode 100644 index 0000000..e2c5677 --- /dev/null +++ b/html/_co/ru.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rv.htm b/html/_co/rv.htm new file mode 100644 index 0000000..567092e --- /dev/null +++ b/html/_co/rv.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rw.htm b/html/_co/rw.htm new file mode 100644 index 0000000..0b9d71d --- /dev/null +++ b/html/_co/rw.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/ry.htm b/html/_co/ry.htm new file mode 100644 index 0000000..bca964a --- /dev/null +++ b/html/_co/ry.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/rz.htm b/html/_co/rz.htm new file mode 100644 index 0000000..90aa3d8 --- /dev/null +++ b/html/_co/rz.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , + . + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/urladd.htm b/html/_co/urladd.htm new file mode 100644 index 0000000..bad40e8 --- /dev/null +++ b/html/_co/urladd.htm @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + : -- URL + + + + + + + + + + +

URL

+

, + + + . , + URL ( + + , + ). , + , + - + , + + " ".

+

, URL + , + , - + ( ) + + " ". URL + , , + .

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
! + !

+ :

;

() + ;

+ ;

.

+
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_co/urladded.htm b/html/_co/urladded.htm new file mode 100644 index 0000000..5e1839a --- /dev/null +++ b/html/_co/urladded.htm @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + : -- URL + + + + + + + + + + + + + + +

+

+ , + , + .  + + + .  , , + , + .


+ ,  
+ "  "
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/98_10_12a.htm b/html/_ex/98_10_12a.htm new file mode 100644 index 0000000..f4ee9cb --- /dev/null +++ b/html/_ex/98_10_12a.htm @@ -0,0 +1,116 @@ + + + + + + + + + -- : Autodesk AutoSketch 6.0 + + + + + + + + + + + + + + +

Autodesk + AutoSketch 6.0

+
AutoSketch 6.0 -- + Autodesk. + "" + , + , + CAD + . + -- - (Application + Wizard), + , + , + .

+ :

    +
  • ;
  • +
  • Internet- DWF, + (Drawing Web Format) ;
  • +
  • Draw Picture + ;
  • +
  • Microsoft Office 97;
  • +
  • + ;
  • +
  • AutoPoint , + ;
  • +
  • CAD Edit Bar;
  • +
  • MDI- (Multiple + Document Interface;
  • +
  • DWG, AutoCAD + AutoCAD LT.
  • +
+
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/98_10_13a.htm b/html/_ex/98_10_13a.htm new file mode 100644 index 0000000..d4c7ce5 --- /dev/null +++ b/html/_ex/98_10_13a.htm @@ -0,0 +1,171 @@ + + + + + + + + + -- : 800,000 AutoCAD LT + + + + + + + + + + + + + + +

800,000 + AutoCAD LT

+

+ .
+  

-, -- 7 + 1998. -- Autodesk, Inc. , + + AutoCAD LT 800,000 + . + , + , + + $100...$500, -- , + 3- ( + 1995 1997 .) + PC Data (, , + ). AutoCAD LT + Autodesk + AutoCAD, . + + , + AutoCAD LT + , AutoCAD LT 97.

" + -- + ," -- + (Eric Herr), Autodesk, Inc. " + AutoCAD LT , + , + AutoSketch Release 5, + + ."

+

" + 1993., AutoCAD LT + - + + , + AutoCAD Autodesk," + -- (Godfrey Sullivan), + - + Autodesk. " + AutoCAD LT + + + ."

+

AutoCAD LT + , + + AutoCAD AutoCAD LT . + AutoCAD LT + + + . , + , + , AutoCAD LT + .

+

AutoCAD LT 97 + Microsoft Windows 98, + AutoCAD LT 97. + , Windows 98, + , Content + Explorer, drug-and-drop, + AutoSnap PolarSnap, + , + , + , -- , + + .

+

"AutoCAD LT , + , ," + -- (Joe Miller), Food + Service Supplies, Inc. " , + AutoCAD, AutoCAD LT + , + . AutoCAD LT -- + , + + AutoCAD. + , AutoCAD. AutoCAD LT + , , + + ."

+

+

AutoCAD LT 97 + 588 ( + ). Autodesk + + Autodesk.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/98_10_14a.htm b/html/_ex/98_10_14a.htm new file mode 100644 index 0000000..e0d7f41 --- /dev/null +++ b/html/_ex/98_10_14a.htm @@ -0,0 +1,181 @@ + + + + + + + + + -- : AutoCAD MAP 50,000 + + + + + + + + + + + + + + +

AutoCAD MAP + 50,000

+
-, -- 7 + 1998. -- Autodesk, Inc. , + + AutoCAD MAP 50,000 18 + . AutoCAD MAP , + + + . AutoCAD MAP + + , + .

+ AutoCAD MAP + , + , + , + ESRI ARC/INFO, + + 15 .

+

(David Sonnen), + + International Data Corporation, : "AutoCAD MAP + , + + . + Autodesk + - ."

+

AutoCAD Map + + , + , , + . + + AutoCAD MAP R3 + + . " + ," -- (Jim + Slocumb), Island Carto-Technical -- + -, -- + Cadalyst ( + -). + AutoCAD MAP R2, + Cadence , + + 1997.

+

(Christopher Stern), + - + , , AutoCAD MAP + + . " + , + + , -- , + . + , , + , + . + + + ."

+

" AutoCAD MAP + -, + Autodesk World Autodesk MapGuide," -- (Joe + Astroth), - Autodesk. " + , + , + + + -, + . Time Warner Cable, Sprint, + Boeing, -- + , + + - - + Autodesk. ."

+

Autodesk

+

Autodesk -- + , + . + + + + . - + Autodesk + , + + . - Autodesk + AutoCAD MAP -- Autodesk + ; Autodesk + World -- + + Microsoft; Autodesk + MapGuide -- Web.

+

, + Autodesk www.autodesk.com/gis.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/98_10_15a.htm b/html/_ex/98_10_15a.htm new file mode 100644 index 0000000..fc12fda --- /dev/null +++ b/html/_ex/98_10_15a.htm @@ -0,0 +1,128 @@ + + + + + + + + + + -- : + + + + + + + + + + + + + + +

+

+
, -- 13 15 + "" + " " + Autodesk + + . + + , + + . + + "", + CadMech, CadMech Desktop, AVS, Gear, Spring, Rotation, + Search Show!

+ Autodesk Mechanical Desktop + Release 3 ( ACIS4) + -- AutoCAD LT 98. + Autodesk + .

+

, " + ", + Flow Science, GTX, MacNeal Schwendler, Pathtrace, Rebis Vibrant + Graphics.

+

+ , + :

    +
  • ;
  • +
  • ;
  • +
  • ;
  • +
  • + ;
  • +
  • + ;
  • +
  • + ;
  • +
  • + .
  • +
+

+ 500 , , + , .

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/98_10_15b.htm b/html/_ex/98_10_15b.htm new file mode 100644 index 0000000..628ac46 --- /dev/null +++ b/html/_ex/98_10_15b.htm @@ -0,0 +1,299 @@ + + + + + + + + + -- : Autodesk AutoCAD LT 98 + + + + + + + + + + + + + + +

Autodesk AutoCAD LT 98

+

+ 2- + + .
+  

-, -- 12 + 1998. -- Autodesk, Inc. + AutoCAD LT 98, + + 2- , + , + , + AutoCAD. + , + drag-and-drop + "" ( + , + ), + , AutoCAD LT 98 + , + , + , + , -. + + 2- , AutoCAD LT 1- + ( + ) + 800,000 .

"AutoCAD LT 98 -- 5- + , + , + AutoCAD," -- + (Godfrey Sullivan), - + + Autodesk. " + , , + + Autodesk, , + AutoCAD LT 98 + Autodesk + ."

+

, 800,000 , + , , + , AutoCAD LT + Autodesk , + , , + , + , + AutoCAD. + + + , AutoCAD, AutoCAD LT + + + Autodesk.

+

+ + AutoCAD LT 98, :

    +
  • + Drag-and-Drop Content Explorer: + AutoCAD LT- + Content Explorer, + AutoCAD LT 97, + . + , + . + + + . + + , + .
  • +
  • + : , + , + AutoCAD LT 98 + + , + , + AutoCAD LT. + AutoCAD LT 98 + + . + + Microsoft Office, + + + AutoCAD LT, + + .
  • +
  • + : + AutoCAD LT + + . + + , + + . , + Array, + + , + . , + + . + + Purge, + , + + . + + .
  • +
  • Undo Redo: + (Undo) (Redo) + + "" , + , + . + , Microsoft Office, + Undo Redo + + . , AutoCAD LT 98 + + Redo, + , + , + .
  • +
+

+

+ , + + . : + + Revision Cloud + ("") , + ; + 2D Region, + , + , , + ; + (Group Group Manager), + + , , + .

+

+

AutoCAD LT 98, + HPGL/2 + , + AutoCAD LT Learning Assistance + + . + , + AutoCAD LT, + , + AutoSnap PolarSnap, + + ( Microsoft + Intellimouse), HTML, + + .

+

+

+

" + + . AutoCAD LT 98 + -- + Group + " ", + Drag and Drop + , + + . + , + , + Purge, + ," -- + (James Padgett), Straight Forward Software + . " , + AutoCAD + , + AutoCAD."

+

" + , - , AutoCAD LT -- + , + , 100% + AutoCAD R14," -- + (James Larson), (Larson Architects) + . (, ). " AutoCAD + LT98, , + , + , + ."

+

+

+ Windows 98, Windows 95, Windows NT 4.0, 486DX/66 CPU, 16MB RAM, 50 MB + , VGA + ( 800X600), , + Windows.

+

+

AutoCAD LT 98 + 588 ( + ). Autodesk + + Autodesk.

+

+ Autodesk

+

1997., + + + , + , , + . + , , : + AutoCAD LT, AutoSketch, Actrix Technical.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/98_10_20a.htm b/html/_ex/98_10_20a.htm new file mode 100644 index 0000000..59f54af --- /dev/null +++ b/html/_ex/98_10_20a.htm @@ -0,0 +1,149 @@ + + + + + + + + + -- : - LT + + + + + + + + + + + + + + +

- LT

+

5
+  

a A -- + -- + , + , A-PA LT. + - + A-PA 5.6 Windows. + A-PA LT + 20 .

+

A-PA LT + . , + , + .

+

A-PA LT -- + . 1992 + - + - 4.5, 300 + . , - + Web- .

+

A-PA LT + , , + - + , . + A-PA LT + " &qout; A-PA 5.6, + -- + + , -  LT.   + LT + + - 5.

+

, + + . , - + 3-4 + - + ( " + &qupt; .. ).

+

, + , LT + -. + LT 100% + . , + LT + .

+

LT 5.6:

    +
  • ,
  • +
  • -
  • +
  • +
  • +
  • +
  • +
  • +
  • +
  • , , , ..
  • +
  • +
  • +
  • DXF IGES

+

A-PA LT 995 . . , "" 60 , ( , CADdy++ light 100 , AutoCAD LT - 500).

+ +

pa A-PA LT p p pp Pentium, 16 pa a ( 32 ) Windows 95, Windows 98 Windows NT. pa Windows NT 32 pa a.

+ +

1989 . ----- , 700 , Consistent Software, SolidWorks, MSC, , CAD/CAM.

+
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/98_10_28a.htm b/html/_ex/98_10_28a.htm new file mode 100644 index 0000000..9eae2d3 --- /dev/null +++ b/html/_ex/98_10_28a.htm @@ -0,0 +1,296 @@ + + + + + + + + + -- : Autodesk + + + + + + + + + + + + + + +

Autodesk +

+
Autodesk + + + , . + 12 13 1998 "". + + Autodesk .

+

+

12 1998

+

4

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
10:00AutoCAD R14 -- Internet / Microsoft Visual Basic for + Applications / Visual Lisp / -
11:00 + AutoCAD. RasterDesk LT 97 -- + + AutoCAD LT 97
12:00 Autodesk (AutoCAD LT, AutoSketch, + Actrix)
13:00 + Mechanical Desktop
14:00 + - +
15:00 Mechanical + Desktop InterMech Desktop
16:00 + + Mechanical Desktop DesignSpace
17:00 AutoCAD R14
+

7

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
10:00 + Autodesk World, +
11:00 + AutoCAD MAP +
12:00 "GEO+CAD" + + AutoCAD MAP, Civil Survey, WHIP! +
13:00 Autodesk + - +
14:00 + + AutoCAD
15:00 + 3D Studio VIZ
16:00 3D Studio MAX R2.5 +
17:003D Studio VIZ R2 - + . + +
+

13 1998

+

4

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
10:00 AutoCAD R14
11:00AutoCAD R14 - Internet / Microsoft Visual Basic for + Applications / Visual Lisp / -
12:00 Autodesk (AutoCAD LT, AutoSketch, + Actrix)
13:00AutoCAD LT 97
14:00 + Mechanical Desktop
15:00 Autodesk Mechanical + Desktop + Genius , + + -
16:00 Mechanical Desktop
17:00 + Mechanical Desktop SurfCAM
+

7

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
10:00 - + Autodesk (AutoCAD MAP) +
11:00 MapGuide + + - +
12:00 3D Studio MAX R2.5 +
13:00 + 3D Studio VIZ
14:00 Autodesk + (AutoCAD MAP Civil Survey) +
15:00 Autodesk-Softdesk + + +
16:00 + Building Services Suite +
17:00 Autodesk Rebis +
+

+ :
+
+ Autodesk -- 129110, , + ,  33,  1, , .: (095) 797-4700, + : (095) 797-4710
+
+ + -- 101000, , .,  18,  2, + .: (095) 923-6341, : (095) 923-7237

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/98_11_17a.htm b/html/_ex/98_11_17a.htm new file mode 100644 index 0000000..7f59c9f --- /dev/null +++ b/html/_ex/98_11_17a.htm @@ -0,0 +1,132 @@ + + + + + + + + + -- : 5 + + + + + + + + + + + + + + +

""  5

+

() 60
+  

  + (. ), + + ( , + ), ( + ,  ..),   + 60 - + -.

+

. +   1994 1996  + 110  4. +  DOS, . + - + , + .

+

+ -- +  5 Windows, + 1996 . + . +    5. + 60 , + (, + , ).   + +  5.

+

upgrade + , + + + .

+

, + + SolidWorks 98, + ( ) + .

+

, + SolidWorks, + + - 5.

+

+ 1989 . + , + 700 . + SolidWorks Corp. +  .

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/98_11_20a.htm b/html/_ex/98_11_20a.htm new file mode 100644 index 0000000..80681d7 --- /dev/null +++ b/html/_ex/98_11_20a.htm @@ -0,0 +1,154 @@ + + + + + + + + + -- : Autodesk , , , , + + + + + + + + + + + + + + +

Autodesk , + , , + ,

+

Autodesk + 800
+  

, 12 13 1998. -- Autodesk + CIS, ZAO , + , , + . "" + 10:00  18:00.

+ +

2  + 70 . , + -- , , . + 10:00 200 , + . + . , . + . Autodesk + , + . -, + + . 800 .

+ +

+ , 9 Autodesk + .

+ +

+ : 48% , 27% -- + , 19% -- , + 17% -- . ( + ). + , , . , + , , , + , .

+ +

+ + , + . , + . , + , , , , , , + , , . + 9%.

+ +

Autodesk + Actrix ; + AutoCAD LT98, AutoSketch 6 ; + -: AutoCAD MAP R3, Autodesk World R2, Autodesk MapGuide R3; + 3D Studio VIZ R2 -- . + AutoCAD R14, + Mechanical Desktop R2, Softdesk Auto-Architect, + Softdesk Civil Survey, Softdesk Building Services Suite, + 3D Studio MAX R2.5. Autodesk + Rasterdesk LT, InterMech Desktop, ANSYS, SurfCAM, , + SoftEngine, PitCup, Rebis . + , + www.cad.ru.

+ +

Autodesk + -- : (), + Consistent Software (), EMT (), Softech (); + : (), (), + Steepler Graphics Group (); : (), + Buro ESG (-), - (), + (), - ().

+ +

. + , . + Autodesk .

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/98_12_17a.htm b/html/_ex/98_12_17a.htm new file mode 100644 index 0000000..9337f30 --- /dev/null +++ b/html/_ex/98_12_17a.htm @@ -0,0 +1,164 @@ + + + + + + + + + -- : Consistent Software - + + + + + + + + + + + + + + +

Consistent Software - +

+


+  

-- 28...29 1998 . -- + Novotel Consistent + Software -. + 110 , + 70 - + - , , , ... + + Autodesk, CAD-FEM, CalComp, + Mutoh, ScanVec, Rexam Graphics, + Hunt Graphics, Graphisoft.

+

, - + (Consistent Software) (-) + , , + + . , + . + -- + , + , + , - .

+

Consistent Software + - , + + .

+

, , + Autodesk - + C . + Autodesk CIS + , + Autodesk + , + Autodesk .

+

+ Mutoh Falcon RJ. + RJ-800 + Mutoh CAD-. + ( 720x720 dpi + ) , + , , + .. + Mutoh + (Arthur Vanhoutte) , + - + AutoCAD MAP + Falcon RJ-800 1:2000. + - + , + . + . + , + + .

+

CalComp + -- Design Station. + , + 4x5 + . + 16- , + , . + : + -- 2540 -- 10 , . + TemplateWorks, + Design Station, + + AutoCAD R14.

+

+ . + (), +  ESG (.-), + - (), +  A&C (), + (), (), +  "" (), + Consistent Software --  (), + (), (), + (.).

+
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/98_12_18a.htm b/html/_ex/98_12_18a.htm new file mode 100644 index 0000000..fbc119f --- /dev/null +++ b/html/_ex/98_12_18a.htm @@ -0,0 +1,130 @@ + + + + + + + + + -- : Autodesk Softdesk + + + + + + + + + + + + + + +

Autodesk + Softdesk

+

Softdesk -- + - , + , , .
+  

, 12 13  1998. -- + Autodesk CIS, ZAO + -- Softech + () () -- + "" + - + Softdesk S8. , + , + , + Softech.

+ +

Softdesk + Autodesk + :

    +
  • - ;
  • +
  • ;
  • +
  • ;
  • +
  • , , .
+ + Softdesk S8 Auto-Architect, + Softdesk S8 Building Services Suite, + Softdesk S8 Terrain Modelling Suite, + Softdesk S8 Civil Survey Complete. + + AutoCAD R14 + AutoCAD MAP R2 R3.

+ +

+ . , , + . , + . + + .

+ +

Autodesk + Softdesk, + + . + Softdesk + S8 . + .

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/98_12_18b.htm b/html/_ex/98_12_18b.htm new file mode 100644 index 0000000..ca0f78d --- /dev/null +++ b/html/_ex/98_12_18b.htm @@ -0,0 +1,114 @@ + + + + + + + + + -- : Autodesk + + + + + + + + + + + + + + +

Autodesk + ""

+

Autodesk .
+  

, 1998. -- + Autodesk CIS, ZAO + "" + 6 . + AutoCAD, + , + , + . + Autodesk +  .

+ +

+ "" + Autodesk . + + . 12- + + . + , " ?" + , .

+ +

&qout;" + 1986 . + , + . + , , + , . (095) 928-3688.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_01_10a.htm b/html/_ex/99_01_10a.htm new file mode 100644 index 0000000..10dc0e2 --- /dev/null +++ b/html/_ex/99_01_10a.htm @@ -0,0 +1,125 @@ + + + + + -- : 6- + + + + + + + + + + + + + + + + + + +

6- +

+

Autodesk
+  

20-23 1998. -- + Autodesk CIS, ZAO 6- + . + + + ( ). Consistent + Software, , "", -.

+

15 10 - , + -, , , , , + , , , .

+

:

    +
  • ;
  • +
  • ;
  • +
  • ;
  • +
  • ;
  • +
  • Web-;
  • +
  • ;
  • +
  • .

+

Autodesk- + ( AutoCAD R14 3D Studio MAX). + :

    +
  • 3- + " " ;
  • +
  • + ;
  • +
  • ( + 3D Studio MAX).

+

+ + . + .

+

+ ( 60), + . + + , + . Autodesk CIS, + .

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_01_18a.htm b/html/_ex/99_01_18a.htm new file mode 100644 index 0000000..e137d7b --- /dev/null +++ b/html/_ex/99_01_18a.htm @@ -0,0 +1,217 @@ + + + + + + -- : Autodesk "DESIGN YOUR WORLD" + + + + + + + + + + + + + + + + + +

Autodesk "DESIGN YOUR WORLD"

+

$ 10 000
+  

+ Autodesk + , , . + , + Autodesk. + , , , + , Mechanical Desktop, + Autodesk ( ) 19 1999 .

+

+

:

+

Autodesk 3- + . + Silicon Graphics NT Workstation + Mechanical Desktop. + Machine Design Magazine. + $10,000. + 7 Autodesk + . + . + , + Autodesk. Autodesk + + . + 31 1999 , + Autodesk, + , , .

+

:

+

, + . 18- + . 17:00 + 19 1999. + Mechanical Desktop. + , . + , + . + , + Autodesk, , , + , + , , , + , . + , , + , + , + . , , + , , + , + + , , + + , + Autodesk, , , + + . + , , + , , + .

+

:

+

, + : www.autodesk.com/solution/mech/contest/upload.htm. + + Autodesk -, , + 17:00 19 1999 :
+       Autodesk, Inc.
+       Attn.: Image Archives
+       111 McInnis Parkway
+       San Rafael, CA 94903

+ : 1+(415)507-5123.

+

Internet, (Upload Form) + www.autodesk.com/solution/mech/contest/upload.htm + Autodesk. + .

+

:

+

.dwg. + XREF . + . + 2048x1536, .tga .tif. + . + CD-ROM, Jaz ZIP-, + www.autodesk.com/winbig.

+

:

+

, + , + . Autodesk + -, , 17:00 + 19 1999 .

+

:

+

, , + ; + ; + ; + , + . + + Machine Design, Silicon Graphics, Inc. Autodesk + . + . 1 1999 + .

+

:

+

Autodesk , + Autodesk 19 1999 + , , , , + . + Autodesk , . + , + , , + , , + . + + .

+

Autodesk

+

Autodesk -- + . + , + , , , + , , , + Web. Kinetix + + , + . Autodesk -- + , + 3 , 150 . + Autodesk 57 . + " " + : 7+(095)797-4700 World Wide + Web www.autodesk.com.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_02_12a.htm b/html/_ex/99_02_12a.htm new file mode 100644 index 0000000..115a7bf --- /dev/null +++ b/html/_ex/99_02_12a.htm @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + +

Autodesk ��'������ � ����� �������� + "������� ����"

+

������ 3 ������ ���� �� ���������� + AutoCAD R11 � R12 �� AutoCAD R14 �������� $ 499
+  

������, 1 ������� 1999�. -- �������� Autodesk CIS, + ZAO �������� � ������ ����� ������������� + �������� ��� ��������� "������� ����". ��� + ������������� ��� ����, ����� ������������ + ��������� ������������� AutoCAD R11 � R12 + ����������� ������ �� AutoCAD R14 �� ������� ����� + �� ��������������� ����.

+

�������� "������� + ����" ���������� ����� �� 3 ������ -- � 1 ������� + �� 30 ������ 1999 ����. � ������� ����� ������� + ������������ AutoCAD R11 ��� R12 ����� �������� ��� + ������ �� AutoCAD R14 �� ����������� ���� $ 499, + ������� ���. ��� ������ ������������ ������ + AutoCAD R14 �� ������� �����.

+

� 1 ��� �� 31 ���� ��������� ������ �������� + $ 904. � 1 ������� 1999�. ��� ������ � AutoCAD R11 � R12 + ��� �� AutoCAD R14, ��� � �� ��������� ������ AutoCAD, + ������������!

+

����� ����� ���������� �������� "������� + ����" ������������ ������ ������� �������� + ������ ��������� ��������� � ����������� + ����� (��� ��������� �� �����/����� � ��� + �������� ���) �� ������� 15 ������. Autodesk + ������������ ���������� ����� � �������� + ��������� ������ � ��������������. ������ ������ + ������� ��� ����� R11/R12, ���������� ����� � + ��������������� ����� ������ ����� ���, ��� + �������� �������� ����� AutoCAD R14.

+

������� ������� ������� �������� � ������ + ��������������� �������������� ������������� + ����� ���� �������������� ������� Autodesk, + ���������� ������� ����� ������ � Autodesk �� ���. (095) + 797-4700.

+

��� ������� ������������ �������� 500 �������.

+

��������������� �������� �������� "������� + ����" ����� �������� � Autodesk ��� � + �������������� ��������������, ��������� + ������� � ������� Autodesk.

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
��! + � ���� �������� AutoCAD R11 ��� R12 �� AutoCAD R14
�������:
���:
��������:
�����������:
�����:
���������:
������:
������:
�����/�������:
�����:
��� ������:
�������:
����:
E-mail:
�������������
+ �����:
��������������
+ ���, �����������
+ �����������, + �������������
+ ��������, ������, + ������������
+ ������:
AutoCAD R11:��������������� ������:
+
+
+
AutoCAD R12:��������������� ������:
+
+
+
 
-
+
+ +

������
+

+ + + + + +
[��������] + [���������] + [�������]
+ + [����������] + [�����] + [�����]
+ +
+ + + + + +
+ +
Интерреклама. Деловая сеть
+
+ + + + + +
+ + diff --git a/html/_ex/99_02_19a.htm b/html/_ex/99_02_19a.htm new file mode 100644 index 0000000..aaa22cd --- /dev/null +++ b/html/_ex/99_02_19a.htm @@ -0,0 +1,126 @@ + + + + + + + + + -- : + + + + + + + + + + + + + + +

+

Silicon Graphics, Autodesk
+  

17 1999 , , -- + () Silicon Graphics Inc,. + , + Silicon Graphics Intel. Silicon + Graphics + , + , , UNIX, + . Silicon + Graphics Intel + Microsoft Windows NT, + , , + , , + . , + ( + COMDEX -, + 1999). + Silicon Graphics + + www.cad.ru/sgi.

+ +

Silicon Graphics + , Autodesk Inc., + . + + . + . , + , + 1998 + Autodesk , .

+ +

+ - + Silicon Graphics Autodesk. + , + + Silicon Graphics AutoCAD. , + , , + , + -99, + .

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_03_09a.htm b/html/_ex/99_03_09a.htm new file mode 100644 index 0000000..688a663 --- /dev/null +++ b/html/_ex/99_03_09a.htm @@ -0,0 +1,203 @@ + + + + + + + + + -- : Autodesk AutoCAD 2000 + + + + + + + + + + + + + + +

Autodesk + AutoCAD 2000

+

+ Design 2000
+  

-, -- 9 1999. -- + Autodesk Inc., , + + . AutoCADR 2000, + + , + . + Autodesk -- Design 2000 -- + , + . Design 2000, + Autodesk + + .

+ +

" + Autodesk. + &qout;, -- + (Carol Bartz), Autodesk. + " Design 2000 , Autodesk + + . , + , + + -- + ."

+ +

: AutoCAD 2000

+ +

Autodesk Design 2000, + AutoCAD, + . AutoCAD 2000 + , , + , 400 + , + . + + MDE (Multiple Design Environment), + , + AutoCAD; AutoCAD Design Center, , + + , , + . , AutoCAD 2000 + , + + .

+ +

+ +

Autodesk + , AutoCAD 2000, + Autodesk . + + , , : , + , , + () . + + AutoCAD 2000, + + , + .

+ +

- Autodesk . + AutoCAD Mechanical 2000, + , + , Mechanical DesktopR R4 + + . , AutoCAD Map 2000 , + - + AutoCAD. , AutoCAD Architectural + Desktop R2 AEC, + , + + . AutoCAD Land + Development Desktop R2 + + .

+ +

Design 2000, + Autodesk , + , + , , + . 3D Studio VIZ, + AutodeskR CAD Overlay, Actrix Technical, AutoCAD LT, Volo View + Volo Explorer.

+ +

+ +

GartnerGroup + , + , + , + .

+ +

" + , + , , + , + 90- ", -- (David + Burdick), GartnerGroup. " + , + , + ."

+ +

+ . + , + , , , , + ,- + . + , + , + . + + - , Autodesk, + Design 2000.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_03_20a.htm b/html/_ex/99_03_20a.htm new file mode 100644 index 0000000..a8c4c53 --- /dev/null +++ b/html/_ex/99_03_20a.htm @@ -0,0 +1,117 @@ + + + + + + + + + -- : Contex Magnum + + + + + + + + + + + + + + +

+ Contex Magnum

+


+  

18 1999 , Cebit-99 + Contex + Magnum. + 127 (50 ) 15 + (0,6 ). + , + .

+

Magnum 600 800 dpi + 36 . + ANSI-IT-8 ICC + . + + . + ( ). + 35 + 0 400 dpi. + JetImage + , LCD + + , . Contex + + Macintosh plug-in PhotoShop, + Mac + .

+

Magnum , + ( , + , + ).

+

Contex + " ".

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_03_30a.htm b/html/_ex/99_03_30a.htm new file mode 100644 index 0000000..dcc6d3e --- /dev/null +++ b/html/_ex/99_03_30a.htm @@ -0,0 +1,216 @@ + + + + + + + + + -- : AutoCAD 2000 + + + + + + + + + + + + + + +

AutoCAD 2000

+

+ , , + .
+  

-, -- 9 1999. -- + Autodesk Inc., + , , + + .   AutoCAD 2000, + AutoCAD, + , + , + .   AutoCAD 2000 + , + , + , + .

+

, AutoCAD 2000 -- , + + .   AutodeskR + AutoCAD 2000, + , , , , + , .

+

" AutoCAD 2000 , + -- + + ," + (Carol Bartz), Autodesk.   " , + AutoCAD 2000 + + .   AutoCAD 2000 + + ."

+

(Bruce Jenkins), - + Daratech, " , + AutoCAD, Autodesk + .   + AutoCAD 2000 , + Microsoft Windows Microsoft Explorer.   , + , AutoCAD 2000 + , + ."

+

+ AutoCAD 2000 400 + , . + , :

    +
  • MDE (Multiple Design + Environment).   AutoCAD 2000 + MDI MDE.   + , + AutoCAD, + , + AutoCAD 2000 .   , + + .
  • +
  • AutoCAD DesignCenter ( AutoCAD).   AutoCAD + DesignCenter -- , + + , , + .   AutoCAD Design Center + , + .   , , + , + .
  • +
  • (Properties window) -- + , + .   + , , + .   + , 40 + , + .
  • +
  • (Layouts).   + , + , , + (Layouts) + + .   , - + Microsoft Excel, + .
  • +
  • (AutoSnaps/AutoTracking).   + AutoSnaps/AutoTracking + + , + , + .

+

+ AutoCAD 2000 + Web, + .   + Web, + , Internet.   + AutoCAD 2000, , , + , , + .   Web, + , AutoCAD.

+

AutoCAD, Autodesk + , AutoCAD:

    +
  • Volo View -- + AutoCAD, + .   Volo View -- , + AutoCAD, , + AutoCAD DWG, DWF DXFT.   + AutoCAD, Volo View + AutoCAD ( + Volo View , + AutoCAD), ActiveShapes, + ClearScale, + .   .
  • +
  • Volo Explorer, + , + .   Volo Explorer -- , + Microsoft Windows Explorer, + " ".   + , + + , , + + Windows NT.   Volo Explorer + , + , + .

+

+

AutoCAD 2000 + $3,900 .   + AutoCAD R14 $644, AutoCAD R13 -- + $904 .

+

+ Autodesk .   + Autodesk -- " + " : (095) 923.7273, 923.6547, + 923.6341

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_04_05a.htm b/html/_ex/99_04_05a.htm new file mode 100644 index 0000000..5d2277c --- /dev/null +++ b/html/_ex/99_04_05a.htm @@ -0,0 +1,153 @@ + + + + + + + + + -- : 10- + + + + + + + + + + + + + + +

10-

+

: 10
+  

-- 21 1999 -- , + + , + () , 10- + -- + .   200 + : , , + , , + , .

+

+ + 10 + .   + -- " + ", " " + "1+1=5".   ( + 100 ) + "" ( 60 ) + + .   + .   + + .   + ( "-") ( + "-") + + .   + + . + + "" + + 1998 .   "", + 30 + , .   + + "Top 30". + +   " " +  5, + + . + "-" + + - .

+

, + + + : "", "", + "-", "" , +  "".   + + + .   + " " + + , , , + + .

+

+ .  - + + + .   + , + , + .

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_04_10a.htm b/html/_ex/99_04_10a.htm new file mode 100644 index 0000000..a2ed150 --- /dev/null +++ b/html/_ex/99_04_10a.htm @@ -0,0 +1,206 @@ + + + + + + + + + -- : " :" + + + + + + + + + + + + + + +

" :" +

+

Autodesk CIS, SGI + + Silicon Graphics AutoCAD 2000 +
+  

-- 10 1999. -- Autodesk CIS, SGI + , 10 20 + 1999 + .   + + Silicon Graphics 320 Silicon Graphics 540 + AutoCAD 2000M + .   + Autodesk SGI, + .

+ +

, SGI + , " Visual PC + Intel Windows NT, + Silicon Graphics"320 540 -- + .   + + .   , , + AutoCAD CADALIST, + Silicon Graphics 320 + (Hewlett Packard Kayak XAs, Compaq Professional Workstation AP500 + Intergraph TDZ 2000 GL2) ."

+ +

" AutoCAD 2000, + -- + , -- , Autodesk + CIS.   -- + - Autodesk, + AutoCAD .   + AutoCAD 2000 400 + .   + AutoCAD 2000 -- , + -- + ." + +

, + , " + , + , + .   + .   + Silicon Graphics AutoCAD 2000 + , , + + ." + +

AutoCAD 2000 Silicon + Graphics 320 $6999.   $1500 + 18% .   + Silicon + Graphics .

+ +

, + Silicon Graphics 320 + AutoCAD 2000 + . + (095)923.7237.   + , KOMTEK'99 + . + Silicon Graphics 320 - + www.cad.ru/sgi, + : (.   + ).   + , .   + .

+ +

AutoCAD 2000 Silicon + Graphics 320 + .   + SiliconGraphics AutoCAD 2000 + .   10 + 20 .   , 20 1999 , + . + +

" -- + + ," -- , + .   -- , + + , + , + .   , + .   + + + " " + , + ".

+ +

Autodesk

+

Autodesk -- + .   + , + , , , + , , , + Web.   + , + Autodesk 3 , + 150 .   +  . : (095) 797.4700

+ +

Silicon Graphics Inc.  

+

Silicon Graphics Inc.   -- + .   + -- + + .   Silicon Graphics Inc.   + e - Mountain + View, California. : (095) 935.8484

+ +

+

-- + , , 15 + + ( Autodesk, Silicon Graphics, Rebis ), + 80 , . + : (095) 923.7273, 923.6547, 923.6341

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_05_13a.htm b/html/_ex/99_05_13a.htm new file mode 100644 index 0000000..a85d082 --- /dev/null +++ b/html/_ex/99_05_13a.htm @@ -0,0 +1,111 @@ + + + + + + + + + -- : bCAD + + + + + + + + + + + + + + +

bCAD

+

" + "
+  

, , 27 1999 . -- + + + " " + bCAD 3.5. + bCAD 3.5 + , bCAD + + bCAD Java (Java API), + , + + . , + , + + + . bCAD 3.5 + 30 1999 .

+

bCAD 3.5 + ." +

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_05_25a.htm b/html/_ex/99_05_25a.htm new file mode 100644 index 0000000..90ad8e5 --- /dev/null +++ b/html/_ex/99_05_25a.htm @@ -0,0 +1,193 @@ + + + + + + + + + -- : Autodesk VISION* Solutions + + + + + + + + + + + + + + +

Autodesk VISION* Solutions

+

+ / + / .
+  

-, -- 22 1999. -- + Autodesk, Inc. VISION* Solutions, + / / + ( AM/FM/GIS), + , MCI Systemhouse Corp., + MCI WorldCom's.   + $26 .   Autodesk , VISION* + , + , + AM/FM/GIS, , .

+ +

VISION* Solutions + , , , + .   US West + FirstEnergy , Thames Water Yorkshire Electric + , Telstra .

+ +

Autodesk/VISION*, + , , , + , , + .   + AM/FM/GIS -, + .   -, , , + , + , .   -, + + .   Dataquest + (-, ), + $2.5 .  2001.

+ +

" , , + , AM/FM/GIS + : + ," -- (Carol Bartz), + Autodesk.   " Autodesk + , + .   + ."

+ +

" Autodesk VISION* Solutions + Autodesk + ," -- (Dave Sonnen), + International Data Corporation (IDC), + .   "IDC + -, + Autodesk .   Autodesk + -, + AM/FM.   , Autodesk + AM/FM + ."

+ +

Autodesk - , + VISION* + , + .   Autodesk + + , , + .   , Autodesk + Autodesk VISION*, + VISION* + , + , Autodesk + .

+ +

" , , + + AM/FM/GIS ," -- (Joe + Astroth), , - Autodesk .   " + , + .   + .   + AM/FM/GIS.   + + + , Autodesk + ." + +

+ Autodesk VISION* Solutions, + www.gis.shl.com.

+ +

VISION* Solutions

+

VISION* Solutions (, ) + AM/FM/GIS , + .   + AM/FM/GIS Oracle .   + + .   VISION* Solutions + 100 + 20,000.

+ +

Autodesk

+ +

Autodesk -- + , 4 , 300,000 + AM/FM/GIS .   Autodesk + -- AutoCAD MAP; + AM/FM/GIS + Microsoft Windows -- Autodesk World; + + Internet -- Autodesk MapGuide, , 500 + .   , Autodesk + AM/FM/GIS + .

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_05_26a.htm b/html/_ex/99_05_26a.htm new file mode 100644 index 0000000..24bbde0 --- /dev/null +++ b/html/_ex/99_05_26a.htm @@ -0,0 +1,122 @@ + + + + + + + + + -- : " " 100 + + + + + + + + + + + + + + +

" " + 100

+

 
+  

-- 26...27 1999 -- " " + + " " "" + VIII - " + + ", 10- . + 60 + ( 100 ).

+

, "" "", -- . , .

+

.. .. -- , "" : 5.7 , SolidWorks 98 Plus , - PartY, -3, SPOTLIGHT VECTORY.

+

, WOODY - LTD (.).

+

. "" (.) .. WinMachine. - , , - .. (.) .. (.). -3D . (.) . .. - "" ( ).

+

. --- - LT 50- 25- "", 4 . , , ( ).

+

9 , . WEB- (.) - , .

+ +

" " " ":

+

" " + . + 1990 + , . + (0322) 39-85-37, E-mail: + center@sapr.lviv.ua.

+ +

:

+ +

1989 . + + , 700 + . + SolidWorks Corp., + -- . + pa , , + , a a + A : (095)452.0747, (812)252.5377 a www.ascon.ru.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_01a.htm b/html/_ex/99_06_01a.htm new file mode 100644 index 0000000..f3a5db5 --- /dev/null +++ b/html/_ex/99_06_01a.htm @@ -0,0 +1,148 @@ + + + + + + + + + -- : : " -- !" + + + + + + + + + + + + + + +

: " -- + !"

+

5.. + 5.0-5.3 5.7
+  

-- 01, 1999 -- , + , + 1 1999 + " -- !". + - 5 ( + 5.0-5.3) + - 5.7 125 , + upgrade.

+

- 5.7 , + 5.0-5.3. +  5.7:

    +
  • + . + -- . , +  5., +  5.7;
  • +
  • ;
  • +
  • - + Windows (Word, Excel ..) OLE;
  • +
  • - +  5, + ;
  • +
  • + DXF CAD- + ;
  • +
  • VC5 Vectory
  • 5 + Spotlight3; +
  • 5 KSF + (Kompas Symbol Format). + 5. 4.; +
  • , + .

+ +

5.7 , + + . , + , + . + 5.7 -, + + .

+

" -- !" + 1  30  1999 . + , + . , + ( 16  ) + 2000  - 5.7.

+ +

:

+ +

1989 . + + , 700 + . + SolidWorks Corp., + -- . + pa , , + , a a + A : (095)452.0747, (812)252.5377 a www.ascon.ru.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_02a.htm b/html/_ex/99_06_02a.htm new file mode 100644 index 0000000..5821300 --- /dev/null +++ b/html/_ex/99_06_02a.htm @@ -0,0 +1,188 @@ + + + + + + + + + -- : Autodesk CAD Overlay 2000 + + + + + + + + + + + + + + +

Autodesk CAD Overlay 2000

+

, +
+  

-, -- 5 1999. -- + Autodesk, Inc. + Autodesk CAD Overlay 2000, + AutoCAD . + . + + AutoCAD 2000, + , + REM (Raster Entity Manipulation) + SmartPick . , + + , , + + , , + .

+

" + ," -- (Mark + Sawyer), - AEC Autodesk. "CAD + Overlay 2000 + , + , ."

+ +

Design 2000 Autodesk CAD Overlay + AutoCAD 2000 + , , . + CAD Overlay . + AutoCAD 2000, AutoCAD MAP 2000, AutoCAD + Architectural Desktop Release 2, Mechanical Desktop Release 4, AutoCAD + Mechanical 2000, AutoCAD Land Development Desktop Release 2, + .

+ +

" , + + , + ," -- (Brian J. Marx), + Clough, Harbour & Associates LLP (Albany, New York)

+ +

: + " " , + , , , , + + . , Autodesk , + 70% + . + . + , + , , , + .

+ +

CAD Overlay

+

Autodesk , + + CAD Overlay:

    +
  • REM SmartPick. + CAD Overlay 2000 + REM SmartPick + , , + AutoCAD AutoCAD. + , , , + + + .
  • +
  • AutoCAD. + CAD Overlay 2000 + , + + . + Internet URL Autodesk CAD Overlay. + AutoCAD, CAD Overlay + AutoCAD 2000 + . + , .
  • +
  • . + Autodesk CAD Overlay 2000 "" + . + + , , + , + . + CAD Overlay.
  • +
  • Raster Snap. + Autodesk CAD Overlay 2000. + "" (glyphs) + " " AutoCAD + . , + AutoCAD. + + CAD Overlay.

+ +

+ CAD Overlay 2000 + + AutoCAD. VTool + , + . + LFX (Line Following + Extension), , + . + 5 + , + .

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_03a.htm b/html/_ex/99_06_03a.htm new file mode 100644 index 0000000..0fcc18e --- /dev/null +++ b/html/_ex/99_06_03a.htm @@ -0,0 +1,154 @@ + + + + + + + + + -- : + + + + + + + + + + + + + + +

+

 
+  

-- 03 1999. -- , + + -- 19...20 + "" "", + + - . + 10- -- + .

+

+ (), + , + "". + 100 + .

+

+ + + . + - , + + .

+

+ 10 + , + + -- " ", " " + "1+1=5". + + + . + , + , + .

+

, CAD/CAM + , , , + , . + - 5.7 + , + SolidWorks 98 Plus , + -3, + - + PartY, + . +

+ , + - 5.7 LT. + +

:

+ +

-- + + . + . 1999 + . : (3472)43-17-14, + E-mail: dvf@ufanet.ru.

+ +

:

+ +

1989 . + + , 700 + . + SolidWorks Corp., + -- . + pa , , + , a a + A : (095)452.0747, (812)252.5377 a www.ascon.ru.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_04a.htm b/html/_ex/99_06_04a.htm new file mode 100644 index 0000000..ec72a35 --- /dev/null +++ b/html/_ex/99_06_04a.htm @@ -0,0 +1,158 @@ + + + + + + + + + -- : + + + + + + + + + + + + + + +

+

200 +
+  

-- 04, 1999 -- + , + , 1-2 + , 10- + -- + - . + " " + + ,  .

+

200 . + + .

+

+ 10 + . + + -- " ", + " " "1+1=5". + + + . + , + , + .

+

+ , , + , :  5 + , + SolidWorks 98 Plus + , + - PartY, + .

+

+ -3. + , , + . -3 + - 5 + Windows, .

+

-3 + . + , , + , + - + ( ) + .

+ +

:

+ +

- -- + + . + -3, + - 5 + Windows, . -3 + , , + . C + mitin@mech.unn.runnet.ru + : (831-2)46.8979, 65.7752, 34.1034

+ +

:

+ +

1989 . + + , 700 + . + SolidWorks Corp., + -- . + pa , , + , a a + A : (095)452.0747, (812)252.5377 a www.ascon.ru.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_07a.htm b/html/_ex/99_06_07a.htm new file mode 100644 index 0000000..367a9df --- /dev/null +++ b/html/_ex/99_06_07a.htm @@ -0,0 +1,342 @@ + + + + + + + + + -- : DISCREET, Autodesk, 3D Studio MAX R3 + + + + + + + + + + + + + + +

DISCREET, Autodesk, 3D Studio MAX R3

+

+ , + .
+  

-, -- 16 1999. -- Discreet, + Autodesk, Inc. 3D Studio MAX R3, + , + .   + , 3D Studio MAX R3 + , + , + .   :

    +
  • ;
  • +
  • ;
  • +
  • ;
  • +
  • ;
+

, + .

+

Autodesk -- Discreet -- + Discreet Logic, Inc. + Autodesk -- Kinetix.   + Discreet + -, 16 .   + Character Studio R2.2, 3D Studio MAX. + Character Studio R2.2 + 3D Studio MAX R3.

+

" -- , + , 3D Studio + MAX R3, + ," -- (Jim Guerard), + - Autodesk.    MAX R3 -- + ."

+

3D Studio MAX R3 Character Studio R2.2, + Discreet , + + .   3D Studio MAX , + + , + -- , + .   3D Studio + MAX R3 + , + .

+ +

-

+ +

, + , + , Discreet (External References) + 3D Studio MAX R3.   + 3D Studio MAX, + + , , + .   + , + .   3D Studio MAX R3, + , , + , , . + - MAX R3 + + .   - + + , + .

+

3D Studio MAX R3 + .   .MAX + , + , Windows Explorer.   + Distributed COM + MAX, + .   3D Studio MAX R3 + .

+

, + 3D Studio MAX R3 + + .   MAX + , + , + .   + , + + .   MAX R3, + , , + .   + , + , + .

+

+ .   , + , , , + , , + , -- + .   + + .   + , + , + , , + .   , + -, , + + Schematic View.

+

Discreet + MAXScript, , + , 3D Studio MAX + -- .   MAX + + MAXScript, + .   + "Plug-in Scripts" , + , , + .

+ +

+ +

3D Studio MAX R3, Discreet + MAX Renderer.   + MAX R3 Renderer , + + .   + -- , , + , -- . + , + , + , + , + .   + + Software Developer's Kit (SDK).

+

3D Studio MAX R3 + , + , SDK.   + MAX R3, + + + .   Shader + , :

    +
  • Anistropic ( , a );
  • +
  • Straus;
  • +
  • Oren-Nayler-Blinn;
  • +
  • Shellac;
  • +
  • Multi-Layer ( ).
+

+ , + MAX + .

+

MAX R3 Renderer + + -, Render Effects. + Render Effects, - + , .   Render + Effects , + . + Render Effects :

    +
  • Flare (*),
  • +
  • Glow (*),
  • +
  • Ring (*),
  • +
  • Ray (* ),
  • +
  • Secondaries (* ),
  • +
  • Star (*),
  • +
  • Streak (* ),
  • +
  • Highlight (*),
  • +
  • Depth of Field (* ),
  • +
  • Brightness/Contrast (*/),
  • +
  • Color Balance (* ),
  • +
  • Blur (*),
  • +
  • Film Grain (* ).
+

Render Effects Atmospherics + , + + .

+

+ , + , + 3D Studio MAX + Polygon, Patch, Spline NURBS.   + Soft Selections + + .   + Soft Selections + .

+

MeshSmooth, + 3D Studio MAX, + , + .   + , , NURMS -- + NURBS, + MeshSmooth , , + .   Surface Tools, + "" Editable Patch, + + + .   NURBS + , + , IGES.   + 3D Studio MAX R3 + , + .

+

+ 3D Studio MAX R3 + , + , , + .

+

, + , + Skin.   + , , + Flex -- + + .   Flex + .   + Morpher + , , + .

+

, Discreet + 3D Studio MAX R3 + + MAX SDK.   + , , + + .   + + .   , + Web, SDK + VRML Exporter, - + VRML Exporter + .

+

+ Character + Studio R2.2, + 3D Studio MAX R3 , + , + , + , , + , , + .

+

3D Studio MAX R3 , + MAX R2.5 100 + , + .   + UVW Unwrap + + .

+

Pentium III Xeon, 3D Studio MAX R3 + OpenGL, Direct3D Heidi, + Streaming SIMD.   + Autodesk-Heidi, , + 30%, + .

+

-?

+

- + Autodesk -- " ". + 3D Studio + MAX R2 R2.5. + . + + " " + (095)923.7237, 923.6547, 923.6341

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_07b.htm b/html/_ex/99_06_07b.htm new file mode 100644 index 0000000..8bc0690 --- /dev/null +++ b/html/_ex/99_06_07b.htm @@ -0,0 +1,150 @@ + + + + + + + + + -- : Autodesk Lightscape R3.2 + + + + + + + + + + + + + + +

Autodesk Lightscape R3.2

+

, + + Autodesk.
+  

-, -- 6 1999. -- + Autodesk, Inc. Lightscape R3.2, + + .   + Lightscape R3.2 , + + AutoCAD 2000, 3D Studio VIZ + 3D Studio MAX.

+

Lightscape R3.2 + , , + + .   , + AutoCAD 2000, 3D Studio VIZ + , Lightscape R3.2 + , . + Lightscape + , , + + .   Lightscape + .

+

Lightscape + , + Web , + .   + , , + , , + Lightscape, + .

+

" Lightscape R3.2 , + + ," + -- (Noah Kennedy), + Discreet Autodesk.   " + Lightscape R3.2 + Autodesk , , Autodesk + Lightscape + .   + Lightscape + , + ."

+

, Lightscape R3.2 + :

    +
  • "" + AutoCAD DWG, AutoCAD 2000.
  • +
  • 3D Studio VIZ + 3D Studio MAX.
  • +
  • 100 , + , + ; + .
  • +
  • , + , Lightscape R3.2.   + + , .
  • +
  • .

+

Lightscape R3.2, + Discreet Autodesk, RadioRay, + - Lightwork Design + Kinetix.   + RadioRay + Lightscape R3.2.

+
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_08a.htm b/html/_ex/99_06_08a.htm new file mode 100644 index 0000000..c3a8eb1 --- /dev/null +++ b/html/_ex/99_06_08a.htm @@ -0,0 +1,218 @@ + + + + + + + + + -- : AutoCAD Architectural Desktop R2 Autodesk + + + + + + + + + + + + + + +

AutoCAD Architectural + Desktop R2 Autodesk

+

+
+  

-, -- 5 1999. -- + Autodesk, Inc. + AutoCAD Architectural Desktop. + Autodesk Design 2000, + , + AutoCAD 2000, , + + , .   AutoCAD + Architectural Desktop Release 2 + , 50 , + + , + .   1999.

+

" Architectural Desktop Release 2 + .   + , ," -- + (Paul Kelly), Architects Design Group ().   " + ."

+

" -- + , + + .   AutoCAD 2000 + , AEC, + , + ," -- + (Mark Sawyer), - AEC Autodesk.

+

, AutoCAD + Architectural Desktop Release 2 + + AEC (: "architecture, engineering, + construction" -- ", , + ") + , + .   , + Autodesk ObjectARX + AutoCAD 2000, + .   + , + .   AutoCAD Architectural + Desktop Release 2 , + AutoCAD DesignCenter, + .   + , + + .   , + 2D 3D , .   AutoCAD Architectural Desktop + Release 2 -- , + IFC 1.5.1.

+ +

+ +

AutoCAD 2000, + AutoCAD Architectural Desktop + , + , + AutoCAD.   , + + .   + , + + .   - + , , + .

+ +

AutoCAD 2000

+ +

AutoCAD Architectural Desktop + 400 , AutoCAD 2000 + , + , + .   + , + AEC + , .   + AutoCAD 2000 AutoCAD Architectural Desktop + Release 2, + .   , + + .

+

+ AutoCAD + Architectural Desktop Release 2 + , + + .   + Model Explorer, , Microsoft Explorer, + + .   + .   + Space Planning + + .

+

+ AutoCAD Architectural Desktop + , + .   Autodesk AutoCAD + DesignCenter - , + , + , .   , + (Design Content wizard) + , , , + , + AutoCAD DesignCenter.   , + + .   + , , , + , + , + .

+ +

+ +

, , + , .   AutoCAD Architectural + Desktop Release 2, , + , + .   + .   + , , + , + , .   + , + , .   + , + , + , , + .   , , + + drag-and-drop, , + AutoCAD DesignCenter feature.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_08b.htm b/html/_ex/99_06_08b.htm new file mode 100644 index 0000000..0a4ab67 --- /dev/null +++ b/html/_ex/99_06_08b.htm @@ -0,0 +1,182 @@ + + + + + + + + + -- : " :" + + + + + + + + + + + + + + +

" :"

+

+ Silicon Graphics AutoCAD 2000
+  

-- 1 1999. -- + + " :". + , 20 1999 + + . + Silicon Graphics 320 Silicon Graphics 540 + AutoCAD 2000 + .   + Autodesk SGI, + .

+ +

, + , Autodesk + Silicon Graphics ( ) + .

+ +

, Visual PC + Intel Windows NT, + Silicon Graphics 320 540 -- + . + + . , , + AutoCAD CADALIST, Silicon + Graphics 320 (Hewlett Packard + Kayak XAs, Compaq Professional Workstation AP500 + Intergraph TDZ 2000 GL2) .

+ +

AutoCAD 2000, + - + . + - Autodesk, AutoCAD + . AutoCAD 2000 -- + , ] + - + .

+ +

+ , , + . + . + Silicon Graphics AutoCAD 2000 + , + , + .

+ +

:

+ + + + + + + + + + + + + +
+ Silicon Graphics 320 + AutoCAD 2000 , + + + (095) 923.7237
+ , . + +
AutoCAD 2000 Silicon + Graphics 320 + . + SiliconGraphics AutoCAD 2000 +
, 30 1999 , +
+ +

+ + . , + + + , , + . + . + + " + " + , + .

+ +

+

-- + , , 15 + + ( Autodesk, Silicon Graphics, Rebis ), + 80 , . + : (095) 923.7273, 923.6547, 923.6341

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_10a.htm b/html/_ex/99_06_10a.htm new file mode 100644 index 0000000..e264152 --- /dev/null +++ b/html/_ex/99_06_10a.htm @@ -0,0 +1,125 @@ + + + + + + + + + -- : " " + + + + + + + + + + + + + + +

" "

+

 

-- 10 1999 . -- " + " , 10  10  + T-FLEX CAD + . , + . T-FLEX CAD + + T-FLEX DOCs. + , + T-FLEX/, T-FLEX/ ..

+

" " " 2x2 + 6", -- , -- + " , , + , , + + . + , + , ".

+

" " + . + + T-FLEX CAD + . + , + . , + + .

+ +

" "

+ +

" " -- + . T-FLEX CAD + + . + , + T-FLEX CAD. " " + . + www.topsystems.ru, tflex@topsystems.ru + .: (095)978.9557

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_10b.htm b/html/_ex/99_06_10b.htm new file mode 100644 index 0000000..60e6a12 --- /dev/null +++ b/html/_ex/99_06_10b.htm @@ -0,0 +1,138 @@ + + + + + + + + + -- : " " + + + + + + + + + + + + + + +

" " +

+

 

-- 10 1999 . -- " + " , + + T-FLEX CAD . + + .

+

" T-FLEX CAD , + , ", -- + , " ", -- + " -- + . T-FLEX CAD + , , + . + + ".

+

" " + + T-FLEX CAD 2D 3D + . " " + , , + , + - . + , . + + , . + T-FLEX CAD . + , + , -- + , .

+

" , + , + ", -- , + " ", -- " , + T-FLEX CAD . + -- + . + , + ".

+ +

" "

+ +

" " -- + . T-FLEX CAD + + . + , + T-FLEX CAD. " " + . + www.topsystems.ru, tflex@topsystems.ru + .: (095)978.9557

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_15a.htm b/html/_ex/99_06_15a.htm new file mode 100644 index 0000000..799410d --- /dev/null +++ b/html/_ex/99_06_15a.htm @@ -0,0 +1,154 @@ + + + + + + + + + -- : + + + + + + + + + + + + + + +

+

" ", + ,
+  

" " + -- -- 15  + 31  1999 + + , + . + - + , , , + , , , + SIEMENS CELSIUS + . + + www.catalyst.ru/initiative/promo_cad.

+ +

+ " '99"

+ +

+ "", + - + .

+

+ , :

    +
  1. -. + - = "T-FLEX" + SIEMENS CELSIUS + 25%.
  2. +
  3. + , .
  4. +
  5. , + , + .
  6. +
+

"" + + T-FLEX CAD, + , + "Winning on Windows". + T-FLEX CAD , , .

+ +

"'99"

+ +

"Matra Datavision" -- + , , + - + EUCLID 3. 40 70%.

+ +

"PowerCELSIUS'99"

+ +

"DELCAM" -- + - + Power SOLUTION + , 10% .

+ +

"'99"

+ +

"" -- + CADdy + / (ZIEGLER-Informatics GmbH) + , , + , + , . + 15-20%.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_17a.htm b/html/_ex/99_06_17a.htm new file mode 100644 index 0000000..ee85cca --- /dev/null +++ b/html/_ex/99_06_17a.htm @@ -0,0 +1,165 @@ + + + + + + + + + -- : Autodesk Volo View Epress + + + + + + + + + + + + + + +

Autodesk + Volo View Epress

+

+ Autodesk, + , AutoCAD.
+  

-, -- 14 1999. -- + Autodesk, Inc. + Volo View Express, + Internet + AutoCAD, + , . Volo View Express + , , , + , , + DWG, DWF DXFT. Volo View Express + + Volo Autodesk web- + Autodesk www.autodesk.com/volo.

+

" + , + ," -- + (Anne Bonaparte), + Autodesk Design Teams Solutions Group. " + , + , , + , , + . Volo View Express + : + , , , + + ."

+ +

Volo View Express

+ +

AutoCAD AutoCAD DWG, + DXF DWF Web, FTP + , + . Volo View Express + AutoCAD + AutoCAD 2000, + , AutoCAD, , + , , + . + Windows, + AutoCAD.

+

AutoCAD , + , Volo View Express + :

    +
  • ;
  • +
  • ACIS + ;
  • +
  • , + , + 3D orbit;
  • +
  • Windows;
  • +
  • Microsoft IntelliMouse + ;
  • +
  • ClearScale Autodesk + ;
  • +
  • ;
  • +
  • ActiveX + Microsoft Internet Explorer + , ActiveX;
  • +
  • Web HTML, + AutoCAD + Web;
  • +
  • ActiveX , + . + , , + Adobe Acrobat Reader 4.0 + Volo View Express PDF.

+

Volo View Express + , + Visual Basic, C C++, + Java, PowerBuilder, + COM- Windows + + + . + Volo View Express ActiveX www.autodesk.com/volo.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_18a.htm b/html/_ex/99_06_18a.htm new file mode 100644 index 0000000..6296075 --- /dev/null +++ b/html/_ex/99_06_18a.htm @@ -0,0 +1,98 @@ + + + + + + + + + -- : C " DESIGN 2000" + + + + + + + + + + + + + + +

C " DESIGN 2000"

+

Autodesk
+  

+

17-18 1999. -- Autodesk "" " Design 2000", . Microsoft SGI.

+

104 51 . , "", , , , "" . .

+

Autodesk "" Autodesk:

    +
  • AutoCAD 2000 --
  • +
  • Mechanical Desktop R4 -- Autodesk
  • +
  • AutoCAD Architectural Desktop -- AutoCAD
  • +
  • Actrix Technical --

+

Microsoft Microsoft. "" .. Motiva. Motiva Autodesk , .

+

SGI Silicon Graphics 320 Windows NT. Autodesk (3D Studio MAX, Mechanical Desktop) .

+

Autodesk. , .

+

Autodesk, Microsoft Motiva.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_06_18b.htm b/html/_ex/99_06_18b.htm new file mode 100644 index 0000000..186033d --- /dev/null +++ b/html/_ex/99_06_18b.htm @@ -0,0 +1,113 @@ + + + + + + + + + -- : + + + + + + + + + + + + + + +

+


+  

+

18, 1999 -- 26-27 VIII- - " " .

+

" " " " . " " , .

+ +

+

: + : (0612)34.7042, + E-mail: zetk@zetk.marka.net.ua. + : , .

+ +

" " " "

+

" " . 1990 , . + : (0322)39.8537 E-mail: center@sapr.lviv.ua. + : , .

+ +

:

+ +

1989 . + + , 700 + . + SolidWorks Corp., + -- . + pa , , + , a a + A : (095)452.0747, (812)252.5377 a www.ascon.ru.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_07_01a.htm b/html/_ex/99_07_01a.htm new file mode 100644 index 0000000..06948af --- /dev/null +++ b/html/_ex/99_07_01a.htm @@ -0,0 +1,253 @@ + + + + + + + + + -- : Autodesk World R2.5 + + + + + + + + + + + + + + +

Autodesk World R2.5

+

+ + .
+  

-- 29 1999 . -- + Autodesk CIS + : Autodesk + World R2.5 +

+

+
+

Autodesk World R2.5 -- + + + Microsoft Windows. Autodesk World + , + , + , + ( + ), + . Autodesk World R2.5 + , , + , + + . + ActiveX Automation + Visual Basic for Applications, + , + . Autodesk + World 2.5 -- + + AutoCAD 2000 DWG.

+

+ Autodesk World R2.5 + AutoCAD MAP 2000 AutoCAD 2000 DWG: + AutoCAD 2000, + AutoCAD MAP 2000, 2.0 3.0 Autodesk World . + , + , + , LPN ASE. + + AutoCAD MAP R1, AutoCAD R12 + R13, + AutoCAD R14.

+

+ Autodesk MapGuide SDF + + + AutoCAD.

+

+ DXF: + DXF -- + ASCII DXF Binary DXF World, + ASCII DXF.

+

+ ER Mapper: + ER Mapper + -- .alg, .ers, .bmp, ArcInfo .HDR, + .tif GeoTIFF. + + , + + ( + 32 64MB RAM)

+

+ : + API + . + Attribute Database (ADB) + API ( , 200 + ), + + .

+

+ : + + + / + .

+

+ : + , + , , , + .

+

+ + , , + , , + , + .

+

+
    +
  1. Autodesk World AutoCAD 2000, AutoCAD Map 2000 + MapGuide.
  2. +
  3. Autodesk World -- + Microsoft.
  4. +
  5. Autodesk World -- , + Microsoft Office 97 Windows + 95/98/NT, VBA + .
  6. +
  7. Autodesk World -- + + .
  8. +
  9. Autodesk World + , .
  10. +
  11. Autodesk World Microsoft + + + .
  12. +
  13. Autodesk World + (Multi-GB).
  14. +
  15. Autodesk World -- + + + .
  16. +
+

:

+
    +
  1. Autodesk World + , + + .
  2. +
  3. , + + + + .
  4. +
  5. + , + .
  6. +
  7. Autodesk World + ( + MS Office, MS Access, VBA, Crystal Reports, ActiveX API ).
  8. +
  9. + .
  10. +
+

:

+
    +
  • Pentium 133 MHZ , 16 MB RAM
  • +
  • 85 MB
  • +
  • 20 MB swap space
  • +
  • SVGA + 800 x 600 VGA, 256
  • +
  • +
  • 4 CD-ROM +
+

:

+

( + ) + . + + Adobe Acrobat .PDF, + , + . , , + , + . + , .

+ +

:
+ . + (Developer Guide) + . + + . + + .

+

+ CD

+
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_07_07a.htm b/html/_ex/99_07_07a.htm new file mode 100644 index 0000000..6d56667 --- /dev/null +++ b/html/_ex/99_07_07a.htm @@ -0,0 +1,97 @@ + + + + + + + + + -- : AUTOCAD LT + + + + + + + + + + + + + + +

AUTOCAD LT

+

Autodesk .
+  

+

-, -- 7 1999. -- AutoCAD LTR , Autodesk, Inc., , , . Breda Costruzioni Ferroviarie S.p.A. (Breda), . (Pistoia), , AutoCAD LT Autodesk . "" (Eurotunnel), , , , -, -, , , , . 80 , Breda AutoCAD LT .

+

" AutoCAD LT , . , ," -- (Carol Bartz), , Autodesk.

+

AutoCAD LT Breda, 3,000 620 . ( 330 . ), 1886. . , Breda , , AutoCAD LT.

+

AutoCAD LT Breda, , , . , , AutoCAD, Breda . , Breda AutoCAD LT, AutoCAD, Mechanical DesktopR, 3D Studio MAXR, . AutoCAD LT Breda , -, -, , . AutoCAD LT AutoCAD LT .

+

"Autodesk -- , , ,"- , Breda.

+ +

AutoCAD LT

+

AutoCAD LT Autodesk AutoCAD. , AutoCAD LT 98, -- , , , , , , , AutoCAD. AutoCAD LT Autodesk , , , . , , - , . , AutoCAD LT 1993., , " " PC Magazine's Editor's Choice Award.

+

AutoCAD LT 98 676 ( ). .

+
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_07_10a.htm b/html/_ex/99_07_10a.htm new file mode 100644 index 0000000..12dbb0c --- /dev/null +++ b/html/_ex/99_07_10a.htm @@ -0,0 +1,178 @@ + + + + + + + + + -- : Autodesk LightScape + + + + + + + + + + + + + + +

Autodesk LightScape

+

Lightscape + Oni + Bungie Software
+  

-, -- 1 1999. -- + Autodesk, Inc. + Lightscap R3.2 , + , + . + + , Lightscape + , + , + Luminova Oni, + Bungie Software.

+

, + Lightscape R3.2 + , + . + + , Lightscape R3.2 , + Autodesk + Autodesk Discreet.

+ +

+

Lightscape + . + - Luminova + . + , + , , + , , + + . Luminova Lightscape + , , + , + . + .

+

" + , , Lightscape + , , + ," -- (Chris Blewitt), + Luminova. " Lightscape + , + + ."

+

+

+ , , + , + Lightscape. , + Bungie Software, Myst, + Lightscape + Oni. Bungie Software Lightscape + + + . , Bungie Software + AutoCAD Autodesk Oni, + 3D Studio MAX + .

+

" E3, Oni + , Lightscape + , + ," -- (Doug Zartman), + Bungie Software.

+

, Bungie Software + Autodesk. + Lightscape R3.2 + Autodesk, + AutoCAD 2000, 3D Studio VIZ + 3D Studio MAX.

+

" , Luminova + Bungie Software Lightscape," + -- (Noah Kennedy), + Autodesk Discreet. " + , + Lightscape R3.2 + ."

+

+

Lightscape R3.2 + Autodesk $624 ( + ). , + RadioRay $156 ( ).

+

Autodesk

+

Autodesk -- + . + - , Autodesk + 4 , 150 . + + World Wide Web www.autodesk.com, + www.ktx.com, + www.discreet.com + www.lightscape.com.

+
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_07_16a.htm b/html/_ex/99_07_16a.htm new file mode 100644 index 0000000..efd3d40 --- /dev/null +++ b/html/_ex/99_07_16a.htm @@ -0,0 +1,105 @@ + + + + + + + + + -- : Autodesk CAD Overlay 2000 + + + + + + + + + + + + + + +

Autodesk CAD Overlay 2000

+

,
+  

-, -- 15 1999. -- Autodesk, Inc. Autodesk CAD Overlay 2000 . , , , , . - , . , , . Raster Entity Manipulation (REM) SmartPick, Raster Snap, , AutoCAD 2000.

+

+

CAD Overlay 2000 AutoCAD. , , , . , , , . :

    +
  • REM SmartPick, , , , AutoCAD AutoCAD. REM, AutoCAD AutoCAD . CAD Overlay 2000 REM, , , .
  • +
  • , . , Internet. AutoCAD 2000 , AutoCAD.
  • +
  • . CAD Overlay 2000 "" . , , , .
  • +
  • , " ", . CAD Overlay , AutoCAD.

+

Design 2000 Autodesk , . Design 2000 Autodesk CAD Overlay 2000, , AutoCAD 2000 , , . CAD Overlay 2000 AutoCAD 2000, AutoCAD MAP 2000 AutoCAD Architectural Desktop R2. Mechanical Desktop Release 4, AutoCAD Mechanical 2000 AutoCAD Land Development Desktop R2, . +

+

CAD Overlay 2000 Autodesk $1450 ( ). CAD Overlay R14 CAD Overlay S8 $208 ( ). $410 ( ). . +

Autodesk

+

Autodesk -- + . + - , Autodesk + 4 , 150 . + + (095)797.4700 (095)797.4710 + World Wide Web www.autodesk.com + www.autodesk.com/cadoverlay.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_07_20a.htm b/html/_ex/99_07_20a.htm new file mode 100644 index 0000000..1ab8f22 --- /dev/null +++ b/html/_ex/99_07_20a.htm @@ -0,0 +1,111 @@ + + + + + + + + + -- : Autodesk AutoCAD Architectural Desktop R2 + + + + + + + + + + + + + + +

Autodesk AutoCAD Architectural Desktop R2

+

Autodesk AutoCAD Architectural Desktop R2 + AEC Object Enabler + Architectural Desktop Autodesk + Design 2000
+  

-, -- 15 1999. -- Autodesk, Inc. AutoCAD Architectural Desktop R2. , , AutoCAD 2000 , , . Autodesk Design 2000, AutoCAD Architectural Desktop R2 50 , , . AutoCAD Architectural Desktop R2 -- , IFC1.5.1.

+

Autodesk AEC Object Enabler 2.0 , AutoCAD 2000, AutoCAD 2000, AutoCAD Map 2000, Volo View Express 3D Studio VIZ 2.01, Autodesk Mechanical Desktop R4 AutoCAD Land Development Desktop R2, . , AutoCAD, AEC, AutoCAD Architectural Desktop. AEC Object Enabler, ObjectDBX, Web www.autodesk.com/aecobjecten, , AutoCAD Architectural Desktop R2.

+

AutoCAD 2000

+

AutoCAD 2000, AutoCAD Architectural Desktop R2 AutoCAD 2000 , 400 , . DWG Multiple Design Environment, . , , .

+

, , , Autodesk AutoCAD DesignCenter - , drag-and-drop. , , , AEC, AutoCAD DesignCenter. AutoCAD. , , . 3D Studio VIZ Autodesk, DWG Linking.

+

. , . , . , . drag-and-drop , AutoCAD DesignCenter, .

+

+

AutoCAD Architectural Desktop AutoCAD 2000 ActiveX ActiveX Object Model Interface (OMI), . OMI, AutoCAD Architectural Desktop . VBA VLISP, , ActiveX, Java, C++ .

+

, AEC Object Modeling Framework (OMF) ObjectARX AutoCAD Architectural Desktop. , OMF - .

+

Web

+

AutoCAD Architectural Desktop Autodesk, Volo. , , Web. , . Volo View Express AEC Object Enabler, AutoCAD Architectural Desktop Web. web DWF, " " ePlots. AutoCAD Architectural Desktop, , Web.

+

+

AutoCAD Architectural Desktop R2 Autodesk $ 4 550 ( ). AutoCAD. .

+

Autodesk

+

Autodesk -- + . + - , Autodesk + 4 , 150 . + (095)797.4700 + (095)797.4710 + World Wide Web www.autodesk.com + www.autodesk.com/archdesktop.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_07_21a.htm b/html/_ex/99_07_21a.htm new file mode 100644 index 0000000..3b3beb5 --- /dev/null +++ b/html/_ex/99_07_21a.htm @@ -0,0 +1,91 @@ + + + + + + + + + -- : AutoCAD 2000 + + + + + + + + + + + + + + +

AutoCAD 2000

+

"" -- "AutoCAD 2000 ".
+  

Autodesk -- AutoCAD 2000, . , , .

+

. , . . , . -. Heads-up Design, (Multiple Design Environment) (AutoCAD DesignCenter). , . . : , , , , . . AutoCAD World Wide Web. , , . 1 , AutoCAD. 2 . 3 AutoCAD 2000. CD-ROM .

+

:

+

, ., 5, . 7, .: (095)261.5151, + 234.6581, 234.6582, 234.6583, 234.6584

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_07_21b.htm b/html/_ex/99_07_21b.htm new file mode 100644 index 0000000..8d15e47 --- /dev/null +++ b/html/_ex/99_07_21b.htm @@ -0,0 +1,108 @@ + + + + + + + + + -- : Autodesk " " + + + + + + + + + + + + + + +

Autodesk " "

+

Actrix Technical
+  

-- 21 1999. - Autodesk (CIS) ZAO " ", Autodesk Actrix Technical, Autodesk . , 1 31 1999. Actrix Technical 199 ( 364 ), 699 ( - 1638 ). , , " ", . 100 , , 100 30 . . +

" " " Autodesk , ", -- , Autodesk " ". "Actrix Microsoft Office . -- Autodesk. AutoCAD. , Actrix, ."

+

Actrix Technical, - - . -, , , , , , , . Autodesk , , . , . , .

+

" , , , , ",- , " ". " TopS, , , - 8 1999. TopS Autodesk -- Actrix Technical, AutoCAD LT AutoSketch. ".

+

, Autodesk , " " . " " , Actrix Technical " ". 50 , , 50 Actrix Technical .

+ +

Autodesk

+

Autodesk (Actrix Technical, AutoCAD LT AutoSketch) , . :

    +
  • Consistent Software (095)913.2222,
  • +
  • (095)923.6341,
  • +
  • TopS (095)253.2210.

+

+ Autodesk.

+ +

Autodesk

+

Autodesk -- + . + - , Autodesk + 4 , 150 . + + (095)797.4700 (095)797.4710 + World Wide Web www.autodesk.com.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_07_22a.htm b/html/_ex/99_07_22a.htm new file mode 100644 index 0000000..f8305af --- /dev/null +++ b/html/_ex/99_07_22a.htm @@ -0,0 +1,114 @@ + + + + + + + + + -- : A'97 -- AutoCAD 2000 + + + + + + + + + + + + + + +

A'97 -- AutoCAD 2000

+

AutoCAD
+  

"-" AutoCAD -- '97/97PRO 2.0.

+

AutoCAD 2000 .

+

:

    +
  • , , ;
  • +
  • , ;
  • +
  • ;
  • +
  • ( ) ;
  • +
  • ;
  • +
  • ( );
  • +
  • , , , ;
  • +
  • 2D 3D ( , );
  • +
  • : , , , , , , , ;
  • +
  • : -, -, -, , . , , ;
  • +
  • 2D- 3D- (, , , ), , , .;
  • +
  • , , , , ;
  • +
  • ( , , , ), ;
  • +
  • ;
  • +
  • 20 , , -- , , .;
  • +
  • , .

+

'97/97PRO :
+        '97 -- 450 US$;
+        '97PRO -- 550 US$.

+

'97/97PRO 1 99 -- 50 US$. . '97/97PRO 01.05.99 . + '97/97PRO. CD. CD . 2.0 '97/97PRO.

+

:

+ +

  • -- .: (095)923.7237, 923.6547, 923.7237; +
  • - -- .: (095)141.3322

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_08_12a.htm b/html/_ex/99_08_12a.htm new file mode 100644 index 0000000..5615c2b --- /dev/null +++ b/html/_ex/99_08_12a.htm @@ -0,0 +1,103 @@ + + + + + + + + + -- : bCAD- + + + + + + + + + + + + + + +

bCAD-

+

 
+  

1999 "bCAD-". " + ", + . , + + , + , + , , , , + .. ( + bCAD) . + + , + , + . + Riemann. , + , + - . + "bCAD-" -.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_08_14a.htm b/html/_ex/99_08_14a.htm new file mode 100644 index 0000000..3f8f071 --- /dev/null +++ b/html/_ex/99_08_14a.htm @@ -0,0 +1,106 @@ + + + + + + + + + -- : Actrix Technical AutoCAD 2000 CADENCE + + + + + + + + + + + + + + +

Actrix Technical AutoCAD 2000 CADENCE

+

CADENCE MAGAZINE Actrix Technical AutoCAD 2000.
+  

-, -- 20 1999. -- Autodesk, Inc., , , AutoCAD 2000 Actrix Technical, CADENCE " " , . CADENCE 16 .

+

CADENCE , . Actrix Technical Autodesk, , , , . ActiveShapes , . , Actrix Technical DWG .

+

AutoCAD 2000, Autodesk, CADENCE , , :

    +
  • Multiple Design Environment, , AutoCAD;
  • +
  • AutoCAD DesignCenter, , .

+ +

, , , " ". " , , Autodesk , ," -- (Arnie Williams), CADENCE Magazine.

+

, Actrix Technical . CADENCE 1998 "Show Stopper" ( ), , . 1998, CADALYST Magazine Actrix Technical, , AutoCAD. CADENCE -- AutoCAD 2000, 1999.

+

AutoCAD 2000

+

AutoCAD 2000 , , . AutoCAD 2000 , : , , , , .

+

Actrix Technical

+

Actrix Technical -- , , -. Actrix Technical . ActiveShapes, AutoCAD AutoCAD LT. ActiveShapes , . Actrix Technical ActiveShapes, , , , . http://www.autodesk.com/actrix.

+

Autodesk

+

Autodesk -- + . + - , Autodesk + 4 , 150 . + (095)797.4700 + (095)797.4710 + World Wide Web www.autodesk.com.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/99_08_17a.htm b/html/_ex/99_08_17a.htm new file mode 100644 index 0000000..4c7a1b0 --- /dev/null +++ b/html/_ex/99_08_17a.htm @@ -0,0 +1,96 @@ + + + + + + + + + -- : ('99) + + + + + + + + + + + + + + +

('99)

+

-
+  

" " () . (-99), 17-22 . " " -- -- - - , , .

+

- ( , 25, 13), "", SIEMENS CELSIUS Siemens AG.

+

SPEC CELSIUS Pentium II/III Intel SPEC int95/fp95. Siemens CELSIUS - . +

..,. (, 30) SIEMENS SCENIC P-III "" -3D .

+

+

" " () -- , Siemens, SGI (Silicon Graphics), Sun Microsystems, DataDirect Networks ( MegaDrive). +

" " : + www.catalyst.ru + .:(095)181.0043, 181.1700; :(095)187.7310, 187.7319; E-mail: info@catalyst.ru.

+

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/empty.htm b/html/_ex/empty.htm new file mode 100644 index 0000000..927f4c2 --- /dev/null +++ b/html/_ex/empty.htm @@ -0,0 +1,88 @@ + + + + + + + + + -- : + + + + + + + + + + + + + + +

+

-
+  

- +

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/images/mdt.jpg b/html/_ex/images/mdt.jpg new file mode 100644 index 0000000..5520793 Binary files /dev/null and b/html/_ex/images/mdt.jpg differ diff --git a/html/_ex/index.htm b/html/_ex/index.htm new file mode 100644 index 0000000..1219bac --- /dev/null +++ b/html/_ex/index.htm @@ -0,0 +1,184 @@ + + + + + + + + + : + + + + + + + + + + +
" + ", + :
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
17  1999 '99;
14  1999Actrix Technical AutoCAD 2000 CADENCE;
12  1999 bCAD-;
22  1999A'97 -- AutoCAD 2000;
21  1999Autodesk " ";
21  1999 AutoCAD 2000;
20  1999Autodesk AutoCAD Architectural Desktop R2;
16  1999Autodesk CAD Overlay 2000;
10  1999 Autodesk LightScape ;
7  1999 AUTOCAD LT ;
1  1999 Autodesk World R2.5;
18  1999 ;
18  1999C " DESIGN 2000" ;
17  1999Autodesk , , Volo View Epress;
15  1999 + ;
10  1999 " + " ;
10  1999 " + ";
8  1999 + " :";
8  1999 + AutoCAD Architectural Desktop R2 Autodesk;
7  1999DISCREET, Autodesk, + 3D Studio MAX R3;
7  1999Autodesk Lightscape R3.2, + ;
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/index01.htm b/html/_ex/index01.htm new file mode 100644 index 0000000..6e5ce87 --- /dev/null +++ b/html/_ex/index01.htm @@ -0,0 +1,184 @@ + + + + + + + + + : ( 2) + + + + + + + + + + +
" + ", + :
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
4  1999 ;
3  1999 ;
2  1999Autodesk CAD Overlay 2000;
1  1999 : " -- !";
26  1999 " " 100 ;
25  1999Autodesk VISION* Solutions;
5  1999 bCAD;
10  1999 " :" ;
5  1999 10- ;
30  1999 AutoCAD 2000;
20  1999 Contex Magnum;
09  1999Autodesk AutoCAD 2000;
19  1999 . Silicon Graphics, Autodesk ;
12  1999Autodesk ' + " ". 3 + AutoCAD R11 R12 AutoCAD R14 $ 499;
18  1999Autodesk + "DESIGN YOUR WORLD". + $ 10 000 ;
10  1999 6- + ;
18  1998Autodesk + Softdesk;
18  1998Autodesk + "";
17  1998 Consistent Software - + ;
20  1998 Autodesk , + , , + , ;
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_ex/index02.htm b/html/_ex/index02.htm new file mode 100644 index 0000000..8b76f1b --- /dev/null +++ b/html/_ex/index02.htm @@ -0,0 +1,130 @@ + + + + + + + + + : ( 3) + + + + + + + + + + +
" + ", + :
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
17  1998 ""  5. 60 ;
1  1998 " ";
28  1998Autodesk ;
20  1998 - LT.  5 ;
15  1998 Autodesk Inc. AutoCAD LT 98;
15  1998 ;
14  1998 18 AutoCAD MAP 50,000 ;
13  1998 AutoCAD LT 800,000 ;
12  1998 Autodesk AutoSketch 6.0.
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_fr/conference.htm b/html/_fr/conference.htm new file mode 100644 index 0000000..5fdefee --- /dev/null +++ b/html/_fr/conference.htm @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + " ": + + + + + + + + + + + +

+ : +
+ +

+ + + + + +
[] + [] + []
+ + [] + [] + []
+
 
+ |  |  | ' | download |  |
+ |  |  |  |
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_fr/discounts.htm b/html/_fr/discounts.htm new file mode 100644 index 0000000..0cd807b --- /dev/null +++ b/html/_fr/discounts.htm @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + " ": + + + + + + + + + + + +

+ : +
+ +

+ + + + + +
[] + [] + []
+ + [] + [] + []
+
 
+ |  |  | ' | download |  |
+ |  |  |  |
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_fr/download.htm b/html/_fr/download.htm new file mode 100644 index 0000000..4c8817d --- /dev/null +++ b/html/_fr/download.htm @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + " ": Download + + + + + + + + + + + +
DOWNLOAD
+ : +
+ +

+ + + + + +
[] + [] + []
+ + [] + [] + []
+
 
+ |  |  | ' | download |  |
+ |  |  |  |
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_fr/glossary.htm b/html/_fr/glossary.htm new file mode 100644 index 0000000..a2b3635 --- /dev/null +++ b/html/_fr/glossary.htm @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + " ": + + + + + + + + + + + +

+ : +
+ +

+ + + + + +
[] + [] + []
+ + [] + [] + []
+
 
+ |  |  | ' | download |  |
+ |  |  |  |
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_fr/guestbook.htm b/html/_fr/guestbook.htm new file mode 100644 index 0000000..b091258 --- /dev/null +++ b/html/_fr/guestbook.htm @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + " ": + + + + + + + + + + + +

+ : +
+ +

+ + + + + +
[] + [] + []
+ + [] + [] + []
+
 
+ |  |  | ' | download |  |
+ |  |  |  |
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_fr/index.htm b/html/_fr/index.htm new file mode 100644 index 0000000..7e66643 --- /dev/null +++ b/html/_fr/index.htm @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + : + + + + + + + + + + +
" + " + . -, : + +

-, , + :

+ +

-, + + . + :

+ +
+ +

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_fr/news.htm b/html/_fr/news.htm new file mode 100644 index 0000000..701ce33 --- /dev/null +++ b/html/_fr/news.htm @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + " ": + + + + + + + + + + +
" + ",:
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
5  1999 + , , + , . + + . dbPager PHP3 + . + -- + .
29  1999 . . + - , + , + , , , + (/ , update patch, .), + . + download ( ftp- shareware + freeware , , , .). + , ( + ) - + . , + + .
20  1999 .
27  1999!!! . , + , , + . + , . , + .
11  1999 . + . , + -, , , -. + , .
18  1999 . + , + ( ). + -- .
24  1998 40 . + ! ! + , . -- + 500...1500 . , .
+ , on-line, + -. .
18  1998 + . -- 50% + .
10  1998 ( ) + . + . . .
4  1998 . + . .
24  1998 . + .
23  1998 + .
7  1998 + .
5  1998 . + . + + , + + . + .
28  1998 + . . + +
21  1998 . + . + . + . , + , + + .
+ +

+ + + + + +
[] + [] + []
+ + [] + [] + []
+
 
+ |  |  | ' | download |  |
+ |  |  |  |
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_fr/notice.htm b/html/_fr/notice.htm new file mode 100644 index 0000000..dfd4d06 --- /dev/null +++ b/html/_fr/notice.htm @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + " ": + + + + + + + + + + + +

+ : +
+ +

+ + + + + +
[] + [] + []
+ + [] + [] + []
+
 
+ |  |  | ' | download |  |
+ |  |  |  |
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_fr/prices.htm b/html/_fr/prices.htm new file mode 100644 index 0000000..00d7abf --- /dev/null +++ b/html/_fr/prices.htm @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + " ": + + + + + + + + + + + +

+ : +
+ +

+ + + + + +
[] + [] + []
+ + [] + [] + []
+
 
+ |  |  | ' | download |  |
+ |  |  |  |
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pb/96_10a.htm b/html/_pb/96_10a.htm new file mode 100644 index 0000000..1dfd1bb --- /dev/null +++ b/html/_pb/96_10a.htm @@ -0,0 +1,214 @@ + + + + + + + + + + + + + + + + - : + + + + + + + + + + + + + +

+

+
1996
+ + + + + +
, + - + + . + - + + . + + + + - , + + .

+ : + + , + + .

+

COSMOS/M Structural Research and + Analysis Corporation + + + (). COSMOS/M , + + + + .

+

, + + , - + :

    +
  • - , + + , + ;
  • +
  • , COSMOS/M + ( + ), , + - + ( + ) + ;
  • +
  • + - + .
  • +
+

, + + -, + . -, + :

    +
  • FFE (Fasf Finite Element), + + ( + ). + + + , + ( , + ) + + . + + + .
  • +
  • DESIGNER II, + - + + :: + , , + .;
  • +
  • COSMOS/M CAD-Interface, + + + COSMOS/M + + , + (IGES, SAT .)
  • +
+

+ , + + :

+

-, + + + + : FFE + , + (, + ..) + + , + .

+

-, + . + + , DESIGNER II + , + + . + + , + , Autodesk Mechanical Desktop, + .

+ + + + + + +

+ " " + "" -- + COSMOS/M . ric@cad.ru (095) 156-1849.
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pb/96_12a.htm b/html/_pb/96_12a.htm new file mode 100644 index 0000000..9aa4428 --- /dev/null +++ b/html/_pb/96_12a.htm @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + - : + + + + + + + + + + + + + +

( )

+
1996
+ + + + + +

+ CAD/CAM + . + . + , + + , + + . , + + , + , + - + , + + .

+

, + , : + . + + , + AutoCAD. AutoCAD + ? AutoCAD + , + ( + + ), 4000 + + AutoCAD + , .

+

AutoCAD? + + + , , + + + , . AutoCAD, + Autodesk + , + AutoCAD. + AutoCAD Designer, + + , , + + . AutoSurf + + , + NURBS-. Autodesk + Mechanical Desktop + + + + . Autodesk Work Center + + .AutoCAD + Autodesk + . + Intermech, Cimlogic Vibrant + Graphics. Vibrant Graphics -- SoftEngine4 SoftPoint + -- , + AutoCAD 25 . + SoftEngine + , + , + + , + . + Intermech Cimlogic + + , + . + , + , , , + , + . + + , + + + . + , + + .

+

+ Flow Science, Rebis, SofDesk, Surfware , GTX + , + " " + - .

+

GTX -- GTXRasterCAD + + , + + . , + AutoCAD + + AutoCAD. + + GTXRasterCAD AutoCAD. + GTX + , , + . + "", + + .

+

Rebis + + + , + , + , + + .

+

C + SofDesk + + , + , + .

+

FLOW-3D Flow Science Inc. + - + . + + , + , + , + - , , + + , + .

+

, + , + , + - + , + + , + , + . + "", + "" "AutoSheet".

+

Pathrace Inc. + + , + + 2...5 . + + . + EdgeCAM , + , + , + + , , + + + .

+

, EdgeCAM + , + , + + -, + + . + EdgeCAM . + " + " -- + + ; + , + ; + + + ; - + , + + . , + + , + + . + :

    +
  1. -- EdgeCAM + , + .
  2. +
  3. -- + + + , + . + + NURBS-, NURBS- + + .
  4. +
  5. -- + + EdgeCAM , + + .
  6. +
  7. + -- + + . + + + + , ...
  8. +
+

EdgeCAM + + + + , + - , + , ..

+ + + + + + +

+ " " + " + " -- + Autodesk, Flow Science, Pathtrace, REBIS, Vibrant Graphics + , + . ric@cad.ru (095)923-7237.
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pb/97_03a.htm b/html/_pb/97_03a.htm new file mode 100644 index 0000000..ae54b6a --- /dev/null +++ b/html/_pb/97_03a.htm @@ -0,0 +1,412 @@ + + + + + + + + + + + + + + + + - : AutoCAD +- + + + + + + + + + + + + + +

AutoCAD R13 ...  + Internet!

+
ң, + 1997
+ + + + + + +

+  
+ "
+ ...  ..."

+

+
+ + + + + + + + +

AutoCAD?  , + + , + ...  + - + ...  !..  AutoCAD + Internet!...  + ?  !

  AutoCAD  Internet Publishing Kit Autodesk + Internet + AutoCAD R13.  + Autodesk Internet Publishing Kit.  , + , .  + + + , , + + Internet.  + , "  Internet + ( + Internet Assiatant WebAuthor Microsoft Word), + AutoCAD  + .  + , + , AutoCAD + , Internet.

+

Internet Publisher Kit + .  + , + AutoCAD.  , , + Internet ( c + Internet- + , + ).  , + , + AutoCAD R13 ( 4) + , , + AutoCAD MAP R1.x Autodesk Mechanical Desktop R1.x.

+

- , + , + .  + , + AutoCAD, + .  , + Netscape Navigator TM Gold 3.0 + .  , + (HTML) + .  , + , + , + Autodesk, + - , + (, Internet + On-Line ).
+  

+ + + + + +

INTERNET via AUTOCAD

+

  Internet Publishing Kit AutoCAD, + , + Internet Publishing Kit.  + ( WHIP/DWF + -, ) + .  + + .  + Internet AutoCAD, -- + ( Internet), + " + ".

+

Internet + .  + URL (Uniform Resource + Locator -- ) + ( Netscape + Navigator), + AutoCAD.  AutoCAD , URL, + Internet.  + Internet, + , , + AutoCAD.

+

+ , URL + AutoCAD.  URL + (http, ftp, file, mailto...) + , ?  + "" + " " , , + , , + .  + URL mailto + , + + .

+

, + URL- ( ), + , + .  + + AutoCAD.  + AutoLisp TM URL + .  , + .

+

, + , + Internet, DWF (Drawing Web Format -- Web-), + + Internet- + + Internet ("").  , + , DWF- AutoCAD !
+  

+ + + + + +

AUTOCAD via INTERNET

+

Internet- AutoCAD + . + + , + "", + .  -- + , + + , , + ...  , + , + + + - + ...  + + Intranet .

+

, + Internet + , + . , + , + , , + VRLM (Virtual Reality Makeup Language), + JAVA + .  + "" + .  Internet AutoCAD, + + - .  + AutoCAD + Autodesk.  + , Internet Publishing Kit + , + AutoCAD, + .

+

+ Internet?  + .  + Plug-In, + Netscape + Navigator.  Plug-In DWF + DWG- WHIP! ( -- , + "" "").  + WHIP!  -- Autodesk Netscape.  + + Netscape Navigator Gold 3.0, + Autodesk Internet Publishing Kit.

+

DWF. + , + DWG- + 5 8 !  DWG + AutoCAD .  + AutoCAD, + Internet Publishing Kit, ( + ) , + .  + DWF + Autodesk http://www.autodesk.com, WHIP!  DWF File + Toolkit -- C++, + .

+

DWF- , + Internet Explorer Microsoft + ( 3.02).  + Active-X .  + Plug-In, + , + Internet .  + HTML- + FTP-, , + WHIP!

+

DWF- + "", Internet, + + HTML-:

+ + + + + +
+<object
+ classid ="clsid:B2BE75F3-9197-11CF-ABF4-08000996E931"
+ codebase = "ftp://ftp.autodesk.com/pub/autocad/plugin/whip.cab"
+ width=400 height=300>
+   <param name="Filename" value="linkrods.dwf">
+   <embed name="whip" src="linkrods.dwf"
+    pluginspage=http://www.autodesk.com/products/autocad/whip/whip.htm
+    width=400 height=300>
+</object>
+  
+
+ + + + + +
, , + .  + ( classid -- WHIP!).  + + , + + Internet Publushing Kit, .  + DWF- + JAVA-script , + JAVA, , "" + + !

, + + .  , WHIP!  + + Plug-In (DLL) - + ActiveX.  - + DWF Internet Explorer 3.0, + Netscape Navigator 3.0 + Plug-In WHIP!  + Autodesk, + Internet Explorer, + - .  ... + - + , + WHIP!  + .  + , , .
+  

+ + + + + +

+

, Autodesk Internet Publishing Kit + for AutoCAD Release 13 + , + .  + , + + WEB-. + + , + WEB- + WEB-.

+

: + " ?".  , + .  Plug-In Active-X + , + Internet (http://www.autodesk.com/whip/). + Autodesk Internet + Publishing Kit, + Autodesk, 130 USD, + .  , + , , + , + Netscape Navigator Gold 3.0, "" 100 + USD.  , "" Autodesk Internet + Publishing Kit 30 USD! + , + + WHIP! + ...  + .  , + , + ?..  .  + AutoCAD R14 Autodesk + Internet Publishing Kit + ...  + , + + + . 

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pb/97_12a.htm b/html/_pb/97_12a.htm new file mode 100644 index 0000000..3fc99fe --- /dev/null +++ b/html/_pb/97_12a.htm @@ -0,0 +1,285 @@ + + + + + + + + + + + + + + + + - : O REBIS + + + + + + + + + + + + + +

REBIS +

+
, 1997
+ + + + + +

Rebis, + + + . + + + . + + + - . Rebis 25 + + 60 + . + + . + + + + .

+ + + + + +

-- , +

+

Rebis + + + . + , + , + . + + + , , + , + . , + + + . + Rebis + . + + + + . + + + Rebis.

+ + + + + +

Rebis + AutoCAD

+

Rebis + + AutoCAD 12, 13 DOS + Windows ( + 14 AutoCAD). + AutoCAD, + 4000 + AutoCAD, + + . Rebis + + + , AutoCAD, + AutoCAD + + , + AutoCAD. + Rebis + , + /. + + + , + .

+ + + + + +

+ Rebis

+

Rebis + + : , + (), , .

+

-- + + ( , , + 3D ). + 2D + , 3D + , + , + , + - . + , + , + .

+

+

+ + , + . + , + . + + + , + .

+

+

+ + + , + . + , + . + + + , + + .

+

+ , , + , + . + , + . + + , + , + , , HVAC. + , + . + + , + + . + + + .

+

+ , + , + . + , + . + + , + , , . + + . . + + + . + + + .

+

+ + .

+ + + + + + +

+ " " + " + " -- + REBIS , . + rebis@cad.ru + (095)923-7237.
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pb/98_01a.htm b/html/_pb/98_01a.htm new file mode 100644 index 0000000..989ad89 --- /dev/null +++ b/html/_pb/98_01a.htm @@ -0,0 +1,415 @@ + + + + + + + + + + + + + + + + - : AutoPLANT 97 - , c + + + + + + + + + + + + + +

AutoPLANT97
+ , c +

+
ң, 1998
+  
+ + + + + + +
+ + .  + + .  Rebis, + + + + .  + Rebis + -- AutoPLANT97.  + + AutoPLANT97 + , + + + + .  + + Rebis IWS .  + + (Chuck Spink) + (Derry Vaugh), + Rebis, + Rebis + AutoPLANT.
+
+ + + + + +

+ + -- AutoPLANT 97 Rebis + , + + + .

+

. 1 --   AutoPLANT97 + + , + + , ( + ) + , + .  , + .  + , + :

    +
  • ;
  • +
  • + ;
  • +
  • + .
  • +
+

AutoPLANT97 + , + + , + .

+ + + + + +

+

. 2 --   AutoPlant97 Equipment , + , + + , + , + .  AutoPLANT97 , + + , + , + + .  + + .  + AutoPLANT97 + + , + + .

+

AutoPLANT97 + Autodesk AutoCAD, + , + .  , + .  + , + , + D + : icrosoft Access, + dBASE Oracle. , Rebis AutoPLANT, + + , + . , + + . + + , + + .

+ + + + + +

+

+

. 3 --    + , + , + + + .  + + + , , + , , + .  + ( ) , + + , + .  + + , , + P&ID AutoPLANT, + + + + .  AutoPLANT P&ID + + , + .  + + , + P&ID + . + , + .

+

+ + , + AutoCAD, + .  + + " ", + + .

+

+ + + .  + + , + + + (.  . 3  6).  , + , + , + , + ..  + , , + P&ID.  + " ", + " ".

+

. 4 --    P&ID + .  + , + , + , , , + .., + (. . 4).  + + , + .  + + + + .  + + , + (. .5)

+

. 5 --     + + .  + :

    +
  1. +  ;
  2. +
  3. ;
  4. +
  5. + .
  6. +
+

+ + + .

+

+ + + .  + AutoPLANT97 + , -- + ( + Rebis ), + "" .  , + + AutoPLANT97 , + .  + , + ARX + (AutoCAD Runtime Extension), , + .  , + - + , + , + , + .  + + AutoPLANT, , + + ( Rebis AutoPIPE + ISOGEN + + ...) + .

+ + + + + +

+

+

. 6 --      + + , + , + + .  + + (, + + ).  + + .  + + + + , + + + .  + , + , + .

+

. 7 --     AutoPLANT97 + .  + + , + + , + + .  + , + , + + .  + + + + .  + , + + .

+

+ + + AutoPLANT97.  + , 1997 , + + .  + AutoPLANT97 , + .  + + + .

+ + + + + + +

+ " " + " + " -- + REBIS , . + rebis@cad.ru + (095)923-7237.
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pb/98_12a.htm b/html/_pb/98_12a.htm new file mode 100644 index 0000000..bb20382 --- /dev/null +++ b/html/_pb/98_12a.htm @@ -0,0 +1,336 @@ + + + + + + - : ! + + + + + + + + + + + + + + + + + + + + + + + +

!

+
ң  1998
+  
+ + + + + + + + + +

, + , + , + + . , + + , + HELP, . + - + , - + , - + , + ( -- " + ---", -- ", + + "), - + .

+

, + AutoCAD R14 ( Autodesk + Mechanucal Deskotp R2). + " + ". , .

+ + Autodesk + , + , . + A, + . + , + Times New Roman Microsoft + Windows 95. -- + . , + . , + -- -- + ( + ), + .

+

, + . + , + AutoCAD R14. -, AutoCAD + , . + . ! + , + , + . AutoCAD- , + , + . + + , , + + . + -- .

+ " "?

+

" " -- , + + SofTool, 1993 .

+

-- + , + + . + -- + , + + . , + + + . + - + , + "" , + .

+

, + -- + "" "":

    +
  • "" -- + . + , + . + + . + + "". , + , + + . + , + web- (http://sftgames.radio-msu.net).
  • +
  • "" -- + , + + "" (8 + ) + " ". + 2 4 . + ( 10 14 , 14 18 ). + , + -- + . + -- 1-2 + .
  • +

+
+ + + + + +

, AutoCAD- , + . + , + , + , , , + , + . + . , + , , , + , . + , . , + AutoCAD, , + , + + . + , + ( ), + ( ) . + + , &qout: + " : , + , + + . , , + + AutoCAD, , + + .

+

+ . + , + . + . , + -- , + . TrueType + . , + , + , bonus- + AutoCAD. + . + , , + - + . + , + , . + , + . , , -- + , , , + + . + "" " + ". , + .

+

. , + , AutoCAD R14 + . , + 14- AutoCAD. + + + AutoCAD. , AutoCAD + FILLMODE "". + , . , + , + , + , + + bonus-, c AutoCAD. + . + , + + + . + , + , , + , + . + . + , Autodesk + , + + (AutoCAD Autodesk Mechanical Desktop) .

+

. . + , + + "". . + -, , , + AutoCAD, + , + -, + " ", + . + , + Autodesk + . + , , + , , + AutoCAD . + , + , + . , + Walkman. + + , + - Swatch. + . + , + -- + ( + "" " + ") .

+ +

+ + + + + +

: + -- + " "; -- + , ; + -- Autodesk, + ; -- + Autodesk; + -- Autodesk

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pb/98_12b.htm b/html/_pb/98_12b.htm new file mode 100644 index 0000000..c0ad97e --- /dev/null +++ b/html/_pb/98_12b.htm @@ -0,0 +1,476 @@ + + + + + + - : , + + + + + + + + + + + + + + + + + + + + + + + + + + + +

, +

+
 1998
+  
-- + . -- + , + + 2000 . + .
+  
+
, + Autodesk, Inc. +

+
+ + + + + +

1998 . + - + , + . 18 + -- , + , + , + + , , .. .. + , , + , + , ; , + , -- , , + , -- , + , + , + , + ...

+

+ , + + . , , + , + , + + + . + , + , -- + , + Autodesk + AutoCAD.

+

Autodesk +

+

+ , + . + : " + + ?" , + , . + Daratech, + + + . : ", + + , , + , + + , + . , + , , + , + . 10 + , + + , + . + , + + + . - - + , - - , + + ."

+

: " + + , , + -, + . + + + . + + -, + + , , + , + + , + .. + , . , + " + " , , + . -- + ".

+

, + , .

+

Autodesk

+

, + + Autodesk - . + Autodesk + . + , , + , + , + , + , + , + + . , .

+

, + -. -- " + " -- + , + + + + . -- "Consistent + Software", + .

+

+ + .

+

, , + + ( + , + ), . + + Autodesk . + + : , + , + , ( + Autodesk). - + + , + , + , + , + + .

+

, + + Autodesk, + . + + . + Autodesk , + , + + , + , + + + . , + Autodesk + + . Autodesk + + , + . + + , + , + Autodesk .

+

+ + -- , + (, + , + , + + + .), 90% + . 1996 + + . + + 32-35%. , + Autodesk + + AutoCAD . + + AutoCAD, , + 1996 + -- 1998-.

+

+ + . , + + Autodesk . + Autodesk + + + - + , 1997 Autodesk, + SoftDesk ( + S8) + (AutoCAD + Map, Autodesk World Autodesk MapGuide), + + , .

+

+ , , + , + " " + + . Autodesk + , + , + + . Autodesk + , + + , + + AutoCAD. + + + Autodesk + , + + .

+

Autodesk

+

, + + , + . + , + + , + .

+

, + + , + + , + Pentium II CONTEX. + ( !) + . + + , + "" - + . , + , " " + , + + , + , AutoCAD Mechanical + Desktop Autodesk, Inc.

+

, 1998 + AutoCAD. + + 25...30%, + 10...12%. + , + 4...6% . + , + , + , + , + .

+

+ . + ? + . , , + "" , + + . "", + -, + . + , + , , .

+

+ . + + - , + , + + . + 40% 80%!

+

, , + , + + ( + ) + , + - , + + Autodesk -- , , + , + .

+

, + "" Autodesk + + , + . + .

+

-, Autodesk + , + . + + + Autodesk + + , . -, + + , Autodesk. + , + -- . + , , + + , Autodesk.

+

+ , + . + -, Autodesk + + . + Autodesk , + + , , , + . + Autodesk + , + + , + . -, Autodesk + + , + , D, + . -, + Autodesk . + , + , + + . + , Autodesk + + -- , + + . , Autodesk + + -.

+

+

+ , + . + Autodesk + "". + Autodesk , + , + .

+

Autodesk? + , + , , Autodesk + + , + . + AutoCAD, ( + "" 50 ), + , , + , + + . Autodesk + + . + , + + ? Autodesk + !

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pb/99_01a.htm b/html/_pb/99_01a.htm new file mode 100644 index 0000000..3d31076 --- /dev/null +++ b/html/_pb/99_01a.htm @@ -0,0 +1,280 @@ + + + + + + - : - Autodesk World Release 2.0 + + + + + + + + + + + + + + + + + + + + + + + +

- Autodesk World Release 2.0

 1999
+  
+ + + + + +

Autodesk, + , + + (). , + + Autodesk -- + AutoCAD. - + AutoCAD ( ), + , + .

+

, AutoCAD MAP -- + Autodesk, + . AutoCAD, + + , + : + , + , . + , + AutoCAD, + . + AutoCAD MAP.

+

     Autodesk
+    World R2 , Autodesk -- + Autodesk World "" AutoCAD MAP + . -- + . , + , + , + . + + Autodesk World , , , + 1998 .

+

Autodesk World + , + . , + . + Autodesk World : + AutoCad MAP (DWG), ESRI ARC/INFO Coferages, + Atlas GIS (BNA) ArcView (SHP), MicroStation (DGN) + MapInfo (MIF/MID).

+

-- . + Autodesk World 700 + .

+

+ . Autodesk World + ( ) + , . + -- , + , . + , + , . , + , + Data Manager Geobase, + , + , . + Autodesk World, + . , + + . + + , . + . + , + .

+

, + "": . , + "" , + , , + , .

+

-- . + Autodesk World , + : Oracle, Sybase, Microsoft SQL Server . , + + Access. , + , , + . + Autodesk World, + + . + . + Autodesk World . + New Database, + Data Manager, . + , + . , Autodesk World + : + .

+

, + . + Autodesk World, , , + . + + .

+

+ :

    +
  • Query Indicate, + . + , + .
  • +
  • , + . , + , .

+

.

+ +

+ Autodesk World .

+

, + , 400 + 10 .

+

+ . , + . + . Autodesk World + , + . + , . , + 10 . + . , , , + 400- . , , + . + Query Indicate + , + (. .1).

+ +

.1.    --
+
+.1 -- .

+ + + + + +

Autodesk World + . , + .

+

+ . + , , -- + , . + + . , + , + . + (. .2).

+ +

.2.  
+
+.2 .

+ + + + + +

+ . + , + -- Query Annotate (. .3).

+ +

.3.  
+
+.3 .

+ + + + + +

, + Autodesk World . + Crystal Reports + Seagate Software, + Autodesk World.

+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pb/empty.htm b/html/_pb/empty.htm new file mode 100644 index 0000000..71cefe7 --- /dev/null +++ b/html/_pb/empty.htm @@ -0,0 +1,119 @@ + + + + + + - : + + + + + + + + + + + + + + + + + + + + + + + +


+

+
 199?
+  
+ + + + + + +
+
+
+ + + + + +

1 1. +

+
+ + + + + +

2

+

2, 2. +

+
+ +


+

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pb/images/97_03a1.gif b/html/_pb/images/97_03a1.gif new file mode 100644 index 0000000..d479576 Binary files /dev/null and b/html/_pb/images/97_03a1.gif differ diff --git a/html/_pb/images/97_03a2.gif b/html/_pb/images/97_03a2.gif new file mode 100644 index 0000000..fcf3bae Binary files /dev/null and b/html/_pb/images/97_03a2.gif differ diff --git a/html/_pb/images/97_12a1.gif b/html/_pb/images/97_12a1.gif new file mode 100644 index 0000000..7c1688f Binary files /dev/null and b/html/_pb/images/97_12a1.gif differ diff --git a/html/_pb/images/97_12a2.gif b/html/_pb/images/97_12a2.gif new file mode 100644 index 0000000..a22d10e Binary files /dev/null and b/html/_pb/images/97_12a2.gif differ diff --git a/html/_pb/images/97_12a3.gif b/html/_pb/images/97_12a3.gif new file mode 100644 index 0000000..e1ed682 Binary files /dev/null and b/html/_pb/images/97_12a3.gif differ diff --git a/html/_pb/images/97_12a4.gif b/html/_pb/images/97_12a4.gif new file mode 100644 index 0000000..ba12151 Binary files /dev/null and b/html/_pb/images/97_12a4.gif differ diff --git a/html/_pb/images/97_12a5.gif b/html/_pb/images/97_12a5.gif new file mode 100644 index 0000000..3e9c1ef Binary files /dev/null and b/html/_pb/images/97_12a5.gif differ diff --git a/html/_pb/images/97_12a6.gif b/html/_pb/images/97_12a6.gif new file mode 100644 index 0000000..82982d5 Binary files /dev/null and b/html/_pb/images/97_12a6.gif differ diff --git a/html/_pb/images/98_01a1.gif b/html/_pb/images/98_01a1.gif new file mode 100644 index 0000000..3a1d8cd Binary files /dev/null and b/html/_pb/images/98_01a1.gif differ diff --git a/html/_pb/images/98_01a2.gif b/html/_pb/images/98_01a2.gif new file mode 100644 index 0000000..360c235 Binary files /dev/null and b/html/_pb/images/98_01a2.gif differ diff --git a/html/_pb/images/98_01a3.gif b/html/_pb/images/98_01a3.gif new file mode 100644 index 0000000..ab4071e Binary files /dev/null and b/html/_pb/images/98_01a3.gif differ diff --git a/html/_pb/images/98_01a4.gif b/html/_pb/images/98_01a4.gif new file mode 100644 index 0000000..34b1a31 Binary files /dev/null and b/html/_pb/images/98_01a4.gif differ diff --git a/html/_pb/images/98_01a5.gif b/html/_pb/images/98_01a5.gif new file mode 100644 index 0000000..adee8be Binary files /dev/null and b/html/_pb/images/98_01a5.gif differ diff --git a/html/_pb/images/98_01a6.gif b/html/_pb/images/98_01a6.gif new file mode 100644 index 0000000..2131d9f Binary files /dev/null and b/html/_pb/images/98_01a6.gif differ diff --git a/html/_pb/images/98_01a7.gif b/html/_pb/images/98_01a7.gif new file mode 100644 index 0000000..c7cf40f Binary files /dev/null and b/html/_pb/images/98_01a7.gif differ diff --git a/html/_pb/images/98_12a1.jpg b/html/_pb/images/98_12a1.jpg new file mode 100644 index 0000000..bc4735d Binary files /dev/null and b/html/_pb/images/98_12a1.jpg differ diff --git a/html/_pb/images/99_01a1.gif b/html/_pb/images/99_01a1.gif new file mode 100644 index 0000000..0df9b27 Binary files /dev/null and b/html/_pb/images/99_01a1.gif differ diff --git a/html/_pb/images/99_01a2.gif b/html/_pb/images/99_01a2.gif new file mode 100644 index 0000000..c89da9c Binary files /dev/null and b/html/_pb/images/99_01a2.gif differ diff --git a/html/_pb/images/99_01a3.gif b/html/_pb/images/99_01a3.gif new file mode 100644 index 0000000..2cd93c8 Binary files /dev/null and b/html/_pb/images/99_01a3.gif differ diff --git a/html/_pb/images/99_01a4.gif b/html/_pb/images/99_01a4.gif new file mode 100644 index 0000000..ec173bc Binary files /dev/null and b/html/_pb/images/99_01a4.gif differ diff --git a/html/_pb/images/erjemin.jpg b/html/_pb/images/erjemin.jpg new file mode 100644 index 0000000..fbab9e1 Binary files /dev/null and b/html/_pb/images/erjemin.jpg differ diff --git a/html/_pb/index.htm b/html/_pb/index.htm new file mode 100644 index 0000000..551d414 --- /dev/null +++ b/html/_pb/index.htm @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + : , , ... + + + + + + + + + + +
+ :
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 1999 - Autodesk World Release 2.0;
 1998 , ;
 1998 !;
 1998AutoPLANT 97 -- + , + ;
 1997 + REBIS + ;
 1997AutoCAD ... + Internet-!;
 1996 + ( ).
 1996 + + ;
+ +

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/index.htm b/html/_pr/index.htm new file mode 100644 index 0000000..3c060f9 --- /dev/null +++ b/html/_pr/index.htm @@ -0,0 +1,155 @@ + + + + + + : + + + + + + + + + + + + + + +
+ + + + + +
" " + + . + .

+ , + + . , . + + . + + + () + . + .

+

:

+ + + + + +
+ APM WinMachine, + CadMECH, + CadMECH Desktop, + CADElectro, + Gear, + ISE TCAD, + Lightscape + MITA PointSource, + RadioRay, + SolidWorks, + Volo View Express, +  , + .
+
+
+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y X
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + + diff --git a/html/_pr/la.htm b/html/_pr/la.htm new file mode 100644 index 0000000..0f7b1c5 --- /dev/null +++ b/html/_pr/la.htm @@ -0,0 +1,415 @@ + + + + + + + + + + + + + + + + + + : (A lat 1) + + + + + + + + + + + + + + + + + + + + + +
+ :
APM WinMachine; AutoCAD; AutoCAD LT; AutoCAD MAP; AutoCAD Mechanical; + AutoCAD Object ARX SDK; AutoCAD VIZualization Suite; Autodesk CAD Overlay; Autodesk Data Exchange; + Autodesk MapGuide; Autodesk Mechanical Desktop (AMD); + Autodesk VIEW; Autodesk WorkCenter; + Autodesk World; AutoPIPE; + AutoPIPE PLUS; AutoPLANT AutoFLNG; AutoPLANT AutoNOZL; + AutoPLANT Cable Scheduler; AutoPLANT DrawPipe; AutoPLANT Electrics; + AutoPLANT Equipment Builder; AutoPLANT Explorer/ID; + AutoPLANT Isometrics; AutoPLANT Loops; AutoPLANT Multi-Steel 2D; + AutoPLANT Multi-Steel 3D; AutoPLANT P&ID; AutoPLANT97 Piping; + AutoSkech; AVS.
+
+
+

+
+
+

latA

+ + + + + +

APM WinMachine

+ + + + + + + + + + +
 : www.user.cityline.ru/~irapm
 :
+

APM WinMachine + , + + + , , . + + + . WinMachine + :

    +
  • ;
  • +
  • , ;
  • +
  • + ;
  • +
  • , ;
  • +
  • .
  • +
+

WinMachine, + , + :

+

WinJoint -- , + , + , + .

+

WinTrans -- + , , + . + + .

+

WinScrew -- + ( + , - + ).

+

WinBear -- + . + .

+

WinPlain -- + , + .

+

WinShaft --, + .

+

WinBeam -- + .

+

WinTruss -- + + .

+

WinFEM2D -- + - + .

+

WinFrame3D -- + - + .

+

WinDrive -- + + .

+

WinSpring -- + . + + , , , + .

+

WinCam -- + + + .

+

WinSlider -- + .

+

WinData -- + + .

+

MDM -- " + ", + , + APM WinMachine.

+ +


+

+ + + + + +

AutoCAD

+ + + + + + + + + + +
 : www.cad.ru/autodesk
 :www.autodesk.com/autocad
+

+ + ( 3.000.000 + ) Autodesk Inc. + - . + AutoCAD 2000 + : + + + Internet-. + , , + , + -... + AutoCAD R14.01. AutoCAD + + .

+ +


+

+ + + + + +

AutoCAD LT

+ + + + + + + + + + +
 : www.cad.ru/autodesk
 :www.autodesk.com/autocadlt
+

AutoCAD, +   Autodesk In. + -, + + . -- AutoCAD + LT98 AutoCAD R14. + AutoCAD R10...R14 + AutoCAD R14. + + Microsoft Office 97, + . + .

+ +


+

+ + + + + +

AutoCAD MAP

+ + + + + + + + + + +
 : www.cad.ru/autodesk
 :www.autodesk.com
+

Autodesk In. + + , -. + AutoCAD R14 Autodesk + Data Exchange. + "drag&drop". + . 700 + . + .

+ +


+

+ + + + + +

AutoCAD Mechanical

+ + + + + + + + + + +
 : www.cad.ru/autodesk
 :www.autodesk.com/mech
+

AutoCAD Mechanical -- + Autodesk In. +   AutoCAD R14, + + + Genius-CAD + Sofware GmbH. + + , + + . + + . + ( ) AutoCAD + Mechanical R1. .

+ + + + + + + + + + + + + + + + + +

+
AutoCAD Object ARX SDK; AutoCAD VIZualization Suite; Autodesk CAD Overlay; Autodesk Data Exchange; + Autodesk MapGuide; Autodesk Mechanical Desktop (AMD); + Autodesk VIEW; Autodesk WorkCenter; + Autodesk World; AutoPIPE; + AutoPIPE PLUS; AutoPLANT AutoFLNG; AutoPLANT AutoNOZL; + AutoPLANT Cable Scheduler; AutoPLANT DrawPipe; AutoPLANT Electrics; + AutoPLANT Equipment Builder; AutoPLANT Explorer/ID; + AutoPLANT Isometrics; AutoPLANT Loops; AutoPLANT Multi-Steel 2D; + AutoPLANT Multi-Steel 3D; AutoPLANT P&ID; AutoPLANT97 Piping; + AutoSkech; AVS.
+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/la1.htm b/html/_pr/la1.htm new file mode 100644 index 0000000..b765e44 --- /dev/null +++ b/html/_pr/la1.htm @@ -0,0 +1,460 @@ + + + + + + : (A lat 2) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
APM WinMachine; AutoCAD; AutoCAD LT; AutoCAD MAP; AutoCAD Mechanical; + AutoCAD Object ARX SDK; AutoCAD VIZualization Suite; + Autodesk CAD Overlay; Autodesk Data Exchange; + Autodesk MapGuide; Autodesk Mechanical Desktop (AMD); + Autodesk VIEW; Autodesk WorkCenter; + Autodesk World; AutoPIPE; + AutoPIPE PLUS; AutoPLANT AutoFLNG; AutoPLANT AutoNOZL; + AutoPLANT Cable Scheduler; AutoPLANT DrawPipe; AutoPLANT Electrics; + AutoPLANT Equipment Builder; AutoPLANT Explorer/ID; + AutoPLANT Isometrics; AutoPLANT Loops; AutoPLANT Multi-Steel 2D; + AutoPLANT Multi-Steel 3D; AutoPLANT P&ID; AutoPLANT97 Piping; + AutoSkech; AVS.
+
+
+

+
+
+

latA

+ + + + + +

AutoCAD Object ARX SDK

+ + + + + + + + + + +
 : 
 :www.autodesk.com/products
+

Autodesk In. + + . + AutoCAD + (AutoCAD MAP, MDT ). AutoCAD Object ARX SDK + + (API) + AutoCAD + .

+ +


+

+ + + + + +

AutoCAD VIZualization Suite

+ + + + + + + + + + +
 : 
 :www.autodesk.com/products
+

( + ), AutoCAD + Release 14 3D Studio VIZ R2 + . + + , 3D Studio VIZ + , AutoCAD + Release 14. , , + .

+ +


+

+ + + + + +

Autodesk CAD Overlay

+ + + + + + + + + + +
 : 
 :www.autodesk.com/products
+

AutoCAD + . + AutoCAD, + . + + . Autodesk CAD + Overlay Autodesk + In. Softdesk + Inc. 1997 . Autodesk + CAD Overlay R14 AutoCAD R14.

+ +


+

+ + + + + +

Autodesk Data Exchange

+ + + + + + + + + + +
 : 
 :www.autodesk.com/products
+

AutoCAD ( + ) + . + + STEP, IGES VDA-FS. Autodesk + Data Exchange R1. Autodesk + In.

+ +


+

+ + + + + +

Autodesk MapGuide

+ + + + + + + + + + +
 : www.cad.ru/autodesk/gis.htm
 :www.autodesk.com/products
+

C - + + Internet/Intranet ( + ). + - + + + . + , + + Internet (). + (API). + , + JAVA- + . + : MapGuide Server + ( Microsoft IIS), MapGuide + Author ( - + , + -) MapGuide Viewer ( + ). -- Autodesk + MapGuide Intranet Suite R3.x. -- Autodesk Inc.

+ +

+ + + + + +

Autodesk Mechanical Desktop (AMD)

+ + + + + + + + + + +
 : www.cad.ru/autodesk/mdt.htm
 :www.autodesk.com/desktop
+

AMD + Autodesk + Inc MDT. + +  M.

+ +


+

+ + + + + +

Autodesk VIEW

+ + + + + + + + + + +
 : 
 :www.autodesk.com/products
+

Autodesk In. + AutoCAD MDT, , + , + , + , , , + ... ( 100 ). + , + + (, ). + . -- + Autodesk VIEW R2.

+ +


+

+ + + + + +

Autodesk WorkCenter

+ + + + + + + + + + +
 : 
 :www.autodesk.com/products
+

+ Autodesk In. + . + , , , + , + , , + . + - + Microsoft Windows NT Server. SQL + ( Intformix SQL Server) run-time, + . + AutoCAD + MDT AutoCAD View + + AutoCAD ( + " "). + -- Autodesk WorkCentre R1.2.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+
APM WinMachine; AutoCAD; AutoCAD LT; AutoCAD MAP; AutoCAD Mechanical.
...
Autodesk World; AutoPIPE; AutoPIPE PLUS; AutoPLANT AutoFLNG; + AutoPLANT AutoNOZL; AutoPLANT Cable Scheduler; AutoPLANT DrawPipe; + AutoPLANT Electrics; AutoPLANT Equipment Builder; + AutoPLANT Explorer/ID; AutoPLANT Isometrics; AutoPLANT Loops; + AutoPLANT Multi-Steel 2D; AutoPLANT Multi-Steel 3D; + AutoPLANT P&ID; AutoPLANT97 Piping; AutoSkech; AVS.
...
+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/la2.htm b/html/_pr/la2.htm new file mode 100644 index 0000000..c912f50 --- /dev/null +++ b/html/_pr/la2.htm @@ -0,0 +1,465 @@ + + + + + + : (A lat 3) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
APM WinMachine; AutoCAD; AutoCAD LT; AutoCAD MAP; AutoCAD Mechanical; + AutoCAD Object ARX SDK; AutoCAD VIZualization Suite; Autodesk CAD Overlay; Autodesk Data Exchange; + Autodesk MapGuide; Autodesk Mechanical Desktop (AMD); + Autodesk VIEW; Autodesk WorkCenter; + Autodesk World; AutoPIPE; + AutoPIPE PLUS; AutoPLANT AutoFLNG; AutoPLANT AutoNOZL; + AutoPLANT Cable Scheduler; AutoPLANT DrawPipe; AutoPLANT Electrics; + AutoPLANT Equipment Builder; AutoPLANT Explorer/ID; + AutoPLANT Isometrics; AutoPLANT Loops; AutoPLANT Multi-Steel 2D; + AutoPLANT Multi-Steel 3D; AutoPLANT P&ID; AutoPLANT97 Piping; + AutoSkech; AVS.
+
+
+

+
+
+

latA

+ + + + + +

Autodesk World

+ + + + + + + + + + +
 : 
 :www.autodesk.com/products
+

, + , + , + , + Autodesk In. Autodesk + World + + , . + + . + (API) Microsoft VisualBasic Microsoft + Office + , + + .

+ +


+

+ + + + + +

AutoPIPE

+ + + + + + + + + + +
 : 
 :www.rebis.com
+

+ , + + .

+ +


+

+ + + + + +

AutoPIPE PLUS

+ + + + + + + + + + +
 : 
 :www.autodesk.com/products
+

AutoCAD + . + AutoCAD, + . + + . Autodesk CAD + Overlay Autodesk + In. Softdesk + Inc. 1997 . Autodesk + CAD Overlay R14 AutoCAD R14.

+ +


+

+ + + + + +

Autodesk Data Exchange

+ + + + + + + + + + +
 : 
 :www.autodesk.com/products
+

AutoCAD ( + ) + . + + STEP, IGES VDA-FS. Autodesk + Data Exchange R1. Autodesk + In.

+ +


+

+ + + + + +

Autodesk MapGuide

+ + + + + + + + + + +
 : www.cad.ru/autodesk/gis.htm
 :www.autodesk.com/products
+

C - + + Internet/Intranet ( + ). + - + + + . + , + + Internet (). + (API). + , + JAVA- + . + : MapGuide Server + ( Microsoft IIS), MapGuide + Author ( - + , + -) MapGuide Viewer ( + ). -- Autodesk + MapGuide Intranet Suite R3.x. -- Autodesk Inc.

+ +

+ + + + + +

Autodesk Mechanical Desktop (AMD)

+ + + + + + + + + + +
 : www.cad.ru/autodesk/mdt.htm
 :www.autodesk.com/desktop
+

AMD + Autodesk + Inc MDT. + +  M.

+ +


+

+ + + + + +

Autodesk VIEW

+ + + + + + + + + + +
 : 
 :www.autodesk.com/products
+

Autodesk In. + AutoCAD MDT, , + , + , + , , , + ... ( 100 ). + , + + (, ). + . -- + Autodesk VIEW R2.

+ +


+

+ + + + + +

Autodesk WorkCenter

+ + + + + + + + + + +
 : 
 :www.autodesk.com/products
+

+ Autodesk In. + . + , , , + , + , , + . + - + Microsoft Windows NT Server. SQL + ( Intformix SQL Server) run-time, + . + AutoCAD + MDT AutoCAD View + + AutoCAD ( + " "). + -- Autodesk WorkCentre R1.2.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+
APM WinMachine; AutoCAD; AutoCAD LT; AutoCAD MAP; AutoCAD Mechanical; + AutoCAD Object ARX SDK; AutoCAD VIZualization Suite; Autodesk CAD Overlay; Autodesk Data Exchange; + Autodesk MapGuide; Autodesk Mechanical Desktop (AMD); + Autodesk VIEW; Autodesk WorkCenter.
...
Autodesk World; AutoPIPE; AutoPIPE PLUS; + AutoPLANT AutoFLNG; AutoPLANT AutoNOZL; AutoPLANT Cable Scheduler; + AutoPLANT DrawPipe; AutoPLANT Electrics; AutoPLANT Equipment Builder; + AutoPLANT Explorer/ID; AutoPLANT Isometrics; AutoPLANT Loops; + AutoPLANT Multi-Steel 2D; AutoPLANT Multi-Steel 3D; + AutoPLANT P&ID; AutoPLANT97 Piping; AutoSkech; AVS.
...
+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lb.htm b/html/_pr/lb.htm new file mode 100644 index 0000000..56ba0c1 --- /dev/null +++ b/html/_pr/lb.htm @@ -0,0 +1,171 @@ + + + + + : (B lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
bCAD.
+
+
+

+
+
+

latB

+ + + + + +

bCAD

+ + + + + + + + + + +
 : www.propro.ru/indexr.html
+ www.ratiopro.ru
 :www.propro.ru/index.html
+

bCAD -- + 3D- . + + 3D- + , , + , . + bCAD , + , . + bCAD -- + . + + , AutoCAD, + 3D Studio ., + bCAD.

+

bCAD + (. ). bCAD + .

+ + +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lc.htm b/html/_pr/lc.htm new file mode 100644 index 0000000..24a798e --- /dev/null +++ b/html/_pr/lc.htm @@ -0,0 +1,251 @@ + + + + + : (C lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
CADElectro, + CadMECH, + CadMECH Desktop.
+
+
+

+
+
+

latC

+ + + + + +

CADElectro

+ + + + + + + + + + +
 : www.intermech.host.ru/cadelectro.htm
 : 
+

CADElectro, +    , + + .

+

, + 70 , + . + . + CADElectro + IMBASE. AutoCAD CadMECH/CadMECH Desktop.

+ +


+

+ + + + + +

CadMECH

+ + + + + + + + + + +
 : www.intermech.host.ru/cadmech.htm
 : 
+

CadMECH,  . + , AutoCAD + . CadMECH + 10...15 "" AutoCAD + AutoCAD 2...3 . CadMECH + , + -. + + , + .

+

: CadMECH v.5.14 + AutoCAD R14. + CadMECH Desktop.

+
+ +


+

+ + + + + +

CadMECH Desktop

+ + + + + + + + + + +
 : www.intermech.host.ru
 : 
+

+ CadMECH Desktop +   + CadMECH 3D + Autodesk + Mechanical Desktop AVS + , , , .. + CadMECH Desktop + , + ( + ), + .

+

: CadMECH Desktop v.3 + Autodesk Mechanical Desktop R3. + + CadMECH.

+
+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/ld.htm b/html/_pr/ld.htm new file mode 100644 index 0000000..afc5044 --- /dev/null +++ b/html/_pr/ld.htm @@ -0,0 +1,169 @@ + + + + + + : (D lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
DOCS Open;
+
+
+

+
+
+

latD

+
+ + + + + +

DOCS Open

+ + + + + + + + + +
 : www.vest.msk.ru/avtomat_3-1-2.htm
ʚ:
+

DOCS Open + , + , , , , + + . + DOCS Open + , + + .

+

, + -- AutoCAD, TFlex, ..

+
+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/le.htm b/html/_pr/le.htm new file mode 100644 index 0000000..c82b748 --- /dev/null +++ b/html/_pr/le.htm @@ -0,0 +1,170 @@ + + + + + : (E lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latE

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "E", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lf.htm b/html/_pr/lf.htm new file mode 100644 index 0000000..3b198ef --- /dev/null +++ b/html/_pr/lf.htm @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + : (F lat) + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Flow-3D.
+
+
+

+
+
+

latF

+ + + + + +

Flow-3D

+ + + + + + + + + + +
 : www.cad.ru/flow3d
 :www.flow3d.com
+

Flow-3D + o Flow Science Inc. + + . + + + ( ), + , + , , , + + . , + , , , + .

+

+ . , + + , + + , + . + , + , + . + + , + .

+

+ ( + , ..), + + , , + + , + , , + , , + , :

+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lg.htm b/html/_pr/lg.htm new file mode 100644 index 0000000..47b6217 --- /dev/null +++ b/html/_pr/lg.htm @@ -0,0 +1,321 @@ + + + + + : (G lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Gear, + GTXImage CAD, + GTXImage CAD Plus, + GTXImage Edit, + GTXRaster CAD, + GTXRaster CAD Plus, + GTX ICR Plus add-on, + GTXRaster TRACE
+
+
+

+
+
+

latG

+ + + + + +

Gear

+ + + + + + + + + + +
 : www.intermech.host.ru/gear.htm
 :
+

Gear ( +  ) + , + + + . AutoCAD CadMECH/CadMECH Desktop.

+ +


+

+ + + + + +

GTXRaster CAD GTXRaster CAD Plus

+ + + + + + + + + + +
 : 
 :www.gtx.com
+

GTXRaster CAD GTX Inc. + AutoCAD + + (-) . + + , ( + , + ), + , + . + . "Plus" + + . + -- 4.5 AutoCAD R14.

+ +


+

+ + + + + +

GTXImage CAD GTXImage CAD Plus

+ + + + + + + + + + +
 : 
 :www.gtx.com
+

GTXImage CAD -- + , +   GTXRaster CAD + AutoCAD.

+ +


+

+ + + + + +

GTXImage Edit

+ + + + + + + + + + +
 : 
 :www.gtx.com
+

GTXImage Edit + + . + , + , + + + .

+ +


+

+ + + + + +

GTX ICR Plus add-on

+ + + + + + + + + + +
 : 
 :www.gtx.com
+

( + ) + GTXRaster + CAD Plus GTXImage CAD Plus + GTX Inc. + GTX ICR Plus add-on +   + + ( + ).

+ +


+

+ + + + + +

GTXRaster TRACE

+ + + + + + + + + + +
 : 
 :www.gtx.com
+

GTX Inc. + + AutoCAD R11/12/13. + . +  3.11.

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lh.htm b/html/_pr/lh.htm new file mode 100644 index 0000000..05cf67f --- /dev/null +++ b/html/_pr/lh.htm @@ -0,0 +1,170 @@ + + + + + : (H lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latH

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "H", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/li.htm b/html/_pr/li.htm new file mode 100644 index 0000000..bd2bab3 --- /dev/null +++ b/html/_pr/li.htm @@ -0,0 +1,162 @@ + + + + + : (I lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
ISE TCAD.
+
+
+

+
+
+

latI

+ + + + + +

ISE TCAD

+ + + + + + + + + + +
 : www.techcen.zgrad.su/ise
 :
+

- ISE TCAD, + , + ( ) + , + , , + , + , + .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lj.htm b/html/_pr/lj.htm new file mode 100644 index 0000000..d6a7caa --- /dev/null +++ b/html/_pr/lj.htm @@ -0,0 +1,170 @@ + + + + + : (J lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latJ

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "J", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lk.htm b/html/_pr/lk.htm new file mode 100644 index 0000000..6bdc848 --- /dev/null +++ b/html/_pr/lk.htm @@ -0,0 +1,170 @@ + + + + + : (K lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latK

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "K", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/ll.htm b/html/_pr/ll.htm new file mode 100644 index 0000000..76dc867 --- /dev/null +++ b/html/_pr/ll.htm @@ -0,0 +1,370 @@ + + + + + + : (L lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
LCAD, + Lightscape, + LiquidSpeed, + LiquidSpeed for 3D-Studio, + LS Flow, + LVMFlow.
+
+
+

+
+
+

latS

+ + + + + +

LCAD

+ + + + + + + + +
 : www.intermech.host.ru/lcad.htm
ʚ:
+

LCAD (Layout CAD -- ) +   + + . + + , + , + . LCAD + AutoCAD.

+ +


+

+ + + + + +

Lightscape

+ + + + + + + + + +
 : www.cad.ru/_ex/99_06_07b.htm
ʚ:www.lightscape.com/main
+

Lightscape R3.2, + Discreet Autodesk, + RadioRay, + Lightwork Design + Kinetix.

+ +

Lightscape R3.2 , + , + . + , AutoCAD 2000, 3D Studio VIZ + , Lightscape R3.2 + , + . Lightscape + , , + + . Lightscape + . + + + - + SoftEngine + SoftPoint + Vibrant Graphics. + AutoCAD R14. + LiquidSpeed for 3D-Studio.

+ +


+

+ + + + + +

LiquidSpeed

+ + + + + + + + + +
 : 
ʚ:www.vibrant.com
+

- + SoftEngine + SoftPoint + Vibrant Graphics. + AutoCAD R14. + LiquidSpeed for 3D-Studio.

+ +


+

+ + + + + +

LiquidSpeed for 3D-Studio

+ + + + + + + + + +
 : 
ʚ:www.vibrant.com
+

Vibrant + Graphics Autodesk + 3D Studio R3 R4. + , LiquidSpeed + , + . , 3D Studio MAX, + LiquidSpeed for 3D-Studio . + ,  .

+ +


+

+ + + + + +

LS Flow

+ + + + + + + + + + +
 : www.lotsia.com
 :
+

LS Flow -- + - + , + . + -- - + , .

+

LS Flow + DOCS OpenT PDM PartY'97 + + + ISO 9000. + , + , , + , + .

+ +


+

+ + + + + +

LVMFlow

+ + + + + + + + + + +
 : ulm.uni.udm.ru/~prs
 :
+

LVMFlow, + () -- + ( ), + -. + LVMFlow + LVM3d, + + .

+

LVMFlow + Intel- Windows NT/95, + .

+

+ , , , , + , .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lm.htm b/html/_pr/lm.htm new file mode 100644 index 0000000..6983903 --- /dev/null +++ b/html/_pr/lm.htm @@ -0,0 +1,250 @@ + + + + + + + + + + + + + + + : (M lat) + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Mechanical Desktop (MDT), + MSC/InCheck, + MITA PointSource.
+
+
+

+
+
+

latM

+ + + + + +

Mechanical Desktop (MDT)

+ + + + + + + + + + +
 : www.cad.ru/autodesk/mdt.htm
 :www.autodesk.com/mdt
+

+ Autodesk Inc. + -- Autodesk Mechanical Desktop. + + , + NURBS- + ( ) , + . MDT - + + (ACIS 3.0). + + , + . + + + . + (, + , :). + , + + + + . MDT + , + , + / (DWG, DWF, DXF, IGES 5.3, STL, IDF, VRML, SAT, ACIS, 3DS, + WMF, EPS...) . -- + R2. .

+ +

+ + + + + +

MSC/InCheck

+ + + + + + + + + + +
 : www.cad.ru/msc
 :www.macsch.com
+

MacNeal + Schwendler Corparation (MSC) , + , , , + + AutoCAD Autodesk + Mechanical Desktop. ( + ), + , , , . + . + + . + MacNeal Schwendler Corparation. MSC/InCheck MSC/InCheck Base + ( ), MSC/StressCheck ( + ), MSC/VibrationCheck ( ), MSC/BucklingCheck ( ), MSC/HeatCheck + ( ), MSC/Shape Optimisation + ( ). + + .

+ + +

+ + + + + +

MITA PointSource

+ + + + + + + + + + +
 : www.mita-bkl.ru/present/mitatext/8020.htm
 :
+

+ (, , ) + Mita Industrial Co.

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/ln.htm b/html/_pr/ln.htm new file mode 100644 index 0000000..b2b4abe --- /dev/null +++ b/html/_pr/ln.htm @@ -0,0 +1,170 @@ + + + + + : (N lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latN

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "N", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lo.htm b/html/_pr/lo.htm new file mode 100644 index 0000000..e98a5a4 --- /dev/null +++ b/html/_pr/lo.htm @@ -0,0 +1,169 @@ + + + + + : (O lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latO

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "O", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lp.htm b/html/_pr/lp.htm new file mode 100644 index 0000000..9f84d23 --- /dev/null +++ b/html/_pr/lp.htm @@ -0,0 +1,514 @@ + + + + + + : (P lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
PartY'97; + Pit Control; + Pit Electrical Engineering; + Pit Heating; + Pit LT Construction; + Pit LT Electrical Engineering; + Pit LT Heating/Plumbing; + Pit LT Ventilation/Control; + Pit Menu Construction; + Pit Plumbing; + Pit Ventilation.
+
+
+

+
+
+

latP

+ + + + + +

PartY'97

+ + + + + + + + + + +
 : www.lotsia.com/party.html
 :
+

+ + ( PDM) PartY'97 + , + . PartY'97 + "-", + , . + + .

+ +


+

+ + + + + +

Pit-Control

+ + + + + + + + + + +
 : 
 :www.pit.de/englisch/pitinfo.htm
+

, + Pit-Cup. + + + . + Pit Control, + + . + AutoCAD/Pit-Cup. Pit Control + , + Pit Menu Construction.

+ +


+

+ + + + + +

Pit-Electrical Engineering

+ + + + + + + + + + +
 : 
 :www.pit.de/englisch/pitinfo.htm
+

Pit-Cup AutoCAD, + . Pit Electrical Engineering + , + , , + , + + , . + , + , . + . + .

+ +


+

+ + + + + +

Pit-Heating

+ + + + + + + + + + +
 : 
 :www.pit.de/englisch/pitinfo.htm
+

Pit-Cup AutoCAD, + + (, , ) + . , + , + . + + . Pit Heating + + , + .

+ +


+

+ + + + + +

Pit-Menu Construction

+ + + + + + + + + + +
 : 
 :www.pit.de/englisch/pitinfo.htm
+

Pit-Cup AutoCAD, + , + , + + + . + , + . + + , + , . + , + . + . + + + . + , + , .

+ +


+

+ + + + + +

Pit-LT Construction

+ + + + + + + + + + +
 : 
 :www.pit.de/englisch/pitinfo.htm
+

Pit-Cup + Pit Menu Construction ( + , ), AutoCAD LT. + Pit LT Construction + + , + .

+ +


+

+ + + + + +

Pit-LT Electrical Engineering

+ + + + + + + + + + +
 : 
 :www.pit.de/englisch/pitinfo.htm
+

Pit-Cup + AutoCAD LT. + + Pit Electrical Engineering + , AutoCAD LT, + + + .

+ +


+

+ + + + + +

Pit-LT Heating/Plumbing

+ + + + + + + + + + +
 : 
 :www.pit.de/englisch/pitinfo.htm
+

, + + Pit-Cup + Pit Heating + Pit Plumbing. + AutoCAD LT, + + "" .

+ +


+

+ + + + + +

Pit-LT Ventilation/Control

+ + + + + + + + + + +
 : 
 :www.pit.de/englisch/pitinfo.htm
+

Pit-Cup + + AutoCAD LT. + + Pit Ventilation , + AutoCAD LT, + + .

+ +


+

+ + + + + +

Pit-Plumbing

+ + + + + + + + + + +
 : 
 :www.pit.de/englisch/pitinfo.htm
+

Pit-Cup AutoCAD, + , + . + + , + , . + , , + , , + ... + + , + + + .

+ +


+

+ + + + + +

Pit-Ventilation

+ + + + + + + + + + +
 : 
 :www.pit.de/englisch/pitinfo.htm
+

+ + AutoCAD + Pit-Cup. + + , + + . + + .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lq.htm b/html/_pr/lq.htm new file mode 100644 index 0000000..2898520 --- /dev/null +++ b/html/_pr/lq.htm @@ -0,0 +1,170 @@ + + + + + : (Q lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latQ

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "Q", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lr.htm b/html/_pr/lr.htm new file mode 100644 index 0000000..a1b4c4d --- /dev/null +++ b/html/_pr/lr.htm @@ -0,0 +1,197 @@ + + + + + + : (P lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
RadioRay, + ROTATION.
+
+
+

+
+
+

latR

+ + + + + +

RadioRay

+ + + + + + + + + + +
 : 
 :
+

RadioRay, Lightwork Design, + Kinetix Autodesk.

+

3D Studio MAX 3D Studio VIZ + . + "" , + (, + , ).

+

1999 , RadioRay + Lightscape R3.2.

+ +


+

+ + + + + +

ROTATION

+ + + + + + + + + + +
 : www.intermech.host.ru/rotation.htm
 :
+

ROTATION + (  ) + , + , , , + .. AutoCAD + CadMECH/CadMECH Desktop. + ROTATION + 20...25 .

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/ls.htm b/html/_pr/ls.htm new file mode 100644 index 0000000..46c3448 --- /dev/null +++ b/html/_pr/ls.htm @@ -0,0 +1,325 @@ + + + + + : (S lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Search, + Show!, + SoftEngine, + SoftPoint, + SolidWorks.
+
+
+

+
+
+

latS

+ + + + + +

Search

+ + + + + + + + + + +
 : www.intermech.host.ru/search.htm
 :
+

Search ( +  ) + + + Oracle InterBase + :

    +
  • ;
  • +
  • ;
  • +
  • -;
  • +
  • - ;
  • +
  • ;
  • +
  • .
+ , + , Search + , , + . + + .

+ +


+

+ + + + + +

Show!

+ + + + + + + + + + +
 : www.intermech.host.ru/show.htm
 :
+

Show ( +  ) + , , + , . + Show , AutoCAD 9, 10, 11, 12, 13, 14 + Autodesk Mechanical Desktop 2, 3 + ( DWG), CAD DXF. + Show SLD, SLB, + BMP, WMF, EMF, ICO, JPG, GIF, TIF, PCX, TGA, FLI, FLC, IFF, PIC, PNG.

+ +


+

+ + + + + +

SoftEngine

+ + + + + + + + + +
 : 
ʚ:www.vibrant.com
+

- + AutoCAD, + Vibrant + Graphics. . + , 4  + AutoCAD R14, + AutoCAD R13. + + 2...2.5 . " + " " ", + , + , + . + Soft Engine 4 + AutoCAD R12, R13 + R14.

+

Soft Engine + LiquidSpeed.

+ +


+

+ + + + + +

SoftPoint

+ + + + + + + + +
 : 
ʚ:www.vibrant.com
+

SoftPoint + AutoCAD, + Vibrant + Graphics. + AutoCAD R14. , + SoftPoint + :

    +
  • + ;
  • +
  • + ( , + .. );
  • +
  • + ( / );
  • +
  • , + ;
  • +
  • + ;
  • +
  • .

+

SoftPoint + LiquidSpeed.

+ + +


+

+ + + + + +

SolidWorks

+ + + + + + + + +
 : www.solidworks.ru
ʚ:www.solidworks.com
+

C SolidWorks -- a ep + apap pa p aa, apa a + apap p p ParaSolid. aa + a Windows, .

+

SolidWorks + SolidWorks Russia.

+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lt.htm b/html/_pr/lt.htm new file mode 100644 index 0000000..adcb1ab --- /dev/null +++ b/html/_pr/lt.htm @@ -0,0 +1,170 @@ + + + + + : (T lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latT

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "T", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lu.htm b/html/_pr/lu.htm new file mode 100644 index 0000000..2af5fe8 --- /dev/null +++ b/html/_pr/lu.htm @@ -0,0 +1,170 @@ + + + + + : (U lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latU

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "U", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lv.htm b/html/_pr/lv.htm new file mode 100644 index 0000000..cc9c3f5 --- /dev/null +++ b/html/_pr/lv.htm @@ -0,0 +1,167 @@ + + + + + + : (V lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
Volo View Express.
+
+
+

+
+
+

latV

+
+ + + + + +

Volo View Express

+ + + + + + + + + + +
 : www.cad.ru/_ex/99_06_17a.htm
 :www.autodesk.com/volo
+

Autodesk Inc, + . + Volo View Express -- + Volo, Autodesk, + , DWG, DWF + DXFT, , Internet + .

+
+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lw.htm b/html/_pr/lw.htm new file mode 100644 index 0000000..ed0825f --- /dev/null +++ b/html/_pr/lw.htm @@ -0,0 +1,170 @@ + + + + + : (W lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latW

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "W", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lx.htm b/html/_pr/lx.htm new file mode 100644 index 0000000..473433c --- /dev/null +++ b/html/_pr/lx.htm @@ -0,0 +1,170 @@ + + + + + : (X lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latX

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "X", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/ly.htm b/html/_pr/ly.htm new file mode 100644 index 0000000..34b7e2a --- /dev/null +++ b/html/_pr/ly.htm @@ -0,0 +1,169 @@ + + + + + : (Y lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latY

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "X", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/lz.htm b/html/_pr/lz.htm new file mode 100644 index 0000000..5e15244 --- /dev/null +++ b/html/_pr/lz.htm @@ -0,0 +1,170 @@ + + + + + : (Z lat) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

latZ

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + + "Z", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/r1.htm b/html/_pr/r1.htm new file mode 100644 index 0000000..df4376b --- /dev/null +++ b/html/_pr/r1.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/r2.htm b/html/_pr/r2.htm new file mode 100644 index 0000000..0811d3c --- /dev/null +++ b/html/_pr/r2.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/r3.htm b/html/_pr/r3.htm new file mode 100644 index 0000000..3a772e7 --- /dev/null +++ b/html/_pr/r3.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/ra.htm b/html/_pr/ra.htm new file mode 100644 index 0000000..a075ab0 --- /dev/null +++ b/html/_pr/ra.htm @@ -0,0 +1,166 @@ + + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rb.htm b/html/_pr/rb.htm new file mode 100644 index 0000000..009fff7 --- /dev/null +++ b/html/_pr/rb.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rc.htm b/html/_pr/rc.htm new file mode 100644 index 0000000..939cb87 --- /dev/null +++ b/html/_pr/rc.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rd.htm b/html/_pr/rd.htm new file mode 100644 index 0000000..4600a6f --- /dev/null +++ b/html/_pr/rd.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/re.htm b/html/_pr/re.htm new file mode 100644 index 0000000..a1b94ea --- /dev/null +++ b/html/_pr/re.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rf.htm b/html/_pr/rf.htm new file mode 100644 index 0000000..d4bd4ad --- /dev/null +++ b/html/_pr/rf.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rg.htm b/html/_pr/rg.htm new file mode 100644 index 0000000..20a1e58 --- /dev/null +++ b/html/_pr/rg.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rh.htm b/html/_pr/rh.htm new file mode 100644 index 0000000..8641a2c --- /dev/null +++ b/html/_pr/rh.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/ri.htm b/html/_pr/ri.htm new file mode 100644 index 0000000..7311310 --- /dev/null +++ b/html/_pr/ri.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rj.htm b/html/_pr/rj.htm new file mode 100644 index 0000000..1fc9cf7 --- /dev/null +++ b/html/_pr/rj.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rk.htm b/html/_pr/rk.htm new file mode 100644 index 0000000..95c64ca --- /dev/null +++ b/html/_pr/rk.htm @@ -0,0 +1,166 @@ + + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rl.htm b/html/_pr/rl.htm new file mode 100644 index 0000000..0cc3b3d --- /dev/null +++ b/html/_pr/rl.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rm.htm b/html/_pr/rm.htm new file mode 100644 index 0000000..f0307b0 --- /dev/null +++ b/html/_pr/rm.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rn.htm b/html/_pr/rn.htm new file mode 100644 index 0000000..115a175 --- /dev/null +++ b/html/_pr/rn.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/ro.htm b/html/_pr/ro.htm new file mode 100644 index 0000000..0059a9f --- /dev/null +++ b/html/_pr/ro.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rp.htm b/html/_pr/rp.htm new file mode 100644 index 0000000..66af9aa --- /dev/null +++ b/html/_pr/rp.htm @@ -0,0 +1,166 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rq.htm b/html/_pr/rq.htm new file mode 100644 index 0000000..655d5dd --- /dev/null +++ b/html/_pr/rq.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rr.htm b/html/_pr/rr.htm new file mode 100644 index 0000000..c0cbaf0 --- /dev/null +++ b/html/_pr/rr.htm @@ -0,0 +1,166 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rs.htm b/html/_pr/rs.htm new file mode 100644 index 0000000..958f3d1 --- /dev/null +++ b/html/_pr/rs.htm @@ -0,0 +1,162 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
 ,
+
+
+

+
+
+

+ + + + + +

+ + + + + + + + + + +
 : www.tgngu.tyumen.ru/~alex/Russian/mainframe1.htm
 :www.tgngu.tyumen.ru/~alex/English/mainframe1.htm
+

+ () . + + AutoCAD R14 + ( ). :

    +
  • ;
  • +
  • ;
  • +
  • ;
  • +
  • ( , ..);
  • +
  • .

+

--  1.7

+
+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rt.htm b/html/_pr/rt.htm new file mode 100644 index 0000000..976f6b1 --- /dev/null +++ b/html/_pr/rt.htm @@ -0,0 +1,161 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :
.
+
+
+

+
+
+

+ + + + + +

+ + + + + + + + + + +
 : http://www.orc.ru/~lihtinov
 :
+

-- + NC CNC, + . + .

+
+ +

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/ru.htm b/html/_pr/ru.htm new file mode 100644 index 0000000..f9cbed4 --- /dev/null +++ b/html/_pr/ru.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rv.htm b/html/_pr/rv.htm new file mode 100644 index 0000000..370d665 --- /dev/null +++ b/html/_pr/rv.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rw.htm b/html/_pr/rw.htm new file mode 100644 index 0000000..c5e1ea1 --- /dev/null +++ b/html/_pr/rw.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/ry.htm b/html/_pr/ry.htm new file mode 100644 index 0000000..f95f98d --- /dev/null +++ b/html/_pr/ry.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/rz.htm b/html/_pr/rz.htm new file mode 100644 index 0000000..45a6691 --- /dev/null +++ b/html/_pr/rz.htm @@ -0,0 +1,170 @@ + + + + + : ( ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ :

+
+
+

+
+
+

+
+ + + + + +
+ + + + + + + + + +
ʚ:
ʚ:
+

, + . + - + "", URL + , , , . + + URL + : webmaster@cad.ru.

+
+ +


+

+ + + + + +
--                            
+lat------ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/urladd.htm b/html/_pr/urladd.htm new file mode 100644 index 0000000..a3e76a7 --- /dev/null +++ b/html/_pr/urladd.htm @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + : -- URL + + + + + + + + + + +

URL

+

, + + + . , + URL ( + + , + ). + , + , + , + + " ".

+

, URL + , + , - + ( , .. + , + ) + + " ". URL + , , + .

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
! + !

+ - + :

;

;

/ + URL ;

.

+
+
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_pr/urladded.htm b/html/_pr/urladded.htm new file mode 100644 index 0000000..138ded7 --- /dev/null +++ b/html/_pr/urladded.htm @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + : -- URL + + + + + + + + + + + + + + +

+

+ , + , + .  + + + .  , , + , + .


+ ,  
+ , , , . "  "
+ +
+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_sh/index.htm b/html/_sh/index.htm new file mode 100644 index 0000000..522991c --- /dev/null +++ b/html/_sh/index.htm @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + " ": + + + + + + + + + + + + +
, + " " . + + ( )  , + ...
+ +

+ + + + + +
[] + [] + []
+ + [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/_styles/main.css b/html/_styles/main.css new file mode 100644 index 0000000..4408f50 --- /dev/null +++ b/html/_styles/main.css @@ -0,0 +1,18 @@ +BODY { color: black; + font-family: sans-serif; + background-color: white } + +P, UL, OL { color: black; + font-family: sans-serif; + background-color: white; + text-align: left } + +TT { color: #000040; + font-family: sans-serif; + font-weight: bold } + +A:link { color: blue } + +A:visited { color: #800080 } + +A:active {color: red } diff --git a/html/_styles/mes.css b/html/_styles/mes.css new file mode 100644 index 0000000..481fbb2 --- /dev/null +++ b/html/_styles/mes.css @@ -0,0 +1,15 @@ +@import ('/styles/main.css'); + +BODY { + font-family: garamond, lucida bright, book antiqua, serif; +} + +H1, H2, H3, H4, H5, H6 { + font-family: GillSans, gill sans, gill, arial black, helvetica, sans-serif; + color: #0B007E; +} + +TH { + font-family: GillSans, gill sans, gill, arial black, helvetica, sans-serif; + color: #FFFFCC; +} diff --git a/html/_styles/press_release.css b/html/_styles/press_release.css new file mode 100644 index 0000000..18d2d19 --- /dev/null +++ b/html/_styles/press_release.css @@ -0,0 +1,11 @@ +/* +P, UL { line-height: 1.5 } + +P.compact { line-height: normal } +*/ + +H1, H2 { font-family: GillSans, sans-serif; + text-align: center } + +H2 { font-style: italic; + font-size: medium } \ No newline at end of file diff --git a/html/_styles/specsheets.css b/html/_styles/specsheets.css new file mode 100644 index 0000000..d313070 --- /dev/null +++ b/html/_styles/specsheets.css @@ -0,0 +1,17 @@ +@import url(/styles/main.css); + +H1, H2, H3, H4, H5, H6, H7, H8, H9 { + font-family: GillSans, gillsans, helvetica, verdana, sans serif; + font-weight: bold; + color: black; +} + +H2 { + font-style: italic; +} + +BLOCKQUOTE { + font-family: GillSans, gillsans, helvetica, verdana, sans serif; + font-style: italic; + text-align: justify; +} diff --git a/html/co.htm b/html/co.htm new file mode 100644 index 0000000..b27536e --- /dev/null +++ b/html/co.htm @@ -0,0 +1,160 @@ + + + + + + + -- () + + + + + + + + + + + + + + +
-----
LAT-------abcdefghijklmnopqrstuvwxyz
+
+ + diff --git a/html/ex.htm b/html/ex.htm new file mode 100644 index 0000000..fb83632 --- /dev/null +++ b/html/ex.htm @@ -0,0 +1,14 @@ + + + + + + + -- () + + + + +

+ + diff --git a/html/favicon.gif b/html/favicon.gif new file mode 100644 index 0000000..df41a30 Binary files /dev/null and b/html/favicon.gif differ diff --git a/html/favicon.ico b/html/favicon.ico new file mode 100644 index 0000000..3c9f43f Binary files /dev/null and b/html/favicon.ico differ diff --git a/html/favicon.png b/html/favicon.png new file mode 100644 index 0000000..1d6c016 Binary files /dev/null and b/html/favicon.png differ diff --git a/html/favicon.svg b/html/favicon.svg new file mode 100644 index 0000000..08a3986 --- /dev/null +++ b/html/favicon.svg @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/html/fr.htm b/html/fr.htm new file mode 100644 index 0000000..4a120a7 --- /dev/null +++ b/html/fr.htm @@ -0,0 +1,94 @@ + + + + + + + -- " " + + + + + + + + + + + + + + + + + + + + + + + + + +
  "  "
  "  "  "  "
Download
+ + diff --git a/html/header.htm b/html/header.htm new file mode 100644 index 0000000..a7b3df7 --- /dev/null +++ b/html/header.htm @@ -0,0 +1,15 @@ + + + + + + + () + + + + +

CAD/CAM/CAE --

+ + diff --git a/html/images/acadtigr.gif b/html/images/acadtigr.gif new file mode 100644 index 0000000..248613b Binary files /dev/null and b/html/images/acadtigr.gif differ diff --git a/html/images/banner1.gif b/html/images/banner1.gif new file mode 100644 index 0000000..f88d6a4 Binary files /dev/null and b/html/images/banner1.gif differ diff --git a/html/images/bnr_1000.gif b/html/images/bnr_1000.gif new file mode 100644 index 0000000..799322e Binary files /dev/null and b/html/images/bnr_1000.gif differ diff --git a/html/images/bnr_a2k.gif b/html/images/bnr_a2k.gif new file mode 100644 index 0000000..28f0360 Binary files /dev/null and b/html/images/bnr_a2k.gif differ diff --git a/html/images/bnr_bars.gif b/html/images/bnr_bars.gif new file mode 100644 index 0000000..50074e1 Binary files /dev/null and b/html/images/bnr_bars.gif differ diff --git a/html/images/bnr_rebs.gif b/html/images/bnr_rebs.gif new file mode 100644 index 0000000..255ed72 Binary files /dev/null and b/html/images/bnr_rebs.gif differ diff --git a/html/images/bnr_rmbl.gif b/html/images/bnr_rmbl.gif new file mode 100644 index 0000000..caee99c Binary files /dev/null and b/html/images/bnr_rmbl.gif differ diff --git a/html/images/bnr_tigr.gif b/html/images/bnr_tigr.gif new file mode 100644 index 0000000..248613b Binary files /dev/null and b/html/images/bnr_tigr.gif differ diff --git a/html/images/cad_log2.gif b/html/images/cad_log2.gif new file mode 100644 index 0000000..492b289 Binary files /dev/null and b/html/images/cad_log2.gif differ diff --git a/html/images/cadrumemw.gif b/html/images/cadrumemw.gif new file mode 100644 index 0000000..486f735 Binary files /dev/null and b/html/images/cadrumemw.gif differ diff --git a/html/images/count000.gif b/html/images/count000.gif new file mode 100644 index 0000000..83dfcda Binary files /dev/null and b/html/images/count000.gif differ diff --git a/html/images/dot.gif b/html/images/dot.gif new file mode 100644 index 0000000..8e09b5e Binary files /dev/null and b/html/images/dot.gif differ diff --git a/html/images/dragsmw.gif b/html/images/dragsmw.gif new file mode 100644 index 0000000..fa83a3b Binary files /dev/null and b/html/images/dragsmw.gif differ diff --git a/html/images/dragsmy.gif b/html/images/dragsmy.gif new file mode 100644 index 0000000..c41cd48 Binary files /dev/null and b/html/images/dragsmy.gif differ diff --git a/html/images/ie_animated.gif b/html/images/ie_animated.gif new file mode 100644 index 0000000..3c7cd36 Binary files /dev/null and b/html/images/ie_animated.gif differ diff --git a/html/images/ieanim.gif b/html/images/ieanim.gif new file mode 100644 index 0000000..3c7cd36 Binary files /dev/null and b/html/images/ieanim.gif differ diff --git a/html/images/logobig.gif b/html/images/logobig.gif new file mode 100644 index 0000000..faf77ba Binary files /dev/null and b/html/images/logobig.gif differ diff --git a/html/images/logobig2.gif b/html/images/logobig2.gif new file mode 100644 index 0000000..407117f Binary files /dev/null and b/html/images/logobig2.gif differ diff --git a/html/images/nscape.gif b/html/images/nscape.gif new file mode 100644 index 0000000..a0064e6 Binary files /dev/null and b/html/images/nscape.gif differ diff --git a/html/images/spacer.gif b/html/images/spacer.gif new file mode 100644 index 0000000..c8e27fd Binary files /dev/null and b/html/images/spacer.gif differ diff --git a/html/images/workman2.gif b/html/images/workman2.gif new file mode 100644 index 0000000..1075bb9 Binary files /dev/null and b/html/images/workman2.gif differ diff --git a/html/index.htm b/html/index.htm new file mode 100644 index 0000000..9ed2561 --- /dev/null +++ b/html/index.htm @@ -0,0 +1,120 @@ + + + + + + ! + + + + + + + + + + + + + +
+


+
+  [  ]
+
+
+
+
+ + + + +
+

+
+ +
+
+ + + + + + +
+ + + + +
+ Best for Netscape Navigator + + Microsoft Internet Explorer Redy +
+ + + + + +
Rambler's Top100 Service + + + + +
+
+ + + +
Design by:
+ ~~V<
+ © 1998, Sergei Erjemin
+
+
+ + + diff --git a/html/index1.htm b/html/index1.htm new file mode 100644 index 0000000..933730c --- /dev/null +++ b/html/index1.htm @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + <body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000"> + +<table border="0" cellpadding="0" cellspacing="0" width="460"> + <tr> + <td><p align="left"> + -, <b ID="b"></b> <b + ID="b"></b> <b ID="b"></b> + (). + . + :</p> + <ul> + <li><a href="_co/index.htm" onClick="window.open('co.htm','abc')">, + </a>;</li> + <li><a href="_pr/index.htm" onClick="window.open('pr.htm','abc')"> + </a>;</li> + <li><a href="_ex/index.htm" onClick="window.open('ex.htm','abc')"> + ( ) </a>;</li> + <li><a href="_nw/index.htm" onClick="window.open('nw.htm','abc')"> + &quot; &quot;</a>;</li> + <li><a href="_pb/index.htm" onClick="window.open('pb.htm','abc')"> + , + </a>.</li> + </ul></p> + <p> <a + href="_ot/index.htm" onClick="window.open('ot.htm','abc')"> + </a> <a href="_sh/index.htm" target="_self" + onclick="window.open('sh.htm','abc')"> </a> + &quot; &quot;.</p> + <p> <a href="sponsor.htm#cooperation"></a> + , , + <b ID="b">www.cad.ru</b>... + <a href="sponsor.htm#get_to"></a> + <a href="sponsor.htm#sponsorship"></a> + &quot; &quot;.</td> + </tr> +</table> +<hr width="460" size="1" color="#000000" align="left"> + +<table border="0" width="460" cellpadding="4" cellspacing="0"> + <tr> + <td align="right"><center><script language="JavaScript"> var loc = ''; </script> +<script language="JavaScript1.4">try{ var loc = escape(top.location.href); }catch(e){;}</script> +<script language="JavaScript">document.write("<sc"+"ript language='JavaScript' src='http://ad.ir.ru/bb.cgi?cmd=ad&hreftarget=_blank&pubid=5484&pg=1&r=js&ssi=nofillers&vbn=1&num=1&w=468&h=60&&ref="+escape(document.referrer)+"&loc="+loc+"&nocache="+Math.round(Math.random()*999111)+"'>\n</sc"+"ript>");</script><br><FONT SIZE=1><A HREF="http://go.ir.ru/enter.phtml" target=_blank>. </A></FONT></center> +<hr width="468" size="1" color="#cccccc" align="center"> +<script language="javascript" type="text/javascript"><!-- +d=document;var a='';a+=';r='+escape(d.referrer);js=10;//--></script> +<script language="javascript1.1" type="text/javascript"><!-- +a+=';j='+navigator.javaEnabled();js=11;//--></script> +<script language="javascript1.2" type="text/javascript"><!-- +s=screen;a+=';s='+s.width+'*'+s.height; +a+=';d='+(s.colorDepth?s.colorDepth:s.pixelDepth);js=12;//--></script> +<script language="javascript1.3" type="text/javascript"><!-- +js=13;//--></script><script language="javascript" type="text/javascript"><!-- +d.write('<a href="http://top.mail.ru/jump?from=1612438" target="_top">'+ +'<img src="http://d5.c7.b8.a1.top.mail.ru/counter?id=1612438;t=223;js='+js+ +a+';rand='+Math.random()+'" alt="@Mail.ru" border="0" '+ +'height="31" width="88"><\/a>');if(11<js)d.write('<'+'!-- ');//--></script> +<noscript><a target="_top" href="http://top.mail.ru/jump?from=1612438"> +<img src="http://d5.c7.b8.a1.top.mail.ru/counter?js=na;id=1612438;t=223" +height="31" width="88" border="0" alt="@Mail.ru"></a></noscript> +<script language="javascript" type="text/javascript"><!-- +if(11<js)d.write('--'+'>');//--></script></td> + </tr> +</table> + </body> + + + diff --git a/html/main.htm b/html/main.htm new file mode 100644 index 0000000..52bbb62 --- /dev/null +++ b/html/main.htm @@ -0,0 +1,120 @@ + + + + + + + + + + + : + + + + + + + + + +

+ -, + + (). + + . + :

+ +
+ + + + +

+ + " + ".

+
+

+
+ CAD/CAD Library

+
+ + + + +

+ , + , + www.cad.ru... + + + " ".

+
+ + + + + +
+ +
.
+
+ + + + + +
+ + diff --git a/html/nav.htm b/html/nav.htm new file mode 100644 index 0000000..7bdd82b --- /dev/null +++ b/html/nav.htm @@ -0,0 +1,80 @@ + + + + + + -- + + + + + + + + + + + + + + + +
 "  "
+
+
+
+ +
+
+
+
+
+


+ Designed 1998/99, by:
+
+ © Sergei Erjemin
+  
+  

+
+ + diff --git a/html/pb.htm b/html/pb.htm new file mode 100644 index 0000000..3e6ea8a --- /dev/null +++ b/html/pb.htm @@ -0,0 +1,14 @@ + + + + + + + -- () + + + + +

,

+ + diff --git a/html/pr.htm b/html/pr.htm new file mode 100644 index 0000000..d6328a4 --- /dev/null +++ b/html/pr.htm @@ -0,0 +1,161 @@ + + + + + + + -- () + + + + + + + + + + + + + + +
-----
LAT-------abcdefghijklmnopqrstuvwxyz
+
+ + diff --git a/html/robots.txt b/html/robots.txt new file mode 100644 index 0000000..7d329b1 --- /dev/null +++ b/html/robots.txt @@ -0,0 +1 @@ +User-agent: * diff --git a/html/sgi/images/cadrumemw.gif b/html/sgi/images/cadrumemw.gif new file mode 100644 index 0000000..486f735 Binary files /dev/null and b/html/sgi/images/cadrumemw.gif differ diff --git a/html/sgi/images/grad_left0.gif b/html/sgi/images/grad_left0.gif new file mode 100644 index 0000000..a286c96 Binary files /dev/null and b/html/sgi/images/grad_left0.gif differ diff --git a/html/sgi/images/grad_left1.gif b/html/sgi/images/grad_left1.gif new file mode 100644 index 0000000..8cce36b Binary files /dev/null and b/html/sgi/images/grad_left1.gif differ diff --git a/html/sgi/images/sg320_b.gif b/html/sgi/images/sg320_b.gif new file mode 100644 index 0000000..0e0a0af Binary files /dev/null and b/html/sgi/images/sg320_b.gif differ diff --git a/html/sgi/images/sg320_big.gif b/html/sgi/images/sg320_big.gif new file mode 100644 index 0000000..35667a1 Binary files /dev/null and b/html/sgi/images/sg320_big.gif differ diff --git a/html/sgi/images/sg320_h.gif b/html/sgi/images/sg320_h.gif new file mode 100644 index 0000000..c2f95d5 Binary files /dev/null and b/html/sgi/images/sg320_h.gif differ diff --git a/html/sgi/images/sg320_t.gif b/html/sgi/images/sg320_t.gif new file mode 100644 index 0000000..ed596e7 Binary files /dev/null and b/html/sgi/images/sg320_t.gif differ diff --git a/html/sgi/images/spacer.gif b/html/sgi/images/spacer.gif new file mode 100644 index 0000000..c8e27fd Binary files /dev/null and b/html/sgi/images/spacer.gif differ diff --git a/html/sgi/index.htm b/html/sgi/index.htm new file mode 100644 index 0000000..88ca8b4 --- /dev/null +++ b/html/sgi/index.htm @@ -0,0 +1,364 @@ + + + + + +SGI -- Silicon Graphics 320/540: Prices + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
  Silicon Graphics 320

Silicon Graphics 320TM + Silicon Graphics 540TM, + Visual + Workstation SGI, + , + + . + Visual Workstation + + , , + + . + + , SGI + 3D-.

+

+ Visual Workstation, + . + + Intel + + Microsoft Windows NT. + + SGI.
+  

Silicon Graphics 320 Visual Workstation for Windows NT

Silicon Graphics 320TM + , :

    +
  • Intel Pentium III, 512, + + ;
  • +
  • 128 + ( 1);
  • +
  • + COBALT GRAPHICS + UMA ( + 1.6), 24- Z-, + , + OpenGL 1.1, DirectX, GDI + , + 19201200/32bpc ;
  • +
  • 6.2 Ultra ATA (5400rpm);
  • +
  • CD-ROM 32-;
  • +
  • ;
  • +
  • S-video / (NTCS PAL) + + ;
  • +
  • IEEE-1394 + + ;
  • +
  • 1xECP/1xSerial/2xUSB;
  • +
  • 10/100Base-T Fast Ethernet;
  • +
  • Ultra ATA + (Ultra-SCSI2 );
  • +
  • dAudio + ( + );
  • +
  • USB;
  • +
  • "";
  • +
  • Microsoft Windows NT Workstation 4.0;
  • +
  • 3 ( + ).
  • +

Silicon Graphics 540TM + , + :

    +
  • Intel Pentium III Xeon, 512, + + + 8 (42);
  • +
  • 128 + ( 2);
  • +
  • + COBALT GRAPHICS + UMA ( + 1.6), 24- Z-, + + OpenGL 1.1, DirectX, GDI + , 19201200/32bpc ;
  • +
  • 9.1 Ultra-SCSI2 (7200rpm);
  • +
  • CD-ROM 32-;
  • +
  • ;
  • +
  • S-video / (NTCS PAL) + + ;
  • +
  • IEEE-1394 + + ;
  • +
  • 1xECP/1xSerial/2xUSB;
  • +
  • 10/100Base-T Fast Ethernet;
  • +
  • Ultra ATA  + Ultra-SCSI2;
  • +
  • dVideo dAudio + + ( + );
  • +
  • USB;
  • +
  • "";
  • +
  • Microsoft Windows NT Workstation 4.0;
  • +
  • 3 ( + ).
  • +
+

+ visio.sgi.com
+  
+  

Silicon Graphics 320 Visual Workstation for Windows NT (  )
1.  Silicon + Graphics 320
+ 1xPentium III 450MHz, 512Kb L2 cache, + SDRAM 128Mb ECC, + HDD 6.4Gb (UltraATA, 5400 rpm)
+  
$ 4 611
2.  Silicon + Graphics 320
+
1xPentium III 500MHz, + 512Kb L2 cache, SDRAM 128Mb ECC, + HDD 6.4Gb (UltraATA, 5400 rpm)
+  
$ 5 081
3.  Silicon + Graphics 320
+
1xPentium III 550MHz, + 512Kb L2 cache, SDRAM 128Mb ECC, + HDD 6.4Gb (UltraATA, 5400 rpm)
+  
$ 5 515
4.  Silicon + Graphics 320
+ 1xPentium III 450MHz, + 512Kb L2 cache, SDRAM 256Mb ECC, + HDD 10.1Gb (UltraATA, 7200 rpm)
+  
$ 5 207
5.  Silicon + Graphics 320
+ 1xPentium III 500MHz, + 512Kb L2 cache, SDRAM 256Mb ECC, + HDD 10.1Gb (UltraATA, 7200 rpm)
+  
$ 5 677
6.  Silicon + Graphics 320
+ 1xPentium III 550MHz, + 512Kb L2 cache, SDRAM 256Mb ECC, + HDD 10.1Gb (UltraATA, 7200 rpm)
+  
$ 6 111
7.  Silicon + Graphics 320
+ 2xPentium III 450MHz, 2x512Kb L2 cache, SDRAM 256Mb ECC, + HDD 14.4Gb (UltraATA, 7200 rpm), + ZIP 100Mb
+  
$ 6 227
8.  Silicon + Graphics 320
+ 2xPentium III 500MHz, 2x512Kb L2 cache, SDRAM 256Mb ECC, + HDD 14.4Gb (UltraATA, 7200 rpm), + ZIP 100Mb
+  
$ 7 166
9.  Silicon + Graphics 320
+ 2xPentium III 550MHz, 2x512Kb L2 cache, SDRAM 256Mb ECC, + HDD 14.4Gb (UltraATA, 7200 rpm), + ZIP 100Mb
+  
$ 8 035
10.  Silicon + Graphics 540
+ 1xPentium III Xeon 550MHz, + 512Kb L2 cache, SDRAM 128Mb ECC, + HDD 9.1Gb (Ultra-SCSI2, 7200 rpm)
+  
$ 8 609
11.  Silicon + Graphics 540
+ 2xPentium III Xeon 550MHz, 2x512Kb L2 cache, SDRAM 256Mb ECC, + HDD 18.2Gb (Ultra-SCSI2, 10000 rpm), + ZIP 100Mb
+  
$ 12 011
12.  Silicon + Graphics 540
+ 4xPentium III Xeon 550MHz, 4x512Kb L2 cache, SDRAM 512Mb ECC, + HDD 18.2Gb (Ultra-SCSI2, 10000 rpm), + ZIP 100Mb
+  
$ 17 301
13. Silicon Graphics 17", +  c , 17"
+  
$ 510
14. Silicon Graphics 21", +  c , 21"
+  
$ 1 490
15. Silicon Graphics 1600, +    17.3", +  16001024, 169, + 110lpi, OpenLDI, + + .
+  
$ 3 250
+
+ +
+ + + + + + + +

 "  ". .

+ SGI + + Intel -- + ; (095)923-6341, 923-6547, 923-7237; ric@cad.ru


+
+ +
+ + + + + +
+ + + + +
+
+ + + +
Design by:
+
~~V<
+ (c) 1999, Sergei Erjemin
+ drakon@chat.ru
+
+
+ + diff --git a/html/sh.htm b/html/sh.htm new file mode 100644 index 0000000..fc896a8 --- /dev/null +++ b/html/sh.htm @@ -0,0 +1,14 @@ + + + + + + + -- () + + + + +

   -

+ + diff --git a/html/sponsor.htm b/html/sponsor.htm new file mode 100644 index 0000000..21df706 --- /dev/null +++ b/html/sponsor.htm @@ -0,0 +1,132 @@ + + + + + + : + + + + + + + + + + +

- , + + " ", + + + .   , + .
+  

+

+

  + , + , + + / + .   , + ( ) + www.cad.ru + " ".

+
+ + + + +
<a href="http://www.cad.ru/index.htm"><img
+ src="cadru.gif" width="96" height="53"   
+ alt="  "></a>                    
+
cadrumemw.gif (1350 bytes)
+  
+

+

+

" + " + , + -, , + .   + + webmaster@cad.ru.
+  

+

+

-- + , + , + .   + " + " :

    +
  • + , + CGI- ;
  • +
  • SQL ;
  • +
  • ;
  • +
  • .
  • +
+

+ - , + .

+ +
+ + + + + +
[] + [] + [] + []
+ [] + [] + []
+ +
+ + + + + +
+ +
.
+
+ + + + + +
+ + + diff --git a/html/yandex_4387353ecb38e191.html b/html/yandex_4387353ecb38e191.html new file mode 100644 index 0000000..fd1abba --- /dev/null +++ b/html/yandex_4387353ecb38e191.html @@ -0,0 +1,6 @@ + + + + + Verification: 4387353ecb38e191 + \ No newline at end of file diff --git a/logs/cadpoint-ru_1998-access.log b/logs/cadpoint-ru_1998-access.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/cadpoint-ru_1998-access.log.1 b/logs/cadpoint-ru_1998-access.log.1 new file mode 100644 index 0000000..7019b16 --- /dev/null +++ b/logs/cadpoint-ru_1998-access.log.1 @@ -0,0 +1,676 @@ +185.191.171.18 - - [19/Mar/2026:07:31:49 +0300] "GET /?URL=https%3A%2F%2Fbestessayseducationusa.com%2Fpaper%2F327-write-my-college-paper-top-ranked.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.173.179.205 - - [19/Mar/2026:07:34:17 +0300] "GET /1998.cad.ru/_co/ry.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" +45.82.78.109 - - [19/Mar/2026:07:36:22 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) obsidian/1.5.8 Chrome/120.0.6099.283 Electron/28.2.3 Safari/537.36" +45.82.78.109 - - [19/Mar/2026:07:36:22 +0300] "GET /index1.htm HTTP/1.1" 200 2569 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 Edg/139.0.0.0" +165.22.213.172 - - [19/Mar/2026:07:43:45 +0300] "GET / HTTP/1.1" 200 1911 "-" "Go-http-client/1.1" +74.7.244.10 - - [19/Mar/2026:07:45:22 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +100.30.5.6 - - [19/Mar/2026:08:30:16 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Gort)" +85.208.96.200 - - [19/Mar/2026:08:36:34 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.212 - - [19/Mar/2026:08:36:34 +0300] "GET /?URL=https%3A%2F%2Ftopessaywritinglist.com%2Fpaper%2F086-buy-cheap-papers-online.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +89.41.181.51 - - [19/Mar/2026:08:58:55 +0300] "GET / HTTP/1.1" 200 1911 "https://cube2.ru/" "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36" +89.41.181.51 - - [19/Mar/2026:08:58:59 +0300] "GET /index1.htm HTTP/1.1" 200 2569 "http://1998.cadpoint.ru/" "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36" +43.173.177.146 - - [19/Mar/2026:09:26:52 +0300] "GET /_pb/99_01a.htm HTTP/1.1" 200 6561 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.3" +43.173.176.31 - - [19/Mar/2026:09:27:50 +0300] "GET /_co/ln.htm HTTP/1.1" 200 2742 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.5249.119 Safari/537.36" +85.208.96.197 - - [19/Mar/2026:09:30:35 +0300] "GET /?URL=http%3A%2F%2Fdiscountedessays.com%2Fessay%2F531-help-to-write-a-narrative.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +167.99.151.99 - - [19/Mar/2026:09:32:10 +0300] "GET /_pb/images/99_01a4.gif HTTP/1.1" 200 18713 "http://1998.cadpoint.ru/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36" +137.184.73.80 - - [19/Mar/2026:09:32:10 +0300] "GET /_pb/images/99_01a1.gif HTTP/1.1" 200 27263 "http://1998.cadpoint.ru/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36" +159.89.233.32 - - [19/Mar/2026:09:32:10 +0300] "GET /_pb/images/99_01a2.gif HTTP/1.1" 200 25916 "http://1998.cadpoint.ru/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36" +114.119.130.61 - - [19/Mar/2026:09:33:47 +0300] "GET /_pr/lh.htm HTTP/1.1" 200 2846 "http://1998.cadpoint.ru/_pr/lt.htm" "Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)" +114.119.152.77 - - [19/Mar/2026:09:35:21 +0300] "GET /?URL=qiper.ru/%D0%A1%D0%BE%D0%B7%D0%B4%D0%B0%D0%BD%D0%B8%D0%B5%20%D0%BF%D1%80%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D0%BC%20%D0%B4%D0%BB%D1%8F%20%D1%8D%D0%B2%D0%BC%20%D0%BF%D0%BE%20%D0%B7%D0%B0%D0%BA%D0%B0%D0%B7%D1%83/ HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)" +85.208.96.207 - - [19/Mar/2026:09:38:50 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.19 - - [19/Mar/2026:09:38:52 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.196 - - [19/Mar/2026:09:38:52 +0300] "GET /?URL=http%3A%2F%2Fdiscountedessays.com%2Fessay%2F531-help-to-write-a-narrative.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +197.254.15.186 - - [19/Mar/2026:09:45:06 +0300] "GET / HTTP/1.1" 200 1911 "-" "Go-http-client/1.1" +124.156.225.181 - - [19/Mar/2026:09:45:58 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +91.184.244.208 - - [19/Mar/2026:09:49:24 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Linux; Android 6.0.1; OPPO A57 Build/MMB29M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/63.0.3239.83 Mobile Safari/537.36 T7/10.13 baiduboxapp/10.13.0.10 (Baidu; P1 6.0.1)" +17.22.237.237 - - [19/Mar/2026:10:38:02 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)" +17.22.237.237 - - [19/Mar/2026:10:38:03 +0300] "GET /_ex/99_01_18a.htm HTTP/1.1" 200 5541 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)" +130.131.162.132 - - [19/Mar/2026:10:55:00 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 zgrab/0.x" +185.191.171.18 - - [19/Mar/2026:11:09:22 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.199 - - [19/Mar/2026:11:09:23 +0300] "GET /_pr/lo.htm HTTP/1.1" 200 2848 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +177.221.14.198 - - [19/Mar/2026:11:10:09 +0300] "GET http://1998.cadpoint.ru/_pr/ld.htm HTTP/1.1" 200 3067 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/81.0.4044.113 Safari/537.36" +14.191.53.62 - - [19/Mar/2026:11:10:16 +0300] "GET http://1998.cadpoint.ru/_co/ro.htm HTTP/1.1" 200 2738 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.192 Safari/537.36" +45.177.88.18 - - [19/Mar/2026:11:12:29 +0300] "GET http://1998.cadpoint.ru/_pb/97_03a.htm HTTP/1.1" 200 8218 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36" +45.174.47.250 - - [19/Mar/2026:11:13:18 +0300] "GET http://1998.cadpoint.ru/_ex/99_07_07a.htm HTTP/1.1" 200 4413 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36" +14.190.111.67 - - [19/Mar/2026:11:13:21 +0300] "GET http://1998.cadpoint.ru/_pr/lz.htm HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36" +190.5.44.177 - - [19/Mar/2026:11:13:46 +0300] "GET http://1998.cadpoint.ru/_co/rm.htm HTTP/1.1" 200 3137 "-" "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.16 Safari/537.36" +185.191.171.11 - - [19/Mar/2026:11:27:30 +0300] "GET /?URL=https%3A%2F%2Fouressays.com%2Fcourse-work%2F11-course-work-help-uk-affordable.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.209 - - [19/Mar/2026:11:59:09 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.16 - - [19/Mar/2026:11:59:10 +0300] "GET /?URL=https%3A%2F%2Ffreeessayfinder.com%2Fwriting%2F358-creative-writing-services-greatest-writing.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.203 - - [19/Mar/2026:12:11:12 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.6 - - [19/Mar/2026:12:11:12 +0300] "GET /?URL=https%3A%2F%2Ftopessayservicescloud.com%2Fdissertation%2F637-dissertation-topics-of-training-best.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +74.7.241.184 - - [19/Mar/2026:12:20:06 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +85.208.96.202 - - [19/Mar/2026:13:26:40 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.3 - - [19/Mar/2026:13:26:40 +0300] "GET /?URL=https%3A%2F%2Ftopessaywritinglist.com%2Fdissertation%2F754-nursing-dissertation-top-ranked-essay-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.2 - - [19/Mar/2026:13:32:24 +0300] "GET /_pb/97_03a.htm HTTP/1.1" 200 8218 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.173.177.205 - - [19/Mar/2026:13:38:17 +0300] "GET /1998.cad.ru/_pr/lh.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" +66.249.72.193 - - [19/Mar/2026:13:45:10 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" +85.208.96.197 - - [19/Mar/2026:13:45:59 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.206 - - [19/Mar/2026:13:46:00 +0300] "GET /?URL=https%3A%2F%2Ftopessaywritinglist.com%2Fdissertation%2F754-nursing-dissertation-top-ranked-essay-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +109.105.210.104 - - [19/Mar/2026:14:16:56 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSight/1.0" +45.172.142.89 - - [19/Mar/2026:14:22:48 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.43" +43.166.237.57 - - [19/Mar/2026:14:34:55 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +85.208.96.201 - - [19/Mar/2026:14:43:48 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.195 - - [19/Mar/2026:14:43:48 +0300] "GET /_co/lb.htm HTTP/1.1" 200 2742 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +74.7.227.150 - - [19/Mar/2026:14:50:14 +0300] "GET / HTTP/1.1" 200 1911 "https://1998.cadpoint.ru" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" +74.7.175.158 - - [19/Mar/2026:14:50:14 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +74.7.175.158 - - [19/Mar/2026:14:50:14 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +85.208.96.196 - - [19/Mar/2026:15:03:08 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.4 - - [19/Mar/2026:15:03:09 +0300] "GET /?URL=https%3A%2F%2Ftopessayservicescloud.com%2Fessay%2F29-college-essay-writer-block-top.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +45.131.155.103 - - [19/Mar/2026:15:03:44 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36" +45.82.78.111 - - [19/Mar/2026:15:29:47 +0300] "GET /index1.htm HTTP/1.1" 200 2569 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36" +43.173.177.150 - - [19/Mar/2026:15:41:56 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" +185.191.171.18 - - [19/Mar/2026:15:48:07 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.193 - - [19/Mar/2026:15:48:07 +0300] "GET /_co/lt.htm HTTP/1.1" 200 2742 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.204 - - [19/Mar/2026:16:06:10 +0300] "GET /_ex/99_07_21b.htm HTTP/1.1" 200 4501 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.201 - - [19/Mar/2026:16:20:01 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.204 - - [19/Mar/2026:16:20:02 +0300] "GET /?URL=https%3A%2F%2Ftopessaywritingbase.com%2Fpaper%2F560-buy-custom-securities-online-best.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +45.131.155.111 - - [19/Mar/2026:16:20:11 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "https://90.156.203.25/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" +17.241.227.235 - - [19/Mar/2026:16:39:45 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)" +17.241.227.235 - - [19/Mar/2026:16:39:46 +0300] "GET /_ex/99_07_10a.htm HTTP/1.1" 200 4762 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)" +65.99.252.213 - - [19/Mar/2026:16:50:28 +0300] "GET / HTTP/1.1" 200 1911 "-" "Go-http-client/1.1" +17.22.245.116 - - [19/Mar/2026:17:43:14 +0300] "GET /_ex/98_10_14a.htm HTTP/1.1" 200 4256 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)" +34.75.243.112 - - [19/Mar/2026:17:48:37 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +34.75.243.112 - - [19/Mar/2026:17:48:38 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +34.75.243.112 - - [19/Mar/2026:17:48:39 +0300] "GET /wp-includes/wlwmanifest.xml HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +34.75.243.112 - - [19/Mar/2026:17:48:39 +0300] "GET /xmlrpc.php?rsd HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +34.75.243.112 - - [19/Mar/2026:17:48:40 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +34.75.243.112 - - [19/Mar/2026:17:48:40 +0300] "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +34.75.243.112 - - [19/Mar/2026:17:48:41 +0300] "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +34.75.243.112 - - [19/Mar/2026:17:48:41 +0300] "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +34.75.243.112 - - [19/Mar/2026:17:48:42 +0300] "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +96.41.38.202 - - [19/Mar/2026:18:12:18 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:139.0) Gecko/20100101 Firefox/139.0" +96.41.38.202 - - [19/Mar/2026:18:12:18 +0300] "GET /@vite/env HTTP/1.1" 404 153 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:139.0) Gecko/20100101 Firefox/139.0" +96.41.38.202 - - [19/Mar/2026:18:12:19 +0300] "GET /.vscode/sftp.json HTTP/1.1" 404 153 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:139.0) Gecko/20100101 Firefox/139.0" +96.41.38.202 - - [19/Mar/2026:18:12:19 +0300] "GET /.env HTTP/1.1" 404 153 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:139.0) Gecko/20100101 Firefox/139.0" +96.41.38.202 - - [19/Mar/2026:18:12:19 +0300] "GET /.git/config HTTP/1.1" 404 153 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:139.0) Gecko/20100101 Firefox/139.0" +46.17.46.249 - - [19/Mar/2026:18:13:44 +0300] "GET / HTTP/1.1" 206 7232 "-" "Mozilla/5.0 JivoChecker/curl" +91.184.244.208 - - [19/Mar/2026:18:51:38 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0(compatible;MSIE10.0;WindowsNT6.1;WOW64;Trident/6.0;SLCC2;.NETCLR2.0.50727;.NETCLR3.5.30729;.NETCLR3.0.30729;MS-RTCEA2;.NET4.0C;.NET4.0E)" +91.184.244.208 - - [19/Mar/2026:18:52:14 +0300] "GET //images/nscape.gif HTTP/1.1" 200 1485 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/39.0.2171.50 Mobile/12A365 Safari/600.1.4" +91.184.244.208 - - [19/Mar/2026:18:52:14 +0300] "GET /images/bnr_rmbl.gif HTTP/1.1" 200 950 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/39.0.2171.50 Mobile/12A365 Safari/600.1.4" +91.184.244.208 - - [19/Mar/2026:18:52:20 +0300] "GET /images/dot.gif HTTP/1.1" 200 183 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/39.0.2171.50 Mobile/12A365 Safari/600.1.4" +91.184.244.208 - - [19/Mar/2026:18:52:32 +0300] "GET /images/dragsmw.gif HTTP/1.1" 200 1694 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/39.0.2171.50 Mobile/12A365 Safari/600.1.4" +91.184.244.208 - - [19/Mar/2026:18:52:36 +0300] "GET /images/logobig.gif HTTP/1.1" 200 7061 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) CriOS/39.0.2171.50 Mobile/12A365 Safari/600.1.4" +43.157.20.63 - - [19/Mar/2026:19:13:21 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +35.216.254.237 - - [19/Mar/2026:19:24:43 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0" +85.208.96.210 - - [19/Mar/2026:19:50:12 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.210 - - [19/Mar/2026:19:50:12 +0300] "GET /?URL=https%3A%2F%2Ftopessaywritinglist.com%2Fessay%2F547-analysis-essay-help.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +66.249.72.193 - - [19/Mar/2026:20:58:26 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" +85.208.96.207 - - [19/Mar/2026:22:25:16 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.11 - - [19/Mar/2026:22:25:17 +0300] "GET /sgi/index.htm HTTP/1.1" 200 3905 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.159.152.4 - - [19/Mar/2026:22:29:45 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +3.212.128.164 - - [19/Mar/2026:22:44:28 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Gort)" +17.241.75.217 - - [19/Mar/2026:23:04:01 +0300] "GET /_pr/ro.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)" +185.191.171.5 - - [19/Mar/2026:23:06:37 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.18 - - [19/Mar/2026:23:06:38 +0300] "GET /?URL=https%3A%2F%2Ftopessayservicescloud.com%2Fwriting%2F57-help-in-english-writing-excellent.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +109.105.210.67 - - [19/Mar/2026:23:19:42 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +109.105.210.67 - - [19/Mar/2026:23:20:10 +0300] "POST /mcp HTTP/1.1" 404 153 "-" "python-httpx/0.28.1" +109.105.210.67 - - [19/Mar/2026:23:20:10 +0300] "GET /sse HTTP/1.1" 404 153 "-" "python-httpx/0.28.1" +109.105.210.69 - - [19/Mar/2026:23:20:12 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +43.173.175.58 - - [19/Mar/2026:23:21:01 +0300] "GET /1998.cad.ru/_pr/rl.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36" +85.208.96.195 - - [19/Mar/2026:23:29:41 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.198 - - [19/Mar/2026:23:29:41 +0300] "GET /_co/rw.htm HTTP/1.1" 200 2738 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +138.249.163.64 - - [19/Mar/2026:23:42:23 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" +43.173.180.3 - - [20/Mar/2026:00:15:30 +0300] "GET /_pr/rs.htm HTTP/1.1" 200 3015 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" +85.208.96.198 - - [20/Mar/2026:00:33:57 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.206 - - [20/Mar/2026:00:33:57 +0300] "GET /_pr/ln.htm HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.9 - - [20/Mar/2026:00:54:32 +0300] "GET /?URL=https%3A%2F%2Ftopessayservicescloud.com%2Fessay%2F29-college-essay-writer-block-top.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.153.15.51 - - [20/Mar/2026:01:01:23 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +43.173.179.31 - - [20/Mar/2026:01:27:09 +0300] "GET /1998.cad.ru/sponsor.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" +45.156.131.24 - - [20/Mar/2026:01:38:34 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +114.119.135.171 - - [20/Mar/2026:01:43:42 +0300] "GET /robots.txt HTTP/1.1" 200 14 "https://cube2.ru/robots.txt" "Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)" +45.131.155.111 - - [20/Mar/2026:01:50:06 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "http://1998.cadpoint.ru/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36" +45.156.129.189 - - [20/Mar/2026:01:55:42 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +17.246.19.97 - - [20/Mar/2026:01:56:26 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)" +17.246.19.97 - - [20/Mar/2026:01:56:26 +0300] "GET /_pr/lu.htm HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)" +17.22.237.163 - - [20/Mar/2026:02:40:11 +0300] "GET /_pb/96_12a.htm HTTP/1.1" 200 6413 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)" +85.208.96.209 - - [20/Mar/2026:03:08:22 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.15 - - [20/Mar/2026:03:08:22 +0300] "GET /?URL=https%3A%2F%2Ftopessaywritingbase.com%2Fpaper%2F560-buy-custom-securities-online-best.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.14 - - [20/Mar/2026:04:03:10 +0300] "GET /?URL=https%3A%2F%2Ftopessayservicescloud.com%2Fwriting%2F57-help-in-english-writing-excellent.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +114.119.140.178 - - [20/Mar/2026:04:04:41 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)" +185.191.171.2 - - [20/Mar/2026:04:05:13 +0300] "GET /_pr/ls.htm HTTP/1.1" 200 5038 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +114.119.131.180 - - [20/Mar/2026:04:52:38 +0300] "GET /_pr/rn.htm HTTP/1.1" 200 2845 "http://1998.cadpoint.ru/_pr/lh.htm" "Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)" +185.191.171.7 - - [20/Mar/2026:05:16:50 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.9 - - [20/Mar/2026:05:16:51 +0300] "GET /_pr/rq.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.153.26.165 - - [20/Mar/2026:05:34:41 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +204.76.203.50 - - [20/Mar/2026:06:23:57 +0300] "GET /cgi-bin/luci/;stok=/locale HTTP/1.1" 404 153 "-" "-" +91.184.244.208 - - [20/Mar/2026:06:49:50 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0(compatible;MSIE9.0;WindowsNT6.1;WOW64;Trident/5.0;SLCC2;.NETCLR2.0.50727;.NETCLR3.5.30729;.NETCLR3.0.30729;.NETCLR1.1.4322;.NET4.0C;.NET4.0E;InfoPath.3;MS-RTCLM8)" +85.208.96.199 - - [20/Mar/2026:07:06:54 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.9 - - [20/Mar/2026:07:06:54 +0300] "GET /_pr/ly.htm HTTP/1.1" 200 2850 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +32.193.53.179 - - [20/Mar/2026:07:36:09 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Gort)" +85.208.96.207 - - [20/Mar/2026:08:04:50 +0300] "GET /?URL=https%3A%2F%2Ffreeessayfinder.com%2Fwriting%2F358-creative-writing-services-greatest-writing.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +52.202.237.12 - - [20/Mar/2026:08:45:52 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36" +34.66.218.37 - - [20/Mar/2026:08:54:54 +0300] "GET / HTTP/1.1" 200 1911 "-" "Go-http-client/1.1" +185.191.171.13 - - [20/Mar/2026:09:01:32 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.193 - - [20/Mar/2026:09:01:34 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.19 - - [20/Mar/2026:09:01:34 +0300] "GET /?URL=https%3A%2F%2Fdefinitionessays.com%2Fessay%2F07-best-online-essay-machining-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.173.182.25 - - [20/Mar/2026:09:15:57 +0300] "GET /_pr/ll.htm HTTP/1.1" 200 5454 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36" +162.216.150.232 - - [20/Mar/2026:09:54:45 +0300] "GET / HTTP/1.1" 200 1911 "-" "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" +45.149.173.233 - - [20/Mar/2026:10:29:56 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +45.149.173.233 - - [20/Mar/2026:10:29:57 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +45.149.173.233 - - [20/Mar/2026:10:29:58 +0300] "GET /wp-includes/wlwmanifest.xml HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +45.149.173.233 - - [20/Mar/2026:10:29:59 +0300] "GET /xmlrpc.php?rsd HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +45.149.173.233 - - [20/Mar/2026:10:29:59 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +45.149.173.233 - - [20/Mar/2026:10:30:00 +0300] "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +45.149.173.233 - - [20/Mar/2026:10:30:01 +0300] "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +45.149.173.233 - - [20/Mar/2026:10:30:01 +0300] "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +45.149.173.233 - - [20/Mar/2026:10:30:02 +0300] "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" +85.208.96.193 - - [20/Mar/2026:10:52:45 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.206 - - [20/Mar/2026:10:52:46 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.16 - - [20/Mar/2026:10:52:46 +0300] "GET /?URL=https%3A%2F%2Fessaypromaster.com%2Fessay%2F40-order-custom-essays-affordable-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +103.7.121.165 - - [20/Mar/2026:11:11:51 +0300] "GET http://1998.cadpoint.ru/_pb/97_03a.htm HTTP/1.1" 200 8218 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.58 Safari/537.36" +123.28.180.112 - - [20/Mar/2026:11:12:58 +0300] "GET http://1998.cadpoint.ru/_co/ro.htm HTTP/1.1" 200 2738 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36" +197.248.109.89 - - [20/Mar/2026:11:13:28 +0300] "GET http://1998.cadpoint.ru/_co/rm.htm HTTP/1.1" 200 3137 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/86.0.4240.183 Safari/537.36" +191.11.80.84 - - [20/Mar/2026:11:13:30 +0300] "GET http://1998.cadpoint.ru/_pr/la1.htm HTTP/1.1" 200 5969 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/81.0.4044.122 Safari/537.36" +113.182.221.41 - - [20/Mar/2026:11:13:55 +0300] "GET http://1998.cadpoint.ru/_pr/lz.htm HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36" +41.233.21.41 - - [20/Mar/2026:11:14:35 +0300] "GET http://1998.cadpoint.ru/_ex/99_07_07a.htm HTTP/1.1" 200 4413 "-" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36" +213.6.214.123 - - [20/Mar/2026:11:14:55 +0300] "GET http://1998.cadpoint.ru/_pr/ld.htm HTTP/1.1" 200 3067 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3409.631 Safari/537.36" +43.153.74.75 - - [20/Mar/2026:11:14:59 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +207.46.13.229 - - [20/Mar/2026:11:24:46 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36" +52.167.144.202 - - [20/Mar/2026:11:24:55 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36" +17.246.19.49 - - [20/Mar/2026:11:43:11 +0300] "GET /_ex/99_03_20a.htm HTTP/1.1" 200 2900 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)" +185.191.171.19 - - [20/Mar/2026:11:53:11 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.201 - - [20/Mar/2026:11:53:13 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.208 - - [20/Mar/2026:11:53:13 +0300] "GET /?URL=https%3A%2F%2Ffreeessayfinder.com%2Fessay%2F41-essay-on-social-service-top.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.210 - - [20/Mar/2026:12:13:40 +0300] "GET /?URL=https%3A%2F%2Fdefinitionessays.com%2Fessay%2F07-best-online-essay-machining-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +18.211.58.193 - - [20/Mar/2026:12:35:56 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0" +43.173.182.235 - - [20/Mar/2026:12:53:16 +0300] "GET /pb.htm HTTP/1.1" 200 458 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36" +43.173.175.117 - - [20/Mar/2026:13:54:30 +0300] "GET /1998.cad.ru/_pr/lx.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36" +3.151.194.164 - - [20/Mar/2026:14:29:18 +0300] "GET / HTTP/1.1" 200 1911 "-" "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" +47.87.140.88 - - [20/Mar/2026:14:30:10 +0300] "GET /T6bHkeeG3IixY7Bh0noD1QyFLiPlD23T05_fYYWAB0SqWLgWGk-3zAazG2k0MqhO6AxISCCvosgJ0eBTxGrQHktud-cN20EuWN5bCgJQ7zQLOPyK5jhNF7Y2p-_JSxpBpQvWHxM5plh6NA2yELiAvVST24ah1aKWBxJ3EDpy2DOgE3DO9xUsIIP6R9Vy49sZRKRZKYyU6s9Z3QCfH7jzY3ZFQsI-dvC37Aw HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" +3.151.194.164 - - [20/Mar/2026:14:31:25 +0300] "GET / HTTP/1.1" 200 1911 "-" "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" +185.191.171.15 - - [20/Mar/2026:14:36:54 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.16 - - [20/Mar/2026:14:36:55 +0300] "GET /?URL=tubesweet.xyz HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +216.180.246.129 - - [20/Mar/2026:14:46:46 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; GenomeCrawlerd/1.0; +https://www.nokia.com/genomecrawler)" +85.208.96.196 - - [20/Mar/2026:14:54:19 +0300] "GET /?URL=https%3A%2F%2Ffreeessayfinder.com%2Fessay%2F41-essay-on-social-service-top.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.142.100.82 - - [20/Mar/2026:15:05:37 +0300] "GET /extensions/ HTTP/1.1" 404 153 "-" "\x22Mozilla/5.0 (compatible; CyberOKInspect/1.0; +https://www.cyberok.ru/policy.html)\x22" +85.208.96.195 - - [20/Mar/2026:15:07:56 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.3 - - [20/Mar/2026:15:07:58 +0300] "GET /?URL=https%3A%2F%2Fbestessayscloud.com%2Fediting%2F28-proofreading-on-essays-top-rated.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +192.109.200.205 - - [20/Mar/2026:15:29:42 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0" +192.109.200.205 - - [20/Mar/2026:15:29:42 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0" +74.7.175.158 - - [20/Mar/2026:15:56:39 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +43.130.32.245 - - [20/Mar/2026:16:08:23 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +43.173.175.201 - - [20/Mar/2026:16:08:30 +0300] "GET /1998.cad.ru/_pr/ry.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36" +185.191.171.6 - - [20/Mar/2026:16:22:30 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.8 - - [20/Mar/2026:16:22:31 +0300] "GET /_ex/99_08_17a.htm HTTP/1.1" 200 3140 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.173.179.86 - - [20/Mar/2026:16:50:37 +0300] "GET /1998.cad.ru/_ex/99_07_01a.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36" +114.119.146.36 - - [20/Mar/2026:17:01:31 +0300] "GET /robots.txt HTTP/1.1" 200 14 "https://cube2.ru/robots.txt" "Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)" +85.208.96.195 - - [20/Mar/2026:17:44:00 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.9 - - [20/Mar/2026:17:44:00 +0300] "GET /?URL=https%3A%2F%2Fbestessayscloud.com%2Fediting%2F28-proofreading-on-essays-top-rated.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.209 - - [20/Mar/2026:18:01:41 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.199 - - [20/Mar/2026:18:01:42 +0300] "GET /?URL=https%3A%2F%2Fservice-essay.com%2Fwriting%2F442-blog-write-services-packages-top.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.208 - - [20/Mar/2026:18:29:12 +0300] "GET /?URL=https%3A%2F%2Fscoringessays.com%2Fessay%2F765-help-me-to-write-a-narrative.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +147.185.132.93 - - [20/Mar/2026:18:32:11 +0300] "GET / HTTP/1.1" 200 1911 "-" "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" +185.191.171.14 - - [20/Mar/2026:19:18:16 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.208 - - [20/Mar/2026:19:18:17 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.197 - - [20/Mar/2026:19:18:17 +0300] "GET /?URL=tubesweet.xyz HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.117.225.25 - - [20/Mar/2026:19:45:10 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "python-requests/2.31.0" +185.117.225.25 - - [20/Mar/2026:19:45:11 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:12 +0300] "GET /images/dot.gif HTTP/1.1" 200 183 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:12 +0300] "GET /images/bnr_rmbl.gif HTTP/1.1" 200 950 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:12 +0300] "GET /images/ieanim.gif HTTP/1.1" 200 8609 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:12 +0300] "GET /images/logobig.gif HTTP/1.1" 200 7061 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:12 +0300] "GET /images/bnr_rebs.gif HTTP/1.1" 200 20069 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:12 +0300] "GET /images/nscape.gif HTTP/1.1" 200 1485 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:12 +0300] "GET /images/dragsmw.gif HTTP/1.1" 200 1694 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:15 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "python-requests/2.31.0" +185.117.225.25 - - [20/Mar/2026:19:45:16 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:17 +0300] "GET /images/bnr_a2k.gif HTTP/1.1" 200 13715 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:17 +0300] "GET /images/logobig.gif HTTP/1.1" 200 7061 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:17 +0300] "GET /images/dot.gif HTTP/1.1" 200 183 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:17 +0300] "GET /images/nscape.gif HTTP/1.1" 200 1485 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:17 +0300] "GET /images/ieanim.gif HTTP/1.1" 200 8609 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:17 +0300] "GET /images/bnr_rmbl.gif HTTP/1.1" 200 950 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.117.225.25 - - [20/Mar/2026:19:45:17 +0300] "GET /images/dragsmw.gif HTTP/1.1" 200 1694 "http://1998.cadpoint.ru/" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.191.171.14 - - [20/Mar/2026:19:50:52 +0300] "GET /?URL=https%3A%2F%2Ftopessayservicescloud.com%2Fthesis%2F915-research-paper-work-affordable-writing.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +20.168.120.8 - - [20/Mar/2026:20:06:24 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 zgrab/0.x" +220.181.108.146 - - [20/Mar/2026:20:50:02 +0300] "GET /_nw/index.htm HTTP/1.1" 404 153 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" +74.7.227.150 - - [20/Mar/2026:21:02:08 +0300] "GET / HTTP/1.1" 200 1911 "https://www.1998.cadpoint.ru" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" +74.7.175.158 - - [20/Mar/2026:21:02:09 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +74.7.241.184 - - [20/Mar/2026:21:02:09 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +220.181.108.177 - - [20/Mar/2026:21:03:47 +0300] "GET /1998.cad.ru/_pr/le.htm HTTP/1.1" 404 153 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" +176.46.29.234 - - [20/Mar/2026:21:13:16 +0300] "GET / HTTP/1.1" 200 1911 "https://cube2.ru/" "Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1" +100.49.153.7 - - [20/Mar/2026:21:47:32 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Gort)" +85.208.96.193 - - [20/Mar/2026:21:59:16 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.14 - - [20/Mar/2026:21:59:16 +0300] "GET /_ex/99_06_08b.htm HTTP/1.1" 200 4517 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +157.55.39.49 - - [20/Mar/2026:22:09:47 +0300] "GET /sitemap.txt HTTP/1.1" 404 185 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36" +5.133.192.136 - - [20/Mar/2026:22:24:55 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36" +5.133.192.136 - - [20/Mar/2026:22:24:55 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36" +91.184.217.13 - - [20/Mar/2026:22:34:32 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; DomainResearchBot/1.0)" +207.46.13.17 - - [20/Mar/2026:23:15:34 +0300] "GET /sitemap.txt HTTP/1.1" 404 185 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36" +43.155.195.141 - - [20/Mar/2026:23:19:46 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +43.173.174.76 - - [21/Mar/2026:00:45:02 +0300] "GET /1998.cad.ru/_co/lc.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" +194.163.172.10 - - [21/Mar/2026:03:10:30 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0" +194.163.172.10 - - [21/Mar/2026:03:10:31 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0" +85.208.96.194 - - [21/Mar/2026:03:34:56 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.200 - - [21/Mar/2026:03:34:57 +0300] "GET /_pb/97_12a.htm HTTP/1.1" 200 5299 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.173.180.213 - - [21/Mar/2026:03:48:57 +0300] "GET /1998.cad.ru/_fr/glossary.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36" +85.208.96.203 - - [21/Mar/2026:04:14:05 +0300] "GET /_co/r1.htm HTTP/1.1" 200 2738 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.5 - - [21/Mar/2026:04:29:05 +0300] "GET /_ex/98_12_18a.htm HTTP/1.1" 200 3091 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +220.181.108.81 - - [21/Mar/2026:05:09:49 +0300] "GET /_co/index.htm HTTP/1.1" 200 3293 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" +220.181.108.114 - - [21/Mar/2026:05:09:49 +0300] "GET /_co/ HTTP/1.1" 403 153 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" +116.179.37.103 - - [21/Mar/2026:05:09:58 +0300] "GET /_b/spacer.gif HTTP/1.1" 200 42 "http://1998.cadpoint.ru/_co/index.htm" "Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)" +116.179.37.12 - - [21/Mar/2026:05:09:58 +0300] "GET /_b/58.gif HTTP/1.1" 200 287 "http://1998.cadpoint.ru/_co/index.htm" "Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)" +85.208.96.201 - - [21/Mar/2026:05:12:40 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.201 - - [21/Mar/2026:05:12:42 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.1 - - [21/Mar/2026:05:12:42 +0300] "GET /?URL=https%3A%2F%2Fessaypromaster.com%2Fthesis%2F205-doctor-work-database-excellent-writing.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +35.203.210.161 - - [21/Mar/2026:05:26:14 +0300] "GET / HTTP/1.1" 200 1911 "-" "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" +165.232.131.66 - - [21/Mar/2026:05:29:27 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "-" "Go-http-client/1.1" +165.232.131.66 - - [21/Mar/2026:05:29:28 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Go-http-client/1.1" +185.191.171.4 - - [21/Mar/2026:05:31:27 +0300] "GET /?URL=https%3A%2F%2Fdefinitionessays.com%2Fthesis%2F326-discs-write-practice-excellent-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.11 - - [21/Mar/2026:05:53:41 +0300] "GET /?URL=https%3A%2F%2Fscoringessays.com%2Fessay%2F765-help-me-to-write-a-narrative.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +91.184.244.208 - - [21/Mar/2026:06:50:04 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_1 like Mac OS X; ja-jp) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5" +91.184.244.208 - - [21/Mar/2026:06:50:36 +0300] "GET //images/nscape.gif HTTP/1.1" 200 1485 "-" "Mozilla/5.0(compatible;MSIE10.0;WindowsNT6.2;WOW64;Trident/6.0;Touch;.NET4.0E;.NET4.0C;.NETCLR3.5.30729;.NETCLR2.0.50727;.NETCLR3.0.30729;TabletPC2.0;MASAJS)" +91.184.244.208 - - [21/Mar/2026:06:51:02 +0300] "GET /images/bnr_rmbl.gif HTTP/1.1" 200 950 "-" "Mozilla/5.0(compatible;MSIE10.0;WindowsNT6.2;WOW64;Trident/6.0;Touch;.NET4.0E;.NET4.0C;.NETCLR3.5.30729;.NETCLR2.0.50727;.NETCLR3.0.30729;TabletPC2.0;MASAJS)" +91.184.244.208 - - [21/Mar/2026:06:51:23 +0300] "GET //images/ieanim.gif HTTP/1.1" 200 8609 "-" "Mozilla/5.0(compatible;MSIE10.0;WindowsNT6.2;WOW64;Trident/6.0;Touch;.NET4.0E;.NET4.0C;.NETCLR3.5.30729;.NETCLR2.0.50727;.NETCLR3.0.30729;TabletPC2.0;MASAJS)" +91.184.244.208 - - [21/Mar/2026:06:51:27 +0300] "GET /images/dragsmw.gif HTTP/1.1" 200 1694 "-" "Mozilla/5.0(compatible;MSIE10.0;WindowsNT6.2;WOW64;Trident/6.0;Touch;.NET4.0E;.NET4.0C;.NETCLR3.5.30729;.NETCLR2.0.50727;.NETCLR3.0.30729;TabletPC2.0;MASAJS)" +91.184.244.208 - - [21/Mar/2026:06:51:59 +0300] "GET /images/logobig.gif HTTP/1.1" 200 7061 "-" "Mozilla/5.0(compatible;MSIE10.0;WindowsNT6.2;WOW64;Trident/6.0;Touch;.NET4.0E;.NET4.0C;.NETCLR3.5.30729;.NETCLR2.0.50727;.NETCLR3.0.30729;TabletPC2.0;MASAJS)" +91.184.244.208 - - [21/Mar/2026:06:52:15 +0300] "GET /images/dot.gif HTTP/1.1" 200 183 "-" "Mozilla/5.0(compatible;MSIE10.0;WindowsNT6.2;WOW64;Trident/6.0;Touch;.NET4.0E;.NET4.0C;.NETCLR3.5.30729;.NETCLR2.0.50727;.NETCLR3.0.30729;TabletPC2.0;MASAJS)" +54.198.67.201 - - [21/Mar/2026:06:55:17 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Gort)" +85.208.96.199 - - [21/Mar/2026:07:05:09 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.200 - - [21/Mar/2026:07:05:12 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.19 - - [21/Mar/2026:07:05:12 +0300] "GET /?URL=https%3A%2F%2Finstatakipcistar.com%2Finstagram-video-izlenme%2F HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.166.244.192 - - [21/Mar/2026:07:34:11 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +43.173.174.98 - - [21/Mar/2026:07:57:33 +0300] "GET /1998.cad.ru/_ex/99_06_18b.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.5249.119 Safari/537.36" +185.191.171.11 - - [21/Mar/2026:08:03:52 +0300] "GET /?URL=https%3A%2F%2Fessayhelp-usa.com%2Fwriting%2F47-proposal-write-services-greatest-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +87.250.224.204 - - [21/Mar/2026:08:22:32 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +213.180.203.166 - - [21/Mar/2026:08:22:32 +0300] "GET /_co/rk.htm HTTP/1.1" 200 4294 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +87.250.224.130 - - [21/Mar/2026:08:22:41 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +95.108.213.113 - - [21/Mar/2026:08:22:42 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "http://1998.cadpoint.ru/_co/rk.htm" "Mozilla/5.0 (compatible; YandexRenderResourcesBot/1.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +17.246.23.240 - - [21/Mar/2026:08:53:15 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)" +17.246.23.240 - - [21/Mar/2026:08:53:16 +0300] "GET /_ex/99_06_08b.htm HTTP/1.1" 200 4517 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)" +145.239.69.153 - - [21/Mar/2026:09:28:11 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)" +145.239.69.153 - - [21/Mar/2026:09:28:13 +0300] "GET /index1.htm HTTP/1.1" 200 2569 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)" +145.239.69.153 - - [21/Mar/2026:09:28:15 +0300] "GET /main.htm HTTP/1.1" 200 2640 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)" +145.239.69.153 - - [21/Mar/2026:09:28:17 +0300] "GET /sponsor.htm HTTP/1.1" 200 2888 "-" "Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)" +216.180.246.124 - - [21/Mar/2026:10:05:40 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; GenomeCrawlerd/1.0; +https://www.nokia.com/genomecrawler)" +85.208.96.204 - - [21/Mar/2026:10:05:42 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.197 - - [21/Mar/2026:10:05:44 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.195 - - [21/Mar/2026:10:05:44 +0300] "GET /?URL=https%3A%2F%2Fessaypromaster.com%2Fediting%2F512-paraphrasing-sentences-online-excellent-writing.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.3 - - [21/Mar/2026:10:12:47 +0300] "GET /?URL=https%3A%2F%2Ftopessayservicescloud.com%2Fwriting%2F43-report-services-affordable-writing-services.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +74.7.175.158 - - [21/Mar/2026:10:37:07 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +45.131.155.110 - - [21/Mar/2026:10:56:17 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "http://1998.cadpoint.ru/index1.htm" "Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36" +213.180.203.197 - - [21/Mar/2026:11:03:45 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +95.108.213.97 - - [21/Mar/2026:11:03:45 +0300] "GET /_ex/99_06_10a.htm HTTP/1.1" 200 3187 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +95.108.213.139 - - [21/Mar/2026:11:03:45 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +119.28.101.45 - - [21/Mar/2026:11:09:15 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36" +103.161.153.150 - - [21/Mar/2026:11:09:58 +0300] "GET http://1998.cadpoint.ru/_pr/lz.htm HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36" +14.245.71.168 - - [21/Mar/2026:11:10:06 +0300] "GET http://1998.cadpoint.ru/_ex/99_07_10a.htm HTTP/1.1" 200 4762 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36" +43.173.180.194 - - [21/Mar/2026:11:10:09 +0300] "GET /pr.htm HTTP/1.1" 200 1785 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36" +169.224.33.48 - - [21/Mar/2026:11:10:41 +0300] "GET http://1998.cadpoint.ru/_pb/97_03a.htm HTTP/1.1" 200 8218 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36" +170.82.29.180 - - [21/Mar/2026:11:11:40 +0300] "GET http://1998.cadpoint.ru/_co/ro.htm HTTP/1.1" 200 2738 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.102 Safari/537.36" +14.240.214.241 - - [21/Mar/2026:11:13:15 +0300] "GET http://1998.cadpoint.ru/_pr/rn.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/83.0.4103.97 Safari/537.36" +138.186.73.172 - - [21/Mar/2026:11:13:18 +0300] "GET http://1998.cadpoint.ru/_pr/la1.htm HTTP/1.1" 200 5969 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 ADG/11.0.2566 AOLBUILD/11.0.2566 Safari/537.36" +85.208.96.196 - - [21/Mar/2026:11:32:46 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.17 - - [21/Mar/2026:11:32:47 +0300] "GET /?URL=https%3A%2F%2Ftopessayservicescloud.com%2Fwriting%2F43-report-services-affordable-writing-services.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +89.110.97.157 - - [21/Mar/2026:11:41:48 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36" +220.181.108.155 - - [21/Mar/2026:11:44:12 +0300] "GET /_ex/99_06_10b.htm HTTP/1.1" 200 3577 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" +116.179.37.252 - - [21/Mar/2026:11:44:16 +0300] "GET /_b/59.gif HTTP/1.1" 200 293 "http://1998.cadpoint.ru/_ex/99_06_10b.htm" "Mozilla/5.0 (compatible; Baiduspider-render/2.0; +http://www.baidu.com/search/spider.html)" +178.72.171.121 - - [21/Mar/2026:11:56:05 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; DomainsCrawler/1.0; +http://89.110.82.210:8080)" +178.72.171.121 - - [21/Mar/2026:11:56:05 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; DomainsCrawler/1.0; +http://89.110.82.210:8080)" +185.191.171.1 - - [21/Mar/2026:11:58:46 +0300] "GET /_pr/lm.htm HTTP/1.1" 200 4349 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +5.255.231.128 - - [21/Mar/2026:12:21:30 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +87.250.224.75 - - [21/Mar/2026:12:21:30 +0300] "GET /4u6ChBYNiqCk9 HTTP/1.1" 404 153 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +95.108.213.116 - - [21/Mar/2026:12:21:30 +0300] "GET /XSr4pblDKOm HTTP/1.1" 404 153 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +185.191.171.5 - - [21/Mar/2026:12:41:20 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.13 - - [21/Mar/2026:12:41:20 +0300] "GET /_pr/la.htm HTTP/1.1" 200 5977 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.173.175.138 - - [21/Mar/2026:12:45:20 +0300] "GET /1998.cad.ru/_fr/notice.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36" +74.7.241.184 - - [21/Mar/2026:12:47:16 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +89.169.134.144 - - [21/Mar/2026:12:50:35 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; DomainsCrawler/1.0; +http://89.110.82.210:8080)" +89.169.134.144 - - [21/Mar/2026:12:50:35 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; DomainsCrawler/1.0; +http://89.110.82.210:8080)" +43.130.26.3 - - [21/Mar/2026:13:06:19 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +185.191.171.11 - - [21/Mar/2026:13:08:05 +0300] "GET /_pb/96_12a.htm HTTP/1.1" 200 6413 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.2 - - [21/Mar/2026:13:39:21 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.5 - - [21/Mar/2026:13:39:22 +0300] "GET /?URL=https%3A%2F%2Fdiscountedessays.com%2Fthesis%2F66-psychology-work-best-essay-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +213.180.203.141 - - [21/Mar/2026:13:47:34 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +213.180.203.84 - - [21/Mar/2026:13:47:34 +0300] "GET /_pr/ry.htm HTTP/1.1" 200 2843 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +213.180.203.110 - - [21/Mar/2026:13:47:35 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +213.180.203.35 - - [21/Mar/2026:13:51:52 +0300] "GET /index1.htm HTTP/1.1" 200 2569 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +213.180.203.150 - - [21/Mar/2026:13:51:54 +0300] "GET /header.htm HTTP/1.1" 200 464 "http://1998.cadpoint.ru/index1.htm" "Mozilla/5.0 (compatible; YandexRenderResourcesBot/1.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +213.180.203.179 - - [21/Mar/2026:13:51:55 +0300] "GET /main.htm HTTP/1.1" 200 2640 "http://1998.cadpoint.ru/index1.htm" "Mozilla/5.0 (compatible; YandexRenderResourcesBot/1.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +95.108.213.155 - - [21/Mar/2026:13:51:56 +0300] "GET /nav.htm HTTP/1.1" 200 1258 "http://1998.cadpoint.ru/index1.htm" "Mozilla/5.0 (compatible; YandexRenderResourcesBot/1.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +213.180.203.39 - - [21/Mar/2026:14:00:33 +0300] "GET /_pb/97_12a.htm HTTP/1.1" 200 5299 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +185.191.171.4 - - [21/Mar/2026:14:41:30 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.203 - - [21/Mar/2026:14:41:30 +0300] "GET /?URL=https%3A%2F%2Fessaypromaster.com%2Fessay%2F40-order-custom-essays-affordable-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.205 - - [21/Mar/2026:14:55:40 +0300] "GET /?URL=https%3A%2F%2Fservice-essay.com%2Fwriting%2F442-blog-write-services-packages-top.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.204 - - [21/Mar/2026:15:27:12 +0300] "GET /_co/lm.htm HTTP/1.1" 200 4049 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +213.180.203.39 - - [21/Mar/2026:15:37:22 +0300] "GET /_pr/rf.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +95.108.213.103 - - [21/Mar/2026:15:37:40 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +213.180.203.35 - - [21/Mar/2026:15:37:42 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "http://1998.cadpoint.ru/_pr/rf.htm" "Mozilla/5.0 (compatible; YandexRenderResourcesBot/1.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +213.180.203.165 - - [21/Mar/2026:15:47:34 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +85.208.96.204 - - [21/Mar/2026:16:01:25 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.198 - - [21/Mar/2026:16:01:27 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.202 - - [21/Mar/2026:16:01:27 +0300] "GET /?URL=https%3A%2F%2Fessayhelp-usa.com%2Fwriting%2F47-proposal-write-services-greatest-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.212 - - [21/Mar/2026:16:01:49 +0300] "GET /?URL=https%3A%2F%2Ftopessayservicescloud.com%2Fthesis%2F915-research-paper-work-affordable-writing.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.195 - - [21/Mar/2026:16:06:01 +0300] "GET /?URL=https%3A%2F%2Fservice-essay.com%2Fessay%2F893-can-not-write-my-attachment-greatest.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +5.255.231.173 - - [21/Mar/2026:16:17:31 +0300] "GET /_pr/lf.htm HTTP/1.1" 200 3543 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +213.180.203.220 - - [21/Mar/2026:16:17:31 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +185.191.171.11 - - [21/Mar/2026:16:23:20 +0300] "GET /?URL=https%3A%2F%2Fessayhelp-usa.com%2Fediting%2F14-how-to-edit-an-attachment-affordable.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +87.250.224.108 - - [21/Mar/2026:16:28:39 +0300] "GET /_pr/re.htm HTTP/1.1" 200 2844 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +43.173.175.12 - - [21/Mar/2026:16:48:07 +0300] "GET /1998.cad.ru/_co/lh.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" +5.255.231.103 - - [21/Mar/2026:16:49:39 +0300] "GET /_pr/rl.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +95.108.213.192 - - [21/Mar/2026:16:49:41 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +85.208.96.198 - - [21/Mar/2026:17:34:32 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.6 - - [21/Mar/2026:17:34:33 +0300] "GET /_ex/98_11_17a.htm HTTP/1.1" 200 3405 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +95.108.213.246 - - [21/Mar/2026:17:48:40 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +43.166.224.244 - - [21/Mar/2026:17:53:54 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +213.180.203.78 - - [21/Mar/2026:17:59:02 +0300] "GET /_ex/99_02_19a.htm HTTP/1.1" 200 3320 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +213.180.203.243 - - [21/Mar/2026:17:59:07 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +68.178.167.214 - - [21/Mar/2026:18:30:37 +0300] "GET / HTTP/1.1" 200 1911 "-" "Go-http-client/1.1" +85.208.96.197 - - [21/Mar/2026:18:32:30 +0300] "GET /index1.htm HTTP/1.1" 200 2569 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.173.173.44 - - [21/Mar/2026:18:49:45 +0300] "GET /1998.cad.ru/_pr/lj.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36" +185.191.171.17 - - [21/Mar/2026:19:06:42 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.210 - - [21/Mar/2026:19:06:43 +0300] "GET /_pr/lb.htm HTTP/1.1" 200 3275 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.157.156.190 - - [21/Mar/2026:19:30:50 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +85.208.96.201 - - [21/Mar/2026:19:32:37 +0300] "GET /_ex/98_10_12a.htm HTTP/1.1" 200 2593 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.173.181.201 - - [21/Mar/2026:19:36:12 +0300] "GET /_co/index.htm HTTP/1.1" 200 3293 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36" +185.191.171.7 - - [21/Mar/2026:19:40:28 +0300] "GET /?URL=https%3A%2F%2Fbestessayscloud.com%2Fessay%2F23-pay-for-the-essay-writing-top-ranked.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +220.181.51.88 - - [21/Mar/2026:19:41:29 +0300] "GET /?URL=goo.gl/dDggp3 HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.118 - - [21/Mar/2026:19:41:30 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.92 - - [21/Mar/2026:19:41:30 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.88 - - [21/Mar/2026:19:41:32 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.116 - - [21/Mar/2026:19:41:33 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.85 - - [21/Mar/2026:19:41:34 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.85 - - [21/Mar/2026:19:41:36 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.116 - - [21/Mar/2026:19:41:36 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.118 - - [21/Mar/2026:19:41:37 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.116 - - [21/Mar/2026:19:41:37 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.120 - - [21/Mar/2026:19:41:39 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.85 - - [21/Mar/2026:19:41:40 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.118 - - [21/Mar/2026:19:41:41 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.113 - - [21/Mar/2026:19:41:41 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.113 - - [21/Mar/2026:19:41:42 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.90 - - [21/Mar/2026:19:41:43 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.92 - - [21/Mar/2026:19:41:44 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.120 - - [21/Mar/2026:19:41:45 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +220.181.51.88 - - [21/Mar/2026:19:41:45 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.173 - - [21/Mar/2026:19:42:29 +0300] "GET /?URL=goo.gl/dDggp3 HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.239 - - [21/Mar/2026:19:42:29 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.115 - - [21/Mar/2026:19:42:30 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.179 - - [21/Mar/2026:19:42:30 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.239 - - [21/Mar/2026:19:42:30 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.117 - - [21/Mar/2026:19:42:31 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.47 - - [21/Mar/2026:19:42:31 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.110 - - [21/Mar/2026:19:42:32 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.53 - - [21/Mar/2026:19:42:32 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.244 - - [21/Mar/2026:19:42:33 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.173 - - [21/Mar/2026:19:42:33 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.110 - - [21/Mar/2026:19:42:34 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.173 - - [21/Mar/2026:19:42:34 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.243 - - [21/Mar/2026:19:42:35 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.117 - - [21/Mar/2026:19:42:35 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.244 - - [21/Mar/2026:19:42:36 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.238 - - [21/Mar/2026:19:42:37 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.180 - - [21/Mar/2026:19:42:37 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.243 - - [21/Mar/2026:19:42:38 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.245 - - [21/Mar/2026:19:42:38 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.245 - - [21/Mar/2026:19:42:38 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +119.249.100.245 - - [21/Mar/2026:19:42:40 +0300] "GET /?URL=goo.gl/index1.htm HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36" +116.179.33.77 - - [21/Mar/2026:19:44:13 +0300] "GET /images/dot.gif HTTP/1.1" 200 183 "http://1998.cadpoint.ru/?URL=goo.gl/index1.htm" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36" +116.179.33.210 - - [21/Mar/2026:19:44:13 +0300] "GET /images/bnr_rmbl.gif HTTP/1.1" 200 950 "http://1998.cadpoint.ru/?URL=goo.gl/index1.htm" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36" +116.179.33.82 - - [21/Mar/2026:19:44:13 +0300] "GET /images/ieanim.gif HTTP/1.1" 200 8609 "http://1998.cadpoint.ru/?URL=goo.gl/index1.htm" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36" +116.179.33.12 - - [21/Mar/2026:19:44:13 +0300] "GET /images/nscape.gif HTTP/1.1" 200 1485 "http://1998.cadpoint.ru/?URL=goo.gl/index1.htm" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36" +116.179.33.77 - - [21/Mar/2026:19:44:13 +0300] "GET /images/dragsmw.gif HTTP/1.1" 200 1694 "http://1998.cadpoint.ru/?URL=goo.gl/index1.htm" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36" +116.179.33.84 - - [21/Mar/2026:19:44:13 +0300] "GET /images/bnr_tigr.gif HTTP/1.1" 200 10929 "http://1998.cadpoint.ru/?URL=goo.gl/index1.htm" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36" +213.180.203.39 - - [21/Mar/2026:19:47:33 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +91.184.217.13 - - [21/Mar/2026:19:54:01 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; DomainResearchBot/1.0)" +3.151.241.153 - - [21/Mar/2026:20:02:18 +0300] "GET / HTTP/1.1" 200 1911 "-" "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" +114.119.151.72 - - [21/Mar/2026:20:05:01 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)" +85.208.96.202 - - [21/Mar/2026:20:12:32 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.200 - - [21/Mar/2026:20:12:32 +0300] "GET /_pr/rv.htm HTTP/1.1" 200 2844 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.16 - - [21/Mar/2026:20:22:51 +0300] "GET /_ex/99_03_20a.htm HTTP/1.1" 200 2900 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.194 - - [21/Mar/2026:20:25:10 +0300] "GET /_co/li.htm HTTP/1.1" 200 2742 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.200 - - [21/Mar/2026:20:26:40 +0300] "GET /_pr/lk.htm HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +213.180.203.24 - - [21/Mar/2026:20:39:06 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +95.108.213.195 - - [21/Mar/2026:20:39:06 +0300] "GET /_pr/rt.htm HTTP/1.1" 200 2786 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +213.180.203.129 - - [21/Mar/2026:20:39:07 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +213.180.203.77 - - [21/Mar/2026:20:39:08 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "http://1998.cadpoint.ru/_pr/rt.htm" "Mozilla/5.0 (compatible; YandexRenderResourcesBot/1.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +220.181.108.178 - - [21/Mar/2026:20:48:05 +0300] "GET /1998.cad.ru/_pr/rg.htm HTTP/1.1" 404 153 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" +185.191.171.14 - - [21/Mar/2026:20:58:11 +0300] "GET /_pr/rp.htm HTTP/1.1" 200 2843 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +3.219.146.217 - - [21/Mar/2026:21:06:15 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Gort)" +114.119.136.8 - - [21/Mar/2026:21:12:54 +0300] "GET /robots.txt HTTP/1.1" 200 14 "https://cube2.ru/robots.txt" "Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)" +185.191.171.2 - - [21/Mar/2026:22:50:29 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.4 - - [21/Mar/2026:22:50:30 +0300] "GET /_pb/index.htm HTTP/1.1" 200 2568 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.207 - - [21/Mar/2026:23:00:49 +0300] "GET /_ex/98_10_28a.htm HTTP/1.1" 200 3972 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.19 - - [21/Mar/2026:23:49:49 +0300] "GET /_pr/rh.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.4 - - [21/Mar/2026:23:52:02 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.199 - - [21/Mar/2026:23:52:02 +0300] "GET /_pr/rw.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.9 - - [21/Mar/2026:23:53:24 +0300] "GET /?URL=https%3A%2F%2Finstatakipcistar.com%2Finstagram-video-izlenme%2F HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.199 - - [21/Mar/2026:23:57:45 +0300] "GET /?URL=https%3A%2F%2Fbestessayseducationusa.com%2Fessay%2F30-essay-revision-assistance-online-greatest.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +5.255.231.188 - - [22/Mar/2026:00:03:27 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +213.180.203.193 - - [22/Mar/2026:00:03:27 +0300] "GET /_ex/99_07_16a.htm HTTP/1.1" 200 4436 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +116.179.32.47 - - [22/Mar/2026:00:08:11 +0300] "GET /_pb/98_12b.htm HTTP/1.1" 200 9766 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" +43.167.245.18 - - [22/Mar/2026:00:36:50 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +51.75.236.147 - - [22/Mar/2026:00:37:18 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)" +66.249.72.195 - - [22/Mar/2026:00:37:56 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" +5.161.236.236 - - [22/Mar/2026:01:12:46 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36" +5.161.236.236 - - [22/Mar/2026:01:12:53 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36" +48.222.9.228 - - [22/Mar/2026:01:13:03 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0" +185.191.171.1 - - [22/Mar/2026:01:25:48 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.208 - - [22/Mar/2026:01:25:48 +0300] "GET /_ex/99_06_10a.htm HTTP/1.1" 200 3187 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.18 - - [22/Mar/2026:01:35:41 +0300] "GET /?URL=https%3A%2F%2Fdefinitionessays.com%2Fthesis%2F326-discs-write-practice-excellent-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +3.93.128.70 - - [22/Mar/2026:01:52:54 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Gort)" +95.108.213.204 - - [22/Mar/2026:02:10:29 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +87.250.224.4 - - [22/Mar/2026:02:10:29 +0300] "GET /_co/rv.htm HTTP/1.1" 200 2737 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +213.180.203.196 - - [22/Mar/2026:02:10:30 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +85.208.96.197 - - [22/Mar/2026:02:14:42 +0300] "GET /?URL=https%3A%2F%2Fessaypromaster.com%2Fediting%2F512-paraphrasing-sentences-online-excellent-writing.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.11 - - [22/Mar/2026:02:16:23 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.10 - - [22/Mar/2026:02:16:25 +0300] "GET /?URL=https%3A%2F%2Ftopessaywritingbase.com%2Fessay%2F469-rwean-school-essay-machining-service-affordable.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +45.131.155.110 - - [22/Mar/2026:02:21:36 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "http://1998.cadpoint.ru/index1.htm" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36" +144.31.25.220 - - [22/Mar/2026:02:49:21 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0.0.0" +179.43.186.231 - - [22/Mar/2026:03:36:55 +0300] "GET /bitrix/admin/ HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0" +179.43.186.231 - - [22/Mar/2026:03:36:56 +0300] "GET /pewpew/?SEF_APPLICATION_CUR_PAGE_URL=/bitrix/admin/ HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0" +179.43.186.231 - - [22/Mar/2026:03:36:56 +0300] "GET /pewpew/?SEF%20APPLICATION%20CUR%20PAGE_URL=/bitrix/admin/ HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0" +179.43.186.231 - - [22/Mar/2026:03:36:56 +0300] "GET /pewpew/?SEF.APPLICATION%20CUR+PAGE[URL=/bitrix/admin/ HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0" +34.61.82.184 - - [22/Mar/2026:04:02:10 +0300] "GET / HTTP/1.1" 200 1911 "-" "Go-http-client/1.1" +185.226.198.6 - - [22/Mar/2026:04:05:31 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.226.198.4 - - [22/Mar/2026:04:05:55 +0300] "POST /mcp HTTP/1.1" 404 153 "-" "python-httpx/0.28.1" +185.226.198.4 - - [22/Mar/2026:04:05:56 +0300] "GET /sse HTTP/1.1" 404 153 "-" "python-httpx/0.28.1" +185.226.198.4 - - [22/Mar/2026:04:05:58 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36 BitSightBot/1.0" +185.191.171.6 - - [22/Mar/2026:04:15:37 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.15 - - [22/Mar/2026:04:15:38 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.2 - - [22/Mar/2026:04:15:39 +0300] "GET /?URL=https%3A%2F%2Ftopessaywritinglist.com%2Fessay%2F73-cheap-customs-defined-essays-greatest-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +89.223.120.107 - - [22/Mar/2026:04:24:30 +0300] "GET /.git/config HTTP/1.1" 404 153 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; it-it) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27" +205.210.31.139 - - [22/Mar/2026:04:34:38 +0300] "GET / HTTP/1.1" 200 7232 "-" "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" +87.250.224.40 - - [22/Mar/2026:04:41:43 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +87.250.224.3 - - [22/Mar/2026:04:41:44 +0300] "GET /_b/event.gif HTTP/1.1" 200 9232 "-" "Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)" +43.173.179.149 - - [22/Mar/2026:04:52:01 +0300] "GET /_ex/99_06_18a.htm HTTP/1.1" 200 3177 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" +74.249.192.245 - - [22/Mar/2026:05:42:40 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 zgrab/0.x" +216.180.246.142 - - [22/Mar/2026:05:46:49 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; GenomeCrawlerd/1.0; +https://www.nokia.com/genomecrawler)" +61.129.155.195 - - [22/Mar/2026:05:50:57 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0" +61.129.155.195 - - [22/Mar/2026:05:51:03 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Edg/122.0.0.0" +85.208.96.204 - - [22/Mar/2026:05:56:53 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.13 - - [22/Mar/2026:05:56:54 +0300] "GET /?URL=https%3A%2F%2Fessayhelp-usa.com%2Fediting%2F14-how-to-edit-an-attachment-affordable.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +104.28.164.49 - - [22/Mar/2026:06:22:56 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" +104.28.164.49 - - [22/Mar/2026:06:22:58 +0300] "GET /?rest_route=/wp/v2/users HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 14_6_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 OPR/114.0.0.0" +185.191.171.16 - - [22/Mar/2026:06:35:23 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.11 - - [22/Mar/2026:06:35:24 +0300] "GET /?URL=https%3A%2F%2Fessaypromaster.com%2Fwriting%2F896-customizing-language-writing-top-ranked-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +91.184.244.208 - - [22/Mar/2026:06:50:26 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0(Linux;Tizen2.4;SAMSUNGSM-Z200F)AppleWebKit/537.3(KHTML,likeGecko)SamsungBrowser/1.1MobileSafari/537.3" +143.110.147.187 - - [22/Mar/2026:07:09:19 +0300] "GET / HTTP/1.1" 200 1911 "-" "Go-http-client/1.1" +43.135.172.89 - - [22/Mar/2026:07:13:15 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +5.255.231.103 - - [22/Mar/2026:07:24:36 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +87.250.224.88 - - [22/Mar/2026:07:24:36 +0300] "GET /_pr/r1.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +87.250.224.230 - - [22/Mar/2026:07:24:38 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +71.6.134.233 - - [22/Mar/2026:07:25:20 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" +35.203.210.198 - - [22/Mar/2026:07:36:23 +0300] "GET /.well-known/security.txt HTTP/1.1" 404 153 "-" "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" +85.208.96.193 - - [22/Mar/2026:08:38:48 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.208 - - [22/Mar/2026:08:38:48 +0300] "GET /_ex/98_10_13a.htm HTTP/1.1" 200 4017 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +95.108.213.124 - - [22/Mar/2026:09:12:03 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +5.255.231.28 - - [22/Mar/2026:09:12:03 +0300] "GET /_ex/99_08_14a.htm HTTP/1.1" 200 4355 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +213.180.203.151 - - [22/Mar/2026:09:12:04 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +213.180.203.10 - - [22/Mar/2026:09:23:57 +0300] "GET /_pr/rw.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +185.191.171.3 - - [22/Mar/2026:09:26:32 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.8 - - [22/Mar/2026:09:26:33 +0300] "GET /?URL=http%3A%2F%2Ftopessaywritinglist.com%2Fdissertation%2F49-dissertation-service-greatest-writing-services.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +5.255.231.207 - - [22/Mar/2026:09:39:15 +0300] "GET /_pr/lk.htm HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +114.119.136.8 - - [22/Mar/2026:10:20:55 +0300] "GET /robots.txt HTTP/1.1" 200 14 "https://cube2.ru/robots.txt" "Mozilla/5.0 (compatible;PetalBot;+https://webmaster.petalsearch.com/site/petalbot)" +85.208.96.198 - - [22/Mar/2026:10:30:50 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.196 - - [22/Mar/2026:10:30:50 +0300] "GET /?URL=https%3A%2F%2Ftopessayservicescloud.com%2Fpaper%2F39-research-paper-urgently-buy-high.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +35.203.211.162 - - [22/Mar/2026:10:45:11 +0300] "GET / HTTP/1.1" 200 1911 "-" "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" +85.208.96.197 - - [22/Mar/2026:10:50:13 +0300] "GET /_ex/99_04_10a.htm HTTP/1.1" 200 5246 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +14.163.124.22 - - [22/Mar/2026:11:09:53 +0300] "GET http://1998.cadpoint.ru/_co/rm.htm HTTP/1.1" 200 3137 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" +181.94.226.224 - - [22/Mar/2026:11:10:15 +0300] "GET http://1998.cadpoint.ru/_pr/lz.htm HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36" +123.25.195.149 - - [22/Mar/2026:11:10:16 +0300] "GET http://1998.cadpoint.ru/_ex/99_07_07a.htm HTTP/1.1" 200 4413 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36" +41.116.16.81 - - [22/Mar/2026:11:10:44 +0300] "GET http://1998.cadpoint.ru/_co/ro.htm HTTP/1.1" 200 2738 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36" +113.178.163.85 - - [22/Mar/2026:11:10:49 +0300] "GET http://1998.cadpoint.ru/_pr/la1.htm HTTP/1.1" 200 5969 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36" +102.216.85.5 - - [22/Mar/2026:11:13:30 +0300] "GET http://1998.cadpoint.ru/_pb/97_03a.htm HTTP/1.1" 200 8218 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36\x09Chrome 79.0" +179.6.6.165 - - [22/Mar/2026:11:13:42 +0300] "GET http://1998.cadpoint.ru/_pr/rn.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/89.0.4389.90 Safari/537.36" +185.191.171.1 - - [22/Mar/2026:11:34:47 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.4 - - [22/Mar/2026:11:34:48 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.194 - - [22/Mar/2026:11:34:48 +0300] "GET /?URL=https%3A%2F%2Fbestessayseducationusa.com%2Fwriting%2F688-academic-writing-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.212 - - [22/Mar/2026:11:42:49 +0300] "GET /?URL=http%3A%2F%2Ftopessayservicescloud.com%2Fwriting%2F138-book-overview-writer-high-quality.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +179.43.186.231 - - [22/Mar/2026:12:22:27 +0300] "GET /bitrix/admin/ HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0" +179.43.186.231 - - [22/Mar/2026:12:22:27 +0300] "GET /pewpew/?SEF_APPLICATION_CUR_PAGE_URL=/bitrix/admin/ HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0" +179.43.186.231 - - [22/Mar/2026:12:22:27 +0300] "GET /pewpew/?SEF%20APPLICATION%20CUR%20PAGE_URL=/bitrix/admin/ HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0" +179.43.186.231 - - [22/Mar/2026:12:22:27 +0300] "GET /pewpew/?SEF.APPLICATION%20CUR+PAGE[URL=/bitrix/admin/ HTTP/1.1" 404 555 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0" +85.208.96.206 - - [22/Mar/2026:12:24:15 +0300] "GET /_pr/rs.htm HTTP/1.1" 200 3015 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +149.154.67.96 - - [22/Mar/2026:12:26:49 +0300] "GET /.git/config HTTP/1.1" 404 153 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Safari/605.1.15" +148.251.222.209 - - [22/Mar/2026:12:42:24 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/122.0" +148.251.108.27 - - [22/Mar/2026:12:42:25 +0300] "GET /index1.htm HTTP/1.1" 200 5912 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:115.0) Gecko/20100101 Firefox/115.0" +43.135.115.233 - - [22/Mar/2026:12:59:08 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +185.191.171.3 - - [22/Mar/2026:13:05:28 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.13 - - [22/Mar/2026:13:05:30 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.14 - - [22/Mar/2026:13:05:31 +0300] "GET /?URL=https%3A%2F%2Ftopessayservicescloud.com%2Fpaper%2F39-research-paper-urgently-buy-high.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.16 - - [22/Mar/2026:13:06:20 +0300] "GET /?URL=https%3A%2F%2Fbestessayseducationusa.com%2Fdissertation%2F41-dissertation-research-process-best-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.194 - - [22/Mar/2026:13:09:56 +0300] "GET /?URL=https%3A%2F%2Ftopessaywritinglist.com%2Fessay%2F73-cheap-customs-defined-essays-greatest-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +129.212.239.155 - - [22/Mar/2026:13:33:06 +0300] "GET /api/backup HTTP/1.1" 404 153 "-" "Mozilla/5.0" +185.191.171.13 - - [22/Mar/2026:13:37:43 +0300] "GET /?URL=https%3A%2F%2Fdefinitionessays.com%2Fpaper%2F21-instant-paper-writer-best-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +109.68.215.224 - - [22/Mar/2026:13:38:07 +0300] "GET /.git/config HTTP/1.1" 404 153 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/ Firefox/4.0" +185.191.171.17 - - [22/Mar/2026:14:34:47 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.196 - - [22/Mar/2026:14:34:47 +0300] "GET /?URL=https%3A%2F%2Fbestessayseducationusa.com%2Fwriting%2F688-academic-writing-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +45.131.155.110 - - [22/Mar/2026:14:53:09 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "https://cube2.ru/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36" +45.131.155.110 - - [22/Mar/2026:14:53:09 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "https://www.1998.cadpoint.ru/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36" +45.131.155.110 - - [22/Mar/2026:14:53:09 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "https://1998.cadpoint.ru/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36" +74.7.243.237 - - [22/Mar/2026:14:57:07 +0300] "GET / HTTP/1.1" 200 1911 "https://1998.cadpoint.ru" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" +74.7.175.158 - - [22/Mar/2026:14:57:07 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +74.7.175.158 - - [22/Mar/2026:14:57:07 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +45.82.78.111 - - [22/Mar/2026:15:01:38 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36" +45.82.78.111 - - [22/Mar/2026:15:01:38 +0300] "GET /index1.htm HTTP/1.1" 200 2569 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" +45.82.78.111 - - [22/Mar/2026:15:02:13 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36" +45.82.78.111 - - [22/Mar/2026:15:02:13 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Safari/605.1.15" +45.82.78.111 - - [22/Mar/2026:15:02:13 +0300] "GET /index1.htm HTTP/1.1" 200 2569 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 Edg/139.0.0.0" +45.82.78.111 - - [22/Mar/2026:15:02:13 +0300] "GET /index1.htm HTTP/1.1" 200 2569 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" +98.88.179.50 - - [22/Mar/2026:15:39:52 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Gort)" +89.223.120.107 - - [22/Mar/2026:15:50:49 +0300] "GET /.git/config HTTP/1.1" 404 153 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15" +185.191.171.18 - - [22/Mar/2026:15:55:25 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.7 - - [22/Mar/2026:15:55:26 +0300] "GET /_pr/r1.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.209 - - [22/Mar/2026:16:09:31 +0300] "GET /_pr/lt.htm HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.17 - - [22/Mar/2026:16:25:42 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.11 - - [22/Mar/2026:16:25:45 +0300] "GET /?URL=https%3A%2F%2Fessaypromaster.com%2Fessay%2F040-national-junior-honor-society-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.15 - - [22/Mar/2026:16:48:11 +0300] "GET /?URL=https%3A%2F%2Ftopessaywritingbase.com%2Fessay%2F52-help-with-argumentative-essay-best.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.4 - - [22/Mar/2026:17:11:06 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.4 - - [22/Mar/2026:17:11:09 +0300] "GET /?URL=https%3A%2F%2Fbestessayseducationusa.com%2Fessay%2F319-sat-essay-help-excellent-essay-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.164.195.17 - - [22/Mar/2026:17:46:53 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +85.208.96.210 - - [22/Mar/2026:17:49:13 +0300] "GET /_pr/rr.htm HTTP/1.1" 200 2843 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.14 - - [22/Mar/2026:17:50:29 +0300] "GET /?URL=http%3A%2F%2Ftopessayservicescloud.com%2Fwriting%2F138-book-overview-writer-high-quality.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.196 - - [22/Mar/2026:17:53:39 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.198 - - [22/Mar/2026:17:53:40 +0300] "GET /?URL=https%3A%2F%2Fessayhelp-usa.com%2Fessay%2F025-essay-writer-software-top-ranked-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +66.249.72.195 - - [22/Mar/2026:18:25:54 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" +220.181.108.114 - - [22/Mar/2026:18:28:36 +0300] "GET /1998.cad.ru/_ex/99_08_17a.htm HTTP/1.1" 404 153 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" +71.6.134.231 - - [22/Mar/2026:18:34:30 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" +74.7.241.184 - - [22/Mar/2026:18:39:37 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +107.189.1.176 - - [22/Mar/2026:18:48:36 +0300] "GET /wp-login.php HTTP/1.1" 404 185 "http://www.google.com.hk" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36" +45.205.1.8 - - [22/Mar/2026:19:37:02 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:84.0) Gecko/20100101 Firefox/84.0" +85.208.96.196 - - [22/Mar/2026:19:39:01 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.201 - - [22/Mar/2026:19:39:02 +0300] "GET /?URL=https%3A%2F%2Fbestessayseducationusa.com%2Fessay%2F319-sat-essay-help-excellent-essay-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.197 - - [22/Mar/2026:19:41:48 +0300] "GET /_co/rk.htm HTTP/1.1" 200 4294 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.9 - - [22/Mar/2026:19:52:28 +0300] "GET /_ex/99_01_18a.htm HTTP/1.1" 200 5541 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.197 - - [22/Mar/2026:19:58:54 +0300] "GET /_ex/99_07_21a.htm HTTP/1.1" 200 3274 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.3 - - [22/Mar/2026:20:09:06 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.200 - - [22/Mar/2026:20:09:07 +0300] "GET /?URL=https%3A%2F%2Fdefinitionessays.com%2Fpaper%2F21-instant-paper-writer-best-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +3.139.242.79 - - [22/Mar/2026:20:14:20 +0300] "GET / HTTP/1.1" 200 1911 "-" "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" +3.139.242.79 - - [22/Mar/2026:20:15:10 +0300] "GET / HTTP/1.1" 200 1911 "-" "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" +71.6.134.234 - - [22/Mar/2026:20:18:09 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" +85.208.96.196 - - [22/Mar/2026:20:40:03 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.3 - - [22/Mar/2026:20:40:04 +0300] "GET /_co/ld.htm HTTP/1.1" 200 2850 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.5 - - [22/Mar/2026:20:43:40 +0300] "GET /?URL=https%3A%2F%2Fessayhelp-usa.com%2Fdissertation%2F10-dissertation-template-best-essay-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +32.193.40.153 - - [22/Mar/2026:20:50:21 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Gort)" +185.191.171.7 - - [22/Mar/2026:21:44:18 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.17 - - [22/Mar/2026:21:44:24 +0300] "GET /?URL=https%3A%2F%2Fessaypromaster.com%2Fwriting%2F896-customizing-language-writing-top-ranked-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.207 - - [22/Mar/2026:22:12:28 +0300] "GET /_pr/rc.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.205 - - [22/Mar/2026:22:18:11 +0300] "GET /?URL=https%3A%2F%2Ftopessaywritingbase.com%2Fessay%2F469-rwean-school-essay-machining-service-affordable.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.9 - - [22/Mar/2026:22:25:27 +0300] "GET /?URL=https%3A%2F%2Fdiscountedessays.com%2Fpaper%2F30-write-me-one-day-my-newspaper.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.19 - - [22/Mar/2026:22:44:52 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.208 - - [22/Mar/2026:22:44:53 +0300] "GET /_co/rf.htm HTTP/1.1" 200 2738 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.200 - - [22/Mar/2026:22:48:41 +0300] "GET /?URL=https%3A%2F%2Fessaypromaster.com%2Fthesis%2F205-doctor-work-database-excellent-writing.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.210 - - [22/Mar/2026:22:56:30 +0300] "GET /_pr/ll.htm HTTP/1.1" 200 5454 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.157.153.236 - - [22/Mar/2026:23:20:09 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +35.203.211.26 - - [22/Mar/2026:23:59:54 +0300] "GET / HTTP/1.1" 200 1911 "-" "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" +185.191.171.1 - - [23/Mar/2026:00:18:39 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.195 - - [23/Mar/2026:00:18:40 +0300] "GET /_pr/rd.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +192.175.111.254 - - [23/Mar/2026:01:47:52 +0300] "GET / HTTP/1.1" 200 7232 "https://www.1998.cadpoint.ru/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" +185.191.171.16 - - [23/Mar/2026:01:54:54 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.6 - - [23/Mar/2026:01:54:55 +0300] "GET /?URL=http%3A%2F%2Ftopessaywritinglist.com%2Fdissertation%2F49-dissertation-service-greatest-writing-services.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.194 - - [23/Mar/2026:02:24:57 +0300] "GET /?URL=https%3A%2F%2Fessayhelp-usa.com%2Fdissertation%2F10-dissertation-template-best-essay-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +47.128.114.132 - - [23/Mar/2026:02:56:53 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)" +192.175.111.237 - - [23/Mar/2026:03:07:56 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" +192.175.111.233 - - [23/Mar/2026:03:07:57 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" +64.15.129.100 - - [23/Mar/2026:03:07:57 +0300] "GET /favicon.ico HTTP/1.1" 200 59582 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" +64.15.129.123 - - [23/Mar/2026:03:07:58 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" +192.175.111.233 - - [23/Mar/2026:03:07:59 +0300] "GET / HTTP/1.1" 200 7232 "https://1998.cadpoint.ru/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" +64.15.129.108 - - [23/Mar/2026:03:07:59 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" +43.173.179.134 - - [23/Mar/2026:03:57:22 +0300] "GET /_ex/99_07_10a.htm HTTP/1.1" 200 4762 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36" +85.208.96.197 - - [23/Mar/2026:04:01:03 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.209 - - [23/Mar/2026:04:01:03 +0300] "GET /_co/ro.htm HTTP/1.1" 200 2738 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +43.159.152.187 - - [23/Mar/2026:04:45:12 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +74.249.189.89 - - [23/Mar/2026:05:07:35 +0300] "GET / HTTP/1.1" 200 7232 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" +220.181.108.145 - - [23/Mar/2026:05:34:51 +0300] "GET /1998.cad.ru/_co/lf.htm HTTP/1.1" 404 153 "-" "Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)" +34.90.69.83 - - [23/Mar/2026:06:07:15 +0300] "GET / HTTP/1.1" 200 1911 "-" "Scrapy/2.13.4 (+https://scrapy.org)" +34.90.69.83 - - [23/Mar/2026:06:07:15 +0300] "GET /index1.htm HTTP/1.1" 200 2569 "-" "Scrapy/2.13.4 (+https://scrapy.org)" +91.184.244.208 - - [23/Mar/2026:06:52:54 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0(WindowsNT6.3;ARM;Trident/7.0;Touch;.NET4.0E;.NET4.0C;TabletPC2.0;rv:11.0)likeGecko" +185.191.171.7 - - [23/Mar/2026:07:26:19 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.18 - - [23/Mar/2026:07:26:20 +0300] "GET /_pr/urladd.htm HTTP/1.1" 200 3436 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +203.55.131.5 - - [23/Mar/2026:07:52:18 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" +116.62.217.170 - - [23/Mar/2026:08:36:22 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36" +85.208.96.205 - - [23/Mar/2026:08:40:15 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.1 - - [23/Mar/2026:08:40:16 +0300] "GET /_co/lh.htm HTTP/1.1" 200 2742 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.201 - - [23/Mar/2026:09:02:44 +0300] "GET /_pr/ld.htm HTTP/1.1" 200 3067 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +104.248.212.164 - - [23/Mar/2026:09:30:26 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11) AppleWebKit/538.41 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" +104.248.212.164 - - [23/Mar/2026:09:30:26 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" +104.248.212.164 - - [23/Mar/2026:09:30:26 +0300] "GET /index1.htm HTTP/1.1" 200 2569 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11) AppleWebKit/538.41 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" +85.208.96.194 - - [23/Mar/2026:09:37:37 +0300] "GET /?URL=https%3A%2F%2Fessayhelp-usa.com%2Fwriting%2F402-medical-write-services-greatest-writing.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +104.248.212.164 - - [23/Mar/2026:09:38:51 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11) AppleWebKit/538.41 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" +104.248.212.164 - - [23/Mar/2026:09:38:51 +0300] "GET /index1.htm HTTP/1.1" 200 2569 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11) AppleWebKit/538.41 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36" +85.208.96.206 - - [23/Mar/2026:09:40:54 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.194 - - [23/Mar/2026:09:40:54 +0300] "GET /?URL=https%3A%2F%2Fservice-essay.com%2Fessay%2F893-can-not-write-my-attachment-greatest.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +205.210.31.168 - - [23/Mar/2026:09:43:47 +0300] "GET / HTTP/1.1" 200 7232 "-" "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" +43.164.197.177 - - [23/Mar/2026:09:43:55 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +85.208.96.204 - - [23/Mar/2026:10:14:55 +0300] "GET /_pb/98_12b.htm HTTP/1.1" 200 9766 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +34.194.228.118 - - [23/Mar/2026:10:15:07 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Gort)" +43.173.181.117 - - [23/Mar/2026:10:44:21 +0300] "GET /1998.cad.ru/_pb/99_01a.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.3" +43.173.182.99 - - [23/Mar/2026:10:45:29 +0300] "GET /1998.cad.ru/_ex/99_01_18a.htm HTTP/1.1" 404 185 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.3" +161.0.155.224 - - [23/Mar/2026:11:10:45 +0300] "GET http://1998.cadpoint.ru/_ex/99_07_07a.htm HTTP/1.1" 200 4413 "-" "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/90.0.4430.72 Safari/537.36" +197.60.63.145 - - [23/Mar/2026:11:10:48 +0300] "GET http://1998.cadpoint.ru/_pr/lz.htm HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/80.0.3987.116 Safari/537.36" +14.186.142.148 - - [23/Mar/2026:11:11:42 +0300] "GET http://1998.cadpoint.ru/_pr/rn.htm HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_3_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36" +14.173.171.252 - - [23/Mar/2026:11:12:31 +0300] "GET http://1998.cadpoint.ru/_pr/la1.htm HTTP/1.1" 200 5969 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36" +113.173.66.40 - - [23/Mar/2026:11:12:33 +0300] "GET http://1998.cadpoint.ru/_co/rm.htm HTTP/1.1" 200 3137 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36" +123.24.159.143 - - [23/Mar/2026:11:12:33 +0300] "GET http://1998.cadpoint.ru/_co/ro.htm HTTP/1.1" 200 2738 "-" "Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36" +168.197.216.137 - - [23/Mar/2026:11:14:11 +0300] "GET http://1998.cadpoint.ru/_pb/97_03a.htm HTTP/1.1" 200 8218 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.2 Safari/537.36" +74.7.175.158 - - [23/Mar/2026:11:23:05 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +185.191.171.13 - - [23/Mar/2026:11:51:21 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.204 - - [23/Mar/2026:11:51:22 +0300] "GET /_fr/news.htm HTTP/1.1" 200 4712 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +87.250.224.56 - - [23/Mar/2026:11:56:07 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +87.250.224.116 - - [23/Mar/2026:11:56:07 +0300] "GET /_co/le.htm HTTP/1.1" 200 2742 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +87.250.224.130 - - [23/Mar/2026:11:56:08 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)" +213.180.203.247 - - [23/Mar/2026:11:56:09 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "http://1998.cadpoint.ru/_co/le.htm" "Mozilla/5.0 (compatible; YandexRenderResourcesBot/1.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0" +85.208.96.198 - - [23/Mar/2026:12:07:46 +0300] "GET /?URL=https%3A%2F%2Fessaypromaster.com%2Fessay%2F040-national-junior-honor-society-essay.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +71.6.134.230 - - [23/Mar/2026:12:33:15 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36" +185.191.171.9 - - [23/Mar/2026:13:02:31 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.202 - - [23/Mar/2026:13:02:32 +0300] "GET /_pr/lz.htm HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.204 - - [23/Mar/2026:13:08:38 +0300] "GET /_co/le.htm HTTP/1.1" 200 2742 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +74.7.241.184 - - [23/Mar/2026:13:28:39 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +74.7.175.158 - - [23/Mar/2026:13:28:39 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" +185.191.171.1 - - [23/Mar/2026:13:29:54 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +85.208.96.195 - - [23/Mar/2026:13:30:43 +0300] "GET /?URL=https%3A%2F%2Fessaypromaster.com%2Fdissertation%2F12-dissertation-trading-affordable-essay-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +114.119.136.8 - - [23/Mar/2026:13:34:41 +0300] "GET /_fr/prices.htm HTTP/1.1" 200 1963 "http://1998.cadpoint.ru/_fr/news.htm" "Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)" +5.101.156.173 - - [23/Mar/2026:13:57:23 +0300] "GET /watcher/client HTTP/1.1" 404 185 "-" "Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36" +5.101.156.173 - - [23/Mar/2026:13:57:23 +0300] "GET /watcher/client HTTP/1.1" 404 185 "-" "Mozilla/5.0 (CentOS; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" +157.173.100.236 - - [23/Mar/2026:14:02:33 +0300] "GET / HTTP/1.1" 200 1911 "-" "Go-http-client/1.1" +20.106.196.31 - - [23/Mar/2026:14:04:45 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 zgrab/0.x" +155.2.190.200 - - [23/Mar/2026:14:13:50 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36" +155.2.190.200 - - [23/Mar/2026:14:13:52 +0300] "GET /favicon.ico HTTP/1.1" 200 6485 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36" +43.164.197.177 - - [23/Mar/2026:14:34:54 +0300] "GET / HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" +202.131.1.75 - - [23/Mar/2026:14:48:47 +0300] "GET / HTTP/1.1" 200 1911 "-" "Go-http-client/1.1" +98.88.179.76 - - [23/Mar/2026:15:12:15 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Gort)" +205.210.31.10 - - [23/Mar/2026:15:16:57 +0300] "GET / HTTP/1.1" 200 7232 "-" "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" +85.208.96.196 - - [23/Mar/2026:15:37:22 +0300] "GET /robots.txt HTTP/1.1" 200 14 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" +185.191.171.12 - - [23/Mar/2026:15:37:23 +0300] "GET /?URL=https%3A%2F%2Fdiscountedessays.com%2Fthesis%2F66-psychology-work-best-essay-service.html HTTP/1.1" 200 1911 "-" "Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)" diff --git a/logs/cadpoint-ru_1998-access.log.10.gz b/logs/cadpoint-ru_1998-access.log.10.gz new file mode 100644 index 0000000..d010781 Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.10.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.11.gz b/logs/cadpoint-ru_1998-access.log.11.gz new file mode 100644 index 0000000..696056b Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.11.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.12.gz b/logs/cadpoint-ru_1998-access.log.12.gz new file mode 100644 index 0000000..5359106 Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.12.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.13.gz b/logs/cadpoint-ru_1998-access.log.13.gz new file mode 100644 index 0000000..712ee7e Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.13.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.14.gz b/logs/cadpoint-ru_1998-access.log.14.gz new file mode 100644 index 0000000..3d6aa56 Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.14.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.15.gz b/logs/cadpoint-ru_1998-access.log.15.gz new file mode 100644 index 0000000..3f615b3 Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.15.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.2.gz b/logs/cadpoint-ru_1998-access.log.2.gz new file mode 100644 index 0000000..b62bafe Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.2.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.3.gz b/logs/cadpoint-ru_1998-access.log.3.gz new file mode 100644 index 0000000..9b7baee Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.3.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.4.gz b/logs/cadpoint-ru_1998-access.log.4.gz new file mode 100644 index 0000000..ae0a7ec Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.4.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.5.gz b/logs/cadpoint-ru_1998-access.log.5.gz new file mode 100644 index 0000000..0cee922 Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.5.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.6.gz b/logs/cadpoint-ru_1998-access.log.6.gz new file mode 100644 index 0000000..797a656 Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.6.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.7.gz b/logs/cadpoint-ru_1998-access.log.7.gz new file mode 100644 index 0000000..ffb0b43 Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.7.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.8.gz b/logs/cadpoint-ru_1998-access.log.8.gz new file mode 100644 index 0000000..f24f854 Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.8.gz differ diff --git a/logs/cadpoint-ru_1998-access.log.9.gz b/logs/cadpoint-ru_1998-access.log.9.gz new file mode 100644 index 0000000..b8c5f75 Binary files /dev/null and b/logs/cadpoint-ru_1998-access.log.9.gz differ diff --git a/logs/cadpoint-ru_1998-error.log b/logs/cadpoint-ru_1998-error.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/cadpoint-ru_1998-error.log.1 b/logs/cadpoint-ru_1998-error.log.1 new file mode 100644 index 0000000..97f747e --- /dev/null +++ b/logs/cadpoint-ru_1998-error.log.1 @@ -0,0 +1,129 @@ +2026/03/19 07:34:17 [error] 272359#272359: *24849228 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_co/ry.htm" failed (2: No such file or directory), client: 43.173.179.205, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_co/ry.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 07:34:17 [error] 272359#272359: *24849228 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.179.205, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_co/ry.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 13:38:17 [error] 272358#272358: *25139424 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_pr/lh.htm" failed (2: No such file or directory), client: 43.173.177.205, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/lh.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 13:38:17 [error] 272358#272358: *25139424 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.177.205, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/lh.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 17:48:39 [error] 272358#272358: *25314532 open() "/home/web/cadpoint-ru_1998/html/wp-includes/wlwmanifest.xml" failed (2: No such file or directory), client: 34.75.243.112, server: 1998.cadpoint.ru, request: "GET /wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 17:48:39 [error] 272358#272358: *25314532 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 34.75.243.112, server: 1998.cadpoint.ru, request: "GET /wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 17:48:39 [error] 272358#272358: *25314532 open() "/home/web/cadpoint-ru_1998/html/xmlrpc.php" failed (2: No such file or directory), client: 34.75.243.112, server: 1998.cadpoint.ru, request: "GET /xmlrpc.php?rsd HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 17:48:39 [error] 272358#272358: *25314532 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 34.75.243.112, server: 1998.cadpoint.ru, request: "GET /xmlrpc.php?rsd HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 17:48:40 [error] 272358#272358: *25314532 open() "/home/web/cadpoint-ru_1998/html/blog/wp-includes/wlwmanifest.xml" failed (2: No such file or directory), client: 34.75.243.112, server: 1998.cadpoint.ru, request: "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 17:48:40 [error] 272358#272358: *25314532 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 34.75.243.112, server: 1998.cadpoint.ru, request: "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 17:48:41 [error] 272358#272358: *25314532 open() "/home/web/cadpoint-ru_1998/html/web/wp-includes/wlwmanifest.xml" failed (2: No such file or directory), client: 34.75.243.112, server: 1998.cadpoint.ru, request: "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 17:48:41 [error] 272358#272358: *25314532 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 34.75.243.112, server: 1998.cadpoint.ru, request: "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 17:48:41 [error] 272358#272358: *25314532 open() "/home/web/cadpoint-ru_1998/html/wordpress/wp-includes/wlwmanifest.xml" failed (2: No such file or directory), client: 34.75.243.112, server: 1998.cadpoint.ru, request: "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 17:48:41 [error] 272358#272358: *25314532 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 34.75.243.112, server: 1998.cadpoint.ru, request: "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 17:48:42 [error] 272358#272358: *25314532 open() "/home/web/cadpoint-ru_1998/html/website/wp-includes/wlwmanifest.xml" failed (2: No such file or directory), client: 34.75.243.112, server: 1998.cadpoint.ru, request: "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 17:48:42 [error] 272358#272358: *25314532 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 34.75.243.112, server: 1998.cadpoint.ru, request: "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 18:12:18 [error] 272358#272358: *25333175 open() "/home/web/cadpoint-ru_1998/html/@vite/env" failed (2: No such file or directory), client: 96.41.38.202, server: 1998.cadpoint.ru, request: "GET /@vite/env HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 18:12:18 [error] 272358#272358: *25333175 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 96.41.38.202, server: 1998.cadpoint.ru, request: "GET /@vite/env HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 18:12:19 [error] 272358#272358: *25333175 open() "/home/web/cadpoint-ru_1998/html/.vscode/sftp.json" failed (2: No such file or directory), client: 96.41.38.202, server: 1998.cadpoint.ru, request: "GET /.vscode/sftp.json HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 18:12:19 [error] 272358#272358: *25333175 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 96.41.38.202, server: 1998.cadpoint.ru, request: "GET /.vscode/sftp.json HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 18:12:19 [error] 272358#272358: *25333175 open() "/home/web/cadpoint-ru_1998/html/.env" failed (2: No such file or directory), client: 96.41.38.202, server: 1998.cadpoint.ru, request: "GET /.env HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 18:12:19 [error] 272358#272358: *25333175 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 96.41.38.202, server: 1998.cadpoint.ru, request: "GET /.env HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 18:12:19 [error] 272358#272358: *25333175 open() "/home/web/cadpoint-ru_1998/html/.git/config" failed (2: No such file or directory), client: 96.41.38.202, server: 1998.cadpoint.ru, request: "GET /.git/config HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 18:12:19 [error] 272358#272358: *25333175 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 96.41.38.202, server: 1998.cadpoint.ru, request: "GET /.git/config HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 23:20:10 [error] 272359#272359: *25576974 open() "/home/web/cadpoint-ru_1998/html/mcp" failed (2: No such file or directory), client: 109.105.210.67, server: 1998.cadpoint.ru, request: "POST /mcp HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 23:20:10 [error] 272359#272359: *25576974 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 109.105.210.67, server: 1998.cadpoint.ru, request: "POST /mcp HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 23:20:10 [error] 272359#272359: *25576974 open() "/home/web/cadpoint-ru_1998/html/sse" failed (2: No such file or directory), client: 109.105.210.67, server: 1998.cadpoint.ru, request: "GET /sse HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 23:20:10 [error] 272359#272359: *25576974 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 109.105.210.67, server: 1998.cadpoint.ru, request: "GET /sse HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 23:21:01 [error] 272359#272359: *25577682 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_pr/rl.htm" failed (2: No such file or directory), client: 43.173.175.58, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/rl.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/19 23:21:01 [error] 272359#272359: *25577682 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.175.58, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/rl.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 01:27:09 [error] 272358#272358: *25677985 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/sponsor.htm" failed (2: No such file or directory), client: 43.173.179.31, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/sponsor.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 01:27:09 [error] 272358#272358: *25677985 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.179.31, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/sponsor.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 06:23:57 [error] 272359#272359: *25943874 open() "/home/web/cadpoint-ru_1998/html/cgi-bin/luci/;stok=/locale" failed (2: No such file or directory), client: 204.76.203.50, server: 1998.cadpoint.ru, request: "GET /cgi-bin/luci/;stok=/locale HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 06:23:57 [error] 272359#272359: *25943874 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 204.76.203.50, server: 1998.cadpoint.ru, request: "GET /cgi-bin/luci/;stok=/locale HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 10:29:58 [error] 272359#272359: *26153326 open() "/home/web/cadpoint-ru_1998/html/wp-includes/wlwmanifest.xml" failed (2: No such file or directory), client: 45.149.173.233, server: 1998.cadpoint.ru, request: "GET /wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 10:29:58 [error] 272359#272359: *26153326 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 45.149.173.233, server: 1998.cadpoint.ru, request: "GET /wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 10:29:59 [error] 272359#272359: *26153326 open() "/home/web/cadpoint-ru_1998/html/xmlrpc.php" failed (2: No such file or directory), client: 45.149.173.233, server: 1998.cadpoint.ru, request: "GET /xmlrpc.php?rsd HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 10:29:59 [error] 272359#272359: *26153326 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 45.149.173.233, server: 1998.cadpoint.ru, request: "GET /xmlrpc.php?rsd HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 10:30:00 [error] 272359#272359: *26153326 open() "/home/web/cadpoint-ru_1998/html/blog/wp-includes/wlwmanifest.xml" failed (2: No such file or directory), client: 45.149.173.233, server: 1998.cadpoint.ru, request: "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 10:30:00 [error] 272359#272359: *26153326 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 45.149.173.233, server: 1998.cadpoint.ru, request: "GET /blog/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 10:30:01 [error] 272359#272359: *26153326 open() "/home/web/cadpoint-ru_1998/html/web/wp-includes/wlwmanifest.xml" failed (2: No such file or directory), client: 45.149.173.233, server: 1998.cadpoint.ru, request: "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 10:30:01 [error] 272359#272359: *26153326 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 45.149.173.233, server: 1998.cadpoint.ru, request: "GET /web/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 10:30:01 [error] 272359#272359: *26153326 open() "/home/web/cadpoint-ru_1998/html/wordpress/wp-includes/wlwmanifest.xml" failed (2: No such file or directory), client: 45.149.173.233, server: 1998.cadpoint.ru, request: "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 10:30:01 [error] 272359#272359: *26153326 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 45.149.173.233, server: 1998.cadpoint.ru, request: "GET /wordpress/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 10:30:02 [error] 272359#272359: *26153326 open() "/home/web/cadpoint-ru_1998/html/website/wp-includes/wlwmanifest.xml" failed (2: No such file or directory), client: 45.149.173.233, server: 1998.cadpoint.ru, request: "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 10:30:02 [error] 272359#272359: *26153326 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 45.149.173.233, server: 1998.cadpoint.ru, request: "GET /website/wp-includes/wlwmanifest.xml HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 13:54:30 [error] 272358#272358: *26323218 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_pr/lx.htm" failed (2: No such file or directory), client: 43.173.175.117, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/lx.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 13:54:30 [error] 272358#272358: *26323218 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.175.117, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/lx.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 14:30:10 [error] 272358#272358: *26341431 open() "/home/web/cadpoint-ru_1998/html/T6bHkeeG3IixY7Bh0noD1QyFLiPlD23T05_fYYWAB0SqWLgWGk-3zAazG2k0MqhO6AxISCCvosgJ0eBTxGrQHktud-cN20EuWN5bCgJQ7zQLOPyK5jhNF7Y2p-_JSxpBpQvWHxM5plh6NA2yELiAvVST24ah1aKWBxJ3EDpy2DOgE3DO9xUsIIP6R9Vy49sZRKRZKYyU6s9Z3QCfH7jzY3ZFQsI-dvC37Aw" failed (2: No such file or directory), client: 47.87.140.88, server: 1998.cadpoint.ru, request: "GET /T6bHkeeG3IixY7Bh0noD1QyFLiPlD23T05_fYYWAB0SqWLgWGk-3zAazG2k0MqhO6AxISCCvosgJ0eBTxGrQHktud-cN20EuWN5bCgJQ7zQLOPyK5jhNF7Y2p-_JSxpBpQvWHxM5plh6NA2yELiAvVST24ah1aKWBxJ3EDpy2DOgE3DO9xUsIIP6R9Vy49sZRKRZKYyU6s9Z3QCfH7jzY3ZFQsI-dvC37Aw HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 14:30:10 [error] 272358#272358: *26341431 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 47.87.140.88, server: 1998.cadpoint.ru, request: "GET /T6bHkeeG3IixY7Bh0noD1QyFLiPlD23T05_fYYWAB0SqWLgWGk-3zAazG2k0MqhO6AxISCCvosgJ0eBTxGrQHktud-cN20EuWN5bCgJQ7zQLOPyK5jhNF7Y2p-_JSxpBpQvWHxM5plh6NA2yELiAvVST24ah1aKWBxJ3EDpy2DOgE3DO9xUsIIP6R9Vy49sZRKRZKYyU6s9Z3QCfH7jzY3ZFQsI-dvC37Aw HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 15:05:37 [error] 272358#272358: *26359909 "/home/web/cadpoint-ru_1998/html/extensions/index.html" is not found (2: No such file or directory), client: 85.142.100.82, server: 1998.cadpoint.ru, request: "GET /extensions/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 15:05:37 [error] 272358#272358: *26359909 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 85.142.100.82, server: 1998.cadpoint.ru, request: "GET /extensions/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 16:08:30 [error] 272358#272358: *26404703 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_pr/ry.htm" failed (2: No such file or directory), client: 43.173.175.201, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/ry.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 16:08:30 [error] 272358#272358: *26404703 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.175.201, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/ry.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 16:50:37 [error] 272358#272358: *26437822 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_ex/99_07_01a.htm" failed (2: No such file or directory), client: 43.173.179.86, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_ex/99_07_01a.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 16:50:37 [error] 272358#272358: *26437822 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.179.86, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_ex/99_07_01a.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 20:50:02 [error] 272359#272359: *26627444 open() "/home/web/cadpoint-ru_1998/html/_nw/index.htm" failed (2: No such file or directory), client: 220.181.108.146, server: 1998.cadpoint.ru, request: "GET /_nw/index.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 20:50:02 [error] 272359#272359: *26627444 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 220.181.108.146, server: 1998.cadpoint.ru, request: "GET /_nw/index.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 21:03:47 [error] 272358#272358: *26640020 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_pr/le.htm" failed (2: No such file or directory), client: 220.181.108.177, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/le.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 21:03:47 [error] 272358#272358: *26640020 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 220.181.108.177, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/le.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 22:09:47 [error] 272358#272358: *26695978 open() "/home/web/cadpoint-ru_1998/html/sitemap.txt" failed (2: No such file or directory), client: 157.55.39.49, server: 1998.cadpoint.ru, request: "GET /sitemap.txt HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 22:09:47 [error] 272358#272358: *26695978 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 157.55.39.49, server: 1998.cadpoint.ru, request: "GET /sitemap.txt HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 23:15:34 [error] 272359#272359: *26751081 open() "/home/web/cadpoint-ru_1998/html/sitemap.txt" failed (2: No such file or directory), client: 207.46.13.17, server: 1998.cadpoint.ru, request: "GET /sitemap.txt HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/20 23:15:34 [error] 272359#272359: *26751081 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 207.46.13.17, server: 1998.cadpoint.ru, request: "GET /sitemap.txt HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 00:45:02 [error] 272358#272358: *26825364 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_co/lc.htm" failed (2: No such file or directory), client: 43.173.174.76, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_co/lc.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 00:45:02 [error] 272358#272358: *26825364 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.174.76, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_co/lc.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 03:48:57 [error] 272359#272359: *26988002 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_fr/glossary.htm" failed (2: No such file or directory), client: 43.173.180.213, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_fr/glossary.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 03:48:57 [error] 272359#272359: *26988002 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.180.213, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_fr/glossary.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 05:09:49 [error] 272358#272358: *27061695 directory index of "/home/web/cadpoint-ru_1998/html/_co/" is forbidden, client: 220.181.108.114, server: 1998.cadpoint.ru, request: "GET /_co/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 07:57:33 [error] 272359#272359: *27218032 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_ex/99_06_18b.htm" failed (2: No such file or directory), client: 43.173.174.98, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_ex/99_06_18b.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 07:57:33 [error] 272359#272359: *27218032 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.174.98, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_ex/99_06_18b.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 12:21:30 [error] 272358#272358: *27448012 open() "/home/web/cadpoint-ru_1998/html/4u6ChBYNiqCk9" failed (2: No such file or directory), client: 87.250.224.75, server: 1998.cadpoint.ru, request: "GET /4u6ChBYNiqCk9 HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 12:21:30 [error] 272358#272358: *27448012 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 87.250.224.75, server: 1998.cadpoint.ru, request: "GET /4u6ChBYNiqCk9 HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 12:21:30 [error] 272358#272358: *27448013 open() "/home/web/cadpoint-ru_1998/html/XSr4pblDKOm" failed (2: No such file or directory), client: 95.108.213.116, server: 1998.cadpoint.ru, request: "GET /XSr4pblDKOm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 12:21:30 [error] 272358#272358: *27448013 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 95.108.213.116, server: 1998.cadpoint.ru, request: "GET /XSr4pblDKOm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 12:45:20 [error] 272358#272358: *27469421 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_fr/notice.htm" failed (2: No such file or directory), client: 43.173.175.138, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_fr/notice.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 12:45:20 [error] 272358#272358: *27469421 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.175.138, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_fr/notice.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 16:48:07 [error] 272359#272359: *27647058 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_co/lh.htm" failed (2: No such file or directory), client: 43.173.175.12, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_co/lh.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 16:48:07 [error] 272359#272359: *27647058 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.175.12, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_co/lh.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 18:49:45 [error] 272358#272358: *27744399 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_pr/lj.htm" failed (2: No such file or directory), client: 43.173.173.44, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/lj.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 18:49:45 [error] 272358#272358: *27744399 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.173.44, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/lj.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 20:48:05 [error] 272358#272358: *27839989 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_pr/rg.htm" failed (2: No such file or directory), client: 220.181.108.178, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/rg.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/21 20:48:05 [error] 272358#272358: *27839989 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 220.181.108.178, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pr/rg.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 03:36:55 [error] 272359#272359: *28186158 "/home/web/cadpoint-ru_1998/html/bitrix/admin/index.html" is not found (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 03:36:55 [error] 272359#272359: *28186158 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 03:36:56 [error] 272359#272359: *28186158 "/home/web/cadpoint-ru_1998/html/pewpew/index.html" is not found (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /pewpew/?SEF_APPLICATION_CUR_PAGE_URL=/bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 03:36:56 [error] 272359#272359: *28186158 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /pewpew/?SEF_APPLICATION_CUR_PAGE_URL=/bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 03:36:56 [error] 272359#272359: *28186158 "/home/web/cadpoint-ru_1998/html/pewpew/index.html" is not found (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /pewpew/?SEF%20APPLICATION%20CUR%20PAGE_URL=/bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 03:36:56 [error] 272359#272359: *28186158 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /pewpew/?SEF%20APPLICATION%20CUR%20PAGE_URL=/bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 03:36:56 [error] 272359#272359: *28186158 "/home/web/cadpoint-ru_1998/html/pewpew/index.html" is not found (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /pewpew/?SEF.APPLICATION%20CUR+PAGE[URL=/bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 03:36:56 [error] 272359#272359: *28186158 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /pewpew/?SEF.APPLICATION%20CUR+PAGE[URL=/bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 04:05:55 [error] 272358#272358: *28212366 open() "/home/web/cadpoint-ru_1998/html/mcp" failed (2: No such file or directory), client: 185.226.198.4, server: 1998.cadpoint.ru, request: "POST /mcp HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 04:05:55 [error] 272358#272358: *28212366 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 185.226.198.4, server: 1998.cadpoint.ru, request: "POST /mcp HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 04:05:56 [error] 272358#272358: *28212366 open() "/home/web/cadpoint-ru_1998/html/sse" failed (2: No such file or directory), client: 185.226.198.4, server: 1998.cadpoint.ru, request: "GET /sse HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 04:05:56 [error] 272358#272358: *28212366 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 185.226.198.4, server: 1998.cadpoint.ru, request: "GET /sse HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 04:24:30 [error] 272359#272359: *28228419 open() "/home/web/cadpoint-ru_1998/html/.git/config" failed (2: No such file or directory), client: 89.223.120.107, server: 1998.cadpoint.ru, request: "GET /.git/config HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 04:24:30 [error] 272359#272359: *28228419 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 89.223.120.107, server: 1998.cadpoint.ru, request: "GET /.git/config HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 07:36:23 [error] 272358#272358: *28383737 open() "/home/web/cadpoint-ru_1998/html/.well-known/security.txt" failed (2: No such file or directory), client: 35.203.210.198, server: 1998.cadpoint.ru, request: "GET /.well-known/security.txt HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 07:36:23 [error] 272358#272358: *28383737 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 35.203.210.198, server: 1998.cadpoint.ru, request: "GET /.well-known/security.txt HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 12:22:27 [error] 272359#272359: *28578692 "/home/web/cadpoint-ru_1998/html/bitrix/admin/index.html" is not found (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 12:22:27 [error] 272359#272359: *28578692 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 12:22:27 [error] 272359#272359: *28578692 "/home/web/cadpoint-ru_1998/html/pewpew/index.html" is not found (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /pewpew/?SEF_APPLICATION_CUR_PAGE_URL=/bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 12:22:27 [error] 272359#272359: *28578692 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /pewpew/?SEF_APPLICATION_CUR_PAGE_URL=/bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 12:22:27 [error] 272359#272359: *28578692 "/home/web/cadpoint-ru_1998/html/pewpew/index.html" is not found (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /pewpew/?SEF%20APPLICATION%20CUR%20PAGE_URL=/bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 12:22:27 [error] 272359#272359: *28578692 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /pewpew/?SEF%20APPLICATION%20CUR%20PAGE_URL=/bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 12:22:27 [error] 272359#272359: *28578692 "/home/web/cadpoint-ru_1998/html/pewpew/index.html" is not found (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /pewpew/?SEF.APPLICATION%20CUR+PAGE[URL=/bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 12:22:27 [error] 272359#272359: *28578692 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 179.43.186.231, server: 1998.cadpoint.ru, request: "GET /pewpew/?SEF.APPLICATION%20CUR+PAGE[URL=/bitrix/admin/ HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 12:26:49 [error] 272359#272359: *28581862 open() "/home/web/cadpoint-ru_1998/html/.git/config" failed (2: No such file or directory), client: 149.154.67.96, server: 1998.cadpoint.ru, request: "GET /.git/config HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 12:26:49 [error] 272359#272359: *28581862 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 149.154.67.96, server: 1998.cadpoint.ru, request: "GET /.git/config HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 13:33:06 [error] 272359#272359: *28616739 open() "/home/web/cadpoint-ru_1998/html/api/backup" failed (2: No such file or directory), client: 129.212.239.155, server: 1998.cadpoint.ru, request: "GET /api/backup HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 13:33:06 [error] 272359#272359: *28616739 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 129.212.239.155, server: 1998.cadpoint.ru, request: "GET /api/backup HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 13:38:07 [error] 272359#272359: *28619338 open() "/home/web/cadpoint-ru_1998/html/.git/config" failed (2: No such file or directory), client: 109.68.215.224, server: 1998.cadpoint.ru, request: "GET /.git/config HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 13:38:07 [error] 272359#272359: *28619338 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 109.68.215.224, server: 1998.cadpoint.ru, request: "GET /.git/config HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 15:50:49 [error] 272358#272358: *28708999 open() "/home/web/cadpoint-ru_1998/html/.git/config" failed (2: No such file or directory), client: 89.223.120.107, server: 1998.cadpoint.ru, request: "GET /.git/config HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 15:50:49 [error] 272358#272358: *28708999 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 89.223.120.107, server: 1998.cadpoint.ru, request: "GET /.git/config HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 18:28:36 [error] 272358#272358: *28825200 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_ex/99_08_17a.htm" failed (2: No such file or directory), client: 220.181.108.114, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_ex/99_08_17a.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 18:28:36 [error] 272358#272358: *28825200 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 220.181.108.114, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_ex/99_08_17a.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/22 18:48:36 [error] 272358#272358: *28840904 open() "/home/web/cadpoint-ru_1998/html/wp-login.php" failed (2: No such file or directory), client: 107.189.1.176, server: 1998.cadpoint.ru, request: "GET /wp-login.php HTTP/1.1", host: "1998.cadpoint.ru", referrer: "http://www.google.com.hk" +2026/03/22 18:48:36 [error] 272358#272358: *28840904 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 107.189.1.176, server: 1998.cadpoint.ru, request: "GET /wp-login.php HTTP/1.1", host: "1998.cadpoint.ru", referrer: "http://www.google.com.hk" +2026/03/23 05:34:51 [error] 272358#272358: *29315232 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_co/lf.htm" failed (2: No such file or directory), client: 220.181.108.145, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_co/lf.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/23 05:34:51 [error] 272358#272358: *29315232 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 220.181.108.145, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_co/lf.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/23 10:44:21 [error] 272359#272359: *29531258 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_pb/99_01a.htm" failed (2: No such file or directory), client: 43.173.181.117, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pb/99_01a.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/23 10:44:21 [error] 272359#272359: *29531258 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.181.117, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_pb/99_01a.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/23 10:45:29 [error] 272359#272359: *29532100 open() "/home/web/cadpoint-ru_1998/html/1998.cad.ru/_ex/99_01_18a.htm" failed (2: No such file or directory), client: 43.173.182.99, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_ex/99_01_18a.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/23 10:45:29 [error] 272359#272359: *29532100 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 43.173.182.99, server: 1998.cadpoint.ru, request: "GET /1998.cad.ru/_ex/99_01_18a.htm HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/23 13:57:23 [error] 272359#272359: *29634303 open() "/home/web/cadpoint-ru_1998/html/watcher/client" failed (2: No such file or directory), client: 5.101.156.173, server: 1998.cadpoint.ru, request: "GET /watcher/client HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/23 13:57:23 [error] 272359#272359: *29634303 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 5.101.156.173, server: 1998.cadpoint.ru, request: "GET /watcher/client HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/23 13:57:23 [error] 272359#272359: *29634306 open() "/home/web/cadpoint-ru_1998/html/watcher/client" failed (2: No such file or directory), client: 5.101.156.173, server: 1998.cadpoint.ru, request: "GET /watcher/client HTTP/1.1", host: "1998.cadpoint.ru" +2026/03/23 13:57:23 [error] 272359#272359: *29634306 open() "/home/web/cadpoint-ru_1998/html/index.html/404.html" failed (2: No such file or directory), client: 5.101.156.173, server: 1998.cadpoint.ru, request: "GET /watcher/client HTTP/1.1", host: "1998.cadpoint.ru" diff --git a/logs/cadpoint-ru_1998-error.log.10.gz b/logs/cadpoint-ru_1998-error.log.10.gz new file mode 100644 index 0000000..8f5ac7a Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.10.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.11.gz b/logs/cadpoint-ru_1998-error.log.11.gz new file mode 100644 index 0000000..f7ee2d4 Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.11.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.12.gz b/logs/cadpoint-ru_1998-error.log.12.gz new file mode 100644 index 0000000..7f50d31 Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.12.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.13.gz b/logs/cadpoint-ru_1998-error.log.13.gz new file mode 100644 index 0000000..ef21366 Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.13.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.14.gz b/logs/cadpoint-ru_1998-error.log.14.gz new file mode 100644 index 0000000..8a60fb9 Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.14.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.15.gz b/logs/cadpoint-ru_1998-error.log.15.gz new file mode 100644 index 0000000..5de5098 Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.15.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.2.gz b/logs/cadpoint-ru_1998-error.log.2.gz new file mode 100644 index 0000000..27fd707 Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.2.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.3.gz b/logs/cadpoint-ru_1998-error.log.3.gz new file mode 100644 index 0000000..4ce7a50 Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.3.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.4.gz b/logs/cadpoint-ru_1998-error.log.4.gz new file mode 100644 index 0000000..e37bb3b Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.4.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.5.gz b/logs/cadpoint-ru_1998-error.log.5.gz new file mode 100644 index 0000000..0ed6833 Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.5.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.6.gz b/logs/cadpoint-ru_1998-error.log.6.gz new file mode 100644 index 0000000..9aa9438 Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.6.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.7.gz b/logs/cadpoint-ru_1998-error.log.7.gz new file mode 100644 index 0000000..892f4d9 Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.7.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.8.gz b/logs/cadpoint-ru_1998-error.log.8.gz new file mode 100644 index 0000000..3d305df Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.8.gz differ diff --git a/logs/cadpoint-ru_1998-error.log.9.gz b/logs/cadpoint-ru_1998-error.log.9.gz new file mode 100644 index 0000000..fc9ebdf Binary files /dev/null and b/logs/cadpoint-ru_1998-error.log.9.gz differ